| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 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 King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 19 | #include <linux/platform_device.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/fb.h> | 
| Richard Purdie | 74617fb | 2006-06-19 19:57:12 +0100 | [diff] [blame] | 21 | #include <linux/pm.h> | 
| Richard Purdie | 8866035 | 2006-06-19 19:58:51 +0100 | [diff] [blame] | 22 | #include <linux/delay.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 |  | 
 | 24 | #include <asm/hardware.h> | 
 | 25 | #include <asm/mach-types.h> | 
 | 26 | #include <asm/irq.h> | 
 | 27 | #include <asm/setup.h> | 
| Richard Purdie | 74617fb | 2006-06-19 19:57:12 +0100 | [diff] [blame] | 28 | #include <asm/system.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> | 
| eric miao | a683b14 | 2008-03-03 09:44:25 +0800 | [diff] [blame] | 35 | #include <asm/arch/pxa2xx-gpio.h> | 
| Richard Purdie | 13b9d47 | 2005-09-15 14:53:22 +0100 | [diff] [blame] | 36 | #include <asm/arch/mmc.h> | 
 | 37 | #include <asm/arch/udc.h> | 
| Richard Purdie | 8e4b871 | 2005-10-30 14:38:52 +0000 | [diff] [blame] | 38 | #include <asm/arch/irda.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | #include <asm/arch/poodle.h> | 
 | 40 | #include <asm/arch/pxafb.h> | 
| Richard Purdie | faed568 | 2006-06-19 20:46:05 +0100 | [diff] [blame] | 41 | #include <asm/arch/sharpsl.h> | 
 | 42 | #include <asm/arch/ssp.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 |  | 
 | 44 | #include <asm/hardware/scoop.h> | 
 | 45 | #include <asm/hardware/locomo.h> | 
 | 46 | #include <asm/mach/sharpsl_param.h> | 
 | 47 |  | 
 | 48 | #include "generic.h" | 
| Russell King | 46c41e6 | 2007-05-15 15:39:36 +0100 | [diff] [blame] | 49 | #include "devices.h" | 
| Richard Purdie | faed568 | 2006-06-19 20:46:05 +0100 | [diff] [blame] | 50 | #include "sharpsl.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 |  | 
 | 52 | static struct resource poodle_scoop_resources[] = { | 
 | 53 | 	[0] = { | 
 | 54 | 		.start		= 0x10800000, | 
 | 55 | 		.end		= 0x10800fff, | 
 | 56 | 		.flags		= IORESOURCE_MEM, | 
 | 57 | 	}, | 
 | 58 | }; | 
 | 59 |  | 
 | 60 | static struct scoop_config poodle_scoop_setup = { | 
 | 61 | 	.io_dir		= POODLE_SCOOP_IO_DIR, | 
 | 62 | 	.io_out		= POODLE_SCOOP_IO_OUT, | 
 | 63 | }; | 
 | 64 |  | 
 | 65 | struct platform_device poodle_scoop_device = { | 
 | 66 | 	.name		= "sharp-scoop", | 
 | 67 | 	.id		= -1, | 
 | 68 | 	.dev		= { | 
 | 69 | 		.platform_data	= &poodle_scoop_setup, | 
 | 70 | 	}, | 
 | 71 | 	.num_resources	= ARRAY_SIZE(poodle_scoop_resources), | 
 | 72 | 	.resource	= poodle_scoop_resources, | 
 | 73 | }; | 
 | 74 |  | 
| Richard Purdie | a63ae44 | 2005-11-08 19:15:43 +0000 | [diff] [blame] | 75 | static void poodle_pcmcia_init(void) | 
 | 76 | { | 
 | 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); | 
 | 83 |  | 
 | 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); | 
 | 94 | } | 
 | 95 |  | 
| Richard Purdie | 0ce7625 | 2005-09-05 20:49:54 +0100 | [diff] [blame] | 96 | static struct scoop_pcmcia_dev poodle_pcmcia_scoop[] = { | 
 | 97 | { | 
 | 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", | 
 | 102 | }, | 
 | 103 | }; | 
 | 104 |  | 
