Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Support for Sharp SL-C7xx PDAs |
| 3 | * Models: SL-C700 (Corgi), SL-C750 (Shepherd), SL-C760 (Husky) |
| 4 | * |
| 5 | * Copyright (c) 2004-2005 Richard Purdie |
| 6 | * |
| 7 | * Based on Sharp's 2.4 kernel patches/lubbock.c |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License version 2 as |
| 11 | * published by the Free Software Foundation. |
| 12 | * |
| 13 | */ |
| 14 | |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/init.h> |
| 17 | #include <linux/device.h> |
| 18 | #include <linux/major.h> |
| 19 | #include <linux/fs.h> |
| 20 | #include <linux/interrupt.h> |
| 21 | #include <linux/mmc/host.h> |
| 22 | |
| 23 | #include <asm/setup.h> |
| 24 | #include <asm/memory.h> |
| 25 | #include <asm/mach-types.h> |
| 26 | #include <asm/hardware.h> |
| 27 | #include <asm/irq.h> |
| 28 | #include <asm/io.h> |
| 29 | |
| 30 | #include <asm/mach/arch.h> |
| 31 | #include <asm/mach/map.h> |
| 32 | #include <asm/mach/irq.h> |
| 33 | |
| 34 | #include <asm/arch/pxa-regs.h> |
| 35 | #include <asm/arch/irq.h> |
Richard Purdie | ca1140b | 2005-10-30 14:38:53 +0000 | [diff] [blame^] | 36 | #include <asm/arch/irda.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <asm/arch/mmc.h> |
| 38 | #include <asm/arch/udc.h> |
| 39 | #include <asm/arch/corgi.h> |
Richard Purdie | 1036260 | 2005-10-10 10:17:45 +0100 | [diff] [blame] | 40 | #include <asm/arch/sharpsl.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
| 42 | #include <asm/mach/sharpsl_param.h> |
| 43 | #include <asm/hardware/scoop.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
| 45 | #include "generic.h" |
Richard Purdie | 50a5de4 | 2005-09-13 01:25:30 -0700 | [diff] [blame] | 46 | #include "sharpsl.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
| 48 | |
| 49 | /* |
| 50 | * Corgi SCOOP Device |
| 51 | */ |
| 52 | static struct resource corgi_scoop_resources[] = { |
| 53 | [0] = { |
| 54 | .start = 0x10800000, |
| 55 | .end = 0x10800fff, |
| 56 | .flags = IORESOURCE_MEM, |
| 57 | }, |
| 58 | }; |
| 59 | |
| 60 | static struct scoop_config corgi_scoop_setup = { |
| 61 | .io_dir = CORGI_SCOOP_IO_DIR, |
| 62 | .io_out = CORGI_SCOOP_IO_OUT, |
| 63 | }; |
| 64 | |
Richard Purdie | 0ce7625 | 2005-09-05 20:49:54 +0100 | [diff] [blame] | 65 | static struct scoop_pcmcia_dev corgi_pcmcia_scoop[] = { |
| 66 | { |
| 67 | .dev = &corgiscoop_device.dev, |
| 68 | .irq = CORGI_IRQ_GPIO_CF_IRQ, |
| 69 | .cd_irq = CORGI_IRQ_GPIO_CF_CD, |
| 70 | .cd_irq_str = "PCMCIA0 CD", |
| 71 | }, |
| 72 | }; |
| 73 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | struct platform_device corgiscoop_device = { |
| 75 | .name = "sharp-scoop", |
| 76 | .id = -1, |
| 77 | .dev = { |
| 78 | .platform_data = &corgi_scoop_setup, |
| 79 | }, |
| 80 | .num_resources = ARRAY_SIZE(corgi_scoop_resources), |
| 81 | .resource = corgi_scoop_resources, |
| 82 | }; |
| 83 | |
| 84 | |
| 85 | /* |
| 86 | * Corgi SSP Device |
| 87 | * |
| 88 | * Set the parent as the scoop device because a lot of SSP devices |
| 89 | * also use scoop functions and this makes the power up/down order |
| 90 | * work correctly. |
| 91 | */ |
Richard Purdie | 41b1bce | 2005-09-06 15:19:05 -0700 | [diff] [blame] | 92 | struct platform_device corgissp_device = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | .name = "corgi-ssp", |
| 94 | .dev = { |
| 95 | .parent = &corgiscoop_device.dev, |
| 96 | }, |
| 97 | .id = -1, |
| 98 | }; |
| 99 | |
Richard Purdie | 50a5de4 | 2005-09-13 01:25:30 -0700 | [diff] [blame] | 100 | struct corgissp_machinfo corgi_ssp_machinfo = { |
| 101 | .port = 1, |
| 102 | .cs_lcdcon = CORGI_GPIO_LCDCON_CS, |
| 103 | .cs_ads7846 = CORGI_GPIO_ADS7846_CS, |
| 104 | .cs_max1111 = CORGI_GPIO_MAX1111_CS, |
| 105 | .clk_lcdcon = 76, |
| 106 | .clk_ads7846 = 2, |
| 107 | .clk_max1111 = 8, |
| 108 | }; |
| 109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
| 111 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | * Corgi Backlight Device |
| 113 | */ |
Richard Purdie | 1351e6e | 2005-09-13 01:25:33 -0700 | [diff] [blame] | 114 | static struct corgibl_machinfo corgi_bl_machinfo = { |
| 115 | .max_intensity = 0x2f, |
| 116 | .set_bl_intensity = corgi_bl_set_intensity, |
| 117 | }; |
| 118 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 119 | static struct platform_device corgibl_device = { |
| 120 | .name = "corgi-bl", |
| 121 | .dev = { |
| 122 | .parent = &corgifb_device.dev, |
Richard Purdie | 1351e6e | 2005-09-13 01:25:33 -0700 | [diff] [blame] | 123 | .platform_data = &corgi_bl_machinfo, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | }, |
| 125 | .id = -1, |
| 126 | }; |
| 127 | |
| 128 | |
| 129 | /* |
Richard Purdie | f7ceff3 | 2005-09-06 15:19:07 -0700 | [diff] [blame] | 130 | * Corgi Keyboard Device |
| 131 | */ |
| 132 | static struct platform_device corgikbd_device = { |
| 133 | .name = "corgi-keyboard", |
| 134 | .id = -1, |
| 135 | }; |
| 136 | |
| 137 | |
| 138 | /* |
| 139 | * Corgi Touch Screen Device |
| 140 | */ |
Richard Purdie | 513b6e1 | 2005-09-13 01:25:33 -0700 | [diff] [blame] | 141 | static struct resource corgits_resources[] = { |
| 142 | [0] = { |
| 143 | .start = CORGI_IRQ_GPIO_TP_INT, |
| 144 | .end = CORGI_IRQ_GPIO_TP_INT, |
| 145 | .flags = IORESOURCE_IRQ, |
| 146 | }, |
| 147 | }; |
| 148 | |
| 149 | static struct corgits_machinfo corgi_ts_machinfo = { |
| 150 | .get_hsync_len = corgi_get_hsync_len, |
| 151 | .put_hsync = corgi_put_hsync, |
| 152 | .wait_hsync = corgi_wait_hsync, |
| 153 | }; |
| 154 | |
Richard Purdie | f7ceff3 | 2005-09-06 15:19:07 -0700 | [diff] [blame] | 155 | static struct platform_device corgits_device = { |
| 156 | .name = "corgi-ts", |
| 157 | .dev = { |
| 158 | .parent = &corgissp_device.dev, |
Richard Purdie | 513b6e1 | 2005-09-13 01:25:33 -0700 | [diff] [blame] | 159 | .platform_data = &corgi_ts_machinfo, |
Richard Purdie | f7ceff3 | 2005-09-06 15:19:07 -0700 | [diff] [blame] | 160 | }, |
| 161 | .id = -1, |
Richard Purdie | 513b6e1 | 2005-09-13 01:25:33 -0700 | [diff] [blame] | 162 | .num_resources = ARRAY_SIZE(corgits_resources), |
| 163 | .resource = corgits_resources, |
Richard Purdie | f7ceff3 | 2005-09-06 15:19:07 -0700 | [diff] [blame] | 164 | }; |
| 165 | |
| 166 | |
| 167 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | * MMC/SD Device |
| 169 | * |
Richard Purdie | aa6c2e7 | 2005-09-09 18:54:03 +0100 | [diff] [blame] | 170 | * The card detect interrupt isn't debounced so we delay it by 250ms |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | * to give the card a chance to fully insert/eject. |
| 172 | */ |
Richard Purdie | aa6c2e7 | 2005-09-09 18:54:03 +0100 | [diff] [blame] | 173 | static struct pxamci_platform_data corgi_mci_platform_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | |
Richard Purdie | aa6c2e7 | 2005-09-09 18:54:03 +0100 | [diff] [blame] | 175 | static int corgi_mci_init(struct device *dev, irqreturn_t (*corgi_detect_int)(int, void *, struct pt_regs *), void *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | { |
| 177 | int err; |
| 178 | |
| 179 | /* setup GPIO for PXA25x MMC controller */ |
| 180 | pxa_gpio_mode(GPIO6_MMCCLK_MD); |
| 181 | pxa_gpio_mode(GPIO8_MMCCS0_MD); |
| 182 | pxa_gpio_mode(CORGI_GPIO_nSD_DETECT | GPIO_IN); |
| 183 | pxa_gpio_mode(CORGI_GPIO_SD_PWR | GPIO_OUT); |
| 184 | |
Richard Purdie | aa6c2e7 | 2005-09-09 18:54:03 +0100 | [diff] [blame] | 185 | corgi_mci_platform_data.detect_delay = msecs_to_jiffies(250); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | |
Richard Purdie | aa6c2e7 | 2005-09-09 18:54:03 +0100 | [diff] [blame] | 187 | err = request_irq(CORGI_IRQ_GPIO_nSD_DETECT, corgi_detect_int, SA_INTERRUPT, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | "MMC card detect", data); |
| 189 | if (err) { |
| 190 | printk(KERN_ERR "corgi_mci_init: MMC/SD: can't request MMC card detect IRQ\n"); |
| 191 | return -1; |
| 192 | } |
| 193 | |
| 194 | set_irq_type(CORGI_IRQ_GPIO_nSD_DETECT, IRQT_BOTHEDGE); |
| 195 | |
| 196 | return 0; |
| 197 | } |
| 198 | |
| 199 | static void corgi_mci_setpower(struct device *dev, unsigned int vdd) |
| 200 | { |
| 201 | struct pxamci_platform_data* p_d = dev->platform_data; |
| 202 | |
Richard Purdie | fdce05b | 2005-09-15 14:53:21 +0100 | [diff] [blame] | 203 | if (( 1 << vdd) & p_d->ocr_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | GPSR1 = GPIO_bit(CORGI_GPIO_SD_PWR); |
Richard Purdie | fdce05b | 2005-09-15 14:53:21 +0100 | [diff] [blame] | 205 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | GPCR1 = GPIO_bit(CORGI_GPIO_SD_PWR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | } |
| 208 | |
Richard Purdie | 3870ee8 | 2005-09-06 15:19:07 -0700 | [diff] [blame] | 209 | static int corgi_mci_get_ro(struct device *dev) |
| 210 | { |
| 211 | return GPLR(CORGI_GPIO_nSD_WP) & GPIO_bit(CORGI_GPIO_nSD_WP); |
| 212 | } |
| 213 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | static void corgi_mci_exit(struct device *dev, void *data) |
| 215 | { |
| 216 | free_irq(CORGI_IRQ_GPIO_nSD_DETECT, data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | static struct pxamci_platform_data corgi_mci_platform_data = { |
| 220 | .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34, |
| 221 | .init = corgi_mci_init, |
Richard Purdie | 3870ee8 | 2005-09-06 15:19:07 -0700 | [diff] [blame] | 222 | .get_ro = corgi_mci_get_ro, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | .setpower = corgi_mci_setpower, |
| 224 | .exit = corgi_mci_exit, |
| 225 | }; |
| 226 | |
| 227 | |
Richard Purdie | ca1140b | 2005-10-30 14:38:53 +0000 | [diff] [blame^] | 228 | /* |
| 229 | * Irda |
| 230 | */ |
| 231 | static void corgi_irda_transceiver_mode(struct device *dev, int mode) |
| 232 | { |
| 233 | if (mode & IR_OFF) |
| 234 | GPSR(CORGI_GPIO_IR_ON) = GPIO_bit(CORGI_GPIO_IR_ON); |
| 235 | else |
| 236 | GPCR(CORGI_GPIO_IR_ON) = GPIO_bit(CORGI_GPIO_IR_ON); |
| 237 | } |
| 238 | |
| 239 | static struct pxaficp_platform_data corgi_ficp_platform_data = { |
| 240 | .transceiver_cap = IR_SIRMODE | IR_OFF, |
| 241 | .transceiver_mode = corgi_irda_transceiver_mode, |
| 242 | }; |
| 243 | |
Richard Purdie | f7ceff3 | 2005-09-06 15:19:07 -0700 | [diff] [blame] | 244 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | /* |
| 246 | * USB Device Controller |
| 247 | */ |
| 248 | static void corgi_udc_command(int cmd) |
| 249 | { |
| 250 | switch(cmd) { |
| 251 | case PXA2XX_UDC_CMD_CONNECT: |
| 252 | GPSR(CORGI_GPIO_USB_PULLUP) = GPIO_bit(CORGI_GPIO_USB_PULLUP); |
| 253 | break; |
| 254 | case PXA2XX_UDC_CMD_DISCONNECT: |
| 255 | GPCR(CORGI_GPIO_USB_PULLUP) = GPIO_bit(CORGI_GPIO_USB_PULLUP); |
| 256 | break; |
| 257 | } |
| 258 | } |
| 259 | |
| 260 | static struct pxa2xx_udc_mach_info udc_info __initdata = { |
| 261 | /* no connect GPIO; corgi can't tell connection status */ |
| 262 | .udc_command = corgi_udc_command, |
| 263 | }; |
| 264 | |
| 265 | |
| 266 | static struct platform_device *devices[] __initdata = { |
| 267 | &corgiscoop_device, |
| 268 | &corgissp_device, |
| 269 | &corgifb_device, |
Richard Purdie | f7ceff3 | 2005-09-06 15:19:07 -0700 | [diff] [blame] | 270 | &corgikbd_device, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | &corgibl_device, |
Richard Purdie | f7ceff3 | 2005-09-06 15:19:07 -0700 | [diff] [blame] | 272 | &corgits_device, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | }; |
| 274 | |
| 275 | static void __init corgi_init(void) |
| 276 | { |
Richard Purdie | fdce05b | 2005-09-15 14:53:21 +0100 | [diff] [blame] | 277 | /* setup sleep mode values */ |
| 278 | PWER = 0x00000002; |
| 279 | PFER = 0x00000000; |
| 280 | PRER = 0x00000002; |
| 281 | PGSR0 = 0x0158C000; |
| 282 | PGSR1 = 0x00FF0080; |
| 283 | PGSR2 = 0x0001C004; |
| 284 | /* Stop 3.6MHz and drive HIGH to PCMCIA and CS */ |
| 285 | PCFR |= PCFR_OPDE; |
| 286 | |
Richard Purdie | 50a5de4 | 2005-09-13 01:25:30 -0700 | [diff] [blame] | 287 | corgi_ssp_set_machinfo(&corgi_ssp_machinfo); |
| 288 | |
Richard Purdie | ca1140b | 2005-10-30 14:38:53 +0000 | [diff] [blame^] | 289 | pxa_gpio_mode(CORGI_GPIO_IR_ON | GPIO_OUT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | pxa_gpio_mode(CORGI_GPIO_USB_PULLUP | GPIO_OUT); |
Richard Purdie | 513b6e1 | 2005-09-13 01:25:33 -0700 | [diff] [blame] | 291 | pxa_gpio_mode(CORGI_GPIO_HSYNC | GPIO_IN); |
Richard Purdie | ca1140b | 2005-10-30 14:38:53 +0000 | [diff] [blame^] | 292 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | pxa_set_udc_info(&udc_info); |
| 294 | pxa_set_mci_info(&corgi_mci_platform_data); |
Richard Purdie | ca1140b | 2005-10-30 14:38:53 +0000 | [diff] [blame^] | 295 | pxa_set_ficp_info(&corgi_ficp_platform_data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | |
Richard Purdie | 0ce7625 | 2005-09-05 20:49:54 +0100 | [diff] [blame] | 297 | scoop_num = 1; |
| 298 | scoop_devs = &corgi_pcmcia_scoop[0]; |
| 299 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | platform_add_devices(devices, ARRAY_SIZE(devices)); |
| 301 | } |
| 302 | |
| 303 | static void __init fixup_corgi(struct machine_desc *desc, |
| 304 | struct tag *tags, char **cmdline, struct meminfo *mi) |
| 305 | { |
| 306 | sharpsl_save_param(); |
| 307 | mi->nr_banks=1; |
| 308 | mi->bank[0].start = 0xa0000000; |
| 309 | mi->bank[0].node = 0; |
| 310 | if (machine_is_corgi()) |
| 311 | mi->bank[0].size = (32*1024*1024); |
| 312 | else |
| 313 | mi->bank[0].size = (64*1024*1024); |
| 314 | } |
| 315 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | #ifdef CONFIG_MACH_CORGI |
| 317 | MACHINE_START(CORGI, "SHARP Corgi") |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 318 | .phys_ram = 0xa0000000, |
| 319 | .phys_io = 0x40000000, |
Russell King | 68070bd | 2005-07-04 10:44:34 +0100 | [diff] [blame] | 320 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 321 | .fixup = fixup_corgi, |
Richard Purdie | fdce05b | 2005-09-15 14:53:21 +0100 | [diff] [blame] | 322 | .map_io = pxa_map_io, |
| 323 | .init_irq = pxa_init_irq, |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 324 | .init_machine = corgi_init, |
| 325 | .timer = &pxa_timer, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | MACHINE_END |
| 327 | #endif |
| 328 | |
| 329 | #ifdef CONFIG_MACH_SHEPHERD |
| 330 | MACHINE_START(SHEPHERD, "SHARP Shepherd") |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 331 | .phys_ram = 0xa0000000, |
| 332 | .phys_io = 0x40000000, |
Russell King | 68070bd | 2005-07-04 10:44:34 +0100 | [diff] [blame] | 333 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 334 | .fixup = fixup_corgi, |
Richard Purdie | fdce05b | 2005-09-15 14:53:21 +0100 | [diff] [blame] | 335 | .map_io = pxa_map_io, |
| 336 | .init_irq = pxa_init_irq, |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 337 | .init_machine = corgi_init, |
| 338 | .timer = &pxa_timer, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | MACHINE_END |
| 340 | #endif |
| 341 | |
| 342 | #ifdef CONFIG_MACH_HUSKY |
| 343 | MACHINE_START(HUSKY, "SHARP Husky") |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 344 | .phys_ram = 0xa0000000, |
| 345 | .phys_io = 0x40000000, |
Russell King | 68070bd | 2005-07-04 10:44:34 +0100 | [diff] [blame] | 346 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 347 | .fixup = fixup_corgi, |
Richard Purdie | fdce05b | 2005-09-15 14:53:21 +0100 | [diff] [blame] | 348 | .map_io = pxa_map_io, |
| 349 | .init_irq = pxa_init_irq, |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 350 | .init_machine = corgi_init, |
| 351 | .timer = &pxa_timer, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | MACHINE_END |
| 353 | #endif |
| 354 | |