blob: 3f5f484549b394166681e43e45c43e584190823a [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
Russell Kinga09e64f2008-08-05 16:14:15 +010024#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#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
Russell Kinga09e64f2008-08-05 16:14:15 +010034#include <mach/pxa-regs.h>
35#include <mach/pxa2xx-regs.h>
36#include <mach/pxa2xx-gpio.h>
37#include <mach/mmc.h>
38#include <mach/udc.h>
Mark Brownf8787fd2008-08-26 13:30:03 +010039#include <mach/i2c.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010040#include <mach/irda.h>
41#include <mach/poodle.h>
42#include <mach/pxafb.h>
43#include <mach/sharpsl.h>
44#include <mach/ssp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include <asm/hardware/scoop.h>
47#include <asm/hardware/locomo.h>
48#include <asm/mach/sharpsl_param.h>
49
50#include "generic.h"
Russell King46c41e62007-05-15 15:39:36 +010051#include "devices.h"
Richard Purdiefaed5682006-06-19 20:46:05 +010052#include "sharpsl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54static struct resource poodle_scoop_resources[] = {
55 [0] = {
56 .start = 0x10800000,
57 .end = 0x10800fff,
58 .flags = IORESOURCE_MEM,
59 },
60};
61
62static struct scoop_config poodle_scoop_setup = {
63 .io_dir = POODLE_SCOOP_IO_DIR,
64 .io_out = POODLE_SCOOP_IO_OUT,
65};
66
67struct platform_device poodle_scoop_device = {
68 .name = "sharp-scoop",
69 .id = -1,
70 .dev = {
71 .platform_data = &poodle_scoop_setup,
72 },
73 .num_resources = ARRAY_SIZE(poodle_scoop_resources),
74 .resource = poodle_scoop_resources,
75};
76
Richard Purdiea63ae442005-11-08 19:15:43 +000077static void poodle_pcmcia_init(void)
78{
79 /* Setup default state of GPIO outputs
80 before we enable them as outputs. */
81 GPSR(GPIO48_nPOE) = GPIO_bit(GPIO48_nPOE) |
82 GPIO_bit(GPIO49_nPWE) | GPIO_bit(GPIO50_nPIOR) |
83 GPIO_bit(GPIO51_nPIOW) | GPIO_bit(GPIO52_nPCE_1) |
84 GPIO_bit(GPIO53_nPCE_2);
85
86 pxa_gpio_mode(GPIO48_nPOE_MD);
87 pxa_gpio_mode(GPIO49_nPWE_MD);
88 pxa_gpio_mode(GPIO50_nPIOR_MD);
89 pxa_gpio_mode(GPIO51_nPIOW_MD);
90 pxa_gpio_mode(GPIO55_nPREG_MD);
91 pxa_gpio_mode(GPIO56_nPWAIT_MD);
92 pxa_gpio_mode(GPIO57_nIOIS16_MD);
93 pxa_gpio_mode(GPIO52_nPCE_1_MD);
94 pxa_gpio_mode(GPIO53_nPCE_2_MD);
95 pxa_gpio_mode(GPIO54_pSKTSEL_MD);
96}
97
Richard Purdie0ce76252005-09-05 20:49:54 +010098static struct scoop_pcmcia_dev poodle_pcmcia_scoop[] = {
99{
100 .dev = &poodle_scoop_device.dev,
101 .irq = POODLE_IRQ_GPIO_CF_IRQ,
102 .cd_irq = POODLE_IRQ_GPIO_CF_CD,
103 .cd_irq_str = "PCMCIA0 CD",
104},
105};
106
Richard Purdiea63ae442005-11-08 19:15:43 +0000107static struct scoop_pcmcia_config poodle_pcmcia_config = {
108 .devs = &poodle_pcmcia_scoop[0],
109 .num_devs = 1,
110 .pcmcia_init = poodle_pcmcia_init,
111};
112
113EXPORT_SYMBOL(poodle_scoop_device);
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116/* LoCoMo device */
117static struct resource locomo_resources[] = {
118 [0] = {
119 .start = 0x10000000,
120 .end = 0x10001fff,
121 .flags = IORESOURCE_MEM,
122 },
123 [1] = {
124 .start = IRQ_GPIO(10),
125 .end = IRQ_GPIO(10),
126 .flags = IORESOURCE_IRQ,
127 },
128};
129
Richard Purdiefaed5682006-06-19 20:46:05 +0100130struct platform_device poodle_locomo_device = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 .name = "locomo",
132 .id = 0,
133 .num_resources = ARRAY_SIZE(locomo_resources),
134 .resource = locomo_resources,
135};
136
Richard Purdiefaed5682006-06-19 20:46:05 +0100137EXPORT_SYMBOL(poodle_locomo_device);
138
139/*
140 * Poodle SSP Device
141 */
142
143struct platform_device poodle_ssp_device = {
144 .name = "corgi-ssp",
145 .id = -1,
146};
147
148struct corgissp_machinfo poodle_ssp_machinfo = {
149 .port = 1,
150 .cs_lcdcon = -1,
151 .cs_ads7846 = -1,
152 .cs_max1111 = -1,
153 .clk_lcdcon = 2,
154 .clk_ads7846 = 36,
155 .clk_max1111 = 2,
156};
157
158
159/*
160 * Poodle Touch Screen Device
161 */
162static struct resource poodlets_resources[] = {
163 [0] = {
164 .start = POODLE_IRQ_GPIO_TP_INT,
165 .end = POODLE_IRQ_GPIO_TP_INT,
166 .flags = IORESOURCE_IRQ,
167 },
168};
169
eric miao6a0bd092008-01-31 02:41:16 +0100170static unsigned long poodle_get_hsync_invperiod(void)
Richard Purdiefaed5682006-06-19 20:46:05 +0100171{
172 return 0;
173}
174
175static void poodle_null_hsync(void)
176{
177}
178
179static struct corgits_machinfo poodle_ts_machinfo = {
eric miao6a0bd092008-01-31 02:41:16 +0100180 .get_hsync_invperiod = poodle_get_hsync_invperiod,
181 .put_hsync = poodle_null_hsync,
182 .wait_hsync = poodle_null_hsync,
Richard Purdiefaed5682006-06-19 20:46:05 +0100183};
184
185static struct platform_device poodle_ts_device = {
186 .name = "corgi-ts",
187 .dev = {
188 .platform_data = &poodle_ts_machinfo,
189 },
190 .id = -1,
191 .num_resources = ARRAY_SIZE(poodlets_resources),
192 .resource = poodlets_resources,
193};
194
Richard Purdie13b9d472005-09-15 14:53:22 +0100195
196/*
197 * MMC/SD Device
198 *
199 * The card detect interrupt isn't debounced so we delay it by 250ms
200 * to give the card a chance to fully insert/eject.
201 */
202static struct pxamci_platform_data poodle_mci_platform_data;
203
David Howells40220c12006-10-09 12:19:47 +0100204static int poodle_mci_init(struct device *dev, irq_handler_t poodle_detect_int, void *data)
Richard Purdie13b9d472005-09-15 14:53:22 +0100205{
206 int err;
207
208 /* setup GPIO for PXA25x MMC controller */
209 pxa_gpio_mode(GPIO6_MMCCLK_MD);
210 pxa_gpio_mode(GPIO8_MMCCS0_MD);
211 pxa_gpio_mode(POODLE_GPIO_nSD_DETECT | GPIO_IN);
Richard Purdie88660352006-06-19 19:58:51 +0100212 pxa_gpio_mode(POODLE_GPIO_nSD_WP | GPIO_IN);
Richard Purdie13b9d472005-09-15 14:53:22 +0100213 pxa_gpio_mode(POODLE_GPIO_SD_PWR | GPIO_OUT);
Richard Purdie88660352006-06-19 19:58:51 +0100214 pxa_gpio_mode(POODLE_GPIO_SD_PWR1 | GPIO_OUT);
Richard Purdie13b9d472005-09-15 14:53:22 +0100215
216 poodle_mci_platform_data.detect_delay = msecs_to_jiffies(250);
217
Russell King9ded96f2006-01-08 01:02:07 -0800218 err = request_irq(POODLE_IRQ_GPIO_nSD_DETECT, poodle_detect_int,
Thomas Gleixner52e405e2006-07-03 02:20:05 +0200219 IRQF_DISABLED | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
Russell King9ded96f2006-01-08 01:02:07 -0800220 "MMC card detect", data);
Russell King2687bd32008-01-23 14:05:58 +0000221 if (err)
Richard Purdie13b9d472005-09-15 14:53:22 +0100222 printk(KERN_ERR "poodle_mci_init: MMC/SD: can't request MMC card detect IRQ\n");
Richard Purdie13b9d472005-09-15 14:53:22 +0100223
Russell King2687bd32008-01-23 14:05:58 +0000224 return err;
Richard Purdie13b9d472005-09-15 14:53:22 +0100225}
226
227static void poodle_mci_setpower(struct device *dev, unsigned int vdd)
228{
229 struct pxamci_platform_data* p_d = dev->platform_data;
230
Richard Purdie88660352006-06-19 19:58:51 +0100231 if (( 1 << vdd) & p_d->ocr_mask) {
232 GPSR(POODLE_GPIO_SD_PWR) = GPIO_bit(POODLE_GPIO_SD_PWR);
233 mdelay(2);
234 GPSR(POODLE_GPIO_SD_PWR1) = GPIO_bit(POODLE_GPIO_SD_PWR1);
235 } else {
236 GPCR(POODLE_GPIO_SD_PWR1) = GPIO_bit(POODLE_GPIO_SD_PWR1);
237 GPCR(POODLE_GPIO_SD_PWR) = GPIO_bit(POODLE_GPIO_SD_PWR);
238 }
Richard Purdie13b9d472005-09-15 14:53:22 +0100239}
240
Richard Purdie88660352006-06-19 19:58:51 +0100241static int poodle_mci_get_ro(struct device *dev)
242{
243 return GPLR(POODLE_GPIO_nSD_WP) & GPIO_bit(POODLE_GPIO_nSD_WP);
244}
245
246
Richard Purdie13b9d472005-09-15 14:53:22 +0100247static void poodle_mci_exit(struct device *dev, void *data)
248{
249 free_irq(POODLE_IRQ_GPIO_nSD_DETECT, data);
250}
251
252static struct pxamci_platform_data poodle_mci_platform_data = {
253 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
254 .init = poodle_mci_init,
Richard Purdie88660352006-06-19 19:58:51 +0100255 .get_ro = poodle_mci_get_ro,
Richard Purdie13b9d472005-09-15 14:53:22 +0100256 .setpower = poodle_mci_setpower,
257 .exit = poodle_mci_exit,
258};
259
260
261/*
Richard Purdie8e4b8712005-10-30 14:38:52 +0000262 * Irda
263 */
264static void poodle_irda_transceiver_mode(struct device *dev, int mode)
265{
266 if (mode & IR_OFF) {
267 GPSR(POODLE_GPIO_IR_ON) = GPIO_bit(POODLE_GPIO_IR_ON);
268 } else {
269 GPCR(POODLE_GPIO_IR_ON) = GPIO_bit(POODLE_GPIO_IR_ON);
270 }
Dmitry Baryshkov0fc3ff32008-07-02 13:54:46 +0100271 pxa2xx_transceiver_mode(dev, mode);
Richard Purdie8e4b8712005-10-30 14:38:52 +0000272}
273
274static struct pxaficp_platform_data poodle_ficp_platform_data = {
275 .transceiver_cap = IR_SIRMODE | IR_OFF,
276 .transceiver_mode = poodle_irda_transceiver_mode,
277};
278
279
280/*
Richard Purdie13b9d472005-09-15 14:53:22 +0100281 * USB Device Controller
282 */
283static void poodle_udc_command(int cmd)
284{
285 switch(cmd) {
286 case PXA2XX_UDC_CMD_CONNECT:
287 GPSR(POODLE_GPIO_USB_PULLUP) = GPIO_bit(POODLE_GPIO_USB_PULLUP);
288 break;
289 case PXA2XX_UDC_CMD_DISCONNECT:
290 GPCR(POODLE_GPIO_USB_PULLUP) = GPIO_bit(POODLE_GPIO_USB_PULLUP);
291 break;
292 }
293}
294
295static struct pxa2xx_udc_mach_info udc_info __initdata = {
296 /* no connect GPIO; poodle can't tell connection status */
297 .udc_command = poodle_udc_command,
298};
299
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301/* PXAFB device */
Richard Purdied14b2722006-09-20 22:54:21 +0100302static struct pxafb_mode_info poodle_fb_mode = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 .pixclock = 144700,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 .xres = 320,
305 .yres = 240,
306 .bpp = 16,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 .hsync_len = 7,
308 .left_margin = 11,
309 .right_margin = 30,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 .vsync_len = 2,
311 .upper_margin = 2,
312 .lower_margin = 0,
313 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
Richard Purdied14b2722006-09-20 22:54:21 +0100314};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Richard Purdied14b2722006-09-20 22:54:21 +0100316static struct pxafb_mach_info poodle_fb_info = {
317 .modes = &poodle_fb_mode,
318 .num_modes = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 .lccr0 = LCCR0_Act | LCCR0_Sngl | LCCR0_Color,
320 .lccr3 = 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321};
322
323static struct platform_device *devices[] __initdata = {
Richard Purdiefaed5682006-06-19 20:46:05 +0100324 &poodle_locomo_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 &poodle_scoop_device,
Richard Purdiefaed5682006-06-19 20:46:05 +0100326 &poodle_ssp_device,
327 &poodle_ts_device,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328};
329
Richard Purdie74617fb2006-06-19 19:57:12 +0100330static void poodle_poweroff(void)
331{
Richard Purdie74617fb2006-06-19 19:57:12 +0100332 arm_machine_restart('h');
333}
334
335static void poodle_restart(char mode)
336{
Richard Purdie74617fb2006-06-19 19:57:12 +0100337 arm_machine_restart('h');
338}
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340static void __init poodle_init(void)
341{
342 int ret = 0;
343
Richard Purdie74617fb2006-06-19 19:57:12 +0100344 pm_power_off = poodle_poweroff;
345 arm_pm_restart = poodle_restart;
346
Richard Purdief29d2452005-09-15 14:53:22 +0100347 /* setup sleep mode values */
348 PWER = 0x00000002;
349 PFER = 0x00000000;
350 PRER = 0x00000002;
351 PGSR0 = 0x00008000;
352 PGSR1 = 0x003F0202;
353 PGSR2 = 0x0001C000;
354 PCFR |= PCFR_OPDE;
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 /* cpu initialize */
357 /* Pgsr Register */
358 PGSR0 = 0x0146dd80;
359 PGSR1 = 0x03bf0890;
360 PGSR2 = 0x0001c000;
361
362 /* Alternate Register */
363 GAFR0_L = 0x01001000;
364 GAFR0_U = 0x591a8010;
365 GAFR1_L = 0x900a8451;
366 GAFR1_U = 0xaaa5aaaa;
367 GAFR2_L = 0x8aaaaaaa;
368 GAFR2_U = 0x00000002;
369
370 /* Direction Register */
371 GPDR0 = 0xd3f0904c;
372 GPDR1 = 0xfcffb7d3;
373 GPDR2 = 0x0001ffff;
374
375 /* Output Register */
376 GPCR0 = 0x00000000;
377 GPCR1 = 0x00000000;
378 GPCR2 = 0x00000000;
379
380 GPSR0 = 0x00400000;
381 GPSR1 = 0x00000000;
382 GPSR2 = 0x00000000;
383
Richard Purdiefaed5682006-06-19 20:46:05 +0100384 set_pxa_fb_parent(&poodle_locomo_device.dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 set_pxa_fb_info(&poodle_fb_info);
Richard Purdie13b9d472005-09-15 14:53:22 +0100386 pxa_gpio_mode(POODLE_GPIO_USB_PULLUP | GPIO_OUT);
Richard Purdie8e4b8712005-10-30 14:38:52 +0000387 pxa_gpio_mode(POODLE_GPIO_IR_ON | GPIO_OUT);
Richard Purdie13b9d472005-09-15 14:53:22 +0100388 pxa_set_udc_info(&udc_info);
389 pxa_set_mci_info(&poodle_mci_platform_data);
Richard Purdie8e4b8712005-10-30 14:38:52 +0000390 pxa_set_ficp_info(&poodle_ficp_platform_data);
Mark Brownf8787fd2008-08-26 13:30:03 +0100391 pxa_set_i2c_info(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Richard Purdiea63ae442005-11-08 19:15:43 +0000393 platform_scoop_config = &poodle_pcmcia_config;
Richard Purdie0ce76252005-09-05 20:49:54 +0100394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 ret = platform_add_devices(devices, ARRAY_SIZE(devices));
396 if (ret) {
397 printk(KERN_WARNING "poodle: Unable to register LoCoMo device\n");
398 }
Richard Purdiefaed5682006-06-19 20:46:05 +0100399 corgi_ssp_set_machinfo(&poodle_ssp_machinfo);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400}
401
402static void __init fixup_poodle(struct machine_desc *desc,
403 struct tag *tags, char **cmdline, struct meminfo *mi)
404{
405 sharpsl_save_param();
Richard Purdieb2e6f752006-04-02 17:11:00 +0100406 mi->nr_banks=1;
407 mi->bank[0].start = 0xa0000000;
408 mi->bank[0].node = 0;
409 mi->bank[0].size = (32*1024*1024);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410}
411
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412MACHINE_START(POODLE, "SHARP Poodle")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100413 .phys_io = 0x40000000,
Russell King68070bd2005-07-04 10:44:34 +0100414 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100415 .fixup = fixup_poodle,
Richard Purdief29d2452005-09-15 14:53:22 +0100416 .map_io = pxa_map_io,
Eric Miaocd491042007-06-22 04:14:09 +0100417 .init_irq = pxa25x_init_irq,
Russell Kinge9dea0c2005-07-03 17:38:58 +0100418 .timer = &pxa_timer,
419 .init_machine = poodle_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420MACHINE_END