From: Daniel Schwierzeck <daniel.schwierzeck@googlemail.com>
To: John Crispin <blogic@openwrt.org>
Cc: Ralf Baechle <ralf@linux-mips.org>,
Ralph Hempel <ralph.hempel@lantiq.com>,
linux-mips@linux-mips.org
Subject: Re: [PATCH 00/10] MIPS: add support for Lantiq SoCs
Date: Tue, 11 Jan 2011 03:44:07 +0100 [thread overview]
Message-ID: <4D2BC3F7.3080006@gmail.com> (raw)
In-Reply-To: <1294257379-417-1-git-send-email-blogic@openwrt.org>
Hi John,
after the 2.6.36 release i've started the same upstream project. I'm
hacking software for CPE's with Danube and VRX SoC's thus I have full
access to hardware manuals and latest BSP's. Maybe we should merge our
code somehow ;)
Daniel
On 01/05/2011 08:56 PM, John Crispin wrote:
> This series will add support for the Lantiq/XWAY family of SoCs.
>
> Cc: Ralph Hempel<ralph.hempel@lantiq.com>
> Cc: linux-mips@linux-mips.org
>
> John Crispin (10):
> MIPS: lantiq: add initial support for Lantiq SoCs
> MIPS: lantiq: add SoC specific code for XWAY family
> MIPS: lantiq: add PCI controller support.
> MIPS: lantiq: add serial port support
> MIPS: lantiq: add watchdog support
> MIPS: lantiq: add NOR flash support
> MIPS: lantiq: add NOR flash CFI address swizzle
> MIPS: lantiq: add platform device support
> MIPS: lantiq: add mips_machine support
> MIPS: lantiq: add machtypes for lantiq eval kits
>
> arch/mips/Kbuild.platforms | 1 +
> arch/mips/Kconfig | 18 +
> arch/mips/include/asm/mach-lantiq/lantiq.h | 48 ++
> .../mips/include/asm/mach-lantiq/lantiq_platform.h | 25 +
> arch/mips/include/asm/mach-lantiq/war.h | 24 +
> arch/mips/include/asm/mach-lantiq/xway/irq.h | 18 +
> .../mips/include/asm/mach-lantiq/xway/lantiq_irq.h | 62 ++
> .../mips/include/asm/mach-lantiq/xway/lantiq_soc.h | 119 +++
> arch/mips/lantiq/Kconfig | 23 +
> arch/mips/lantiq/Makefile | 11 +
> arch/mips/lantiq/Platform | 8 +
> arch/mips/lantiq/clk.c | 129 ++++
> arch/mips/lantiq/clk.h | 18 +
> arch/mips/lantiq/devices.c | 127 ++++
> arch/mips/lantiq/devices.h | 20 +
> arch/mips/lantiq/early_printk.c | 47 ++
> arch/mips/lantiq/irq.c | 209 ++++++
> arch/mips/lantiq/machtypes.h | 20 +
> arch/mips/lantiq/prom.c | 84 +++
> arch/mips/lantiq/prom.h | 26 +
> arch/mips/lantiq/setup.c | 70 ++
> arch/mips/lantiq/xway/Kconfig | 25 +
> arch/mips/lantiq/xway/Makefile | 7 +
> arch/mips/lantiq/xway/clk-ase.c | 53 ++
> arch/mips/lantiq/xway/clk-xway.c | 221 ++++++
> arch/mips/lantiq/xway/devices.c | 55 ++
> arch/mips/lantiq/xway/devices.h | 16 +
> arch/mips/lantiq/xway/gpio.c | 205 ++++++
> arch/mips/lantiq/xway/mach-easy50601.c | 70 ++
> arch/mips/lantiq/xway/mach-easy50712.c | 70 ++
> arch/mips/lantiq/xway/pmu.c | 36 +
> arch/mips/lantiq/xway/prom-ase.c | 41 +
> arch/mips/lantiq/xway/prom-xway.c | 56 ++
> arch/mips/lantiq/xway/reset.c | 53 ++
> arch/mips/pci/Makefile | 1 +
> arch/mips/pci/ops-lantiq.c | 118 +++
> arch/mips/pci/pci-lantiq.c | 286 ++++++++
> arch/mips/pci/pci-lantiq.h | 18 +
> drivers/mtd/chips/Kconfig | 9 +
> drivers/mtd/chips/cfi_cmdset_0002.c | 8 +
> drivers/mtd/maps/Kconfig | 7 +
> drivers/mtd/maps/Makefile | 1 +
> drivers/mtd/maps/lantiq.c | 169 +++++
> drivers/serial/Kconfig | 8 +
> drivers/serial/Makefile | 1 +
> drivers/serial/lantiq.c | 774 ++++++++++++++++++++
> drivers/watchdog/Kconfig | 6 +
> drivers/watchdog/Makefile | 1 +
> drivers/watchdog/lantiq_wdt.c | 208 ++++++
> 49 files changed, 3630 insertions(+), 0 deletions(-)
> create mode 100644 arch/mips/include/asm/mach-lantiq/lantiq.h
> create mode 100644 arch/mips/include/asm/mach-lantiq/lantiq_platform.h
> create mode 100644 arch/mips/include/asm/mach-lantiq/war.h
> create mode 100644 arch/mips/include/asm/mach-lantiq/xway/irq.h
> create mode 100644 arch/mips/include/asm/mach-lantiq/xway/lantiq_irq.h
> create mode 100644 arch/mips/include/asm/mach-lantiq/xway/lantiq_soc.h
> create mode 100644 arch/mips/lantiq/Kconfig
> create mode 100644 arch/mips/lantiq/Makefile
> create mode 100644 arch/mips/lantiq/Platform
> create mode 100644 arch/mips/lantiq/clk.c
> create mode 100644 arch/mips/lantiq/clk.h
> create mode 100644 arch/mips/lantiq/devices.c
> create mode 100644 arch/mips/lantiq/devices.h
> create mode 100644 arch/mips/lantiq/early_printk.c
> create mode 100644 arch/mips/lantiq/irq.c
> create mode 100644 arch/mips/lantiq/machtypes.h
> create mode 100644 arch/mips/lantiq/prom.c
> create mode 100644 arch/mips/lantiq/prom.h
> create mode 100644 arch/mips/lantiq/setup.c
> create mode 100644 arch/mips/lantiq/xway/Kconfig
> create mode 100644 arch/mips/lantiq/xway/Makefile
> create mode 100644 arch/mips/lantiq/xway/clk-ase.c
> create mode 100644 arch/mips/lantiq/xway/clk-xway.c
> create mode 100644 arch/mips/lantiq/xway/devices.c
> create mode 100644 arch/mips/lantiq/xway/devices.h
> create mode 100644 arch/mips/lantiq/xway/gpio.c
> create mode 100644 arch/mips/lantiq/xway/mach-easy50601.c
> create mode 100644 arch/mips/lantiq/xway/mach-easy50712.c
> create mode 100644 arch/mips/lantiq/xway/pmu.c
> create mode 100644 arch/mips/lantiq/xway/prom-ase.c
> create mode 100644 arch/mips/lantiq/xway/prom-xway.c
> create mode 100644 arch/mips/lantiq/xway/reset.c
> create mode 100644 arch/mips/pci/ops-lantiq.c
> create mode 100644 arch/mips/pci/pci-lantiq.c
> create mode 100644 arch/mips/pci/pci-lantiq.h
> create mode 100644 drivers/mtd/maps/lantiq.c
> create mode 100644 drivers/serial/lantiq.c
> create mode 100644 drivers/watchdog/lantiq_wdt.c
>
next prev parent reply other threads:[~2011-01-11 2:44 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-05 19:56 [PATCH 00/10] MIPS: add support for Lantiq SoCs John Crispin
2011-01-05 19:56 ` [PATCH 01/10] MIPS: lantiq: add initial " John Crispin
2011-01-05 20:25 ` Geert Uytterhoeven
2011-01-13 11:05 ` Daniel Schwierzeck
2011-01-13 11:14 ` John Crispin
2011-01-13 12:47 ` Daniel Schwierzeck
2011-01-13 15:03 ` John Crispin
2011-01-05 19:56 ` [PATCH 02/10] MIPS: lantiq: add SoC specific code for XWAY family John Crispin
2011-01-05 19:56 ` [PATCH 03/10] MIPS: lantiq: add PCI controller support John Crispin
2011-01-05 19:56 ` [PATCH 04/10] MIPS: lantiq: add serial port support John Crispin
2011-01-05 19:56 ` [PATCH 05/10] MIPS: lantiq: add watchdog support John Crispin
2011-01-05 23:49 ` Jamie Iles
2011-01-06 9:51 ` John Crispin
2011-01-06 11:15 ` Jamie Iles
2011-01-06 11:38 ` John Crispin
2011-01-05 19:56 ` [PATCH 06/10] MIPS: lantiq: add NOR flash support John Crispin
2011-01-11 2:59 ` Daniel Schwierzeck
2011-01-11 10:29 ` John Crispin
2011-01-05 19:56 ` [PATCH 07/10] MIPS: lantiq: add NOR flash CFI address swizzle John Crispin
2011-01-06 10:06 ` John Crispin
2011-01-05 19:56 ` [PATCH 08/10] MIPS: lantiq: add platform device support John Crispin
2011-01-05 19:56 ` [PATCH 09/10] MIPS: lantiq: add mips_machine support John Crispin
2011-01-05 19:56 ` [PATCH 10/10] MIPS: lantiq: add machtypes for lantiq eval kits John Crispin
2011-01-11 2:44 ` Daniel Schwierzeck [this message]
2011-01-11 12:07 ` [PATCH 00/10] MIPS: add support for Lantiq SoCs John Crispin
2011-01-11 12:40 ` Daniel Schwierzeck
2011-01-11 12:49 ` John Crispin
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=4D2BC3F7.3080006@gmail.com \
--to=daniel.schwierzeck@googlemail.com \
--cc=blogic@openwrt.org \
--cc=linux-mips@linux-mips.org \
--cc=ralf@linux-mips.org \
--cc=ralph.hempel@lantiq.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