2 * linux/arch/arm/mach-pxa/trizeps4.c
4 * Support for the Keith und Koep Trizeps4 Module Platform.
6 * Author: Jürgen Schindele
8 * Copyright: Jürgen Schindele
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #include <linux/init.h>
16 #include <linux/kernel.h>
17 #include <linux/platform_device.h>
18 #include <linux/sysdev.h>
19 #include <linux/interrupt.h>
20 #include <linux/sched.h>
21 #include <linux/bitops.h>
23 #include <linux/ioport.h>
24 #include <linux/delay.h>
25 #include <linux/serial_8250.h>
26 #include <linux/mtd/mtd.h>
27 #include <linux/mtd/physmap.h>
28 #include <linux/mtd/partitions.h>
30 #include <asm/types.h>
31 #include <asm/setup.h>
32 #include <asm/memory.h>
33 #include <asm/mach-types.h>
34 #include <mach/hardware.h>
36 #include <asm/sizes.h>
38 #include <asm/mach/arch.h>
39 #include <asm/mach/map.h>
40 #include <asm/mach/irq.h>
41 #include <asm/mach/flash.h>
43 #include <mach/pxa-regs.h>
44 #include <mach/pxa2xx-regs.h>
45 #include <mach/pxa2xx-gpio.h>
46 #include <mach/trizeps4.h>
47 #include <mach/audio.h>
48 #include <mach/pxafb.h>
50 #include <mach/irda.h>
51 #include <mach/ohci.h>
56 /********************************************************************************************
58 ********************************************************************************************/
59 static struct mtd_partition trizeps4_partitions[] = {
64 .mask_flags = MTD_WRITEABLE /* force read-only */
80 .size = MTDPART_SIZ_FULL,
84 static struct physmap_flash_data trizeps4_flash_data[] = {
86 .width = 4, /* bankwidth in bytes */
87 .parts = trizeps4_partitions,
88 .nr_parts = ARRAY_SIZE(trizeps4_partitions)
92 static struct resource flash_resource = {
93 .start = PXA_CS0_PHYS,
94 .end = PXA_CS0_PHYS + SZ_32M - 1,
95 .flags = IORESOURCE_MEM,
98 static struct platform_device flash_device = {
99 .name = "physmap-flash",
102 .platform_data = trizeps4_flash_data,
104 .resource = &flash_resource,
108 /********************************************************************************************
109 * DAVICOM DM9000 Ethernet
110 ********************************************************************************************/
111 static struct resource dm9000_resources[] = {
113 .start = TRIZEPS4_ETH_PHYS+0x300,
114 .end = TRIZEPS4_ETH_PHYS+0x400-1,
115 .flags = IORESOURCE_MEM,
118 .start = TRIZEPS4_ETH_PHYS+0x8300,
119 .end = TRIZEPS4_ETH_PHYS+0x8400-1,
120 .flags = IORESOURCE_MEM,
123 .start = TRIZEPS4_ETH_IRQ,
124 .end = TRIZEPS4_ETH_IRQ,
125 .flags = (IORESOURCE_IRQ | IRQ_TYPE_EDGE_RISING),
129 static struct platform_device dm9000_device = {
132 .num_resources = ARRAY_SIZE(dm9000_resources),
133 .resource = dm9000_resources,
136 /********************************************************************************************
137 * PXA270 serial ports
138 ********************************************************************************************/
139 static struct plat_serial8250_port tri_serial_ports[] = {
140 #ifdef CONFIG_SERIAL_PXA
141 /* this uses the own PXA driver */
146 /* this uses the generic 8520 driver */
148 .membase = (void *)&FFUART,
150 .flags = UPF_BOOT_AUTOCONF,
151 .iotype = UPIO_MEM32,
153 .uartclk = (921600*16),
156 .membase = (void *)&BTUART,
158 .flags = UPF_BOOT_AUTOCONF,
159 .iotype = UPIO_MEM32,
161 .uartclk = (921600*16),
169 static struct platform_device uart_devices = {
170 .name = "serial8250",
173 .platform_data = tri_serial_ports,
179 static struct platform_device * trizeps4_devices[] __initdata = {
185 #ifdef CONFIG_MACH_TRIZEPS4_CONXS
186 static short trizeps_conxs_bcr;
188 /* PCCARD power switching supports only 3,3V */
189 void board_pcmcia_power(int power)
192 /* switch power on, put in reset and enable buffers */
193 trizeps_conxs_bcr |= power;
194 trizeps_conxs_bcr |= ConXS_BCR_CF_RESET;
195 trizeps_conxs_bcr &= ~(ConXS_BCR_CF_BUF_EN);
196 ConXS_BCR = trizeps_conxs_bcr;
199 /* take reset away */
200 trizeps_conxs_bcr &= ~(ConXS_BCR_CF_RESET);
201 ConXS_BCR = trizeps_conxs_bcr;
205 trizeps_conxs_bcr |= ConXS_BCR_CF_RESET;
206 ConXS_BCR = trizeps_conxs_bcr;
208 /* switch power off */
209 trizeps_conxs_bcr &= ~(0xf);
210 ConXS_BCR = trizeps_conxs_bcr;
213 pr_debug("%s: o%s 0x%x\n", __func__, power ? "n": "ff", trizeps_conxs_bcr);
216 /* backlight power switching for LCD panel */
217 static void board_backlight_power(int on)
220 trizeps_conxs_bcr |= ConXS_BCR_L_DISP;
222 trizeps_conxs_bcr &= ~ConXS_BCR_L_DISP;
224 pr_debug("%s: o%s 0x%x\n", __func__, on ? "n" : "ff", trizeps_conxs_bcr);
225 ConXS_BCR = trizeps_conxs_bcr;
228 /* Powersupply for MMC/SD cardslot */
229 static void board_mci_power(struct device *dev, unsigned int vdd)
231 struct pxamci_platform_data* p_d = dev->platform_data;
233 if (( 1 << vdd) & p_d->ocr_mask) {
234 pr_debug("%s: on\n", __func__);
235 /* FIXME fill in values here */
237 pr_debug("%s: off\n", __func__);
238 /* FIXME fill in values here */
242 static short trizeps_conxs_ircr;
244 /* Switch modes and Power for IRDA receiver */
245 static void board_irda_mode(struct device *dev, int mode)
249 local_irq_save(flags);
250 if (mode & IR_SIRMODE) {
252 trizeps_conxs_ircr &= ~ConXS_IRCR_MODE;
253 } else if (mode & IR_FIRMODE) {
255 trizeps_conxs_ircr |= ConXS_IRCR_MODE;
257 pxa2xx_transceiver_mode(dev, mode);
259 trizeps_conxs_ircr |= ConXS_IRCR_SD;
261 trizeps_conxs_ircr &= ~ConXS_IRCR_SD;
263 /* FIXME write values to register */
264 local_irq_restore(flags);
268 /* for other baseboards define dummies */
269 void board_pcmcia_power(int power) {;}
270 #define board_backlight_power NULL
271 #define board_mci_power NULL
272 #define board_irda_mode NULL
274 #endif /* CONFIG_MACH_TRIZEPS4_CONXS */
275 EXPORT_SYMBOL(board_pcmcia_power);
277 static int trizeps4_mci_init(struct device *dev, irq_handler_t mci_detect_int, void *data)
280 /* setup GPIO for PXA27x MMC controller */
281 pxa_gpio_mode(GPIO32_MMCCLK_MD);
282 pxa_gpio_mode(GPIO112_MMCCMD_MD);
283 pxa_gpio_mode(GPIO92_MMCDAT0_MD);
284 pxa_gpio_mode(GPIO109_MMCDAT1_MD);
285 pxa_gpio_mode(GPIO110_MMCDAT2_MD);
286 pxa_gpio_mode(GPIO111_MMCDAT3_MD);
288 pxa_gpio_mode(GPIO_MMC_DET | GPIO_IN);
290 err = request_irq(TRIZEPS4_MMC_IRQ, mci_detect_int,
291 IRQF_DISABLED | IRQF_TRIGGER_RISING,
292 "MMC card detect", data);
294 printk(KERN_ERR "trizeps4_mci_init: MMC/SD: can't request MMC card detect IRQ\n");
299 static void trizeps4_mci_exit(struct device *dev, void *data)
301 free_irq(TRIZEPS4_MMC_IRQ, data);
304 static struct pxamci_platform_data trizeps4_mci_platform_data = {
305 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
306 .init = trizeps4_mci_init,
307 .exit = trizeps4_mci_exit,
308 .setpower = board_mci_power,
311 static struct pxaficp_platform_data trizeps4_ficp_platform_data = {
312 .transceiver_cap = IR_SIRMODE | IR_FIRMODE | IR_OFF,
313 .transceiver_mode = board_irda_mode,
316 static int trizeps4_ohci_init(struct device *dev)
318 /* setup Port1 GPIO pin. */
319 pxa_gpio_mode( 88 | GPIO_ALT_FN_1_IN); /* USBHPWR1 */
320 pxa_gpio_mode( 89 | GPIO_ALT_FN_2_OUT); /* USBHPEN1 */
322 /* Set the Power Control Polarity Low and Power Sense
323 Polarity Low to active low. */
324 UHCHR = (UHCHR | UHCHR_PCPL | UHCHR_PSPL) &
325 ~(UHCHR_SSEP1 | UHCHR_SSEP2 | UHCHR_SSEP3 | UHCHR_SSE);
330 static void trizeps4_ohci_exit(struct device *dev)
335 static struct pxaohci_platform_data trizeps4_ohci_platform_data = {
336 .port_mode = PMM_PERPORT_MODE,
337 .init = trizeps4_ohci_init,
338 .exit = trizeps4_ohci_exit,
341 static struct map_desc trizeps4_io_desc[] __initdata = {
343 .virtual = TRIZEPS4_CFSR_VIRT,
344 .pfn = __phys_to_pfn(TRIZEPS4_CFSR_PHYS),
345 .length = 0x00001000,
349 .virtual = TRIZEPS4_BOCR_VIRT,
350 .pfn = __phys_to_pfn(TRIZEPS4_BOCR_PHYS),
351 .length = 0x00001000,
355 .virtual = TRIZEPS4_IRCR_VIRT,
356 .pfn = __phys_to_pfn(TRIZEPS4_IRCR_PHYS),
357 .length = 0x00001000,
361 .virtual = TRIZEPS4_DICR_VIRT,
362 .pfn = __phys_to_pfn(TRIZEPS4_DICR_PHYS),
363 .length = 0x00001000,
367 .virtual = TRIZEPS4_UPSR_VIRT,
368 .pfn = __phys_to_pfn(TRIZEPS4_UPSR_PHYS),
369 .length = 0x00001000,
374 static struct pxafb_mode_info sharp_lcd_mode = {
385 .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT,
389 static struct pxafb_mach_info sharp_lcd = {
390 .modes = &sharp_lcd_mode,
394 .lccr0 = LCCR0_Color | LCCR0_Pas | LCCR0_Dual,
396 .pxafb_backlight_power = board_backlight_power,
399 static struct pxafb_mode_info toshiba_lcd_mode = {
414 static struct pxafb_mach_info toshiba_lcd = {
415 .modes = &toshiba_lcd_mode,
419 .lccr0 = LCCR0_Color | LCCR0_Act,
421 .pxafb_backlight_power = board_backlight_power,
424 static void __init trizeps4_init(void)
426 platform_add_devices(trizeps4_devices, ARRAY_SIZE(trizeps4_devices));
428 /* set_pxa_fb_info(&sharp_lcd); */
429 set_pxa_fb_info(&toshiba_lcd);
431 pxa_set_mci_info(&trizeps4_mci_platform_data);
432 pxa_set_ficp_info(&trizeps4_ficp_platform_data);
433 pxa_set_ohci_info(&trizeps4_ohci_platform_data);
434 pxa_set_ac97_info(NULL);
437 static void __init trizeps4_map_io(void)
440 iotable_init(trizeps4_io_desc, ARRAY_SIZE(trizeps4_io_desc));
443 pxa_gpio_mode(GPIO15_nCS_1_MD);
445 /* for off-module PIC on ConXS board */
446 pxa_gpio_mode(GPIO_PIC | GPIO_IN);
449 pxa_gpio_mode(GPIO_UCB1400 | GPIO_IN);
452 pxa_gpio_mode(GPIO78_nCS_2_MD);
453 pxa_gpio_mode(GPIO_DM9000 | GPIO_IN);
455 /* for PCMCIA device */
456 pxa_gpio_mode(GPIO_PCD | GPIO_IN);
457 pxa_gpio_mode(GPIO_PRDY | GPIO_IN);
459 /* for I2C adapter */
460 pxa_gpio_mode(GPIO117_I2CSCL_MD);
461 pxa_gpio_mode(GPIO118_I2CSDA_MD);
464 pxa_gpio_mode(GPIO_MMC_DET | GPIO_IN);
466 /* whats that for ??? */
467 pxa_gpio_mode(GPIO79_nCS_3_MD);
470 pxa_gpio_mode( GPIO_SYS_BUSY_LED | GPIO_OUT); /* LED1 */
471 pxa_gpio_mode( GPIO_HEARTBEAT_LED | GPIO_OUT); /* LED2 */
473 #ifdef CONFIG_MACH_TRIZEPS4_CONXS
474 #ifdef CONFIG_IDE_PXA_CF
475 /* if boot direct from compact flash dont disable power */
476 trizeps_conxs_bcr = 0x0009;
478 /* this is the reset value */
479 trizeps_conxs_bcr = 0x00A0;
481 ConXS_BCR = trizeps_conxs_bcr;
484 #warning FIXME - accessing PM registers directly is deprecated
491 /* Stop 3.6MHz and drive HIGH to PCMCIA and CS */
495 MACHINE_START(TRIZEPS4, "Keith und Koep Trizeps IV module")
496 /* MAINTAINER("Jürgen Schindele") */
497 .phys_io = 0x40000000,
498 .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc,
499 .boot_params = TRIZEPS4_SDRAM_BASE + 0x100,
500 .init_machine = trizeps4_init,
501 .map_io = trizeps4_map_io,
502 .init_irq = pxa27x_init_irq,