[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1324035544-2373-1-git-send-email-keguang.zhang@gmail.com>
Date: Fri, 16 Dec 2011 19:39:00 +0800
From: Kelvin Cheung <keguang.zhang@...il.com>
To: ralf@...ux-mips.org, linux-mips@...ux-mips.org,
linux-kernel@...r.kernel.org
Cc: zhzhl555@...il.com, peppe.cavallaro@...com, wuzhangjin@...il.com,
r0bertz@...too.org, Kelvin Cheung <keguang.zhang@...il.com>
Subject: [PATCH V5 0/4] MIPS: Add support for Loongson1B
These patches add support for Loongson1B.
Changelog:
V5: Add IS_ENABLED() macro for platform devices.
V4: Split the RTC patch, and merge the arch/mips parts into patch 2/4.
Use 'KSEG1ADDR' instead of 'ioremap()' in registers definitions.
V3: Add RTC device for Loongson1B.
V2: Add Ethernet device for Loongson1B.
V1: Add basic support for Loongson1B.
----------------
Kelvin Cheung (4):
MIPS: Add CPU support for Loongson1B
MIPS: Add board support for Loongson1B
MIPS: Add Makefile and Kconfig for Loongson1B
MIPS: Add defconfig for Loongson1B
arch/mips/Kbuild.platforms | 1 +
arch/mips/Kconfig | 31 ++++
arch/mips/configs/ls1b_defconfig | 90 ++++++++++++
arch/mips/include/asm/cpu.h | 3 +-
arch/mips/include/asm/mach-loongson1/irq.h | 68 +++++++++
arch/mips/include/asm/mach-loongson1/loongson1.h | 44 ++++++
arch/mips/include/asm/mach-loongson1/platform.h | 22 +++
arch/mips/include/asm/mach-loongson1/prom.h | 24 +++
arch/mips/include/asm/mach-loongson1/regs-clk.h | 33 +++++
arch/mips/include/asm/mach-loongson1/regs-wdt.h | 22 +++
arch/mips/include/asm/mach-loongson1/war.h | 25 ++++
arch/mips/include/asm/module.h | 2 +
arch/mips/kernel/cpu-probe.c | 15 ++
arch/mips/kernel/perf_event_mipsxx.c | 6 +
arch/mips/kernel/traps.c | 1 +
arch/mips/loongson1/Kconfig | 21 +++
arch/mips/loongson1/Makefile | 11 ++
arch/mips/loongson1/Platform | 7 +
arch/mips/loongson1/common/Makefile | 5 +
arch/mips/loongson1/common/clock.c | 165 ++++++++++++++++++++++
arch/mips/loongson1/common/irq.c | 146 +++++++++++++++++++
arch/mips/loongson1/common/platform.c | 102 +++++++++++++
arch/mips/loongson1/common/prom.c | 87 ++++++++++++
arch/mips/loongson1/common/reset.c | 45 ++++++
arch/mips/loongson1/common/setup.c | 29 ++++
arch/mips/loongson1/ls1b/Makefile | 5 +
arch/mips/loongson1/ls1b/board.c | 36 +++++
arch/mips/oprofile/common.c | 1 +
arch/mips/oprofile/op_model_mipsxx.c | 4 +
29 files changed, 1050 insertions(+), 1 deletions(-)
create mode 100644 arch/mips/configs/ls1b_defconfig
create mode 100644 arch/mips/include/asm/mach-loongson1/irq.h
create mode 100644 arch/mips/include/asm/mach-loongson1/loongson1.h
create mode 100644 arch/mips/include/asm/mach-loongson1/platform.h
create mode 100644 arch/mips/include/asm/mach-loongson1/prom.h
create mode 100644 arch/mips/include/asm/mach-loongson1/regs-clk.h
create mode 100644 arch/mips/include/asm/mach-loongson1/regs-wdt.h
create mode 100644 arch/mips/include/asm/mach-loongson1/war.h
create mode 100644 arch/mips/loongson1/Kconfig
create mode 100644 arch/mips/loongson1/Makefile
create mode 100644 arch/mips/loongson1/Platform
create mode 100644 arch/mips/loongson1/common/Makefile
create mode 100644 arch/mips/loongson1/common/clock.c
create mode 100644 arch/mips/loongson1/common/irq.c
create mode 100644 arch/mips/loongson1/common/platform.c
create mode 100644 arch/mips/loongson1/common/prom.c
create mode 100644 arch/mips/loongson1/common/reset.c
create mode 100644 arch/mips/loongson1/common/setup.c
create mode 100644 arch/mips/loongson1/ls1b/Makefile
create mode 100644 arch/mips/loongson1/ls1b/board.c
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists