blob: dd54496083cb2d7b89471d53a3e10ec6eb249cff [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/arm/mach-pxa/poodle.c
3 *
4 * Support for the SHARP Poodle Board.
5 *
6 * Based on:
7 * linux/arch/arm/mach-pxa/lubbock.c Author: Nicolas Pitre
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 * Change Log
14 * 12-Dec-2002 Sharp Corporation for Poodle
15 * John Lenz <lenz@cs.wisc.edu> updates to 2.6
16 */
17#include <linux/kernel.h>
18#include <linux/init.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010019#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/fb.h>
Richard Purdie74617fb2006-06-19 19:57:12 +010021#include <linux/pm.h>
Richard Purdie88660352006-06-19 19:58:51 +010022#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#include <asm/hardware.h>
25#include <asm/mach-types.h>
26#include <asm/irq.h>
27#include <asm/setup.h>
Richard Purdie74617fb2006-06-19 19:57:12 +010028#include <asm/system.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
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 Purdie13b9d472005-09-15 14:53:22 +010035#include <asm/arch/mmc.h>
36#include <asm/arch/udc.h>
Richard Purdie8e4b8712005-10-30 14:38:52 +000037#include <asm/arch/irda.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/arch/poodle.h>
39#include <asm/arch/pxafb.h>
Richard Purdiefaed5682006-06-19 20:46:05 +010040#include <asm/arch/sharpsl.h>
41#include <asm/arch/ssp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <asm/hardware/scoop.h>
44#include <asm/hardware/locomo.h>
45#include <asm/mach/sharpsl_param.h>
46
47#include "generic.h"
Russell King46c41e62007-05-15 15:39:36 +010048#include "devices.h"
Richard Purdiefaed5682006-06-19 20:46:05 +010049#include "sharpsl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51static struct resource poodle_scoop_resources[] = {
52 [0] = {
53 .start = 0x10800000,
54 .end = 0x10800fff,
55 .flags = IORESOURCE_MEM,
56 },
57};
58
59static struct scoop_config poodle_scoop_setup = {
60 .io_dir = POODLE_SCOOP_IO_DIR,
61 .io_out = POODLE_SCOOP_IO_OUT,
62};
63
64struct platform_device poodle_scoop_device = {
65 .name = "sharp-scoop",
66 .id = -1,
67 .dev = {
68 .platform_data = &poodle_scoop_setup,
69 },
70 .num_resources = ARRAY_SIZE(poodle_scoop_resources),
71 .resource = poodle_scoop_resources,
72};
73
Richard Purdiea63ae442005-11-08 19:15:43 +000074static void poodle_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
Richard Purdie0ce76252005-09-05 20:49:54 +010095static struct scoop_pcmcia_dev poodle_pcmcia_scoop[] = {
96{
97 .dev = &poodle_scoop_device.dev,
98 .irq = POODLE_IRQ_GPIO_CF_IRQ,
99 .cd_irq = POODLE_IRQ_GPIO_CF_CD,
100 .cd_irq_str = "PCMCIA0 CD",
101},
102};
103
Richard Purdiea63ae442005-11-08 19:15:43 +0000104static struct scoop_pcmcia_config poodle_pcmcia_config = {
105 .devs = &poodle_pcmcia_scoop[0],
106 .num_devs = 1,
107 .pcmcia_init = poodle_pcmcia_init,
108};
109
110EXPORT_SYMBOL(poodle_scoop_device);
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113/* LoCoMo device */
114static struct resource locomo_resources[] = {
115 [0] = {
116 .start = 0x10000000,
117 .end = 0x10001fff,
118 .flags = IORESOURCE_MEM,
119 },
120 [1] = {
121 .start = IRQ_GPIO(10),
122 .end = IRQ_GPIO(10),
123 .flags = IORESOURCE_IRQ,
124 },
125};
126
Richard Purdiefaed5682006-06-19 20:46:05 +0100127struct platform_device poodle_locomo_device = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 .name = "locomo",
129 .id = 0,
130 .num_resources = ARRAY_SIZE(locomo_resources),
131 .resource = locomo_resources,
132};
133
Richard Purdiefaed5682006-06-19 20:46:05 +0100134EXPORT_SYMBOL(poodle_locomo_device);
135
136/*
137 * Poodle SSP Device
138 */
139
140struct platform_device poodle_ssp_device = {
141 .name = "corgi-ssp",
142 .id = -1,
143};
144
145struct corgissp_machinfo poodle_ssp_machinfo = {
146 .port = 1,
147 .cs_lcdcon = -1,
148 .cs_ads7846 = -1,
149 .cs_max1111 = -1,
150 .clk_lcdcon = 2,
151 .clk_ads7846 = 36,
152 .clk_max1111 = 2,
153};
154
155
156/*
157 * Poodle Touch Screen Device
158 */
159static struct resource poodlets_resources[] = {
160 [0] = {
161 .start = POODLE_IRQ_GPIO_TP_INT,
162 .end = POODLE_IRQ_GPIO_TP_INT,
163 .flags = IORESOURCE_IRQ,
164 },
165};
166
167static unsigned long poodle_get_hsync_len(void)
168{
169 return 0;
170}
171
172static void poodle_null_hsync(void)
173{
174}
175
176static struct corgits_machinfo poodle_ts_machinfo = {
177 .get_hsync_len = poodle_get_hsync_len,
178 .put_hsync = poodle_null_hsync,
179 .wait_hsync = poodle_null_hsync,
180};
181
182static struct platform_device poodle_ts_device = {
183 .name = "corgi-ts",
184 .dev = {
185 .platform_data = &poodle_ts_machinfo,
186 },
187 .id = -1,
188 .num_resources = ARRAY_SIZE(poodlets_resources),
189 .resource = poodlets_resources,
190};
191
Richard Purdie13b9d472005-09-15 14:53:22 +0100192
193/*
194 * MMC/SD Device
195 *
196 * The card detect interrupt isn't debounced so we delay it by 250ms
197 * to give the card a chance to fully insert/eject.
198 */
199static struct pxamci_platform_data poodle_mci_platform_data;
200
David Howells40220c12006-10-09 12:19:47 +0100201static int poodle_mci_init(struct device *dev, irq_handler_t poodle_detect_int, void *data)
Richard Purdie13b9d472005-09-15 14:53:22 +0100202{
203 int err;
204
205 /* setup GPIO for PXA25x MMC controller */
206 pxa_gpio_mode(GPIO6_MMCCLK_MD);
207 pxa_gpio_mode(GPIO8_MMCCS0_MD);
208 pxa_gpio_mode(POODLE_GPIO_nSD_DETECT | GPIO_IN);
Richard Purdie88660352006-06-19 19:58:51 +0100209 pxa_gpio_mode(POODLE_GPIO_nSD_WP | GPIO_IN);
Richard Purdie13b9d472005-09-15 14:53:22 +0100210 pxa_gpio_mode(POODLE_GPIO_SD_PWR | GPIO_OUT);
Richard Purdie88660352006-06-19 19:58:51 +0100211 pxa_gpio_mode(POODLE_GPIO_SD_PWR1 | GPIO_OUT);
Richard Purdie13b9d472005-09-15 14:53:22 +0100212
213 poodle_mci_platform_data.detect_delay = msecs_to_jiffies(250);
214
Russell King9ded96f2006-01-08 01:02:07 -0800215 err = request_irq(POODLE_IRQ_GPIO_nSD_DETECT, poodle_detect_int,
Thomas Gleixner52e405e2006-07-03 02:20:05 +0200216 IRQF_DISABLED | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
Russell King9ded96f2006-01-08 01:02:07 -0800217 "MMC card detect", data);
Russell King2687bd32008-01-23 14:05:58 +0000218 if (err)
Richard Purdie13b9d472005-09-15 14:53:22 +0100219 printk(KERN_ERR "poodle_mci_init: MMC/SD: can't request MMC card detect IRQ\n");
Richard Purdie13b9d472005-09-15 14:53:22 +0100220
Russell King2687bd32008-01-23 14:05:58 +0000221 return err;
Richard Purdie13b9d472005-09-15 14:53:22 +0100222}
223
224static void poodle_mci_setpower(struct device *dev, unsigned int vdd)
225{
226 struct pxamci_platform_data* p_d = dev->platform_data;
227
Richard Purdie88660352006-06-19 19:58:51 +0100228 if (( 1 << vdd) & p_d->ocr_mask) {
229 GPSR(POODLE_GPIO_SD_PWR) = GPIO_bit(POODLE_GPIO_SD_PWR);
230 mdelay(2);
231 GPSR(POODLE_GPIO_SD_PWR1) = GPIO_bit(POODLE_GPIO_SD_PWR1);
232 } else {
233 GPCR(POODLE_GPIO_SD_PWR1) = GPIO_bit(POODLE_GPIO_SD_PWR1);
234 GPCR(POODLE_GPIO_SD_PWR) = GPIO_bit(POODLE_GPIO_SD_PWR);
235 }
Richard Purdie13b9d472005-09-15 14:53:22 +0100236}
237
Richard Purdie88660352006-06-19 19:58:51 +0100238static int poodle_mci_get_ro(struct device *dev)
239{
240 return GPLR(POODLE_GPIO_nSD_WP) & GPIO_bit(POODLE_GPIO_nSD_WP);
241}
242
243
Richard Purdie13b9d472005-09-15 14:53:22 +0100244static void poodle_mci_exit(struct device *dev, void *data)
245{
246 free_irq(POODLE_IRQ_GPIO_nSD_DETECT, data);
247}
248
249static struct pxamci_platform_data poodle_mci_platform_data = {
250 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
251 .init = poodle_mci_init,
Richard Purdie88660352006-06-19 19:58:51 +0100252 .get_ro = poodle_mci_get_ro,
Richard Purdie13b9d472005-09-15 14:53:22 +0100253 .setpower = poodle_mci_setpower,
254 .exit = poodle_mci_exit,
255};
256
257
258/*
Richard Purdie8e4b8712005-10-30 14:38:52 +0000259 * Irda
260 */
261static void poodle_irda_transceiver_mode(struct device *dev, int mode)
262{
263 if (mode & IR_OFF) {
264 GPSR(POODLE_GPIO_IR_ON) = GPIO_bit(POODLE_GPIO_IR_ON);
265 } else {
266 GPCR(POODLE_GPIO_IR_ON) = GPIO_bit(POODLE_GPIO_IR_ON);
267 }
268}
269
270static struct pxaficp_platform_data poodle_ficp_platform_data = {
271 .transceiver_cap = IR_SIRMODE | IR_OFF,
272 .transceiver_mode = poodle_irda_transceiver_mode,
273};
274
275
276/*
Richard Purdie13b9d472005-09-15 14:53:22 +0100277 * USB Device Controller
278 */
279static void poodle_udc_command(int cmd)
280{
281 switch(cmd) {
282 case PXA2XX_UDC_CMD_CONNECT:
283 GPSR(POODLE_GPIO_USB_PULLUP) = GPIO_bit(POODLE_GPIO_USB_PULLUP);
284 break;
285 case PXA2XX_UDC_CMD_DISCONNECT:
286 GPCR(POODLE_GPIO_USB_PULLUP) = GPIO_bit(POODLE_GPIO_USB_PULLUP);
287 break;
288 }
289}
290
291static struct pxa2xx_udc_mach_info udc_info __initdata = {
292 /* no connect GPIO; poodle can't tell connection status */
293 .udc_command = poodle_udc_command,
294};
295
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297/* PXAFB device */
Richard Purdied14b2722006-09-20 22:54:21 +0100298static struct pxafb_mode_info poodle_fb_mode = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 .pixclock = 144700,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 .xres = 320,
301 .yres = 240,
302 .bpp = 16,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 .hsync_len = 7,
304 .left_margin = 11,
305 .right_margin = 30,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 .vsync_len = 2,
307 .upper_margin = 2,
308 .lower_margin = 0,
309 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
Richard Purdied14b2722006-09-20 22:54:21 +0100310};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Richard Purdied14b2722006-09-20 22:54:21 +0100312static struct pxafb_mach_info poodle_fb_info = {
313 .modes = &poodle_fb_mode,
314 .num_modes = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 .lccr0 = LCCR0_Act | LCCR0_Sngl | LCCR0_Color,
316 .lccr3 = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317};
318
319static struct platform_device *devices[] __initdata = {
Richard Purdiefaed5682006-06-19 20:46:05 +0100320 &poodle_locomo_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 &poodle_scoop_device,
Richard Purdiefaed5682006-06-19 20:46:05 +0100322 &poodle_ssp_device,
323 &poodle_ts_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324};
325
Richard Purdie74617fb2006-06-19 19:57:12 +0100326static void poodle_poweroff(void)
327{
328 RCSR = RCSR_HWR | RCSR_WDR | RCSR_SMR | RCSR_GPR;
329 arm_machine_restart('h');
330}
331
332static void poodle_restart(char mode)
333{
334 RCSR = RCSR_HWR | RCSR_WDR | RCSR_SMR | RCSR_GPR;
335 arm_machine_restart('h');
336}
337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338static void __init poodle_init(void)
339{
340 int ret = 0;
341
Richard Purdie74617fb2006-06-19 19:57:12 +0100342 pm_power_off = poodle_poweroff;
343 arm_pm_restart = poodle_restart;
344
Richard Purdief29d2452005-09-15 14:53:22 +0100345 /* setup sleep mode values */
346 PWER = 0x00000002;
347 PFER = 0x00000000;
348 PRER = 0x00000002;
349 PGSR0 = 0x00008000;
350 PGSR1 = 0x003F0202;
351 PGSR2 = 0x0001C000;
352 PCFR |= PCFR_OPDE;
353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 /* cpu initialize */
355 /* Pgsr Register */
356 PGSR0 = 0x0146dd80;
357 PGSR1 = 0x03bf0890;
358 PGSR2 = 0x0001c000;
359
360 /* Alternate Register */
361 GAFR0_L = 0x01001000;
362 GAFR0_U = 0x591a8010;
363 GAFR1_L = 0x900a8451;
364 GAFR1_U = 0xaaa5aaaa;
365 GAFR2_L = 0x8aaaaaaa;
366 GAFR2_U = 0x00000002;
367
368 /* Direction Register */
369 GPDR0 = 0xd3f0904c;
370 GPDR1 = 0xfcffb7d3;
371 GPDR2 = 0x0001ffff;
372
373 /* Output Register */
374 GPCR0 = 0x00000000;
375 GPCR1 = 0x00000000;
376 GPCR2 = 0x00000000;
377
378 GPSR0 = 0x00400000;
379 GPSR1 = 0x00000000;
380 GPSR2 = 0x00000000;
381
Richard Purdiefaed5682006-06-19 20:46:05 +0100382 set_pxa_fb_parent(&poodle_locomo_device.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 set_pxa_fb_info(&poodle_fb_info);
Richard Purdie13b9d472005-09-15 14:53:22 +0100384 pxa_gpio_mode(POODLE_GPIO_USB_PULLUP | GPIO_OUT);
Richard Purdie8e4b8712005-10-30 14:38:52 +0000385 pxa_gpio_mode(POODLE_GPIO_IR_ON | GPIO_OUT);
Richard Purdie13b9d472005-09-15 14:53:22 +0100386 pxa_set_udc_info(&udc_info);
387 pxa_set_mci_info(&poodle_mci_platform_data);
Richard Purdie8e4b8712005-10-30 14:38:52 +0000388 pxa_set_ficp_info(&poodle_ficp_platform_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Richard Purdiea63ae442005-11-08 19:15:43 +0000390 platform_scoop_config = &poodle_pcmcia_config;
Richard Purdie0ce76252005-09-05 20:49:54 +0100391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 ret = platform_add_devices(devices, ARRAY_SIZE(devices));
393 if (ret) {
394 printk(KERN_WARNING "poodle: Unable to register LoCoMo device\n");
395 }
Richard Purdiefaed5682006-06-19 20:46:05 +0100396 corgi_ssp_set_machinfo(&poodle_ssp_machinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397}
398
399static void __init fixup_poodle(struct machine_desc *desc,
400 struct tag *tags, char **cmdline, struct meminfo *mi)
401{
402 sharpsl_save_param();
Richard Purdieb2e6f752006-04-02 17:11:00 +0100403 mi->nr_banks=1;
404 mi->bank[0].start = 0xa0000000;
405 mi->bank[0].node = 0;
406 mi->bank[0].size = (32*1024*1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407}
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409MACHINE_START(POODLE, "SHARP Poodle")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100410 .phys_io = 0x40000000,
Russell King68070bd2005-07-04 10:44:34 +0100411 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100412 .fixup = fixup_poodle,
Richard Purdief29d2452005-09-15 14:53:22 +0100413 .map_io = pxa_map_io,
Eric Miaocd491042007-06-22 04:14:09 +0100414 .init_irq = pxa25x_init_irq,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100415 .timer = &pxa_timer,
416 .init_machine = poodle_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417MACHINE_END