Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/mach-pxa/idp.c |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License version 2 as |
| 6 | * published by the Free Software Foundation. |
| 7 | * |
| 8 | * Copyright (c) 2001 Cliff Brake, Accelent Systems Inc. |
| 9 | * |
| 10 | * 2001-09-13: Cliff Brake <cbrake@accelent.com> |
| 11 | * Initial code |
| 12 | * |
| 13 | * 2005-02-15: Cliff Brake <cliff.brake@gmail.com> |
| 14 | * <http://www.vibren.com> <http://bec-systems.com> |
| 15 | * Updated for 2.6 kernel |
| 16 | * |
| 17 | */ |
| 18 | |
| 19 | #include <linux/init.h> |
| 20 | #include <linux/interrupt.h> |
Thomas Gleixner | 1623dee | 2006-07-01 22:32:20 +0100 | [diff] [blame^] | 21 | #include <linux/irq.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 22 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/fb.h> |
| 24 | |
| 25 | #include <asm/setup.h> |
| 26 | #include <asm/memory.h> |
| 27 | #include <asm/mach-types.h> |
| 28 | #include <asm/hardware.h> |
| 29 | #include <asm/irq.h> |
| 30 | |
| 31 | #include <asm/mach/arch.h> |
| 32 | #include <asm/mach/map.h> |
| 33 | |
| 34 | #include <asm/arch/pxa-regs.h> |
| 35 | #include <asm/arch/idp.h> |
| 36 | #include <asm/arch/pxafb.h> |
| 37 | #include <asm/arch/bitfield.h> |
| 38 | #include <asm/arch/mmc.h> |
| 39 | |
| 40 | #include "generic.h" |
| 41 | |
| 42 | /* TODO: |
| 43 | * - add pxa2xx_audio_ops_t device structure |
| 44 | * - Ethernet interrupt |
| 45 | */ |
| 46 | |
| 47 | static struct resource smc91x_resources[] = { |
| 48 | [0] = { |
| 49 | .start = (IDP_ETH_PHYS + 0x300), |
| 50 | .end = (IDP_ETH_PHYS + 0xfffff), |
| 51 | .flags = IORESOURCE_MEM, |
| 52 | }, |
| 53 | [1] = { |
| 54 | .start = IRQ_GPIO(4), |
| 55 | .end = IRQ_GPIO(4), |
| 56 | .flags = IORESOURCE_IRQ, |
| 57 | } |
| 58 | }; |
| 59 | |
| 60 | static struct platform_device smc91x_device = { |
| 61 | .name = "smc91x", |
| 62 | .id = 0, |
| 63 | .num_resources = ARRAY_SIZE(smc91x_resources), |
| 64 | .resource = smc91x_resources, |
| 65 | }; |
| 66 | |
| 67 | static void idp_backlight_power(int on) |
| 68 | { |
| 69 | if (on) { |
| 70 | IDP_CPLD_LCD |= (1<<1); |
| 71 | } else { |
| 72 | IDP_CPLD_LCD &= ~(1<<1); |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | static void idp_vlcd(int on) |
| 77 | { |
| 78 | if (on) { |
| 79 | IDP_CPLD_LCD |= (1<<2); |
| 80 | } else { |
| 81 | IDP_CPLD_LCD &= ~(1<<2); |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | static void idp_lcd_power(int on) |
| 86 | { |
| 87 | if (on) { |
| 88 | IDP_CPLD_LCD |= (1<<0); |
| 89 | } else { |
| 90 | IDP_CPLD_LCD &= ~(1<<0); |
| 91 | } |
| 92 | |
| 93 | /* call idp_vlcd for now as core driver does not support |
| 94 | * both power and vlcd hooks. Note, this is not technically |
| 95 | * the correct sequence, but seems to work. Disclaimer: |
| 96 | * this may eventually damage the display. |
| 97 | */ |
| 98 | |
| 99 | idp_vlcd(on); |
| 100 | } |
| 101 | |
| 102 | static struct pxafb_mach_info sharp_lm8v31 __initdata = { |
| 103 | .pixclock = 270000, |
| 104 | .xres = 640, |
| 105 | .yres = 480, |
| 106 | .bpp = 16, |
| 107 | .hsync_len = 1, |
| 108 | .left_margin = 3, |
| 109 | .right_margin = 3, |
| 110 | .vsync_len = 1, |
| 111 | .upper_margin = 0, |
| 112 | .lower_margin = 0, |
| 113 | .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, |
| 114 | .cmap_greyscale = 0, |
| 115 | .cmap_inverse = 0, |
| 116 | .cmap_static = 0, |
| 117 | .lccr0 = LCCR0_SDS, |
| 118 | .lccr3 = LCCR3_PCP | LCCR3_Acb(255), |
| 119 | .pxafb_backlight_power = &idp_backlight_power, |
| 120 | .pxafb_lcd_power = &idp_lcd_power |
| 121 | }; |
| 122 | |
| 123 | static int idp_mci_init(struct device *dev, irqreturn_t (*idp_detect_int)(int, void *, struct pt_regs *), void *data) |
| 124 | { |
| 125 | /* setup GPIO for PXA25x MMC controller */ |
| 126 | pxa_gpio_mode(GPIO6_MMCCLK_MD); |
| 127 | pxa_gpio_mode(GPIO8_MMCCS0_MD); |
| 128 | |
| 129 | return 0; |
| 130 | } |
| 131 | |
| 132 | static struct pxamci_platform_data idp_mci_platform_data = { |
| 133 | .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34, |
| 134 | .init = idp_mci_init, |
| 135 | }; |
| 136 | |
| 137 | static void __init idp_init(void) |
| 138 | { |
| 139 | printk("idp_init()\n"); |
| 140 | |
| 141 | platform_device_register(&smc91x_device); |
| 142 | //platform_device_register(&mst_audio_device); |
| 143 | set_pxa_fb_info(&sharp_lm8v31); |
| 144 | pxa_set_mci_info(&idp_mci_platform_data); |
| 145 | } |
| 146 | |
| 147 | static void __init idp_init_irq(void) |
| 148 | { |
| 149 | |
| 150 | pxa_init_irq(); |
| 151 | |
| 152 | set_irq_type(TOUCH_PANEL_IRQ, TOUCH_PANEL_IRQ_EDGE); |
| 153 | } |
| 154 | |
| 155 | static struct map_desc idp_io_desc[] __initdata = { |
Deepak Saxena | 6f9182e | 2005-10-28 15:19:01 +0100 | [diff] [blame] | 156 | { |
| 157 | .virtual = IDP_COREVOLT_VIRT, |
| 158 | .pfn = __phys_to_pfn(IDP_COREVOLT_PHYS), |
| 159 | .length = IDP_COREVOLT_SIZE, |
| 160 | .type = MT_DEVICE |
| 161 | }, { |
| 162 | .virtual = IDP_CPLD_VIRT, |
| 163 | .pfn = __phys_to_pfn(IDP_CPLD_PHYS), |
| 164 | .length = IDP_CPLD_SIZE, |
| 165 | .type = MT_DEVICE |
| 166 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | }; |
| 168 | |
| 169 | static void __init idp_map_io(void) |
| 170 | { |
| 171 | pxa_map_io(); |
| 172 | iotable_init(idp_io_desc, ARRAY_SIZE(idp_io_desc)); |
| 173 | |
| 174 | // serial ports 2 & 3 |
| 175 | pxa_gpio_mode(GPIO42_BTRXD_MD); |
| 176 | pxa_gpio_mode(GPIO43_BTTXD_MD); |
| 177 | pxa_gpio_mode(GPIO44_BTCTS_MD); |
| 178 | pxa_gpio_mode(GPIO45_BTRTS_MD); |
| 179 | pxa_gpio_mode(GPIO46_STRXD_MD); |
| 180 | pxa_gpio_mode(GPIO47_STTXD_MD); |
| 181 | |
| 182 | } |
| 183 | |
| 184 | |
| 185 | MACHINE_START(PXA_IDP, "Vibren PXA255 IDP") |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 186 | /* Maintainer: Vibren Technologies */ |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 187 | .phys_io = 0x40000000, |
Russell King | 68070bd | 2005-07-04 10:44:34 +0100 | [diff] [blame] | 188 | .io_pg_offst = (io_p2v(0x40000000) >> 18) & 0xfffc, |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 189 | .map_io = idp_map_io, |
| 190 | .init_irq = idp_init_irq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | .timer = &pxa_timer, |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 192 | .init_machine = idp_init, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | MACHINE_END |