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