| Richard Purdie | a63ae44 | 2005-11-08 19:15:43 +0000 | [diff] [blame] | 105 | static struct scoop_pcmcia_config poodle_pcmcia_config = { | 
 | 106 | 	.devs         = &poodle_pcmcia_scoop[0], | 
 | 107 | 	.num_devs     = 1, | 
 | 108 | 	.pcmcia_init  = poodle_pcmcia_init, | 
 | 109 | }; | 
 | 110 |  | 
 | 111 | EXPORT_SYMBOL(poodle_scoop_device); | 
 | 112 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 |  | 
 | 114 | /* LoCoMo device */ | 
 | 115 | static struct resource locomo_resources[] = { | 
 | 116 | 	[0] = { | 
 | 117 | 		.start		= 0x10000000, | 
 | 118 | 		.end		= 0x10001fff, | 
 | 119 | 		.flags		= IORESOURCE_MEM, | 
 | 120 | 	}, | 
 | 121 | 	[1] = { | 
 | 122 | 		.start		= IRQ_GPIO(10), | 
 | 123 | 		.end		= IRQ_GPIO(10), | 
 | 124 | 		.flags		= IORESOURCE_IRQ, | 
 | 125 | 	}, | 
 | 126 | }; | 
 | 127 |  | 
| Richard Purdie | faed568 | 2006-06-19 20:46:05 +0100 | [diff] [blame] | 128 | struct platform_device poodle_locomo_device = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | 	.name		= "locomo", | 
 | 130 | 	.id		= 0, | 
 | 131 | 	.num_resources	= ARRAY_SIZE(locomo_resources), | 
 | 132 | 	.resource	= locomo_resources, | 
 | 133 | }; | 
 | 134 |  | 
| Richard Purdie | faed568 | 2006-06-19 20:46:05 +0100 | [diff] [blame] | 135 | EXPORT_SYMBOL(poodle_locomo_device); | 
 | 136 |  | 
 | 137 | /* | 
 | 138 |  * Poodle SSP Device | 
 | 139 |  */ | 
 | 140 |  | 
 | 141 | struct platform_device poodle_ssp_device = { | 
 | 142 | 	.name		= "corgi-ssp", | 
 | 143 | 	.id		= -1, | 
 | 144 | }; | 
 | 145 |  | 
 | 146 | struct corgissp_machinfo poodle_ssp_machinfo = { | 
 | 147 | 	.port		= 1, | 
 | 148 | 	.cs_lcdcon	= -1, | 
 | 149 | 	.cs_ads7846	= -1, | 
 | 150 | 	.cs_max1111	= -1, | 
 | 151 | 	.clk_lcdcon	= 2, | 
 | 152 | 	.clk_ads7846	= 36, | 
 | 153 | 	.clk_max1111	= 2, | 
 | 154 | }; | 
 | 155 |  | 
 | 156 |  | 
 | 157 | /* | 
 | 158 |  * Poodle Touch Screen Device | 
 | 159 |  */ | 
 | 160 | static struct resource poodlets_resources[] = { | 
 | 161 | 	[0] = { | 
 | 162 | 		.start		= POODLE_IRQ_GPIO_TP_INT, | 
 | 163 | 		.end		= POODLE_IRQ_GPIO_TP_INT, | 
 | 164 | 		.flags		= IORESOURCE_IRQ, | 
 | 165 | 	}, | 
 | 166 | }; | 
 | 167 |  | 
| eric miao | 6a0bd09 | 2008-01-31 02:41:16 +0100 | [diff] [blame] | 168 | static unsigned long poodle_get_hsync_invperiod(void) | 
| Richard Purdie | faed568 | 2006-06-19 20:46:05 +0100 | [diff] [blame] | 169 | { | 
 | 170 | 	return 0; | 
 | 171 | } | 
 | 172 |  | 
 | 173 | static void poodle_null_hsync(void) | 
 | 174 | { | 
 | 175 | } | 
 | 176 |  | 
 | 177 | static struct corgits_machinfo  poodle_ts_machinfo = { | 
| eric miao | 6a0bd09 | 2008-01-31 02:41:16 +0100 | [diff] [blame] | 178 | 	.get_hsync_invperiod	= poodle_get_hsync_invperiod, | 
 | 179 | 	.put_hsync       	= poodle_null_hsync, | 
 | 180 | 	.wait_hsync      	= poodle_null_hsync, | 
| Richard Purdie | faed568 | 2006-06-19 20:46:05 +0100 | [diff] [blame] | 181 | }; | 
 | 182 |  | 
 | 183 | static struct platform_device poodle_ts_device = { | 
 | 184 | 	.name		= "corgi-ts", | 
 | 185 | 	.dev		= { | 
 | 186 | 		.platform_data	= &poodle_ts_machinfo, | 
 | 187 | 	}, | 
 | 188 | 	.id		= -1, | 
 | 189 | 	.num_resources	= ARRAY_SIZE(poodlets_resources), | 
 | 190 | 	.resource	= poodlets_resources, | 
 | 191 | }; | 
 | 192 |  | 
