From: sgdfkk@163.com
To: u-boot@lists.denx.de
Cc: Du Huanpeng <u74147@gmail.com>
Subject: [PATCH v7 0/7] add loongson mips ls1c300 initial support
Date: Sat, 4 Apr 2026 00:25:34 +0800 [thread overview]
Message-ID: <20260403162541.86608-1-sgdfkk@163.com> (raw)
From: Du Huanpeng <u74147@gmail.com>
---
Du Huanpeng (7):
mips: loongson: minimal initial SoC support
mips: loongson: lowlevel initialize
mips: loongson: lowlevel debug serial
mips: loongson: ls1c300 board support
mips: loongson: add clk driver
mips: loongson: add watchdog driver
mips: loongson: ls1c300 dts and bindings
MAINTAINERS | 9 +
arch/mips/Kconfig | 11 ++
arch/mips/Makefile | 1 +
arch/mips/dts/loongson32-ls1c300b.dtsi | 151 ++++++++++++++
arch/mips/dts/ls1c300-eval.dts | 30 +++
arch/mips/mach-loongson/Kconfig | 69 +++++++
arch/mips/mach-loongson/Makefile | 6 +
arch/mips/mach-loongson/cpu.c | 19 ++
arch/mips/mach-loongson/include/mach/serial.h | 16 ++
arch/mips/mach-loongson/ls1c300/Makefile | 7 +
arch/mips/mach-loongson/ls1c300/gpio.c | 66 +++++++
arch/mips/mach-loongson/ls1c300/init.c | 61 ++++++
.../mach-loongson/ls1c300/lowlevel_init.S | 134 +++++++++++++
arch/mips/mach-loongson/ls1c300/sdram.S | 95 +++++++++
arch/mips/mach-loongson/ls1c300/serial.c | 104 ++++++++++
arch/mips/mach-loongson/spl.c | 46 +++++
board/loongson/ls1c300-eval/Kconfig | 12 ++
board/loongson/ls1c300-eval/MAINTAINERS | 7 +
board/loongson/ls1c300-eval/Makefile | 3 +
board/loongson/ls1c300-eval/board.c | 19 ++
configs/ls1c300_defconfig | 52 +++++
drivers/clk/Makefile | 1 +
drivers/clk/loongson/Makefile | 3 +
drivers/clk/loongson/clk-ls1c300.c | 186 ++++++++++++++++++
drivers/watchdog/Kconfig | 8 +
drivers/watchdog/Makefile | 1 +
drivers/watchdog/loongson_wdt.c | 127 ++++++++++++
include/configs/ls1c300.h | 38 ++++
include/dt-bindings/clock/ls1c300-clk.h | 18 ++
include/dt-bindings/reset/ls1c300-reset.h | 36 ++++
30 files changed, 1336 insertions(+)
create mode 100644 arch/mips/dts/loongson32-ls1c300b.dtsi
create mode 100644 arch/mips/dts/ls1c300-eval.dts
create mode 100644 arch/mips/mach-loongson/Kconfig
create mode 100644 arch/mips/mach-loongson/Makefile
create mode 100644 arch/mips/mach-loongson/cpu.c
create mode 100644 arch/mips/mach-loongson/include/mach/serial.h
create mode 100644 arch/mips/mach-loongson/ls1c300/Makefile
create mode 100644 arch/mips/mach-loongson/ls1c300/gpio.c
create mode 100644 arch/mips/mach-loongson/ls1c300/init.c
create mode 100644 arch/mips/mach-loongson/ls1c300/lowlevel_init.S
create mode 100644 arch/mips/mach-loongson/ls1c300/sdram.S
create mode 100644 arch/mips/mach-loongson/ls1c300/serial.c
create mode 100644 arch/mips/mach-loongson/spl.c
create mode 100644 board/loongson/ls1c300-eval/Kconfig
create mode 100644 board/loongson/ls1c300-eval/MAINTAINERS
create mode 100644 board/loongson/ls1c300-eval/Makefile
create mode 100644 board/loongson/ls1c300-eval/board.c
create mode 100644 configs/ls1c300_defconfig
create mode 100644 drivers/clk/loongson/Makefile
create mode 100644 drivers/clk/loongson/clk-ls1c300.c
create mode 100644 drivers/watchdog/loongson_wdt.c
create mode 100644 include/configs/ls1c300.h
create mode 100644 include/dt-bindings/clock/ls1c300-clk.h
create mode 100644 include/dt-bindings/reset/ls1c300-reset.h
--
2.43.0
next reply other threads:[~2026-04-03 16:26 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-03 16:25 sgdfkk [this message]
2026-04-03 16:25 ` [PATCH v7 1/7] mips: loongson: minimal initial SoC support sgdfkk
2026-04-03 16:25 ` [PATCH v7 2/7] mips: loongson: lowlevel initialize sgdfkk
2026-04-03 16:25 ` [PATCH v7 3/7] mips: loongson: lowlevel debug serial sgdfkk
2026-04-03 16:25 ` [PATCH v7 4/7] mips: loongson: ls1c300 board support sgdfkk
2026-04-03 16:25 ` [PATCH v7 5/7] mips: loongson: add clk driver sgdfkk
2026-04-03 16:25 ` [PATCH v7 6/7] mips: loongson: add watchdog driver sgdfkk
2026-04-03 16:25 ` [PATCH v7 7/7] mips: loongson: ls1c300 dts and bindings sgdfkk
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260403162541.86608-1-sgdfkk@163.com \
--to=sgdfkk@163.com \
--cc=u-boot@lists.denx.de \
--cc=u74147@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox