diff options
Diffstat (limited to 'arch/arm/mach-pxa')
| -rw-r--r-- | arch/arm/mach-pxa/Kconfig | 2 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/corgi.c | 1 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/include/mach/hardware.h | 9 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/include/mach/mfp-pxa25x.h | 6 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/include/mach/zylonite.h | 7 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/irq.c | 14 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/littleton.c | 6 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/magician.c | 2 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/palmld.c | 2 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/palmt5.c | 2 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/palmtc.c | 2 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/palmte2.c | 2 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/palmtreo.c | 2 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/palmtx.c | 2 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/palmz72.c | 2 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/poodle.c | 2 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/spitz.c | 4 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/viper.c | 2 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/zeus.c | 36 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/zylonite.c | 87 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/zylonite_pxa300.c | 12 | ||||
| -rw-r--r-- | arch/arm/mach-pxa/zylonite_pxa320.c | 4 |
22 files changed, 87 insertions, 121 deletions
diff --git a/arch/arm/mach-pxa/Kconfig b/arch/arm/mach-pxa/Kconfig index 8a0837ea0294..dee92182749b 100644 --- a/arch/arm/mach-pxa/Kconfig +++ b/arch/arm/mach-pxa/Kconfig | |||
| @@ -37,6 +37,8 @@ config MACH_ZYLONITE320 | |||
| 37 | config MACH_LITTLETON | 37 | config MACH_LITTLETON |
| 38 | bool "PXA3xx Form Factor Platform (aka Littleton)" | 38 | bool "PXA3xx Form Factor Platform (aka Littleton)" |
| 39 | select PXA3xx | 39 | select PXA3xx |
| 40 | select CPU_PXA300 | ||
| 41 | select CPU_PXA310 | ||
| 40 | select PXA_SSP | 42 | select PXA_SSP |
| 41 | 43 | ||
| 42 | config MACH_TAVOREVB | 44 | config MACH_TAVOREVB |
diff --git a/arch/arm/mach-pxa/corgi.c b/arch/arm/mach-pxa/corgi.c index 74446cf8ae69..da3156d8690b 100644 --- a/arch/arm/mach-pxa/corgi.c +++ b/arch/arm/mach-pxa/corgi.c | |||
| @@ -457,6 +457,7 @@ static struct pxaficp_platform_data corgi_ficp_platform_data = { | |||
| 457 | * USB Device Controller | 457 | * USB Device Controller |
| 458 | */ | 458 | */ |
| 459 | static struct pxa2xx_udc_mach_info udc_info __initdata = { | 459 | static struct pxa2xx_udc_mach_info udc_info __initdata = { |
| 460 | .gpio_vbus = -1, | ||
| 460 | /* no connect GPIO; corgi can't tell connection status */ | 461 | /* no connect GPIO; corgi can't tell connection status */ |
| 461 | .gpio_pullup = CORGI_GPIO_USB_PULLUP, | 462 | .gpio_pullup = CORGI_GPIO_USB_PULLUP, |
| 462 | }; | 463 | }; |
diff --git a/arch/arm/mach-pxa/include/mach/hardware.h b/arch/arm/mach-pxa/include/mach/hardware.h index 50f1297bf5ac..e741bf1bfb2d 100644 --- a/arch/arm/mach-pxa/include/mach/hardware.h +++ b/arch/arm/mach-pxa/include/mach/hardware.h | |||
| @@ -250,20 +250,17 @@ | |||
| 250 | 250 | ||
| 251 | #define cpu_is_pxa930() \ | 251 | #define cpu_is_pxa930() \ |
| 252 | ({ \ | 252 | ({ \ |
| 253 | unsigned int id = read_cpuid(CPUID_ID); \ | 253 | __cpu_is_pxa930(read_cpuid_id()); \ |
| 254 | __cpu_is_pxa930(id); \ | ||
| 255 | }) | 254 | }) |
| 256 | 255 | ||
| 257 | #define cpu_is_pxa935() \ | 256 | #define cpu_is_pxa935() \ |
| 258 | ({ \ | 257 | ({ \ |
| 259 | unsigned int id = read_cpuid(CPUID_ID); \ | 258 | __cpu_is_pxa935(read_cpuid_id()); \ |
| 260 | __cpu_is_pxa935(id); \ | ||
| 261 | }) | 259 | }) |
| 262 | 260 | ||
| 263 | #define cpu_is_pxa950() \ | 261 | #define cpu_is_pxa950() \ |
| 264 | ({ \ | 262 | ({ \ |
| 265 | unsigned int id = read_cpuid(CPUID_ID); \ | 263 | __cpu_is_pxa950(read_cpuid_id()); \ |
| 266 | __cpu_is_pxa950(id); \ | ||
| 267 | }) | 264 | }) |
| 268 | 265 | ||
| 269 | 266 | ||
diff --git a/arch/arm/mach-pxa/include/mach/mfp-pxa25x.h b/arch/arm/mach-pxa/include/mach/mfp-pxa25x.h index b13dc0269a6d..9c787855cf24 100644 --- a/arch/arm/mach-pxa/include/mach/mfp-pxa25x.h +++ b/arch/arm/mach-pxa/include/mach/mfp-pxa25x.h | |||
| @@ -169,7 +169,6 @@ | |||
| 169 | #define GPIO86_nSDCS2 MFP_CFG_OUT(GPIO86, AF0, DRIVE_HIGH) | 169 | #define GPIO86_nSDCS2 MFP_CFG_OUT(GPIO86, AF0, DRIVE_HIGH) |
| 170 | #define GPIO87_nSDCS3 MFP_CFG_OUT(GPIO87, AF0, DRIVE_HIGH) | 170 | #define GPIO87_nSDCS3 MFP_CFG_OUT(GPIO87, AF0, DRIVE_HIGH) |
| 171 | #define GPIO88_RDnWR MFP_CFG_OUT(GPIO88, AF0, DRIVE_HIGH) | 171 | #define GPIO88_RDnWR MFP_CFG_OUT(GPIO88, AF0, DRIVE_HIGH) |
| 172 | #define GPIO89_nACRESET MFP_CFG_OUT(GPIO89, AF0, DRIVE_HIGH) | ||
| 173 | 172 | ||
| 174 | /* USB */ | 173 | /* USB */ |
| 175 | #define GPIO9_USB_RCV MFP_CFG_IN(GPIO9, AF1) | 174 | #define GPIO9_USB_RCV MFP_CFG_IN(GPIO9, AF1) |
| @@ -186,6 +185,9 @@ | |||
| 186 | #define GPIO30_ASSP_TXD MFP_CFG_OUT(GPIO30, AF3, DRIVE_LOW) | 185 | #define GPIO30_ASSP_TXD MFP_CFG_OUT(GPIO30, AF3, DRIVE_LOW) |
| 187 | #define GPIO31_ASSP_SFRM_IN MFP_CFG_IN(GPIO31, AF1) | 186 | #define GPIO31_ASSP_SFRM_IN MFP_CFG_IN(GPIO31, AF1) |
| 188 | #define GPIO31_ASSP_SFRM_OUT MFP_CFG_OUT(GPIO31, AF3, DRIVE_LOW) | 187 | #define GPIO31_ASSP_SFRM_OUT MFP_CFG_OUT(GPIO31, AF3, DRIVE_LOW) |
| 189 | #endif | 188 | |
| 189 | /* AC97 */ | ||
| 190 | #define GPIO89_AC97_nRESET MFP_CFG_OUT(GPIO89, AF0, DRIVE_HIGH) | ||
| 191 | #endif /* CONFIG_CPU_PXA26x */ | ||
| 190 | 192 | ||
| 191 | #endif /* __ASM_ARCH_MFP_PXA25X_H */ | 193 | #endif /* __ASM_ARCH_MFP_PXA25X_H */ |
diff --git a/arch/arm/mach-pxa/include/mach/zylonite.h b/arch/arm/mach-pxa/include/mach/zylonite.h index bf6785adccf4..9edf645368d6 100644 --- a/arch/arm/mach-pxa/include/mach/zylonite.h +++ b/arch/arm/mach-pxa/include/mach/zylonite.h | |||
| @@ -8,13 +8,6 @@ | |||
| 8 | /* the following variables are processor specific and initialized | 8 | /* the following variables are processor specific and initialized |
| 9 | * by the corresponding zylonite_pxa3xx_init() | 9 | * by the corresponding zylonite_pxa3xx_init() |
| 10 | */ | 10 | */ |
| 11 | struct platform_mmc_slot { | ||
| 12 | int gpio_cd; | ||
| 13 | int gpio_wp; | ||
| 14 | }; | ||
| 15 | |||
| 16 | extern struct platform_mmc_slot zylonite_mmc_slot[]; | ||
| 17 | |||
| 18 | extern int gpio_eth_irq; | 11 | extern int gpio_eth_irq; |
| 19 | extern int gpio_debug_led1; | 12 | extern int gpio_debug_led1; |
| 20 | extern int gpio_debug_led2; | 13 | extern int gpio_debug_led2; |
diff --git a/arch/arm/mach-pxa/irq.c b/arch/arm/mach-pxa/irq.c index 6112af431fa4..1beb40f692fc 100644 --- a/arch/arm/mach-pxa/irq.c +++ b/arch/arm/mach-pxa/irq.c | |||
| @@ -164,8 +164,11 @@ static int pxa_irq_suspend(struct sys_device *dev, pm_message_t state) | |||
| 164 | saved_icmr[i] = _ICMR(irq); | 164 | saved_icmr[i] = _ICMR(irq); |
| 165 | _ICMR(irq) = 0; | 165 | _ICMR(irq) = 0; |
| 166 | } | 166 | } |
| 167 | for (i = 0; i < pxa_internal_irq_nr; i++) | 167 | |
| 168 | saved_ipr[i] = IPR(i); | 168 | if (cpu_is_pxa27x() || cpu_is_pxa3xx()) { |
| 169 | for (i = 0; i < pxa_internal_irq_nr; i++) | ||
| 170 | saved_ipr[i] = IPR(i); | ||
| 171 | } | ||
| 169 | 172 | ||
| 170 | return 0; | 173 | return 0; |
| 171 | } | 174 | } |
| @@ -174,12 +177,15 @@ static int pxa_irq_resume(struct sys_device *dev) | |||
| 174 | { | 177 | { |
| 175 | int i, irq = PXA_IRQ(0); | 178 | int i, irq = PXA_IRQ(0); |
| 176 | 179 | ||
| 180 | if (cpu_is_pxa27x() || cpu_is_pxa3xx()) { | ||
| 181 | for (i = 0; i < pxa_internal_irq_nr; i++) | ||
| 182 | IPR(i) = saved_ipr[i]; | ||
| 183 | } | ||
| 184 | |||
| 177 | for (i = 0; irq < PXA_IRQ(pxa_internal_irq_nr); i++, irq += 32) { | 185 | for (i = 0; irq < PXA_IRQ(pxa_internal_irq_nr); i++, irq += 32) { |
| 178 | _ICMR(irq) = saved_icmr[i]; | 186 | _ICMR(irq) = saved_icmr[i]; |
| 179 | _ICLR(irq) = 0; | 187 | _ICLR(irq) = 0; |
| 180 | } | 188 | } |
| 181 | for (i = 0; i < pxa_internal_irq_nr; i++) | ||
| 182 | IPR(i) = saved_ipr[i]; | ||
| 183 | 189 | ||
| 184 | ICCR = 1; | 190 | ICCR = 1; |
| 185 | return 0; | 191 | return 0; |
diff --git a/arch/arm/mach-pxa/littleton.c b/arch/arm/mach-pxa/littleton.c index f28c1715b910..fa527b258d61 100644 --- a/arch/arm/mach-pxa/littleton.c +++ b/arch/arm/mach-pxa/littleton.c | |||
| @@ -110,6 +110,12 @@ static mfp_cfg_t littleton_mfp_cfg[] __initdata = { | |||
| 110 | GPIO7_MMC1_CLK, | 110 | GPIO7_MMC1_CLK, |
| 111 | GPIO8_MMC1_CMD, | 111 | GPIO8_MMC1_CMD, |
| 112 | GPIO15_GPIO, /* card detect */ | 112 | GPIO15_GPIO, /* card detect */ |
| 113 | |||
| 114 | /* UART3 */ | ||
| 115 | GPIO107_UART3_CTS, | ||
| 116 | GPIO108_UART3_RTS, | ||
| 117 | GPIO109_UART3_TXD, | ||
| 118 | GPIO110_UART3_RXD, | ||
| 113 | }; | 119 | }; |
| 114 | 120 | ||
| 115 | static struct resource smc91x_resources[] = { | 121 | static struct resource smc91x_resources[] = { |
diff --git a/arch/arm/mach-pxa/magician.c b/arch/arm/mach-pxa/magician.c index 8a38d604dc77..189f330719a2 100644 --- a/arch/arm/mach-pxa/magician.c +++ b/arch/arm/mach-pxa/magician.c | |||
| @@ -381,7 +381,7 @@ err: | |||
| 381 | return ret; | 381 | return ret; |
| 382 | } | 382 | } |
| 383 | 383 | ||
| 384 | static int magician_backlight_notify(int brightness) | 384 | static int magician_backlight_notify(struct device *dev, int brightness) |
| 385 | { | 385 | { |
| 386 | gpio_set_value(EGPIO_MAGICIAN_BL_POWER, brightness); | 386 | gpio_set_value(EGPIO_MAGICIAN_BL_POWER, brightness); |
| 387 | if (brightness >= 200) { | 387 | if (brightness >= 200) { |
diff --git a/arch/arm/mach-pxa/palmld.c b/arch/arm/mach-pxa/palmld.c index 59140217890a..e100af78b166 100644 --- a/arch/arm/mach-pxa/palmld.c +++ b/arch/arm/mach-pxa/palmld.c | |||
| @@ -270,7 +270,7 @@ err: | |||
| 270 | return ret; | 270 | return ret; |
| 271 | } | 271 | } |
| 272 | 272 | ||
| 273 | static int palmld_backlight_notify(int brightness) | 273 | static int palmld_backlight_notify(struct device *dev, int brightness) |
| 274 | { | 274 | { |
| 275 | gpio_set_value(GPIO_NR_PALMLD_BL_POWER, brightness); | 275 | gpio_set_value(GPIO_NR_PALMLD_BL_POWER, brightness); |
| 276 | gpio_set_value(GPIO_NR_PALMLD_LCD_POWER, brightness); | 276 | gpio_set_value(GPIO_NR_PALMLD_LCD_POWER, brightness); |
diff --git a/arch/arm/mach-pxa/palmt5.c b/arch/arm/mach-pxa/palmt5.c index 7f89ca20f13a..8fe3ec27568f 100644 --- a/arch/arm/mach-pxa/palmt5.c +++ b/arch/arm/mach-pxa/palmt5.c | |||
| @@ -209,7 +209,7 @@ err: | |||
| 209 | return ret; | 209 | return ret; |
| 210 | } | 210 | } |
| 211 | 211 | ||
| 212 | static int palmt5_backlight_notify(int brightness) | 212 | static int palmt5_backlight_notify(struct device *dev, int brightness) |
| 213 | { | 213 | { |
| 214 | gpio_set_value(GPIO_NR_PALMT5_BL_POWER, brightness); | 214 | gpio_set_value(GPIO_NR_PALMT5_BL_POWER, brightness); |
| 215 | gpio_set_value(GPIO_NR_PALMT5_LCD_POWER, brightness); | 215 | gpio_set_value(GPIO_NR_PALMT5_LCD_POWER, brightness); |
diff --git a/arch/arm/mach-pxa/palmtc.c b/arch/arm/mach-pxa/palmtc.c index 308417592007..b992f07ece21 100644 --- a/arch/arm/mach-pxa/palmtc.c +++ b/arch/arm/mach-pxa/palmtc.c | |||
| @@ -185,7 +185,7 @@ err: | |||
| 185 | return ret; | 185 | return ret; |
| 186 | } | 186 | } |
| 187 | 187 | ||
| 188 | static int palmtc_backlight_notify(int brightness) | 188 | static int palmtc_backlight_notify(struct device *dev, int brightness) |
| 189 | { | 189 | { |
| 190 | /* backlight is on when GPIO16 AF0 is high */ | 190 | /* backlight is on when GPIO16 AF0 is high */ |
| 191 | gpio_set_value(GPIO_NR_PALMTC_BL_POWER, brightness); | 191 | gpio_set_value(GPIO_NR_PALMTC_BL_POWER, brightness); |
diff --git a/arch/arm/mach-pxa/palmte2.c b/arch/arm/mach-pxa/palmte2.c index 265d62bae7de..dc728d6ab94e 100644 --- a/arch/arm/mach-pxa/palmte2.c +++ b/arch/arm/mach-pxa/palmte2.c | |||
| @@ -181,7 +181,7 @@ err: | |||
| 181 | return ret; | 181 | return ret; |
| 182 | } | 182 | } |
| 183 | 183 | ||
| 184 | static int palmte2_backlight_notify(int brightness) | 184 | static int palmte2_backlight_notify(struct device *dev, int brightness) |
| 185 | { | 185 | { |
| 186 | gpio_set_value(GPIO_NR_PALMTE2_BL_POWER, brightness); | 186 | gpio_set_value(GPIO_NR_PALMTE2_BL_POWER, brightness); |
| 187 | gpio_set_value(GPIO_NR_PALMTE2_LCD_POWER, brightness); | 187 | gpio_set_value(GPIO_NR_PALMTE2_LCD_POWER, brightness); |
diff --git a/arch/arm/mach-pxa/palmtreo.c b/arch/arm/mach-pxa/palmtreo.c index 606eb7e8a17e..b433bb496711 100644 --- a/arch/arm/mach-pxa/palmtreo.c +++ b/arch/arm/mach-pxa/palmtreo.c | |||
| @@ -375,7 +375,7 @@ err: | |||
| 375 | return ret; | 375 | return ret; |
| 376 | } | 376 | } |
| 377 | 377 | ||
| 378 | static int treo_backlight_notify(int brightness) | 378 | static int treo_backlight_notify(struct device *dev, int brightness) |
| 379 | { | 379 | { |
| 380 | gpio_set_value(GPIO_NR_TREO_BL_POWER, brightness); | 380 | gpio_set_value(GPIO_NR_TREO_BL_POWER, brightness); |
| 381 | return TREO_MAX_INTENSITY - brightness; | 381 | return TREO_MAX_INTENSITY - brightness; |
diff --git a/arch/arm/mach-pxa/palmtx.c b/arch/arm/mach-pxa/palmtx.c index 7bf18c2f002f..b37a025c0b7b 100644 --- a/arch/arm/mach-pxa/palmtx.c +++ b/arch/arm/mach-pxa/palmtx.c | |||
| @@ -269,7 +269,7 @@ err: | |||
| 269 | return ret; | 269 | return ret; |
| 270 | } | 270 | } |
| 271 | 271 | ||
| 272 | static int palmtx_backlight_notify(int brightness) | 272 | static int palmtx_backlight_notify(struct device *dev, int brightness) |
| 273 | { | 273 | { |
| 274 | gpio_set_value(GPIO_NR_PALMTX_BL_POWER, brightness); | 274 | gpio_set_value(GPIO_NR_PALMTX_BL_POWER, brightness); |
| 275 | gpio_set_value(GPIO_NR_PALMTX_LCD_POWER, brightness); | 275 | gpio_set_value(GPIO_NR_PALMTX_LCD_POWER, brightness); |
diff --git a/arch/arm/mach-pxa/palmz72.c b/arch/arm/mach-pxa/palmz72.c index d787ac7cfdd8..1c5d68a94511 100644 --- a/arch/arm/mach-pxa/palmz72.c +++ b/arch/arm/mach-pxa/palmz72.c | |||
| @@ -196,7 +196,7 @@ err: | |||
| 196 | return ret; | 196 | return ret; |
| 197 | } | 197 | } |
| 198 | 198 | ||
| 199 | static int palmz72_backlight_notify(int brightness) | 199 | static int palmz72_backlight_notify(struct device *dev, int brightness) |
| 200 | { | 200 | { |
| 201 | gpio_set_value(GPIO_NR_PALMZ72_BL_POWER, brightness); | 201 | gpio_set_value(GPIO_NR_PALMZ72_BL_POWER, brightness); |
| 202 | gpio_set_value(GPIO_NR_PALMZ72_LCD_POWER, brightness); | 202 | gpio_set_value(GPIO_NR_PALMZ72_LCD_POWER, brightness); |
diff --git a/arch/arm/mach-pxa/poodle.c b/arch/arm/mach-pxa/poodle.c index e5eeb3a62d01..c2b938a4d5c9 100644 --- a/arch/arm/mach-pxa/poodle.c +++ b/arch/arm/mach-pxa/poodle.c | |||
| @@ -293,7 +293,7 @@ static struct pxamci_platform_data poodle_mci_platform_data = { | |||
| 293 | .init = poodle_mci_init, | 293 | .init = poodle_mci_init, |
| 294 | .setpower = poodle_mci_setpower, | 294 | .setpower = poodle_mci_setpower, |
| 295 | .exit = poodle_mci_exit, | 295 | .exit = poodle_mci_exit, |
| 296 | .gpio_card_detect = POODLE_IRQ_GPIO_nSD_DETECT, | 296 | .gpio_card_detect = POODLE_GPIO_nSD_DETECT, |
| 297 | .gpio_card_ro = POODLE_GPIO_nSD_WP, | 297 | .gpio_card_ro = POODLE_GPIO_nSD_WP, |
| 298 | .gpio_power = -1, | 298 | .gpio_power = -1, |
| 299 | }; | 299 | }; |
diff --git a/arch/arm/mach-pxa/spitz.c b/arch/arm/mach-pxa/spitz.c index 4b50f144fa48..28352c0b8c34 100644 --- a/arch/arm/mach-pxa/spitz.c +++ b/arch/arm/mach-pxa/spitz.c | |||
| @@ -389,13 +389,13 @@ static struct gpio_keys_button spitz_gpio_keys[] = { | |||
| 389 | .type = EV_SW, | 389 | .type = EV_SW, |
| 390 | .code = 0, | 390 | .code = 0, |
| 391 | .gpio = SPITZ_GPIO_SWA, | 391 | .gpio = SPITZ_GPIO_SWA, |
| 392 | .desc = "Display Down", | 392 | .desc = "Display Down", |
| 393 | }, | 393 | }, |
| 394 | { | 394 | { |
| 395 | .type = EV_SW, | 395 | .type = EV_SW, |
| 396 | .code = 1, | 396 | .code = 1, |
| 397 | .gpio = SPITZ_GPIO_SWB, | 397 | .gpio = SPITZ_GPIO_SWB, |
| 398 | .desc = "Lid Closed", | 398 | .desc = "Lid Closed", |
| 399 | }, | 399 | }, |
| 400 | }; | 400 | }; |
| 401 | 401 | ||
diff --git a/arch/arm/mach-pxa/viper.c b/arch/arm/mach-pxa/viper.c index 5352b4e5a7dd..89f258c9e126 100644 --- a/arch/arm/mach-pxa/viper.c +++ b/arch/arm/mach-pxa/viper.c | |||
| @@ -379,7 +379,7 @@ err_request_bckl: | |||
| 379 | return ret; | 379 | return ret; |
| 380 | } | 380 | } |
| 381 | 381 | ||
| 382 | static int viper_backlight_notify(int brightness) | 382 | static int viper_backlight_notify(struct device *dev, int brightness) |
| 383 | { | 383 | { |
| 384 | gpio_set_value(VIPER_LCD_EN_GPIO, !!brightness); | 384 | gpio_set_value(VIPER_LCD_EN_GPIO, !!brightness); |
| 385 | gpio_set_value(VIPER_BCKLIGHT_EN_GPIO, !!brightness); | 385 | gpio_set_value(VIPER_BCKLIGHT_EN_GPIO, !!brightness); |
diff --git a/arch/arm/mach-pxa/zeus.c b/arch/arm/mach-pxa/zeus.c index 5b986a8bd9e6..75f2a37f945d 100644 --- a/arch/arm/mach-pxa/zeus.c +++ b/arch/arm/mach-pxa/zeus.c | |||
| @@ -25,6 +25,7 @@ | |||
| 25 | #include <linux/mtd/physmap.h> | 25 | #include <linux/mtd/physmap.h> |
| 26 | #include <linux/i2c.h> | 26 | #include <linux/i2c.h> |
| 27 | #include <linux/i2c/pca953x.h> | 27 | #include <linux/i2c/pca953x.h> |
| 28 | #include <linux/apm-emulation.h> | ||
| 28 | 29 | ||
| 29 | #include <asm/mach-types.h> | 30 | #include <asm/mach-types.h> |
| 30 | #include <asm/mach/arch.h> | 31 | #include <asm/mach/arch.h> |
| @@ -626,8 +627,27 @@ static void zeus_power_off(void) | |||
| 626 | pxa27x_cpu_suspend(PWRMODE_DEEPSLEEP); | 627 | pxa27x_cpu_suspend(PWRMODE_DEEPSLEEP); |
| 627 | } | 628 | } |
| 628 | 629 | ||
| 629 | int zeus_get_pcb_info(struct i2c_client *client, unsigned gpio, | 630 | #ifdef CONFIG_APM_EMULATION |
| 630 | unsigned ngpio, void *context) | 631 | static void zeus_get_power_status(struct apm_power_info *info) |
| 632 | { | ||
| 633 | /* Power supply is always present */ | ||
| 634 | info->ac_line_status = APM_AC_ONLINE; | ||
| 635 | info->battery_status = APM_BATTERY_STATUS_NOT_PRESENT; | ||
| 636 | info->battery_flag = APM_BATTERY_FLAG_NOT_PRESENT; | ||
| 637 | } | ||
| 638 | |||
| 639 | static inline void zeus_setup_apm(void) | ||
| 640 | { | ||
| 641 | apm_get_power_status = zeus_get_power_status; | ||
| 642 | } | ||
| 643 | #else | ||
| 644 | static inline void zeus_setup_apm(void) | ||
| 645 | { | ||
| 646 | } | ||
| 647 | #endif | ||
| 648 | |||
| 649 | static int zeus_get_pcb_info(struct i2c_client *client, unsigned gpio, | ||
| 650 | unsigned ngpio, void *context) | ||
| 631 | { | 651 | { |
| 632 | int i; | 652 | int i; |
| 633 | u8 pcb_info = 0; | 653 | u8 pcb_info = 0; |
| @@ -726,9 +746,18 @@ static mfp_cfg_t zeus_pin_config[] __initdata = { | |||
| 726 | GPIO99_GPIO, /* CF RDY */ | 746 | GPIO99_GPIO, /* CF RDY */ |
| 727 | }; | 747 | }; |
| 728 | 748 | ||
| 749 | /* | ||
| 750 | * DM9k MSCx settings: SRAM, 16 bits | ||
| 751 | * 17 cycles delay first access | ||
| 752 | * 5 cycles delay next access | ||
| 753 | * 13 cycles recovery time | ||
| 754 | * faster device | ||
| 755 | */ | ||
| 756 | #define DM9K_MSC_VALUE 0xe4c9 | ||
| 757 | |||
| 729 | static void __init zeus_init(void) | 758 | static void __init zeus_init(void) |
| 730 | { | 759 | { |
| 731 | u16 dm9000_msc = 0xe279; | 760 | u16 dm9000_msc = DM9K_MSC_VALUE; |
| 732 | 761 | ||
| 733 | system_rev = __raw_readw(ZEUS_CPLD_VERSION); | 762 | system_rev = __raw_readw(ZEUS_CPLD_VERSION); |
| 734 | pr_info("Zeus CPLD V%dI%d\n", (system_rev & 0xf0) >> 4, (system_rev & 0x0f)); | 763 | pr_info("Zeus CPLD V%dI%d\n", (system_rev & 0xf0) >> 4, (system_rev & 0x0f)); |
| @@ -738,6 +767,7 @@ static void __init zeus_init(void) | |||
| 738 | MSC1 = (MSC1 & 0xffff0000) | dm9000_msc; | 767 | MSC1 = (MSC1 & 0xffff0000) | dm9000_msc; |
| 739 | 768 | ||
| 740 | pm_power_off = zeus_power_off; | 769 | pm_power_off = zeus_power_off; |
| 770 | zeus_setup_apm(); | ||
| 741 | 771 | ||
| 742 | pxa2xx_mfp_config(ARRAY_AND_SIZE(zeus_pin_config)); | 772 | pxa2xx_mfp_config(ARRAY_AND_SIZE(zeus_pin_config)); |
| 743 | 773 | ||
diff --git a/arch/arm/mach-pxa/zylonite.c b/arch/arm/mach-pxa/zylonite.c index b66e9e2d06e7..2b4043c04d0c 100644 --- a/arch/arm/mach-pxa/zylonite.c +++ b/arch/arm/mach-pxa/zylonite.c | |||
| @@ -36,9 +36,6 @@ | |||
| 36 | #include "devices.h" | 36 | #include "devices.h" |
| 37 | #include "generic.h" | 37 | #include "generic.h" |
| 38 | 38 | ||
| 39 | #define MAX_SLOTS 3 | ||
| 40 | struct platform_mmc_slot zylonite_mmc_slot[MAX_SLOTS]; | ||
| 41 | |||
| 42 | int gpio_eth_irq; | 39 | int gpio_eth_irq; |
| 43 | int gpio_debug_led1; | 40 | int gpio_debug_led1; |
| 44 | int gpio_debug_led2; | 41 | int gpio_debug_led2; |
| @@ -220,84 +217,28 @@ static inline void zylonite_init_lcd(void) {} | |||
| 220 | #endif | 217 | #endif |
| 221 | 218 | ||
| 222 | #if defined(CONFIG_MMC) | 219 | #if defined(CONFIG_MMC) |
| 223 | static int zylonite_mci_ro(struct device *dev) | ||
| 224 | { | ||
| 225 | struct platform_device *pdev = to_platform_device(dev); | ||
| 226 | |||
| 227 | return gpio_get_value(zylonite_mmc_slot[pdev->id].gpio_wp); | ||
| 228 | } | ||
| 229 | |||
| 230 | static int zylonite_mci_init(struct device *dev, | ||
| 231 | irq_handler_t zylonite_detect_int, | ||
| 232 | void *data) | ||
| 233 | { | ||
| 234 | struct platform_device *pdev = to_platform_device(dev); | ||
| 235 | int err, cd_irq, gpio_cd, gpio_wp; | ||
| 236 | |||
| 237 | cd_irq = gpio_to_irq(zylonite_mmc_slot[pdev->id].gpio_cd); | ||
| 238 | gpio_cd = zylonite_mmc_slot[pdev->id].gpio_cd; | ||
| 239 | gpio_wp = zylonite_mmc_slot[pdev->id].gpio_wp; | ||
| 240 | |||
| 241 | /* | ||
| 242 | * setup GPIO for Zylonite MMC controller | ||
| 243 | */ | ||
| 244 | err = gpio_request(gpio_cd, "mmc card detect"); | ||
| 245 | if (err) | ||
| 246 | goto err_request_cd; | ||
| 247 | gpio_direction_input(gpio_cd); | ||
| 248 | |||
| 249 | err = gpio_request(gpio_wp, "mmc write protect"); | ||
| 250 | if (err) | ||
| 251 | goto err_request_wp; | ||
| 252 | gpio_direction_input(gpio_wp); | ||
| 253 | |||
| 254 | err = request_irq(cd_irq, zylonite_detect_int, | ||
| 255 | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, | ||
| 256 | "MMC card detect", data); | ||
| 257 | if (err) { | ||
| 258 | printk(KERN_ERR "%s: MMC/SD/SDIO: " | ||
| 259 | "can't request card detect IRQ\n", __func__); | ||
| 260 | goto err_request_irq; | ||
| 261 | } | ||
| 262 | |||
| 263 | return 0; | ||
| 264 | |||
| 265 | err_request_irq: | ||
| 266 | gpio_free(gpio_wp); | ||
| 267 | err_request_wp: | ||
| 268 | gpio_free(gpio_cd); | ||
| 269 | err_request_cd: | ||
| 270 | return err; | ||
| 271 | } | ||
| 272 | |||
| 273 | static void zylonite_mci_exit(struct device *dev, void *data) | ||
| 274 | { | ||
| 275 | struct platform_device *pdev = to_platform_device(dev); | ||
| 276 | int cd_irq, gpio_cd, gpio_wp; | ||
| 277 | |||
| 278 | cd_irq = gpio_to_irq(zylonite_mmc_slot[pdev->id].gpio_cd); | ||
| 279 | gpio_cd = zylonite_mmc_slot[pdev->id].gpio_cd; | ||
| 280 | gpio_wp = zylonite_mmc_slot[pdev->id].gpio_wp; | ||
| 281 | |||
| 282 | free_irq(cd_irq, data); | ||
| 283 | gpio_free(gpio_cd); | ||
| 284 | gpio_free(gpio_wp); | ||
| 285 | } | ||
| 286 | |||
| 287 | static struct pxamci_platform_data zylonite_mci_platform_data = { | 220 | static struct pxamci_platform_data zylonite_mci_platform_data = { |
| 288 | .detect_delay = 20, | 221 | .detect_delay = 20, |
| 289 | .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34, | 222 | .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34, |
| 290 | .init = zylonite_mci_init, | 223 | .gpio_card_detect = EXT_GPIO(0), |
| 291 | .exit = zylonite_mci_exit, | 224 | .gpio_card_ro = EXT_GPIO(2), |
| 292 | .get_ro = zylonite_mci_ro, | ||
| 293 | .gpio_card_detect = -1, | ||
| 294 | .gpio_card_ro = -1, | ||
| 295 | .gpio_power = -1, | 225 | .gpio_power = -1, |
| 296 | }; | 226 | }; |
| 297 | 227 | ||
| 298 | static struct pxamci_platform_data zylonite_mci2_platform_data = { | 228 | static struct pxamci_platform_data zylonite_mci2_platform_data = { |
| 299 | .detect_delay = 20, | 229 | .detect_delay = 20, |
| 300 | .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34, | 230 | .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34, |
| 231 | .gpio_card_detect = EXT_GPIO(1), | ||
| 232 | .gpio_card_ro = EXT_GPIO(3), | ||
| 233 | .gpio_power = -1, | ||
| 234 | }; | ||
| 235 | |||
| 236 | static struct pxamci_platform_data zylonite_mci3_platform_data = { | ||
| 237 | .detect_delay = 20, | ||
| 238 | .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34, | ||
| 239 | .gpio_card_detect = EXT_GPIO(30), | ||
| 240 | .gpio_card_ro = EXT_GPIO(31), | ||
| 241 | .gpio_power = -1, | ||
| 301 | }; | 242 | }; |
| 302 | 243 | ||
| 303 | static void __init zylonite_init_mmc(void) | 244 | static void __init zylonite_init_mmc(void) |
| @@ -305,7 +246,7 @@ static void __init zylonite_init_mmc(void) | |||
| 305 | pxa_set_mci_info(&zylonite_mci_platform_data); | 246 | pxa_set_mci_info(&zylonite_mci_platform_data); |
| 306 | pxa3xx_set_mci2_info(&zylonite_mci2_platform_data); | 247 | pxa3xx_set_mci2_info(&zylonite_mci2_platform_data); |
| 307 | if (cpu_is_pxa310()) | 248 | if (cpu_is_pxa310()) |
| 308 | pxa3xx_set_mci3_info(&zylonite_mci_platform_data); | 249 | pxa3xx_set_mci3_info(&zylonite_mci3_platform_data); |
| 309 | } | 250 | } |
| 310 | #else | 251 | #else |
| 311 | static inline void zylonite_init_mmc(void) {} | 252 | static inline void zylonite_init_mmc(void) {} |
diff --git a/arch/arm/mach-pxa/zylonite_pxa300.c b/arch/arm/mach-pxa/zylonite_pxa300.c index 84095440a878..3aa73b3e33f2 100644 --- a/arch/arm/mach-pxa/zylonite_pxa300.c +++ b/arch/arm/mach-pxa/zylonite_pxa300.c | |||
| @@ -129,8 +129,8 @@ static mfp_cfg_t common_mfp_cfg[] __initdata = { | |||
| 129 | GPIO22_I2C_SDA, | 129 | GPIO22_I2C_SDA, |
| 130 | 130 | ||
| 131 | /* GPIO */ | 131 | /* GPIO */ |
| 132 | GPIO18_GPIO, /* GPIO Expander #0 INT_N */ | 132 | GPIO18_GPIO | MFP_PULL_HIGH, /* GPIO Expander #0 INT_N */ |
| 133 | GPIO19_GPIO, /* GPIO Expander #1 INT_N */ | 133 | GPIO19_GPIO | MFP_PULL_HIGH, /* GPIO Expander #1 INT_N */ |
| 134 | }; | 134 | }; |
| 135 | 135 | ||
| 136 | static mfp_cfg_t pxa300_mfp_cfg[] __initdata = { | 136 | static mfp_cfg_t pxa300_mfp_cfg[] __initdata = { |
| @@ -258,10 +258,6 @@ void __init zylonite_pxa300_init(void) | |||
| 258 | /* detect LCD panel */ | 258 | /* detect LCD panel */ |
| 259 | zylonite_detect_lcd_panel(); | 259 | zylonite_detect_lcd_panel(); |
| 260 | 260 | ||
| 261 | /* MMC card detect & write protect for controller 0 */ | ||
| 262 | zylonite_mmc_slot[0].gpio_cd = EXT_GPIO(0); | ||
| 263 | zylonite_mmc_slot[0].gpio_wp = EXT_GPIO(2); | ||
| 264 | |||
| 265 | /* WM9713 IRQ */ | 261 | /* WM9713 IRQ */ |
| 266 | wm9713_irq = mfp_to_gpio(MFP_PIN_GPIO26); | 262 | wm9713_irq = mfp_to_gpio(MFP_PIN_GPIO26); |
| 267 | 263 | ||
| @@ -276,10 +272,6 @@ void __init zylonite_pxa300_init(void) | |||
| 276 | if (cpu_is_pxa310()) { | 272 | if (cpu_is_pxa310()) { |
| 277 | pxa3xx_mfp_config(ARRAY_AND_SIZE(pxa310_mfp_cfg)); | 273 | pxa3xx_mfp_config(ARRAY_AND_SIZE(pxa310_mfp_cfg)); |
| 278 | gpio_eth_irq = mfp_to_gpio(MFP_PIN_GPIO102); | 274 | gpio_eth_irq = mfp_to_gpio(MFP_PIN_GPIO102); |
| 279 | |||
| 280 | /* MMC card detect & write protect for controller 2 */ | ||
| 281 | zylonite_mmc_slot[2].gpio_cd = EXT_GPIO(30); | ||
| 282 | zylonite_mmc_slot[2].gpio_wp = EXT_GPIO(31); | ||
| 283 | } | 275 | } |
| 284 | 276 | ||
| 285 | /* GPIOs for Debug LEDs */ | 277 | /* GPIOs for Debug LEDs */ |
diff --git a/arch/arm/mach-pxa/zylonite_pxa320.c b/arch/arm/mach-pxa/zylonite_pxa320.c index 60d08f23f5e4..9942bac4cf7d 100644 --- a/arch/arm/mach-pxa/zylonite_pxa320.c +++ b/arch/arm/mach-pxa/zylonite_pxa320.c | |||
| @@ -209,10 +209,6 @@ void __init zylonite_pxa320_init(void) | |||
| 209 | gpio_debug_led1 = mfp_to_gpio(MFP_PIN_GPIO1_2); | 209 | gpio_debug_led1 = mfp_to_gpio(MFP_PIN_GPIO1_2); |
| 210 | gpio_debug_led2 = mfp_to_gpio(MFP_PIN_GPIO4_2); | 210 | gpio_debug_led2 = mfp_to_gpio(MFP_PIN_GPIO4_2); |
| 211 | 211 | ||
| 212 | /* MMC card detect & write protect for controller 0 */ | ||
| 213 | zylonite_mmc_slot[0].gpio_cd = mfp_to_gpio(MFP_PIN_GPIO1); | ||
| 214 | zylonite_mmc_slot[0].gpio_wp = mfp_to_gpio(MFP_PIN_GPIO5); | ||
| 215 | |||
| 216 | /* WM9713 IRQ */ | 212 | /* WM9713 IRQ */ |
| 217 | wm9713_irq = mfp_to_gpio(MFP_PIN_GPIO15); | 213 | wm9713_irq = mfp_to_gpio(MFP_PIN_GPIO15); |
| 218 | } | 214 | } |