| Richard Purdie | 13b9d47 | 2005-09-15 14:53:22 +0100 | [diff] [blame] | 193 |  | 
 | 194 | /* | 
 | 195 |  * MMC/SD Device | 
 | 196 |  * | 
 | 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. | 
 | 199 |  */ | 
 | 200 | static struct pxamci_platform_data poodle_mci_platform_data; | 
 | 201 |  | 
| David Howells | 40220c1 | 2006-10-09 12:19:47 +0100 | [diff] [blame] | 202 | static int poodle_mci_init(struct device *dev, irq_handler_t poodle_detect_int, void *data) | 
| Richard Purdie | 13b9d47 | 2005-09-15 14:53:22 +0100 | [diff] [blame] | 203 | { | 
 | 204 | 	int err; | 
 | 205 |  | 
 | 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); | 
| Richard Purdie | 8866035 | 2006-06-19 19:58:51 +0100 | [diff] [blame] | 210 | 	pxa_gpio_mode(POODLE_GPIO_nSD_WP | GPIO_IN); | 
| Richard Purdie | 13b9d47 | 2005-09-15 14:53:22 +0100 | [diff] [blame] | 211 | 	pxa_gpio_mode(POODLE_GPIO_SD_PWR | GPIO_OUT); | 
| Richard Purdie | 8866035 | 2006-06-19 19:58:51 +0100 | [diff] [blame] | 212 | 	pxa_gpio_mode(POODLE_GPIO_SD_PWR1 | GPIO_OUT); | 
| Richard Purdie | 13b9d47 | 2005-09-15 14:53:22 +0100 | [diff] [blame] | 213 |  | 
 | 214 | 	poodle_mci_platform_data.detect_delay = msecs_to_jiffies(250); | 
 | 215 |  | 
| Russell King | 9ded96f | 2006-01-08 01:02:07 -0800 | [diff] [blame] | 216 | 	err = request_irq(POODLE_IRQ_GPIO_nSD_DETECT, poodle_detect_int, | 
| Thomas Gleixner | 52e405e | 2006-07-03 02:20:05 +0200 | [diff] [blame] | 217 | 			  IRQF_DISABLED | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, | 
| Russell King | 9ded96f | 2006-01-08 01:02:07 -0800 | [diff] [blame] | 218 | 			  "MMC card detect", data); | 
| Russell King | 2687bd3 | 2008-01-23 14:05:58 +0000 | [diff] [blame] | 219 | 	if (err) | 
| Richard Purdie | 13b9d47 | 2005-09-15 14:53:22 +0100 | [diff] [blame] | 220 | 		printk(KERN_ERR "poodle_mci_init: MMC/SD: can't request MMC card detect IRQ\n"); | 
| Richard Purdie | 13b9d47 | 2005-09-15 14:53:22 +0100 | [diff] [blame] | 221 |  | 
| Russell King | 2687bd3 | 2008-01-23 14:05:58 +0000 | [diff] [blame] | 222 | 	return err; | 
| Richard Purdie | 13b9d47 | 2005-09-15 14:53:22 +0100 | [diff] [blame] | 223 | } | 
 | 224 |  | 
 | 225 | static void poodle_mci_setpower(struct device *dev, unsigned int vdd) | 
 | 226 | { | 
 | 227 | 	struct pxamci_platform_data* p_d = dev->platform_data; | 
 | 228 |  | 
| Richard Purdie | 8866035 | 2006-06-19 19:58:51 +0100 | [diff] [blame] | 229 | 	if (( 1 << vdd) & p_d->ocr_mask) { | 
 | 230 | 		GPSR(POODLE_GPIO_SD_PWR) = GPIO_bit(POODLE_GPIO_SD_PWR); | 
 | 231 | 		mdelay(2); | 
 | 232 | 		GPSR(POODLE_GPIO_SD_PWR1) = GPIO_bit(POODLE_GPIO_SD_PWR1); | 
 | 233 | 	} else { | 
 | 234 | 		GPCR(POODLE_GPIO_SD_PWR1) = GPIO_bit(POODLE_GPIO_SD_PWR1); | 
 | 235 | 		GPCR(POODLE_GPIO_SD_PWR) = GPIO_bit(POODLE_GPIO_SD_PWR); | 
 | 236 | 	} | 
| Richard Purdie | 13b9d47 | 2005-09-15 14:53:22 +0100 | [diff] [blame] | 237 | } | 
 | 238 |  | 
