Re: [uClinux-dev] [RFC/PATCH] m68knommu: refactor Coldfire GPIO not to require GPIOLIB, eliminate mcf_gpio_chips.

2012-06-06 Thread Greg Ungerer
Hi Steven, On 06/06/12 00:23, Steven King wrote: On Monday 04 June 2012 11:27:04 pm Greg Ungerer wrote: On 22/05/12 06:10, Steven King wrote: If we're not connecting external GPIO extenders via i2c or spi or whatever, we probably don't need GPIOLIB. If we provide an alternate implementation o

Re: [uClinux-dev] [PATCH] m68knommu: Add support for the Freescale m5253demo board.

2012-06-06 Thread Greg Ungerer
Hi Steven, On 06/06/12 02:48, Steven King wrote: Add basic support for the m5253demo using the dm9000 ethernet controller. This patch is against m68knommu/for-next and is on top of the m5251/5253 patch. Signed-off-by: Steven King --- arch/m68k/Kconfig.machine |7 + arch/m6

Re: [uClinux-dev] [RFC/PATCH] m68knommu: refactor Coldfire GPIO not to require GPIOLIB, eliminate mcf_gpio_chips.

2012-06-06 Thread Steven King
On Wednesday 06 June 2012 12:07:33 am Greg Ungerer wrote: > Hi Steven, > > On 06/06/12 00:23, Steven King wrote: > > On Monday 04 June 2012 11:27:04 pm Greg Ungerer wrote: > >> On 22/05/12 06:10, Steven King wrote: > >>> If we're not connecting external GPIO extenders via i2c or spi or > >>> whatev

[uClinux-dev] [PATCH net-next] fec: Add support for Coldfire M5441x enet-mac.

2012-06-06 Thread Steven King
Add support for the Freescale Coldfire M5441x; as these parts have an enet-mac, add a quirk to distinguish them from the other Coldfire parts so we can use the existing enet-mac support. Signed-off-by: Steven king --- drivers/net/ethernet/freescale/Kconfig |5 ++--- drivers/net/ethernet/fr

Re: [uClinux-dev] [PATCH net-next] fec: Add support for Coldfire M5441x enet-mac.

2012-06-06 Thread Steven King
On Wednesday 06 June 2012 10:34:21 am Jan Ceuleers wrote: > On 06/06/2012 07:06 PM, Steven King wrote: > > Add support for the Freescale Coldfire M5441x; as these parts have an > > enet-mac, add a quirk to distinguish them from the other Coldfire parts > > so we can use the existing enet-mac suppor

[uClinux-dev] [PATCH] m68knommu: use MCF_IRQ_PIT1 instead of MCFINT_VECBASE + MCFINT_PIT1

2012-06-06 Thread Steven King
use MCF_IRQ_PIT1 instead of MCFINT_VECBASE + MCFINT_PIT1 so we can support those parts that have the pit1 interrupt on other than the first interrupt controller. Signed-off-by: Steven King --- arch/m68k/include/asm/m520xsim.h |1 + arch/m68k/include/asm/m523xsim.h |1 + arch/m6

[uClinux-dev] [PATCH] Add support for the Coldfire m5441x.

2012-06-06 Thread Steven King
Add support for the Coldfire 5441x (54410/54415/54416/54417/54418). Currently we only support noMMU mode. It requires the PIT patch posted previously as it uses the PIT instead of the dma timer as a clock source so we can get all that GENERIC_CLOCKEVENTS goodness. It also adds some simple clk de

Re: [uClinux-dev] [RFC/PATCH] m68knommu: refactor Coldfire GPIO not to require GPIOLIB, eliminate mcf_gpio_chips.

2012-06-06 Thread Greg Ungerer
On 07/06/12 00:20, Steven King wrote: On Wednesday 06 June 2012 12:07:33 am Greg Ungerer wrote: Hi Steven, On 06/06/12 00:23, Steven King wrote: On Monday 04 June 2012 11:27:04 pm Greg Ungerer wrote: On 22/05/12 06:10, Steven King wrote: If we're not connecting external GPIO extenders via i2

Re: [uClinux-dev] [PATCH] m68knommu: Add support for the Coldfire 5251/5253

2012-06-06 Thread Greg Ungerer
Hi Steven, On 06/06/12 01:23, Steven King wrote: Basic support for the Coldfire 5251/5253. Signed-off-by: Steven king --- arch/m68k/Kconfig.cpu |8 ++ arch/m68k/Makefile |1 + arch/m68k/include/asm/dma.h |4 +- arch/m68k/includ

Re: [uClinux-dev] [PATCH] coldfire-qspi: Add support for the Coldfire 5251/5253.

2012-06-06 Thread Greg Ungerer
On 06/06/12 02:24, Steven King wrote: The Coldfire 5251/5253 have a QSPI controller. Enable selection of the coldfire-qspi driver if the M525x is selected. Signed-off-by: Steven King --- drivers/spi/Kconfig |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Applied to for-next branch

Re: [uClinux-dev] [PATCH] m68knommu: use MCF_IRQ_PIT1 instead of MCFINT_VECBASE + MCFINT_PIT1

2012-06-06 Thread Greg Ungerer
On 07/06/12 07:02, Steven King wrote: use MCF_IRQ_PIT1 instead of MCFINT_VECBASE + MCFINT_PIT1 so we can support those parts that have the pit1 interrupt on other than the first interrupt controller. Signed-off-by: Steven King Looks good. Applied to for-next branch of m68knommu git tree. Than

Re: [uClinux-dev] [PATCH] m68knommu: Add support for the Freescale m5253demo board.

2012-06-06 Thread Greg Ungerer
Hi Steven, On 06/06/12 02:48, Steven King wrote: Add basic support for the m5253demo using the dm9000 ethernet controller. Is the m5253demo a real board? Or do you mean Freescale's M5253EVB board? If it is really the m5235evb then we should use that name for its files. And generally for a co

Re: [uClinux-dev] [PATCH] m68knommu: Add support for the Coldfire 5251/5253

2012-06-06 Thread Steven King
On Wednesday 06 June 2012 8:26:14 pm Greg Ungerer wrote: > Hi Steven, > > On 06/06/12 01:23, Steven King wrote: > > Basic support for the Coldfire 5251/5253. > > > > Signed-off-by: Steven king > > --- > > arch/m68k/Kconfig.cpu |8 ++ > > arch/m68k/Makefile

Re: [uClinux-dev] [PATCH] m68knommu: Add support for the Freescale m5253demo board.

2012-06-06 Thread Steven King
On Wednesday 06 June 2012 9:04:09 pm Greg Ungerer wrote: > Hi Steven, > > On 06/06/12 02:48, Steven King wrote: > > Add basic support for the m5253demo using the dm9000 ethernet controller. > > Is the m5253demo a real board? > Or do you mean Freescale's M5253EVB board? > > If it is really the m5235