diff options
author | Olof Johansson <olof@lixom.net> | 2012-09-29 17:29:51 -0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2012-09-29 17:29:51 -0400 |
commit | b6e3b5c2fea9c76617e101cbbc54ed14961f9dee (patch) | |
tree | ce64a0104633228fc32614b72f25557d94403b04 /arch | |
parent | 28901c1fed11dfeab65f640878e85a9b61d311ed (diff) | |
parent | 8e4b97e3b8fd6a7f86bf8b38e7975549f2c48a78 (diff) |
Merge branch 'lpc32xx/core' of git://git.antcom.de/linux-2.6 into next/soc
From Roland Stigge, three more updates to lpc32xx.
* 'lpc32xx/core' of git://git.antcom.de/linux-2.6:
ARM: LPC32xx: Support GPI 28
ARM: LPC32xx: Platform update for devicetree completion of spi-pl022
ARM: LPC32xx: Board cleanup
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-lpc32xx/include/mach/gpio-lpc32xx.h | 2 | ||||
-rw-r--r-- | arch/arm/mach-lpc32xx/phy3250.c | 22 |
2 files changed, 3 insertions, 21 deletions
diff --git a/arch/arm/mach-lpc32xx/include/mach/gpio-lpc32xx.h b/arch/arm/mach-lpc32xx/include/mach/gpio-lpc32xx.h index 1816e22a3479..a544e962a818 100644 --- a/arch/arm/mach-lpc32xx/include/mach/gpio-lpc32xx.h +++ b/arch/arm/mach-lpc32xx/include/mach/gpio-lpc32xx.h | |||
@@ -30,7 +30,7 @@ | |||
30 | #define LPC32XX_GPIO_P1_MAX 24 | 30 | #define LPC32XX_GPIO_P1_MAX 24 |
31 | #define LPC32XX_GPIO_P2_MAX 13 | 31 | #define LPC32XX_GPIO_P2_MAX 13 |
32 | #define LPC32XX_GPIO_P3_MAX 6 | 32 | #define LPC32XX_GPIO_P3_MAX 6 |
33 | #define LPC32XX_GPI_P3_MAX 28 | 33 | #define LPC32XX_GPI_P3_MAX 29 |
34 | #define LPC32XX_GPO_P3_MAX 24 | 34 | #define LPC32XX_GPO_P3_MAX 24 |
35 | 35 | ||
36 | #define LPC32XX_GPIO_P0_GRP 0 | 36 | #define LPC32XX_GPIO_P0_GRP 0 |
diff --git a/arch/arm/mach-lpc32xx/phy3250.c b/arch/arm/mach-lpc32xx/phy3250.c index 8f2a2f8712d7..e8ff4c3f0566 100644 --- a/arch/arm/mach-lpc32xx/phy3250.c +++ b/arch/arm/mach-lpc32xx/phy3250.c | |||
@@ -24,12 +24,9 @@ | |||
24 | #include <linux/irq.h> | 24 | #include <linux/irq.h> |
25 | #include <linux/dma-mapping.h> | 25 | #include <linux/dma-mapping.h> |
26 | #include <linux/device.h> | 26 | #include <linux/device.h> |
27 | #include <linux/spi/spi.h> | ||
28 | #include <linux/spi/eeprom.h> | ||
29 | #include <linux/gpio.h> | 27 | #include <linux/gpio.h> |
30 | #include <linux/amba/bus.h> | 28 | #include <linux/amba/bus.h> |
31 | #include <linux/amba/clcd.h> | 29 | #include <linux/amba/clcd.h> |
32 | #include <linux/amba/pl022.h> | ||
33 | #include <linux/amba/pl08x.h> | 30 | #include <linux/amba/pl08x.h> |
34 | #include <linux/amba/mmci.h> | 31 | #include <linux/amba/mmci.h> |
35 | #include <linux/of.h> | 32 | #include <linux/of.h> |
@@ -158,21 +155,6 @@ static struct clcd_board lpc32xx_clcd_data = { | |||
158 | .remove = lpc32xx_clcd_remove, | 155 | .remove = lpc32xx_clcd_remove, |
159 | }; | 156 | }; |
160 | 157 | ||
161 | /* | ||
162 | * AMBA SSP (SPI) | ||
163 | */ | ||
164 | static struct pl022_ssp_controller lpc32xx_ssp0_data = { | ||
165 | .bus_id = 0, | ||
166 | .num_chipselect = 1, | ||
167 | .enable_dma = 0, | ||
168 | }; | ||
169 | |||
170 | static struct pl022_ssp_controller lpc32xx_ssp1_data = { | ||
171 | .bus_id = 1, | ||
172 | .num_chipselect = 1, | ||
173 | .enable_dma = 0, | ||
174 | }; | ||
175 | |||
176 | static struct pl08x_channel_data pl08x_slave_channels[] = { | 158 | static struct pl08x_channel_data pl08x_slave_channels[] = { |
177 | { | 159 | { |
178 | .bus_id = "nand-slc", | 160 | .bus_id = "nand-slc", |
@@ -234,8 +216,8 @@ static struct lpc32xx_mlc_platform_data lpc32xx_mlc_data = { | |||
234 | }; | 216 | }; |
235 | 217 | ||
236 | static const struct of_dev_auxdata lpc32xx_auxdata_lookup[] __initconst = { | 218 | static const struct of_dev_auxdata lpc32xx_auxdata_lookup[] __initconst = { |
237 | OF_DEV_AUXDATA("arm,pl022", 0x20084000, "dev:ssp0", &lpc32xx_ssp0_data), | 219 | OF_DEV_AUXDATA("arm,pl022", 0x20084000, "dev:ssp0", NULL), |
238 | OF_DEV_AUXDATA("arm,pl022", 0x2008C000, "dev:ssp1", &lpc32xx_ssp1_data), | 220 | OF_DEV_AUXDATA("arm,pl022", 0x2008C000, "dev:ssp1", NULL), |
239 | OF_DEV_AUXDATA("arm,pl110", 0x31040000, "dev:clcd", &lpc32xx_clcd_data), | 221 | OF_DEV_AUXDATA("arm,pl110", 0x31040000, "dev:clcd", &lpc32xx_clcd_data), |
240 | OF_DEV_AUXDATA("arm,pl080", 0x31000000, "pl08xdmac", &pl08x_pd), | 222 | OF_DEV_AUXDATA("arm,pl080", 0x31000000, "pl08xdmac", &pl08x_pd), |
241 | OF_DEV_AUXDATA("arm,pl18x", 0x20098000, "20098000.sd", | 223 | OF_DEV_AUXDATA("arm,pl18x", 0x20098000, "20098000.sd", |