| Richard Purdie | 8866035 | 2006-06-19 19:58:51 +0100 | [diff] [blame] | 239 | static int poodle_mci_get_ro(struct device *dev) | 
 | 240 | { | 
 | 241 | 	return GPLR(POODLE_GPIO_nSD_WP) & GPIO_bit(POODLE_GPIO_nSD_WP); | 
 | 242 | } | 
 | 243 |  | 
 | 244 |  | 
| Richard Purdie | 13b9d47 | 2005-09-15 14:53:22 +0100 | [diff] [blame] | 245 | static void poodle_mci_exit(struct device *dev, void *data) | 
 | 246 | { | 
 | 247 | 	free_irq(POODLE_IRQ_GPIO_nSD_DETECT, data); | 
 | 248 | } | 
 | 249 |  | 
 | 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, | 
| Richard Purdie | 8866035 | 2006-06-19 19:58:51 +0100 | [diff] [blame] | 253 | 	.get_ro		= poodle_mci_get_ro, | 
| Richard Purdie | 13b9d47 | 2005-09-15 14:53:22 +0100 | [diff] [blame] | 254 | 	.setpower 	= poodle_mci_setpower, | 
 | 255 | 	.exit		= poodle_mci_exit, | 
 | 256 | }; | 
 | 257 |  | 
 | 258 |  | 
 | 259 | /* | 
| Richard Purdie | 8e4b871 | 2005-10-30 14:38:52 +0000 | [diff] [blame] | 260 |  * Irda | 
 | 261 |  */ | 
 | 262 | static void poodle_irda_transceiver_mode(struct device *dev, int mode) | 
 | 263 | { | 
 | 264 | 	if (mode & IR_OFF) { | 
 | 265 | 		GPSR(POODLE_GPIO_IR_ON) = GPIO_bit(POODLE_GPIO_IR_ON); | 
 | 266 | 	} else { | 
 | 267 | 		GPCR(POODLE_GPIO_IR_ON) = GPIO_bit(POODLE_GPIO_IR_ON); | 
 | 268 | 	} | 
 | 269 | } | 
 | 270 |  | 
 | 271 | static struct pxaficp_platform_data poodle_ficp_platform_data = { | 
 | 272 | 	.transceiver_cap  = IR_SIRMODE | IR_OFF, | 
 | 273 | 	.transceiver_mode = poodle_irda_transceiver_mode, | 
 | 274 | }; | 
 | 275 |  | 
 | 276 |  | 
 | 277 | /* | 
| Richard Purdie | 13b9d47 | 2005-09-15 14:53:22 +0100 | [diff] [blame] | 278 |  * USB Device Controller | 
 | 279 |  */ | 
 | 280 | static void poodle_udc_command(int cmd) | 
 | 281 | { | 
 | 282 | 	switch(cmd)	{ | 
 | 283 | 	case PXA2XX_UDC_CMD_CONNECT: | 
 | 284 | 		GPSR(POODLE_GPIO_USB_PULLUP) = GPIO_bit(POODLE_GPIO_USB_PULLUP); | 
 | 285 | 		break; | 
 | 286 | 	case PXA2XX_UDC_CMD_DISCONNECT: | 
 | 287 | 		GPCR(POODLE_GPIO_USB_PULLUP) = GPIO_bit(POODLE_GPIO_USB_PULLUP); | 
 | 288 | 		break; | 
 | 289 | 	} | 
 | 290 | } | 
 | 291 |  | 
 | 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, | 
 | 295 | }; | 
 | 296 |  | 
 | 297 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | /* PXAFB device */ | 
