2 * linux/arch/arm/mach-pxa/poodle.c
4 * Support for the SHARP Poodle Board.
7 * linux/arch/arm/mach-pxa/lubbock.c Author: Nicolas Pitre
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.
14 * 12-Dec-2002 Sharp Corporation for Poodle
15 * John Lenz <lenz@cs.wisc.edu> updates to 2.6
17 #include <linux/kernel.h>
18 #include <linux/init.h>
19 #include <linux/platform_device.h>
22 #include <linux/delay.h>
24 #include <asm/hardware.h>
25 #include <asm/mach-types.h>
27 #include <asm/setup.h>
28 #include <asm/system.h>
30 #include <asm/mach/arch.h>
31 #include <asm/mach/map.h>
32 #include <asm/mach/irq.h>
34 #include <asm/arch/pxa-regs.h>
35 #include <asm/arch/pxa2xx-gpio.h>
36 #include <asm/arch/mmc.h>
37 #include <asm/arch/udc.h>
38 #include <asm/arch/irda.h>
39 #include <asm/arch/poodle.h>
40 #include <asm/arch/pxafb.h>
41 #include <asm/arch/sharpsl.h>
42 #include <asm/arch/ssp.h>
44 #include <asm/hardware/scoop.h>
45 #include <asm/hardware/locomo.h>
46 #include <asm/mach/sharpsl_param.h>
52 static struct resource poodle_scoop_resources[] = {
56 .flags = IORESOURCE_MEM,
60 static struct scoop_config poodle_scoop_setup = {
61 .io_dir = POODLE_SCOOP_IO_DIR,
62 .io_out = POODLE_SCOOP_IO_OUT,
65 struct platform_device poodle_scoop_device = {
66 .name = "sharp-scoop",
69 .platform_data = &poodle_scoop_setup,
71 .num_resources = ARRAY_SIZE(poodle_scoop_resources),
72 .resource = poodle_scoop_resources,
75 static void poodle_pcmcia_init(void)
77 /* Setup default state of GPIO outputs
78 before we enable them as outputs. */
79 GPSR(GPIO48_nPOE) = GPIO_bit(GPIO48_nPOE) |
80 GPIO_bit(GPIO49_nPWE) | GPIO_bit(GPIO50_nPIOR) |
81 GPIO_bit(GPIO51_nPIOW) | GPIO_bit(GPIO52_nPCE_1) |
82 GPIO_bit(GPIO53_nPCE_2);
84 pxa_gpio_mode(GPIO48_nPOE_MD);
85 pxa_gpio_mode(GPIO49_nPWE_MD);
86 pxa_gpio_mode(GPIO50_nPIOR_MD);
87 pxa_gpio_mode(GPIO51_nPIOW_MD);
88 pxa_gpio_mode(GPIO55_nPREG_MD);
89 pxa_gpio_mode(GPIO56_nPWAIT_MD);
90 pxa_gpio_mode(GPIO57_nIOIS16_MD);
91 pxa_gpio_mode(GPIO52_nPCE_1_MD);
92 pxa_gpio_mode(GPIO53_nPCE_2_MD);
93 pxa_gpio_mode(GPIO54_pSKTSEL_MD);
96 static struct scoop_pcmcia_dev poodle_pcmcia_scoop[] = {
98 .dev = &poodle_scoop_device.dev,
99 .irq = POODLE_IRQ_GPIO_CF_IRQ,
100 .cd_irq = POODLE_IRQ_GPIO_CF_CD,
101 .cd_irq_str = "PCMCIA0 CD",
105 static struct scoop_pcmcia_config poodle_pcmcia_config = {
106 .devs = &poodle_pcmcia_scoop[0],
108 .pcmcia_init = poodle_pcmcia_init,
111 EXPORT_SYMBOL(poodle_scoop_device);
115 static struct resource locomo_resources[] = {
119 .flags = IORESOURCE_MEM,
122 .start = IRQ_GPIO(10),
124 .flags = IORESOURCE_IRQ,
128 struct platform_device poodle_locomo_device = {
131 .num_resources = ARRAY_SIZE(locomo_resources),
132 .resource = locomo_resources,
135 EXPORT_SYMBOL(poodle_locomo_device);
141 struct platform_device poodle_ssp_device = {
146 struct corgissp_machinfo poodle_ssp_machinfo = {
158 * Poodle Touch Screen Device
160 static struct resource poodlets_resources[] = {
162 .start = POODLE_IRQ_GPIO_TP_INT,
163 .end = POODLE_IRQ_GPIO_TP_INT,
164 .flags = IORESOURCE_IRQ,
168 static unsigned long poodle_get_hsync_invperiod(void)
173 static void poodle_null_hsync(void)
177 static struct corgits_machinfo poodle_ts_machinfo = {
178 .get_hsync_invperiod = poodle_get_hsync_invperiod,
179 .put_hsync = poodle_null_hsync,
180 .wait_hsync = poodle_null_hsync,
183 static struct platform_device poodle_ts_device = {
186 .platform_data = &poodle_ts_machinfo,
189 .num_resources = ARRAY_SIZE(poodlets_resources),
190 .resource = poodlets_resources,
197 * The card detect interrupt isn't debounced so we delay it by 250ms
198 * to give the card a chance to fully insert/eject.
200 static struct pxamci_platform_data poodle_mci_platform_data;
202 static int poodle_mci_init(struct device *dev, irq_handler_t poodle_detect_int, void *data)
206 /* setup GPIO for PXA25x MMC controller */
207 pxa_gpio_mode(GPIO6_MMCCLK_MD);
208 pxa_gpio_mode(GPIO8_MMCCS0_MD);
209 pxa_gpio_mode(POODLE_GPIO_nSD_DETECT | GPIO_IN);
210 pxa_gpio_mode(POODLE_GPIO_nSD_WP | GPIO_IN);
211 pxa_gpio_mode(POODLE_GPIO_SD_PWR | GPIO_OUT);
212 pxa_gpio_mode(POODLE_GPIO_SD_PWR1 | GPIO_OUT);
214 poodle_mci_platform_data.detect_delay = msecs_to_jiffies(250);
216 err = request_irq(POODLE_IRQ_GPIO_nSD_DETECT, poodle_detect_int,
217 IRQF_DISABLED | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
218 "MMC card detect", data);
220 printk(KERN_ERR "poodle_mci_init: MMC/SD: can't request MMC card detect IRQ\n");
225 static void poodle_mci_setpower(struct device *dev, unsigned int vdd)
227 struct pxamci_platform_data* p_d = dev->platform_data;
229 if (( 1 << vdd) & p_d->ocr_mask) {
230 GPSR(POODLE_GPIO_SD_PWR) = GPIO_bit(POODLE_GPIO_SD_PWR);
232 GPSR(POODLE_GPIO_SD_PWR1) = GPIO_bit(POODLE_GPIO_SD_PWR1);
234 GPCR(POODLE_GPIO_SD_PWR1) = GPIO_bit(POODLE_GPIO_SD_PWR1);
235 GPCR(POODLE_GPIO_SD_PWR) = GPIO_bit(POODLE_GPIO_SD_PWR);
239 static int poodle_mci_get_ro(struct device *dev)
241 return GPLR(POODLE_GPIO_nSD_WP) & GPIO_bit(POODLE_GPIO_nSD_WP);
245 static void poodle_mci_exit(struct device *dev, void *data)
247 free_irq(POODLE_IRQ_GPIO_nSD_DETECT, data);
250 static struct pxamci_platform_data poodle_mci_platform_data = {
251 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
252 .init = poodle_mci_init,
253 .get_ro = poodle_mci_get_ro,
254 .setpower = poodle_mci_setpower,
255 .exit = poodle_mci_exit,
262 static void poodle_irda_transceiver_mode(struct device *dev, int mode)
265 GPSR(POODLE_GPIO_IR_ON) = GPIO_bit(POODLE_GPIO_IR_ON);
267 GPCR(POODLE_GPIO_IR_ON) = GPIO_bit(POODLE_GPIO_IR_ON);
271 static struct pxaficp_platform_data poodle_ficp_platform_data = {
272 .transceiver_cap = IR_SIRMODE | IR_OFF,
273 .transceiver_mode = poodle_irda_transceiver_mode,
278 * USB Device Controller
280 static void poodle_udc_command(int cmd)
283 case PXA2XX_UDC_CMD_CONNECT:
284 GPSR(POODLE_GPIO_USB_PULLUP) = GPIO_bit(POODLE_GPIO_USB_PULLUP);
286 case PXA2XX_UDC_CMD_DISCONNECT:
287 GPCR(POODLE_GPIO_USB_PULLUP) = GPIO_bit(POODLE_GPIO_USB_PULLUP);
292 static struct pxa2xx_udc_mach_info udc_info __initdata = {
293 /* no connect GPIO; poodle can't tell connection status */
294 .udc_command = poodle_udc_command,
299 static struct pxafb_mode_info poodle_fb_mode = {
310 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
313 static struct pxafb_mach_info poodle_fb_info = {
314 .modes = &poodle_fb_mode,
316 .lccr0 = LCCR0_Act | LCCR0_Sngl | LCCR0_Color,
320 static struct platform_device *devices[] __initdata = {
321 &poodle_locomo_device,
322 &poodle_scoop_device,
327 static void poodle_poweroff(void)
329 arm_machine_restart('h');
332 static void poodle_restart(char mode)
334 arm_machine_restart('h');
337 static void __init poodle_init(void)
341 pm_power_off = poodle_poweroff;
342 arm_pm_restart = poodle_restart;
344 /* setup sleep mode values */
359 /* Alternate Register */
360 GAFR0_L = 0x01001000;
361 GAFR0_U = 0x591a8010;
362 GAFR1_L = 0x900a8451;
363 GAFR1_U = 0xaaa5aaaa;
364 GAFR2_L = 0x8aaaaaaa;
365 GAFR2_U = 0x00000002;
367 /* Direction Register */
372 /* Output Register */
381 set_pxa_fb_parent(&poodle_locomo_device.dev);
382 set_pxa_fb_info(&poodle_fb_info);
383 pxa_gpio_mode(POODLE_GPIO_USB_PULLUP | GPIO_OUT);
384 pxa_gpio_mode(POODLE_GPIO_IR_ON | GPIO_OUT);
385 pxa_set_udc_info(&udc_info);
386 pxa_set_mci_info(&poodle_mci_platform_data);
387 pxa_set_ficp_info(&poodle_ficp_platform_data);
389 platform_scoop_config = &poodle_pcmcia_config;
391 ret = platform_add_devices(devices, ARRAY_SIZE(devices));
393 printk(KERN_WARNING "poodle: Unable to register LoCoMo device\n");
395 corgi_ssp_set_machinfo(&poodle_ssp_machinfo);
398 static void __init fixup_poodle(struct machine_desc *desc,
399 struct tag *tags, char **cmdline, struct meminfo *mi)
401 sharpsl_save_param();
403 mi->bank[0].start = 0xa0000000;
404 mi->bank[0].node = 0;
405 mi->bank[0].size = (32*1024*1024);
408 MACHINE_START(POODLE, "SHARP Poodle")
409 .phys_io = 0x40000000,
410 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
411 .fixup = fixup_poodle,
412 .map_io = pxa_map_io,
413 .init_irq = pxa25x_init_irq,
415 .init_machine = poodle_init,