* my IXP4xx patch queue
@ 2009-11-17 21:03 Krzysztof Halasa
2009-11-18 10:29 ` Uwe Kleine-König
0 siblings, 1 reply; 3+ messages in thread
From: Krzysztof Halasa @ 2009-11-17 21:03 UTC (permalink / raw)
To: linux-arm-kernel
Hi,
I've updated my IXP4xx git tree (it's still being mirrored from hera at
the moment). The usual disclaimer applies: it may be rebased at any
time.
git://git.kernel.org/pub/scm/linux/kernel/git/chris/linux-2.6.git ixp4xx
http://git.kernel.org/?p=linux/kernel/git/chris/linux-2.6.git
It includes (discussed earlier):
28b393 IXP4xx: change the timer base frequency to 66.666000 MHz.
3b739c IXP4xx: Fix normally-disabled debugging text in drivers/net/arm/ixp4xx_eth.c.
b7aa5a ARM: fix insl() and outsl() endianness on IXP4xx architecture.
1f6d89 IXP4xx: Ensure index is positive in irq_to_gpio() and npe_request().
7ea97d IXP4xx: Rename indirect MMIO primitives from __ixp4xx_* to __indirect_*.
78091c ARM: Introduce HAVE_IOREAD_AND_IOWRITE macro.
766853 IXP4xx: Drop "__ixp4xx_" prefix from in/out/ioread/iowrite functions for clarity.
c7c4c8 IXP4xx: Fix compilation failure with CONFIG_IXP4XX_INDIRECT_PCI.
c11693 IXP4xx: Extend PCI MMIO indirect address space to 1 GB.
and my latest stuff with which I'm trying to simplify the IXP4xx code:
072725 IXP4xx: move IXDP425 platform macros to the platform code.
13c284 IXP4xx: move AVILA platform macros to the platform code.
cb1f52 IXP4xx: move Coyote platform macros to the platform code.
cab003 IXP4xx: move NSLU2 platform macros to the platform code.
2abc9f IXP4xx: move NAS100D platform macros to the platform code.
b38cf7 IXP4xx: move DSM G600 platform macros to the platform code.
cd2939 IXP4xx: move FSG platform macros to the platform code.
b764f5 IXP4xx: Remove unused Motorola PrPMC1100 platform macros.
d09273 IXP4xx: move Gemtek GTWX5715 platform macros to the platform
code.
I'm not sure I like this one very much:
e13d20 IXP4xx: Introduce IXP4XX_GPIO_IRQ(n) macro and convert IXP4xx platform files.
Comments welcome as always.
I'll git-send-email the latest stuff now. No In-Reply-To:/References
since I think the mailserver will hold/drop any mail lacking "Re: "
with these headers.
arch/arm/include/asm/io.h | 2 +-
arch/arm/mach-ixp2000/include/mach/io.h | 2 +
These 2 changes are parts of the HAVE_IOREAD_AND_IOWRITE patch.
arch/arm/mach-ixp4xx/Kconfig | 22 +-
arch/arm/mach-ixp4xx/avila-pci.c | 42 ++--
arch/arm/mach-ixp4xx/avila-setup.c | 4 +-
arch/arm/mach-ixp4xx/common-pci.c | 6 +-
arch/arm/mach-ixp4xx/common.c | 2 +-
arch/arm/mach-ixp4xx/coyote-pci.c | 22 +-
arch/arm/mach-ixp4xx/coyote-setup.c | 9 +
arch/arm/mach-ixp4xx/dsmg600-pci.c | 46 +++--
arch/arm/mach-ixp4xx/dsmg600-setup.c | 17 ++
arch/arm/mach-ixp4xx/fsg-pci.c | 31 ++-
arch/arm/mach-ixp4xx/fsg-setup.c | 8 +-
arch/arm/mach-ixp4xx/goramo_mlr.c | 45 ++--
arch/arm/mach-ixp4xx/gtwx5715-pci.c | 46 ++--
arch/arm/mach-ixp4xx/gtwx5715-setup.c | 30 +++-
arch/arm/mach-ixp4xx/include/mach/avila.h | 39 ----
arch/arm/mach-ixp4xx/include/mach/coyote.h | 33 ---
arch/arm/mach-ixp4xx/include/mach/dsmg600.h | 52 -----
arch/arm/mach-ixp4xx/include/mach/fsg.h | 50 -----
arch/arm/mach-ixp4xx/include/mach/gpio.h | 2 +-
arch/arm/mach-ixp4xx/include/mach/gtwx5715.h | 116 ----------
arch/arm/mach-ixp4xx/include/mach/hardware.h | 18 +-
arch/arm/mach-ixp4xx/include/mach/io.h | 292 ++++++++++---------------
arch/arm/mach-ixp4xx/include/mach/irqs.h | 69 +------
arch/arm/mach-ixp4xx/include/mach/ixdp425.h | 39 ----
arch/arm/mach-ixp4xx/include/mach/nas100d.h | 52 -----
arch/arm/mach-ixp4xx/include/mach/npe.h | 2 +-
arch/arm/mach-ixp4xx/include/mach/nslu2.h | 55 -----
arch/arm/mach-ixp4xx/include/mach/prpmc1100.h | 33 ---
arch/arm/mach-ixp4xx/include/mach/timex.h | 2 +-
arch/arm/mach-ixp4xx/ixdp425-pci.c | 43 ++--
arch/arm/mach-ixp4xx/ixdp425-setup.c | 12 +-
arch/arm/mach-ixp4xx/ixp4xx_npe.c | 2 +-
arch/arm/mach-ixp4xx/nas100d-pci.c | 41 ++--
arch/arm/mach-ixp4xx/nas100d-setup.c | 16 ++-
arch/arm/mach-ixp4xx/nslu2-pci.c | 35 ++--
arch/arm/mach-ixp4xx/nslu2-setup.c | 21 ++-
drivers/leds/leds-fsg.c | 7 +
drivers/net/arm/ixp4xx_eth.c | 2 +-
40 files changed, 460 insertions(+), 907 deletions(-)
--
Krzysztof Halasa
^ permalink raw reply [flat|nested] 3+ messages in thread
* my IXP4xx patch queue
2009-11-17 21:03 my IXP4xx patch queue Krzysztof Halasa
@ 2009-11-18 10:29 ` Uwe Kleine-König
2009-11-18 16:51 ` Krzysztof Halasa
0 siblings, 1 reply; 3+ messages in thread
From: Uwe Kleine-König @ 2009-11-18 10:29 UTC (permalink / raw)
To: linux-arm-kernel
Hello,
On Tue, Nov 17, 2009 at 10:03:06PM +0100, Krzysztof Halasa wrote:
> Hi,
>
> I've updated my IXP4xx git tree (it's still being mirrored from hera at
> the moment). The usual disclaimer applies: it may be rebased at any
> time.
>
> git://git.kernel.org/pub/scm/linux/kernel/git/chris/linux-2.6.git ixp4xx
> http://git.kernel.org/?p=linux/kernel/git/chris/linux-2.6.git
>
> It includes (discussed earlier):
>
> 28b393 IXP4xx: change the timer base frequency to 66.666000 MHz.
> 3b739c IXP4xx: Fix normally-disabled debugging text in drivers/net/arm/ixp4xx_eth.c.
> b7aa5a ARM: fix insl() and outsl() endianness on IXP4xx architecture.
> 1f6d89 IXP4xx: Ensure index is positive in irq_to_gpio() and npe_request().
> 7ea97d IXP4xx: Rename indirect MMIO primitives from __ixp4xx_* to __indirect_*.
> 78091c ARM: Introduce HAVE_IOREAD_AND_IOWRITE macro.
> 766853 IXP4xx: Drop "__ixp4xx_" prefix from in/out/ioread/iowrite functions for clarity.
> c7c4c8 IXP4xx: Fix compilation failure with CONFIG_IXP4XX_INDIRECT_PCI.
> c11693 IXP4xx: Extend PCI MMIO indirect address space to 1 GB.
>
> and my latest stuff with which I'm trying to simplify the IXP4xx code:
>
> 072725 IXP4xx: move IXDP425 platform macros to the platform code.
> 13c284 IXP4xx: move AVILA platform macros to the platform code.
> cb1f52 IXP4xx: move Coyote platform macros to the platform code.
> cab003 IXP4xx: move NSLU2 platform macros to the platform code.
> 2abc9f IXP4xx: move NAS100D platform macros to the platform code.
> b38cf7 IXP4xx: move DSM G600 platform macros to the platform code.
> cd2939 IXP4xx: move FSG platform macros to the platform code.
> b764f5 IXP4xx: Remove unused Motorola PrPMC1100 platform macros.
> d09273 IXP4xx: move Gemtek GTWX5715 platform macros to the platform
> code.
>
> I'm not sure I like this one very much:
>
> e13d20 IXP4xx: Introduce IXP4XX_GPIO_IRQ(n) macro and convert IXP4xx platform files.
>
>
> Comments welcome as always.
>
> I'll git-send-email the latest stuff now. No In-Reply-To:/References
> since I think the mailserver will hold/drop any mail lacking "Re: "
> with these headers.
AFAIK this is not true if your headers match
/^X-Mailer: git-send-email/ .
My last series took 13 minutes on infradead.org machines and I didn't
get any bounces about being moderated and the mails don't have headers
suggesting that they were manually accepted.
Best regards
Uwe
--
Pengutronix e.K. | Uwe Kleine-K?nig |
Industrial Linux Solutions | http://www.pengutronix.de/ |
^ permalink raw reply [flat|nested] 3+ messages in thread
* my IXP4xx patch queue
2009-11-18 10:29 ` Uwe Kleine-König
@ 2009-11-18 16:51 ` Krzysztof Halasa
0 siblings, 0 replies; 3+ messages in thread
From: Krzysztof Halasa @ 2009-11-18 16:51 UTC (permalink / raw)
To: linux-arm-kernel
Uwe Kleine-K?nig <u.kleine-koenig@pengutronix.de> writes:
>> I'll git-send-email the latest stuff now. No In-Reply-To:/References
>> since I think the mailserver will hold/drop any mail lacking "Re: "
>> with these headers.
> AFAIK this is not true if your headers match
> /^X-Mailer: git-send-email/ .
>
> My last series took 13 minutes on infradead.org machines and I didn't
> get any bounces about being moderated and the mails don't have headers
> suggesting that they were manually accepted.
Ahh, I didn't know about that, thanks for info.
--
Krzysztof Halasa
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-11-18 16:51 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-17 21:03 my IXP4xx patch queue Krzysztof Halasa
2009-11-18 10:29 ` Uwe Kleine-König
2009-11-18 16:51 ` Krzysztof Halasa
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).