| Richard Purdie | d14b272 | 2006-09-20 22:54:21 +0100 | [diff] [blame] | 299 | static struct pxafb_mode_info poodle_fb_mode = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | 	.pixclock	= 144700, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | 	.xres		= 320, | 
 | 302 | 	.yres		= 240, | 
 | 303 | 	.bpp		= 16, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | 	.hsync_len	= 7, | 
 | 305 | 	.left_margin	= 11, | 
 | 306 | 	.right_margin	= 30, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | 	.vsync_len	= 2, | 
 | 308 | 	.upper_margin	= 2, | 
 | 309 | 	.lower_margin	= 0, | 
 | 310 | 	.sync		= FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, | 
| Richard Purdie | d14b272 | 2006-09-20 22:54:21 +0100 | [diff] [blame] | 311 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 |  | 
| Richard Purdie | d14b272 | 2006-09-20 22:54:21 +0100 | [diff] [blame] | 313 | static struct pxafb_mach_info poodle_fb_info = { | 
 | 314 | 	.modes		= &poodle_fb_mode, | 
 | 315 | 	.num_modes	= 1, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | 	.lccr0		= LCCR0_Act | LCCR0_Sngl | LCCR0_Color, | 
 | 317 | 	.lccr3		= 0, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | }; | 
 | 319 |  | 
 | 320 | static struct platform_device *devices[] __initdata = { | 
| Richard Purdie | faed568 | 2006-06-19 20:46:05 +0100 | [diff] [blame] | 321 | 	&poodle_locomo_device, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | 	&poodle_scoop_device, | 
| Richard Purdie | faed568 | 2006-06-19 20:46:05 +0100 | [diff] [blame] | 323 | 	&poodle_ssp_device, | 
 | 324 | 	&poodle_ts_device, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | }; | 
 | 326 |  | 
