From: Wu <wuzhangjin@gmail.com>
To: linux-kernel@vger.kernel.org, linux-mips@linux-mips.org,
ralf@linux-mips.org
Cc: Wu Zhangjin <wuzhangjin@gmail.com>, Yan Hua <yanh@lemote.com>,
Philippe Vachon <philippe@cowpig.ca>,
Zhang Le <r0bertz@gentoo.org>, Zhang Fuxin <zhangfx@lemote.com>,
loongson-dev <loongson-dev@googlegroups.com>,
Liu Junliang <liujl@lemote.com>, Erwan Lerale <erwan@thiscow.com>,
Arnaud Patard <apatard@mandriva.com>
Subject: [PATCH v4 00/16] Cleanup Lemote FuLoong2e Support
Date: Thu, 2 Jul 2009 23:15:52 +0800 [thread overview]
Message-ID: <cover.1246546684.git.wuzhangjin@gmail.com> (raw)
From: Wu Zhangjin <wuzhangjin@gmail.com>
This patch series is the -v4 version of the loongson-PATCH-v3 series, but it
only include the cleanup for fuloong2e support and necessary preparation for
future fuloong-2f and yeeloong-2f support.
The git branch of this patch series is:
git://dev.lemote.com/rt4ls.git linux-loongson/dev/fuloong2e
or
http://dev.lemote.com/cgit/rt4ls.git/log/?h=linux-loongson/dev/fuloong2e
Wu Zhangjin (16):
[loongson] eary_printk: Remove existing implementation
[loongson] kgdb: Remove out-of-date board-specific source code
[loongson] early_printk: add new implmentation
[loongson] pm: Remove redundant source code
[loongson] pm: clean up the reboot support
[loongson] pci: use existing mips_io_port_base
[loongson] split the implementation of prom,setup parts
[loongson] clean up the coding style
[loongson] pci: clean up pcimap setup
[loongson] rtc: enable legacy RTC driver on fulong
[loongson] add oprofile support
[loongson] change naming methods
[loongson] split common loongson source code out
[loongson] add a machtype kernel command line argument
[loongson] add gcc 4.4 support for Loongson2E
[loongson] update the default config file for fuloong2e
Documentation/kernel-parameters.txt | 4 +
arch/mips/Kconfig | 52 +-
arch/mips/Makefile | 15 +-
arch/mips/configs/fulong_defconfig | 1912 --------------------
arch/mips/configs/fuloong2e_defconfig | 1819 +++++++++++++++++++
arch/mips/include/asm/bootinfo.h | 12 +
.../asm/mach-lemote/cpu-feature-overrides.h | 59 -
arch/mips/include/asm/mach-lemote/dma-coherence.h | 68 -
arch/mips/include/asm/mach-lemote/mc146818rtc.h | 36 -
arch/mips/include/asm/mach-lemote/pci.h | 30 -
arch/mips/include/asm/mach-lemote/war.h | 25 -
.../asm/mach-loongson/cpu-feature-overrides.h | 59 +
.../mips/include/asm/mach-loongson/dma-coherence.h | 68 +
arch/mips/include/asm/mach-loongson/loongson.h | 67 +
arch/mips/include/asm/mach-loongson/machine.h | 22 +
arch/mips/include/asm/mach-loongson/mc146818rtc.h | 36 +
arch/mips/include/asm/mach-loongson/mem.h | 30 +
arch/mips/include/asm/mach-loongson/pci.h | 37 +
arch/mips/include/asm/mach-loongson/war.h | 25 +
arch/mips/include/asm/mips-boards/bonito64.h | 2 +-
arch/mips/lemote/lm2e/Makefile | 7 -
arch/mips/lemote/lm2e/bonito-irq.c | 74 -
arch/mips/lemote/lm2e/dbg_io.c | 146 --
arch/mips/lemote/lm2e/irq.c | 143 --
arch/mips/lemote/lm2e/mem.c | 23 -
arch/mips/lemote/lm2e/pci.c | 97 -
arch/mips/lemote/lm2e/prom.c | 97 -
arch/mips/lemote/lm2e/reset.c | 41 -
arch/mips/lemote/lm2e/setup.c | 111 --
arch/mips/loongson/Kconfig | 31 +
arch/mips/loongson/Makefile | 11 +
arch/mips/loongson/common/Makefile | 11 +
arch/mips/loongson/common/bonito-irq.c | 51 +
arch/mips/loongson/common/cmdline.c | 52 +
arch/mips/loongson/common/early_printk.c | 38 +
arch/mips/loongson/common/env.c | 58 +
arch/mips/loongson/common/init.c | 30 +
arch/mips/loongson/common/irq.c | 74 +
arch/mips/loongson/common/machtype.c | 50 +
arch/mips/loongson/common/mem.c | 35 +
arch/mips/loongson/common/pci.c | 83 +
arch/mips/loongson/common/reset.c | 39 +
arch/mips/loongson/common/setup.c | 60 +
arch/mips/loongson/common/time.c | 27 +
arch/mips/loongson/fuloong-2e/Makefile | 7 +
arch/mips/loongson/fuloong-2e/irq.c | 71 +
arch/mips/loongson/fuloong-2e/reset.c | 24 +
arch/mips/oprofile/Makefile | 1 +
arch/mips/oprofile/common.c | 4 +
arch/mips/oprofile/op_model_loongson2.c | 177 ++
arch/mips/pci/Makefile | 2 +-
arch/mips/pci/fixup-fuloong2e.c | 224 +++
arch/mips/pci/fixup-lm2e.c | 242 ---
arch/mips/pci/ops-bonito64.c | 4 +-
54 files changed, 3372 insertions(+), 3151 deletions(-)
delete mode 100644 arch/mips/configs/fulong_defconfig
create mode 100644 arch/mips/configs/fuloong2e_defconfig
delete mode 100644 arch/mips/include/asm/mach-lemote/cpu-feature-overrides.h
delete mode 100644 arch/mips/include/asm/mach-lemote/dma-coherence.h
delete mode 100644 arch/mips/include/asm/mach-lemote/mc146818rtc.h
delete mode 100644 arch/mips/include/asm/mach-lemote/pci.h
delete mode 100644 arch/mips/include/asm/mach-lemote/war.h
create mode 100644 arch/mips/include/asm/mach-loongson/cpu-feature-overrides.h
create mode 100644 arch/mips/include/asm/mach-loongson/dma-coherence.h
create mode 100644 arch/mips/include/asm/mach-loongson/loongson.h
create mode 100644 arch/mips/include/asm/mach-loongson/machine.h
create mode 100644 arch/mips/include/asm/mach-loongson/mc146818rtc.h
create mode 100644 arch/mips/include/asm/mach-loongson/mem.h
create mode 100644 arch/mips/include/asm/mach-loongson/pci.h
create mode 100644 arch/mips/include/asm/mach-loongson/war.h
delete mode 100644 arch/mips/lemote/lm2e/Makefile
delete mode 100644 arch/mips/lemote/lm2e/bonito-irq.c
delete mode 100644 arch/mips/lemote/lm2e/dbg_io.c
delete mode 100644 arch/mips/lemote/lm2e/irq.c
delete mode 100644 arch/mips/lemote/lm2e/mem.c
delete mode 100644 arch/mips/lemote/lm2e/pci.c
delete mode 100644 arch/mips/lemote/lm2e/prom.c
delete mode 100644 arch/mips/lemote/lm2e/reset.c
delete mode 100644 arch/mips/lemote/lm2e/setup.c
create mode 100644 arch/mips/loongson/Kconfig
create mode 100644 arch/mips/loongson/Makefile
create mode 100644 arch/mips/loongson/common/Makefile
create mode 100644 arch/mips/loongson/common/bonito-irq.c
create mode 100644 arch/mips/loongson/common/cmdline.c
create mode 100644 arch/mips/loongson/common/early_printk.c
create mode 100644 arch/mips/loongson/common/env.c
create mode 100644 arch/mips/loongson/common/init.c
create mode 100644 arch/mips/loongson/common/irq.c
create mode 100644 arch/mips/loongson/common/machtype.c
create mode 100644 arch/mips/loongson/common/mem.c
create mode 100644 arch/mips/loongson/common/pci.c
create mode 100644 arch/mips/loongson/common/reset.c
create mode 100644 arch/mips/loongson/common/setup.c
create mode 100644 arch/mips/loongson/common/time.c
create mode 100644 arch/mips/loongson/fuloong-2e/Makefile
create mode 100644 arch/mips/loongson/fuloong-2e/irq.c
create mode 100644 arch/mips/loongson/fuloong-2e/reset.c
create mode 100644 arch/mips/oprofile/op_model_loongson2.c
create mode 100644 arch/mips/pci/fixup-fuloong2e.c
delete mode 100644 arch/mips/pci/fixup-lm2e.c
next reply other threads:[~2009-07-02 15:22 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-07-02 15:15 Wu [this message]
2009-07-02 15:18 ` [PATCH v4 01/16] [loongson] eary_printk: Remove existing implementation Wu Zhangjin
2009-07-02 15:19 ` [PATCH v4 02/16] [loongson] kgdb: Remove out-of-date board-specific source code Wu Zhangjin
2009-07-22 20:31 ` Jason Wessel
2009-07-02 15:20 ` [PATCH v4 03/16] [loongson] early_printk: add new implmentation Wu Zhangjin
2009-07-06 10:43 ` Ralf Baechle
2009-07-06 13:57 ` Wu Zhangjin
2009-07-02 15:20 ` [PATCH v4 04/16] [loongson] pm: Remove redundant source code Wu Zhangjin
2009-07-02 15:21 ` [PATCH v4 05/16] [loongson] pm: clean up the reboot support Wu Zhangjin
2009-07-02 15:22 ` [PATCH v4 06/16] [loongson] pci: use existing mips_io_port_base Wu Zhangjin
2009-07-02 15:22 ` [PATCH v4 07/16] [loongson] split the implementation of prom,setup parts Wu Zhangjin
2009-07-02 15:23 ` [PATCH v4 08/16] [loongson] clean up the coding style Wu Zhangjin
2009-07-02 15:23 ` [PATCH v4 09/16] [loongson] pci: clean up pcimap setup Wu Zhangjin
2009-07-02 15:24 ` [PATCH v4 10/16] [loongson] rtc: enable legacy RTC driver on fulong Wu Zhangjin
2009-07-02 15:25 ` [PATCH v4 11/16] [loongson] add oprofile support Wu Zhangjin
2009-07-02 15:26 ` [PATCH v4 12/16] [loongson] change naming methods Wu Zhangjin
2009-07-02 15:26 ` [PATCH v4 13/16] [loongson] split common loongson source code out Wu Zhangjin
2009-07-02 15:27 ` [PATCH v4 14/16] [loongson] add a machtype kernel command line argument Wu Zhangjin
2009-07-02 15:27 ` [PATCH v4 15/16] [loongson] add gcc 4.4 support for Loongson2E Wu Zhangjin
2009-07-02 15:28 ` [PATCH v4 16/16] [loongson] update the default config file for fuloong2e Wu Zhangjin
2010-06-17 10:47 ` [PATCH v4 00/16] Cleanup Lemote FuLoong2e Support Stuart Longland
2010-06-17 10:47 ` Stuart Longland
2010-06-17 11:06 ` Stuart Longland
[not found] ` <AANLkTikaIbsfqoJR6OfOMbhyEWiFil_A22pAs1J_TRIS@mail.gmail.com>
2010-06-18 10:53 ` Stuart Longland
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=cover.1246546684.git.wuzhangjin@gmail.com \
--to=wuzhangjin@gmail.com \
--cc=apatard@mandriva.com \
--cc=erwan@thiscow.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mips@linux-mips.org \
--cc=liujl@lemote.com \
--cc=loongson-dev@googlegroups.com \
--cc=philippe@cowpig.ca \
--cc=r0bertz@gentoo.org \
--cc=ralf@linux-mips.org \
--cc=yanh@lemote.com \
--cc=zhangfx@lemote.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;
as well as URLs for NNTP newsgroup(s).