soc_common and irq handling

2009-10-22 Thread Martin Fuzzey
I am currently working on pcmcia/cf support for freescale mxc. I started from the Freescale MX31 code (although my hardware is MX21 - its quite similar and I hope to make a generic driver). The Freescale code basically includes a (slightly modified) private copy of soc_common. I am attempting to

[RFC PATCH 2/2] MXC: add pcmcia support

2009-10-27 Thread Martin Fuzzey
Signed-off-by: Martin Fuzzey mfuz...@gmail.com --- arch/arm/mach-mx2/clock_imx21.c |1 arch/arm/mach-mx2/clock_imx27.c |1 arch/arm/mach-mx2/devices.c | 21 + arch/arm/mach-mx2/devices.h |1 arch/arm/mach-mx3/clock.c |1 drivers/pcmcia/Kconfig

[PATCH 3/3] PCMCIA: Add support for freescale MX2/3 SoCs

2010-02-20 Thread Martin Fuzzey
Signed-off-by: Martin Fuzzey mfuz...@gmail.com --- drivers/pcmcia/Kconfig |7 drivers/pcmcia/Makefile |1 drivers/pcmcia/mxc_pcmcia.c | 710 +++ 3 files changed, 718 insertions(+), 0 deletions(-) create mode 100644 drivers/pcmcia

[PATCH 1/3] PCMCIA: Add soc_common support for banked SoC drivers.

2010-02-20 Thread Martin Fuzzey
Some SoCs (like freescale MXC) require configuring a device register to set the bank mapped into the memory window. Also allow interrupt flags to be configured (to support shared interrupts). Signed-off-by: Martin Fuzzey mfuz...@gmail.com --- drivers/pcmcia/soc_common.c | 21