| Richard Purdie | 74617fb | 2006-06-19 19:57:12 +0100 | [diff] [blame] | 327 | static void poodle_poweroff(void) | 
 | 328 | { | 
 | 329 | 	RCSR = RCSR_HWR | RCSR_WDR | RCSR_SMR | RCSR_GPR; | 
 | 330 | 	arm_machine_restart('h'); | 
 | 331 | } | 
 | 332 |  | 
 | 333 | static void poodle_restart(char mode) | 
 | 334 | { | 
 | 335 | 	RCSR = RCSR_HWR | RCSR_WDR | RCSR_SMR | RCSR_GPR; | 
 | 336 | 	arm_machine_restart('h'); | 
 | 337 | } | 
 | 338 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | static void __init poodle_init(void) | 
 | 340 | { | 
 | 341 | 	int ret = 0; | 
 | 342 |  | 
| Richard Purdie | 74617fb | 2006-06-19 19:57:12 +0100 | [diff] [blame] | 343 | 	pm_power_off = poodle_poweroff; | 
 | 344 | 	arm_pm_restart = poodle_restart; | 
 | 345 |  | 
| Richard Purdie | f29d245 | 2005-09-15 14:53:22 +0100 | [diff] [blame] | 346 | 	/* setup sleep mode values */ | 
 | 347 | 	PWER  = 0x00000002; | 
 | 348 | 	PFER  = 0x00000000; | 
 | 349 | 	PRER  = 0x00000002; | 
 | 350 | 	PGSR0 = 0x00008000; | 
 | 351 | 	PGSR1 = 0x003F0202; | 
 | 352 | 	PGSR2 = 0x0001C000; | 
 | 353 | 	PCFR |= PCFR_OPDE; | 
 | 354 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | 	/* cpu initialize */ | 
 | 356 | 	/* Pgsr Register */ | 
 | 357 |   	PGSR0 = 0x0146dd80; | 
 | 358 |   	PGSR1 = 0x03bf0890; | 
 | 359 |   	PGSR2 = 0x0001c000; | 
 | 360 |  | 
 | 361 | 	/* Alternate Register */ | 
 | 362 |   	GAFR0_L = 0x01001000; | 
 | 363 |   	GAFR0_U = 0x591a8010; | 
 | 364 |   	GAFR1_L = 0x900a8451; | 
 | 365 |   	GAFR1_U = 0xaaa5aaaa; | 
 | 366 |   	GAFR2_L = 0x8aaaaaaa; | 
 | 367 |   	GAFR2_U = 0x00000002; | 
 | 368 |  | 
 | 369 | 	/* Direction Register */ | 
 | 370 |   	GPDR0 = 0xd3f0904c; | 
 | 371 |   	GPDR1 = 0xfcffb7d3; | 
 | 372 |   	GPDR2 = 0x0001ffff; | 
 | 373 |  | 
 | 374 | 	/* Output Register */ | 
 | 375 |   	GPCR0 = 0x00000000; | 
 | 376 |   	GPCR1 = 0x00000000; | 
 | 377 |   	GPCR2 = 0x00000000; | 
 | 378 |  | 
 | 379 |   	GPSR0 = 0x00400000; | 
 | 380 |   	GPSR1 = 0x00000000; | 
 | 381 |         GPSR2 = 0x00000000; | 
 | 382 |  | 
| Richard Purdie | faed568 | 2006-06-19 20:46:05 +0100 | [diff] [blame] | 383 | 	set_pxa_fb_parent(&poodle_locomo_device.dev); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | 	set_pxa_fb_info(&poodle_fb_info); | 
| Richard Purdie | 13b9d47 | 2005-09-15 14:53:22 +0100 | [diff] [blame] | 385 | 	pxa_gpio_mode(POODLE_GPIO_USB_PULLUP | GPIO_OUT); | 
| Richard Purdie | 8e4b871 | 2005-10-30 14:38:52 +0000 | [diff] [blame] | 386 | 	pxa_gpio_mode(POODLE_GPIO_IR_ON | GPIO_OUT); | 
| Richard Purdie | 13b9d47 | 2005-09-15 14:53:22 +0100 | [diff] [blame] | 387 | 	pxa_set_udc_info(&udc_info); | 
 | 388 | 	pxa_set_mci_info(&poodle_mci_platform_data); | 
| Richard Purdie | 8e4b871 | 2005-10-30 14:38:52 +0000 | [diff] [blame] | 389 | 	pxa_set_ficp_info(&poodle_ficp_platform_data); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 |  | 
| Richard Purdie | a63ae44 | 2005-11-08 19:15:43 +0000 | [diff] [blame] | 391 | 	platform_scoop_config = &poodle_pcmcia_config; | 
| Richard Purdie | 0ce7625 | 2005-09-05 20:49:54 +0100 | [diff] [blame] | 392 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | 	ret = platform_add_devices(devices, ARRAY_SIZE(devices)); | 
 | 394 | 	if (ret) { | 
 | 395 | 		printk(KERN_WARNING "poodle: Unable to register LoCoMo device\n"); | 
 | 396 | 	} | 
| Richard Purdie | faed568 | 2006-06-19 20:46:05 +0100 | [diff] [blame] | 397 | 	corgi_ssp_set_machinfo(&poodle_ssp_machinfo); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | } | 
 | 399 |  | 
 | 400 | static void __init fixup_poodle(struct machine_desc *desc, | 
 | 401 | 		struct tag *tags, char **cmdline, struct meminfo *mi) | 
 | 402 | { | 
 | 403 | 	sharpsl_save_param(); | 
| Richard Purdie | b2e6f75 | 2006-04-02 17:11:00 +0100 | [diff] [blame] | 404 | 	mi->nr_banks=1; | 
 | 405 | 	mi->bank[0].start = 0xa0000000; | 
 | 406 | 	mi->bank[0].node = 0; | 
 | 407 | 	mi->bank[0].size = (32*1024*1024); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | } | 
 | 409 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | MACHINE_START(POODLE, "SHARP Poodle") | 
| Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 411 | 	.phys_io	= 0x40000000, | 
| Russell King | 68070bd | 2005-07-04 10:44:34 +0100 | [diff] [blame] | 412 | 	.io_pg_offst	= (io_p2v(0x40000000) >> 18) & 0xfffc, | 
| Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 413 | 	.fixup		= fixup_poodle, | 
| Richard Purdie | f29d245 | 2005-09-15 14:53:22 +0100 | [diff] [blame] | 414 | 	.map_io		= pxa_map_io, | 
| Eric Miao | cd49104 | 2007-06-22 04:14:09 +0100 | [diff] [blame] | 415 | 	.init_irq	= pxa25x_init_irq, | 
| Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 416 | 	.timer		= &pxa_timer, | 
 | 417 | 	.init_machine	= poodle_init, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 418 | MACHINE_END |