blob: 7a89f764acf310078ffbd49bf00ab2836c11c0af [file] [log] [blame]
Dirk Opfer8459c152005-11-06 14:27:52 +00001/*
2 * Support for Sharp SL-C6000x PDAs
3 * Model: (Tosa)
4 *
5 * Copyright (c) 2005 Dirk Opfer
6 *
7 * Based on code written by Sharp/Lineo for 2.4 kernels
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>
Dirk Opfer067c9042005-11-21 15:17:06 +000017#include <linux/platform_device.h>
Dirk Opfer8459c152005-11-06 14:27:52 +000018#include <linux/major.h>
19#include <linux/fs.h>
20#include <linux/interrupt.h>
21#include <linux/mmc/host.h>
Richard Purdie74617fb2006-06-19 19:57:12 +010022#include <linux/pm.h>
Russell King905f1462006-06-20 23:27:37 +010023#include <linux/delay.h>
Dmitry Baryshkov93e9012f2008-01-21 01:04:20 -050024#include <linux/gpio_keys.h>
25#include <linux/input.h>
Dmitry Baryshkovd4e7d092008-04-12 20:16:16 +010026#include <linux/gpio.h>
Dirk Opfer8459c152005-11-06 14:27:52 +000027
28#include <asm/setup.h>
Dirk Opfer8459c152005-11-06 14:27:52 +000029#include <asm/mach-types.h>
eric miaobb548dd2008-01-30 09:39:48 +010030#include <asm/arch/pxa2xx-regs.h>
Dmitry Baryshkov2cb47342008-04-10 11:00:32 +010031#include <asm/arch/mfp-pxa25x.h>
Dirk Opfer8459c152005-11-06 14:27:52 +000032#include <asm/arch/irda.h>
Dmitry Baryshkov481ea5a2008-04-10 15:43:18 +010033#include <asm/arch/i2c.h>
Dirk Opfer8459c152005-11-06 14:27:52 +000034#include <asm/arch/mmc.h>
35#include <asm/arch/udc.h>
36
37#include <asm/mach/arch.h>
Dirk Opfer8459c152005-11-06 14:27:52 +000038#include <asm/arch/tosa.h>
39
40#include <asm/hardware/scoop.h>
41#include <asm/mach/sharpsl_param.h>
42
43#include "generic.h"
Russell King46c41e62007-05-15 15:39:36 +010044#include "devices.h"
Dirk Opfer8459c152005-11-06 14:27:52 +000045
Dmitry Baryshkov2cb47342008-04-10 11:00:32 +010046static unsigned long tosa_pin_config[] = {
47 GPIO78_nCS_2, /* Scoop */
48 GPIO80_nCS_4, /* tg6393xb */
49 GPIO33_nCS_5, /* Scoop */
50
51 // GPIO76 CARD_VCC_ON1
52
53 GPIO19_GPIO, /* Reset out */
54 GPIO1_RST | WAKEUP_ON_EDGE_FALL,
55
56 GPIO0_GPIO | WAKEUP_ON_EDGE_FALL, /* WAKE_UP */
57 GPIO2_GPIO | WAKEUP_ON_EDGE_BOTH, /* AC_IN */
58 GPIO3_GPIO | WAKEUP_ON_EDGE_FALL, /* RECORD */
59 GPIO4_GPIO | WAKEUP_ON_EDGE_FALL, /* SYNC */
60 GPIO20_GPIO, /* EAR_IN */
61 GPIO22_GPIO, /* On */
62
63 GPIO5_GPIO, /* USB_IN */
64 GPIO32_GPIO, /* Pen IRQ */
65
66 GPIO7_GPIO, /* Jacket Detect */
67 GPIO14_GPIO, /* BAT0_CRG */
68 GPIO12_GPIO, /* BAT1_CRG */
69 GPIO17_GPIO, /* BAT0_LOW */
70 GPIO84_GPIO, /* BAT1_LOW */
71 GPIO38_GPIO, /* BAT_LOCK */
72
73 GPIO11_3_6MHz,
74 GPIO15_GPIO, /* TC6393XB IRQ */
75 GPIO18_RDY,
76 GPIO27_GPIO, /* LCD Sync */
77
78 /* MMC */
79 GPIO6_MMC_CLK,
80 GPIO8_MMC_CS0,
81 GPIO9_GPIO, /* Detect */
Dmitry Baryshkovc4d5f8d2008-06-09 13:23:50 +010082 GPIO10_GPIO, /* nSD_INT */
Dmitry Baryshkov2cb47342008-04-10 11:00:32 +010083
84 /* CF */
85 GPIO13_GPIO, /* CD_IRQ */
86 GPIO21_GPIO, /* Main Slot IRQ */
87 GPIO36_GPIO, /* Jacket Slot IRQ */
88 GPIO48_nPOE,
89 GPIO49_nPWE,
90 GPIO50_nPIOR,
91 GPIO51_nPIOW,
92 GPIO52_nPCE_1,
93 GPIO53_nPCE_2,
94 GPIO54_nPSKTSEL,
95 GPIO55_nPREG,
96 GPIO56_nPWAIT,
97 GPIO57_nIOIS16,
98
99 /* AC97 */
100 GPIO31_AC97_SYNC,
101 GPIO30_AC97_SDATA_OUT,
102 GPIO28_AC97_BITCLK,
103 GPIO29_AC97_SDATA_IN_0,
104 // GPIO79 nAUD_IRQ
105
106 /* FFUART */
107 GPIO34_FFUART_RXD,
108 GPIO35_FFUART_CTS,
109 GPIO37_FFUART_DSR,
110 GPIO39_FFUART_TXD,
111 GPIO40_FFUART_DTR,
112 GPIO41_FFUART_RTS,
113
114 /* BTUART */
115 GPIO42_BTUART_RXD,
116 GPIO43_BTUART_TXD,
117 GPIO44_BTUART_CTS,
118 GPIO45_BTUART_RTS,
119
Dmitry Baryshkov2cb47342008-04-10 11:00:32 +0100120 /* Keybd */
eric miaoc8671552008-05-26 03:28:50 +0100121 GPIO58_GPIO | MFP_LPM_DRIVE_LOW,
122 GPIO59_GPIO | MFP_LPM_DRIVE_LOW,
123 GPIO60_GPIO | MFP_LPM_DRIVE_LOW,
124 GPIO61_GPIO | MFP_LPM_DRIVE_LOW,
125 GPIO62_GPIO | MFP_LPM_DRIVE_LOW,
126 GPIO63_GPIO | MFP_LPM_DRIVE_LOW,
127 GPIO64_GPIO | MFP_LPM_DRIVE_LOW,
128 GPIO65_GPIO | MFP_LPM_DRIVE_LOW,
129 GPIO66_GPIO | MFP_LPM_DRIVE_LOW,
130 GPIO67_GPIO | MFP_LPM_DRIVE_LOW,
131 GPIO68_GPIO | MFP_LPM_DRIVE_LOW,
132 GPIO69_GPIO | MFP_LPM_DRIVE_LOW,
133 GPIO70_GPIO | MFP_LPM_DRIVE_LOW,
134 GPIO71_GPIO | MFP_LPM_DRIVE_LOW,
135 GPIO72_GPIO | MFP_LPM_DRIVE_LOW,
136 GPIO73_GPIO | MFP_LPM_DRIVE_LOW,
137 GPIO74_GPIO | MFP_LPM_DRIVE_LOW,
138 GPIO75_GPIO | MFP_LPM_DRIVE_LOW,
Dmitry Baryshkov2cb47342008-04-10 11:00:32 +0100139
140 /* SPI */
141 GPIO81_SSP2_CLK_OUT,
142 GPIO82_SSP2_FRM_OUT,
143 GPIO83_SSP2_TXD,
144};
145
Dmitry Baryshkovb032fcc2008-06-12 11:42:07 +0100146static unsigned long tosa_pin_irda_off[] = {
147 GPIO46_STUART_RXD,
148 GPIO47_GPIO | MFP_LPM_DRIVE_LOW,
149};
150
151static unsigned long tosa_pin_irda_on[] = {
152 GPIO46_STUART_RXD,
153 GPIO47_STUART_TXD,
154};
155
156
Dirk Opfer8459c152005-11-06 14:27:52 +0000157/*
158 * SCOOP Device
159 */
160static struct resource tosa_scoop_resources[] = {
161 [0] = {
162 .start = TOSA_CF_PHYS,
163 .end = TOSA_CF_PHYS + 0xfff,
164 .flags = IORESOURCE_MEM,
165 },
166};
167
168static struct scoop_config tosa_scoop_setup = {
169 .io_dir = TOSA_SCOOP_IO_DIR,
Dmitry Baryshkovd4e7d092008-04-12 20:16:16 +0100170 .gpio_base = TOSA_SCOOP_GPIO_BASE,
Dirk Opfer8459c152005-11-06 14:27:52 +0000171};
172
Dmitry Baryshkovba4eb7e2008-04-19 10:42:25 +0100173static struct platform_device tosascoop_device = {
Dirk Opfer8459c152005-11-06 14:27:52 +0000174 .name = "sharp-scoop",
175 .id = 0,
176 .dev = {
177 .platform_data = &tosa_scoop_setup,
178 },
179 .num_resources = ARRAY_SIZE(tosa_scoop_resources),
180 .resource = tosa_scoop_resources,
181};
182
183
184/*
185 * SCOOP Device Jacket
186 */
187static struct resource tosa_scoop_jc_resources[] = {
188 [0] = {
189 .start = TOSA_SCOOP_PHYS + 0x40,
190 .end = TOSA_SCOOP_PHYS + 0xfff,
191 .flags = IORESOURCE_MEM,
192 },
193};
194
195static struct scoop_config tosa_scoop_jc_setup = {
196 .io_dir = TOSA_SCOOP_JC_IO_DIR,
Dmitry Baryshkovd4e7d092008-04-12 20:16:16 +0100197 .gpio_base = TOSA_SCOOP_JC_GPIO_BASE,
Dirk Opfer8459c152005-11-06 14:27:52 +0000198};
199
Dmitry Baryshkovba4eb7e2008-04-19 10:42:25 +0100200static struct platform_device tosascoop_jc_device = {
Dirk Opfer8459c152005-11-06 14:27:52 +0000201 .name = "sharp-scoop",
202 .id = 1,
203 .dev = {
204 .platform_data = &tosa_scoop_jc_setup,
205 .parent = &tosascoop_device.dev,
206 },
207 .num_resources = ARRAY_SIZE(tosa_scoop_jc_resources),
208 .resource = tosa_scoop_jc_resources,
209};
210
Dirk Opfer4c18ad22005-11-08 19:15:50 +0000211/*
212 * PCMCIA
213 */
Dirk Opfer8459c152005-11-06 14:27:52 +0000214static struct scoop_pcmcia_dev tosa_pcmcia_scoop[] = {
215{
216 .dev = &tosascoop_device.dev,
217 .irq = TOSA_IRQ_GPIO_CF_IRQ,
218 .cd_irq = TOSA_IRQ_GPIO_CF_CD,
219 .cd_irq_str = "PCMCIA0 CD",
220},{
221 .dev = &tosascoop_jc_device.dev,
222 .irq = TOSA_IRQ_GPIO_JC_CF_IRQ,
223 .cd_irq = -1,
224},
225};
226
Dirk Opfer4c18ad22005-11-08 19:15:50 +0000227static struct scoop_pcmcia_config tosa_pcmcia_config = {
228 .devs = &tosa_pcmcia_scoop[0],
229 .num_devs = 2,
Dirk Opfer4c18ad22005-11-08 19:15:50 +0000230};
231
Dirk Opfera93876c2005-11-08 19:15:30 +0000232/*
233 * USB Device Controller
234 */
Dirk Opfera93876c2005-11-08 19:15:30 +0000235static struct pxa2xx_udc_mach_info udc_info __initdata = {
Dmitry Baryshkovd4e7d092008-04-12 20:16:16 +0100236 .gpio_pullup = TOSA_GPIO_USB_PULLUP,
Dmitry Baryshkov487dc922007-12-21 12:18:01 +0300237 .gpio_vbus = TOSA_GPIO_USB_IN,
238 .gpio_vbus_inverted = 1,
Dirk Opfera93876c2005-11-08 19:15:30 +0000239};
240
241/*
242 * MMC/SD Device
243 */
244static struct pxamci_platform_data tosa_mci_platform_data;
245
David Howells40220c12006-10-09 12:19:47 +0100246static int tosa_mci_init(struct device *dev, irq_handler_t tosa_detect_int, void *data)
Dirk Opfera93876c2005-11-08 19:15:30 +0000247{
248 int err;
249
Dirk Opfera93876c2005-11-08 19:15:30 +0000250 tosa_mci_platform_data.detect_delay = msecs_to_jiffies(250);
251
Dmitry Baryshkovc4d5f8d2008-06-09 13:23:50 +0100252 err = gpio_request(TOSA_GPIO_nSD_DETECT, "MMC/SD card detect");
253 if (err) {
254 printk(KERN_ERR "tosa_mci_init: can't request nSD_DETECT gpio\n");
255 goto err_gpio_detect;
256 }
257 err = gpio_direction_input(TOSA_GPIO_nSD_DETECT);
258 if (err)
259 goto err_gpio_detect_dir;
260
Russell King2687bd32008-01-23 14:05:58 +0000261 err = request_irq(TOSA_IRQ_GPIO_nSD_DETECT, tosa_detect_int,
262 IRQF_DISABLED | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
Dirk Opfera93876c2005-11-08 19:15:30 +0000263 "MMC/SD card detect", data);
Dmitry Baryshkovd4e7d092008-04-12 20:16:16 +0100264 if (err) {
Dirk Opfera93876c2005-11-08 19:15:30 +0000265 printk(KERN_ERR "tosa_mci_init: MMC/SD: can't request MMC card detect IRQ\n");
Dmitry Baryshkovd4e7d092008-04-12 20:16:16 +0100266 goto err_irq;
267 }
Dirk Opfera93876c2005-11-08 19:15:30 +0000268
Dmitry Baryshkovc4d5f8d2008-06-09 13:23:50 +0100269 err = gpio_request(TOSA_GPIO_SD_WP, "SD Write Protect");
Dmitry Baryshkovd4e7d092008-04-12 20:16:16 +0100270 if (err) {
271 printk(KERN_ERR "tosa_mci_init: can't request SD_WP gpio\n");
272 goto err_gpio_wp;
273 }
274 err = gpio_direction_input(TOSA_GPIO_SD_WP);
275 if (err)
276 goto err_gpio_wp_dir;
277
Dmitry Baryshkovc4d5f8d2008-06-09 13:23:50 +0100278 err = gpio_request(TOSA_GPIO_PWR_ON, "SD Power");
Dmitry Baryshkovd4e7d092008-04-12 20:16:16 +0100279 if (err) {
280 printk(KERN_ERR "tosa_mci_init: can't request SD_PWR gpio\n");
281 goto err_gpio_pwr;
282 }
283 err = gpio_direction_output(TOSA_GPIO_PWR_ON, 0);
284 if (err)
285 goto err_gpio_pwr_dir;
286
Dmitry Baryshkovc4d5f8d2008-06-09 13:23:50 +0100287 err = gpio_request(TOSA_GPIO_nSD_INT, "SD Int");
288 if (err) {
289 printk(KERN_ERR "tosa_mci_init: can't request SD_PWR gpio\n");
290 goto err_gpio_int;
291 }
292 err = gpio_direction_input(TOSA_GPIO_nSD_INT);
293 if (err)
294 goto err_gpio_int_dir;
295
Dmitry Baryshkovd4e7d092008-04-12 20:16:16 +0100296 return 0;
297
Dmitry Baryshkovc4d5f8d2008-06-09 13:23:50 +0100298err_gpio_int_dir:
299 gpio_free(TOSA_GPIO_nSD_INT);
300err_gpio_int:
Dmitry Baryshkovd4e7d092008-04-12 20:16:16 +0100301err_gpio_pwr_dir:
302 gpio_free(TOSA_GPIO_PWR_ON);
303err_gpio_pwr:
304err_gpio_wp_dir:
305 gpio_free(TOSA_GPIO_SD_WP);
306err_gpio_wp:
307 free_irq(TOSA_IRQ_GPIO_nSD_DETECT, data);
308err_irq:
Dmitry Baryshkovc4d5f8d2008-06-09 13:23:50 +0100309err_gpio_detect_dir:
310 gpio_free(TOSA_GPIO_nSD_DETECT);
311err_gpio_detect:
Russell King2687bd32008-01-23 14:05:58 +0000312 return err;
Dirk Opfera93876c2005-11-08 19:15:30 +0000313}
314
315static void tosa_mci_setpower(struct device *dev, unsigned int vdd)
316{
317 struct pxamci_platform_data* p_d = dev->platform_data;
318
319 if (( 1 << vdd) & p_d->ocr_mask) {
Dmitry Baryshkovd4e7d092008-04-12 20:16:16 +0100320 gpio_set_value(TOSA_GPIO_PWR_ON, 1);
Dirk Opfera93876c2005-11-08 19:15:30 +0000321 } else {
Dmitry Baryshkovd4e7d092008-04-12 20:16:16 +0100322 gpio_set_value(TOSA_GPIO_PWR_ON, 0);
Dirk Opfera93876c2005-11-08 19:15:30 +0000323 }
324}
325
326static int tosa_mci_get_ro(struct device *dev)
327{
Dmitry Baryshkovd4e7d092008-04-12 20:16:16 +0100328 return gpio_get_value(TOSA_GPIO_SD_WP);
Dirk Opfera93876c2005-11-08 19:15:30 +0000329}
330
331static void tosa_mci_exit(struct device *dev, void *data)
332{
Dmitry Baryshkovc4d5f8d2008-06-09 13:23:50 +0100333 gpio_free(TOSA_GPIO_nSD_INT);
Dmitry Baryshkovd4e7d092008-04-12 20:16:16 +0100334 gpio_free(TOSA_GPIO_PWR_ON);
335 gpio_free(TOSA_GPIO_SD_WP);
Dirk Opfera93876c2005-11-08 19:15:30 +0000336 free_irq(TOSA_IRQ_GPIO_nSD_DETECT, data);
Dmitry Baryshkovc4d5f8d2008-06-09 13:23:50 +0100337 gpio_free(TOSA_GPIO_nSD_DETECT);
Dirk Opfera93876c2005-11-08 19:15:30 +0000338}
339
340static struct pxamci_platform_data tosa_mci_platform_data = {
341 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
342 .init = tosa_mci_init,
343 .get_ro = tosa_mci_get_ro,
344 .setpower = tosa_mci_setpower,
345 .exit = tosa_mci_exit,
346};
347
348/*
349 * Irda
350 */
Dmitry Baryshkovb032fcc2008-06-12 11:42:07 +0100351static void tosa_irda_transceiver_mode(struct device *dev, int mode)
352{
353 if (mode & IR_OFF) {
354 gpio_set_value(TOSA_GPIO_IR_POWERDWN, 0);
355 pxa2xx_mfp_config(ARRAY_AND_SIZE(tosa_pin_irda_off));
356 gpio_direction_output(TOSA_GPIO_IRDA_TX, 0);
357 } else {
358 pxa2xx_mfp_config(ARRAY_AND_SIZE(tosa_pin_irda_on));
359 gpio_set_value(TOSA_GPIO_IR_POWERDWN, 1);
360 }
361}
362
Dmitry Baryshkovd4e7d092008-04-12 20:16:16 +0100363static int tosa_irda_startup(struct device *dev)
364{
365 int ret;
366
Dmitry Baryshkovb032fcc2008-06-12 11:42:07 +0100367 ret = gpio_request(TOSA_GPIO_IRDA_TX, "IrDA TX");
368 if (ret)
369 goto err_tx;
370 ret = gpio_direction_output(TOSA_GPIO_IRDA_TX, 0);
371 if (ret)
372 goto err_tx_dir;
373
Dmitry Baryshkovd4e7d092008-04-12 20:16:16 +0100374 ret = gpio_request(TOSA_GPIO_IR_POWERDWN, "IrDA powerdown");
375 if (ret)
Dmitry Baryshkovb032fcc2008-06-12 11:42:07 +0100376 goto err_pwr;
Dmitry Baryshkovd4e7d092008-04-12 20:16:16 +0100377
378 ret = gpio_direction_output(TOSA_GPIO_IR_POWERDWN, 0);
379 if (ret)
Dmitry Baryshkovb032fcc2008-06-12 11:42:07 +0100380 goto err_pwr_dir;
Dmitry Baryshkovd4e7d092008-04-12 20:16:16 +0100381
Dmitry Baryshkovb032fcc2008-06-12 11:42:07 +0100382 tosa_irda_transceiver_mode(dev, IR_SIRMODE | IR_OFF);
383
384 return 0;
385
386err_pwr_dir:
387 gpio_free(TOSA_GPIO_IR_POWERDWN);
388err_pwr:
389err_tx_dir:
390 gpio_free(TOSA_GPIO_IRDA_TX);
391err_tx:
Dmitry Baryshkovd4e7d092008-04-12 20:16:16 +0100392 return ret;
Dmitry Baryshkovb032fcc2008-06-12 11:42:07 +0100393}
Dmitry Baryshkovd4e7d092008-04-12 20:16:16 +0100394
395static void tosa_irda_shutdown(struct device *dev)
396{
Dmitry Baryshkovb032fcc2008-06-12 11:42:07 +0100397 tosa_irda_transceiver_mode(dev, IR_SIRMODE | IR_OFF);
Dmitry Baryshkovd4e7d092008-04-12 20:16:16 +0100398 gpio_free(TOSA_GPIO_IR_POWERDWN);
Dmitry Baryshkovb032fcc2008-06-12 11:42:07 +0100399 gpio_free(TOSA_GPIO_IRDA_TX);
Dirk Opfera93876c2005-11-08 19:15:30 +0000400}
401
402static struct pxaficp_platform_data tosa_ficp_platform_data = {
403 .transceiver_cap = IR_SIRMODE | IR_OFF,
404 .transceiver_mode = tosa_irda_transceiver_mode,
Dmitry Baryshkovd4e7d092008-04-12 20:16:16 +0100405 .startup = tosa_irda_startup,
406 .shutdown = tosa_irda_shutdown,
Dirk Opfera93876c2005-11-08 19:15:30 +0000407};
408
409/*
410 * Tosa Keyboard
411 */
412static struct platform_device tosakbd_device = {
413 .name = "tosa-keyboard",
414 .id = -1,
415};
Dirk Opfer8459c152005-11-06 14:27:52 +0000416
Dmitry Baryshkov93e9012f2008-01-21 01:04:20 -0500417static struct gpio_keys_button tosa_gpio_keys[] = {
Dmitry Baryshkov0aa975612008-04-12 20:02:50 +0100418 /*
419 * Two following keys are directly tied to "ON" button of tosa. Why?
420 * The first one can be used as a wakeup source, the second can't;
421 * also the first one is OR of ac_powered and on_button.
422 */
423 {
424 .type = EV_PWR,
425 .code = KEY_RESERVED,
426 .gpio = TOSA_GPIO_POWERON,
427 .desc = "Poweron",
428 .wakeup = 1,
429 .active_low = 1,
430 },
Dmitry Baryshkov93e9012f2008-01-21 01:04:20 -0500431 {
432 .type = EV_PWR,
433 .code = KEY_SUSPEND,
434 .gpio = TOSA_GPIO_ON_KEY,
435 .desc = "On key",
Dmitry Baryshkov0aa975612008-04-12 20:02:50 +0100436 /*
437 * can't be used as wakeup
438 * .wakeup = 1,
439 */
Dmitry Baryshkov93e9012f2008-01-21 01:04:20 -0500440 .active_low = 1,
441 },
442 {
443 .type = EV_KEY,
444 .code = TOSA_KEY_RECORD,
445 .gpio = TOSA_GPIO_RECORD_BTN,
446 .desc = "Record Button",
447 .wakeup = 1,
448 .active_low = 1,
449 },
450 {
451 .type = EV_KEY,
452 .code = TOSA_KEY_SYNC,
453 .gpio = TOSA_GPIO_SYNC,
454 .desc = "Sync Button",
455 .wakeup = 1,
456 .active_low = 1,
457 },
458};
459
460static struct gpio_keys_platform_data tosa_gpio_keys_platform_data = {
461 .buttons = tosa_gpio_keys,
462 .nbuttons = ARRAY_SIZE(tosa_gpio_keys),
463};
464
465static struct platform_device tosa_gpio_keys_device = {
466 .name = "gpio-keys",
467 .id = -1,
468 .dev = {
469 .platform_data = &tosa_gpio_keys_platform_data,
470 },
471};
472
Dirk Opfer6d0cf3e2006-03-31 02:31:12 -0800473/*
474 * Tosa LEDs
475 */
Dmitry Baryshkovba4eb7e2008-04-19 10:42:25 +0100476static struct gpio_led tosa_gpio_leds[] = {
Dmitry Baryshkov311c7362008-04-12 20:17:02 +0100477 {
478 .name = "tosa:amber:charge",
479 .default_trigger = "main-battery-charging",
480 .gpio = TOSA_GPIO_CHRG_ERR_LED,
481 },
482 {
483 .name = "tosa:green:mail",
484 .default_trigger = "nand-disk",
485 .gpio = TOSA_GPIO_NOTE_LED,
486 },
Dmitry Baryshkovc5461062008-04-19 10:42:06 +0100487 {
488 .name = "tosa:dual:wlan",
489 .default_trigger = "none",
490 .gpio = TOSA_GPIO_WLAN_LED,
491 },
492 {
493 .name = "tosa:blue:bluetooth",
494 .default_trigger = "none",
495 .gpio = TOSA_GPIO_BT_LED,
496 },
Dmitry Baryshkov311c7362008-04-12 20:17:02 +0100497};
498
Dmitry Baryshkovba4eb7e2008-04-19 10:42:25 +0100499static struct gpio_led_platform_data tosa_gpio_leds_platform_data = {
Dmitry Baryshkov311c7362008-04-12 20:17:02 +0100500 .leds = tosa_gpio_leds,
501 .num_leds = ARRAY_SIZE(tosa_gpio_leds),
502};
503
Dirk Opfer6d0cf3e2006-03-31 02:31:12 -0800504static struct platform_device tosaled_device = {
Dmitry Baryshkov311c7362008-04-12 20:17:02 +0100505 .name = "leds-gpio",
506 .id = -1,
507 .dev = {
508 .platform_data = &tosa_gpio_leds_platform_data,
509 },
Dirk Opfer6d0cf3e2006-03-31 02:31:12 -0800510};
511
Dirk Opfer8459c152005-11-06 14:27:52 +0000512static struct platform_device *devices[] __initdata = {
513 &tosascoop_device,
514 &tosascoop_jc_device,
Dirk Opfera93876c2005-11-08 19:15:30 +0000515 &tosakbd_device,
Dmitry Baryshkov93e9012f2008-01-21 01:04:20 -0500516 &tosa_gpio_keys_device,
Dirk Opfer6d0cf3e2006-03-31 02:31:12 -0800517 &tosaled_device,
Dirk Opfer8459c152005-11-06 14:27:52 +0000518};
519
Richard Purdie74617fb2006-06-19 19:57:12 +0100520static void tosa_poweroff(void)
521{
Dmitry Baryshkov86159a92008-05-22 16:21:48 +0100522 arm_machine_restart('g');
Richard Purdie74617fb2006-06-19 19:57:12 +0100523}
524
525static void tosa_restart(char mode)
526{
527 /* Bootloader magic for a reboot */
528 if((MSC0 & 0xffff0000) == 0x7ff00000)
529 MSC0 = (MSC0 & 0xffff) | 0x7ee00000;
530
531 tosa_poweroff();
532}
533
Dirk Opfer8459c152005-11-06 14:27:52 +0000534static void __init tosa_init(void)
535{
Dmitry Baryshkov2cb47342008-04-10 11:00:32 +0100536 pxa2xx_mfp_config(ARRAY_AND_SIZE(tosa_pin_config));
Dmitry Baryshkovb032fcc2008-06-12 11:42:07 +0100537 pxa2xx_mfp_config(ARRAY_AND_SIZE(tosa_pin_irda_off));
Dmitry Baryshkov2cb47342008-04-10 11:00:32 +0100538 gpio_set_wake(MFP_PIN_GPIO1, 1);
539 /* We can't pass to gpio-keys since it will drop the Reset altfunc */
540
Dmitry Baryshkov86159a92008-05-22 16:21:48 +0100541 init_gpio_reset(TOSA_GPIO_ON_RESET);
542
Richard Purdie74617fb2006-06-19 19:57:12 +0100543 pm_power_off = tosa_poweroff;
544 arm_pm_restart = tosa_restart;
545
Dirk Opfer8459c152005-11-06 14:27:52 +0000546 PCFR |= PCFR_OPDE;
547
Dirk Opfera93876c2005-11-08 19:15:30 +0000548 /* enable batt_fault */
Dirk Opfer8459c152005-11-06 14:27:52 +0000549 PMCR = 0x01;
550
Dirk Opfera93876c2005-11-08 19:15:30 +0000551 pxa_set_mci_info(&tosa_mci_platform_data);
552 pxa_set_udc_info(&udc_info);
553 pxa_set_ficp_info(&tosa_ficp_platform_data);
Dmitry Baryshkov481ea5a2008-04-10 15:43:18 +0100554 pxa_set_i2c_info(NULL);
Dirk Opfer4c18ad22005-11-08 19:15:50 +0000555 platform_scoop_config = &tosa_pcmcia_config;
Dirk Opfer8459c152005-11-06 14:27:52 +0000556
Dirk Opfer4c18ad22005-11-08 19:15:50 +0000557 platform_add_devices(devices, ARRAY_SIZE(devices));
Dirk Opfer8459c152005-11-06 14:27:52 +0000558}
559
560static void __init fixup_tosa(struct machine_desc *desc,
561 struct tag *tags, char **cmdline, struct meminfo *mi)
562{
563 sharpsl_save_param();
564 mi->nr_banks=1;
565 mi->bank[0].start = 0xa0000000;
566 mi->bank[0].node = 0;
567 mi->bank[0].size = (64*1024*1024);
568}
569
570MACHINE_START(TOSA, "SHARP Tosa")
Dirk Opfer8459c152005-11-06 14:27:52 +0000571 .phys_io = 0x40000000,
572 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
573 .fixup = fixup_tosa,
574 .map_io = pxa_map_io,
Eric Miaocd491042007-06-22 04:14:09 +0100575 .init_irq = pxa25x_init_irq,
Dirk Opfer8459c152005-11-06 14:27:52 +0000576 .init_machine = tosa_init,
577 .timer = &pxa_timer,
578MACHINE_END