Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 1 | /* |
Uwe Zeisberger | f30c226 | 2006-10-03 23:01:26 +0200 | [diff] [blame] | 2 | * linux/arch/arm/mach-omap2/board-apollon.c |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2005,2006 Samsung Electronics |
| 5 | * Author: Kyungmin Park <kyungmin.park@samsung.com> |
| 6 | * |
| 7 | * Modified from mach-omap/omap2/board-h4.c |
| 8 | * |
| 9 | * Code for apollon OMAP2 board. Should work on many OMAP2 systems where |
| 10 | * the bootloader passes the board-specific data to the kernel. |
| 11 | * Do not put any board specific code to this file; create a new machine |
| 12 | * type if you need custom low-level initializations. |
| 13 | * |
| 14 | * This program is free software; you can redistribute it and/or modify |
| 15 | * it under the terms of the GNU General Public License version 2 as |
| 16 | * published by the Free Software Foundation. |
| 17 | */ |
| 18 | |
| 19 | #include <linux/kernel.h> |
| 20 | #include <linux/init.h> |
| 21 | #include <linux/platform_device.h> |
| 22 | #include <linux/mtd/mtd.h> |
| 23 | #include <linux/mtd/partitions.h> |
| 24 | #include <linux/mtd/onenand.h> |
Kyungmin Park | 463cab3 | 2006-12-29 16:48:56 -0800 | [diff] [blame] | 25 | #include <linux/irq.h> |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 26 | #include <linux/interrupt.h> |
| 27 | #include <linux/delay.h> |
Kyungmin Park | f024840 | 2006-12-06 17:13:53 -0800 | [diff] [blame] | 28 | #include <linux/leds.h> |
Paul Walmsley | 4459598 | 2008-03-18 10:04:51 +0200 | [diff] [blame] | 29 | #include <linux/err.h> |
| 30 | #include <linux/clk.h> |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 31 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 32 | #include <mach/hardware.h> |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 33 | #include <asm/mach-types.h> |
| 34 | #include <asm/mach/arch.h> |
| 35 | #include <asm/mach/flash.h> |
| 36 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 37 | #include <mach/gpio.h> |
| 38 | #include <mach/led.h> |
| 39 | #include <mach/mux.h> |
| 40 | #include <mach/usb.h> |
| 41 | #include <mach/board.h> |
| 42 | #include <mach/common.h> |
| 43 | #include <mach/gpmc.h> |
| 44 | #include <mach/control.h> |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 45 | |
| 46 | /* LED & Switch macros */ |
| 47 | #define LED0_GPIO13 13 |
| 48 | #define LED1_GPIO14 14 |
| 49 | #define LED2_GPIO15 15 |
| 50 | #define SW_ENTER_GPIO16 16 |
| 51 | #define SW_UP_GPIO17 17 |
| 52 | #define SW_DOWN_GPIO58 58 |
| 53 | |
Kyungmin Park | f024840 | 2006-12-06 17:13:53 -0800 | [diff] [blame] | 54 | #define APOLLON_FLASH_CS 0 |
| 55 | #define APOLLON_ETH_CS 1 |
| 56 | |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 57 | static struct mtd_partition apollon_partitions[] = { |
| 58 | { |
| 59 | .name = "X-Loader + U-Boot", |
| 60 | .offset = 0, |
| 61 | .size = SZ_128K, |
| 62 | .mask_flags = MTD_WRITEABLE, |
| 63 | }, |
| 64 | { |
| 65 | .name = "params", |
| 66 | .offset = MTDPART_OFS_APPEND, |
| 67 | .size = SZ_128K, |
| 68 | }, |
| 69 | { |
| 70 | .name = "kernel", |
| 71 | .offset = MTDPART_OFS_APPEND, |
| 72 | .size = SZ_2M, |
| 73 | }, |
| 74 | { |
| 75 | .name = "rootfs", |
| 76 | .offset = MTDPART_OFS_APPEND, |
| 77 | .size = SZ_16M, |
| 78 | }, |
| 79 | { |
| 80 | .name = "filesystem00", |
| 81 | .offset = MTDPART_OFS_APPEND, |
| 82 | .size = SZ_32M, |
| 83 | }, |
| 84 | { |
| 85 | .name = "filesystem01", |
| 86 | .offset = MTDPART_OFS_APPEND, |
| 87 | .size = MTDPART_SIZ_FULL, |
| 88 | }, |
| 89 | }; |
| 90 | |
| 91 | static struct flash_platform_data apollon_flash_data = { |
| 92 | .parts = apollon_partitions, |
| 93 | .nr_parts = ARRAY_SIZE(apollon_partitions), |
| 94 | }; |
| 95 | |
Kyungmin Park | f024840 | 2006-12-06 17:13:53 -0800 | [diff] [blame] | 96 | static struct resource apollon_flash_resource[] = { |
| 97 | [0] = { |
| 98 | .flags = IORESOURCE_MEM, |
| 99 | }, |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 100 | }; |
| 101 | |
| 102 | static struct platform_device apollon_onenand_device = { |
| 103 | .name = "onenand", |
| 104 | .id = -1, |
| 105 | .dev = { |
| 106 | .platform_data = &apollon_flash_data, |
| 107 | }, |
Kyungmin Park | f024840 | 2006-12-06 17:13:53 -0800 | [diff] [blame] | 108 | .num_resources = ARRAY_SIZE(apollon_flash_resource), |
| 109 | .resource = apollon_flash_resource, |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 110 | }; |
| 111 | |
Kyungmin Park | f024840 | 2006-12-06 17:13:53 -0800 | [diff] [blame] | 112 | static void __init apollon_flash_init(void) |
| 113 | { |
| 114 | unsigned long base; |
| 115 | |
| 116 | if (gpmc_cs_request(APOLLON_FLASH_CS, SZ_128K, &base) < 0) { |
| 117 | printk(KERN_ERR "Cannot request OneNAND GPMC CS\n"); |
| 118 | return; |
| 119 | } |
| 120 | apollon_flash_resource[0].start = base; |
| 121 | apollon_flash_resource[0].end = base + SZ_128K - 1; |
| 122 | } |
| 123 | |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 124 | static struct resource apollon_smc91x_resources[] = { |
| 125 | [0] = { |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 126 | .flags = IORESOURCE_MEM, |
| 127 | }, |
| 128 | [1] = { |
| 129 | .start = OMAP_GPIO_IRQ(APOLLON_ETHR_GPIO_IRQ), |
| 130 | .end = OMAP_GPIO_IRQ(APOLLON_ETHR_GPIO_IRQ), |
Russell King | e7b3dc7 | 2008-01-14 22:30:10 +0000 | [diff] [blame] | 131 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE, |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 132 | }, |
| 133 | }; |
| 134 | |
| 135 | static struct platform_device apollon_smc91x_device = { |
| 136 | .name = "smc91x", |
| 137 | .id = -1, |
| 138 | .num_resources = ARRAY_SIZE(apollon_smc91x_resources), |
| 139 | .resource = apollon_smc91x_resources, |
| 140 | }; |
| 141 | |
| 142 | static struct platform_device apollon_lcd_device = { |
| 143 | .name = "apollon_lcd", |
| 144 | .id = -1, |
| 145 | }; |
| 146 | |
Kyungmin Park | f024840 | 2006-12-06 17:13:53 -0800 | [diff] [blame] | 147 | static struct omap_led_config apollon_led_config[] = { |
| 148 | { |
| 149 | .cdev = { |
| 150 | .name = "apollon:led0", |
| 151 | }, |
| 152 | .gpio = LED0_GPIO13, |
| 153 | }, |
| 154 | { |
| 155 | .cdev = { |
| 156 | .name = "apollon:led1", |
| 157 | }, |
| 158 | .gpio = LED1_GPIO14, |
| 159 | }, |
| 160 | { |
| 161 | .cdev = { |
| 162 | .name = "apollon:led2", |
| 163 | }, |
| 164 | .gpio = LED2_GPIO15, |
| 165 | }, |
| 166 | }; |
| 167 | |
| 168 | static struct omap_led_platform_data apollon_led_data = { |
| 169 | .nr_leds = ARRAY_SIZE(apollon_led_config), |
| 170 | .leds = apollon_led_config, |
| 171 | }; |
| 172 | |
| 173 | static struct platform_device apollon_led_device = { |
| 174 | .name = "omap-led", |
| 175 | .id = -1, |
| 176 | .dev = { |
| 177 | .platform_data = &apollon_led_data, |
| 178 | }, |
| 179 | }; |
| 180 | |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 181 | static struct platform_device *apollon_devices[] __initdata = { |
| 182 | &apollon_onenand_device, |
| 183 | &apollon_smc91x_device, |
| 184 | &apollon_lcd_device, |
Kyungmin Park | f024840 | 2006-12-06 17:13:53 -0800 | [diff] [blame] | 185 | &apollon_led_device, |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 186 | }; |
| 187 | |
| 188 | static inline void __init apollon_init_smc91x(void) |
| 189 | { |
Kyungmin Park | f024840 | 2006-12-06 17:13:53 -0800 | [diff] [blame] | 190 | unsigned long base; |
| 191 | |
Paul Walmsley | 4459598 | 2008-03-18 10:04:51 +0200 | [diff] [blame] | 192 | unsigned int rate; |
| 193 | struct clk *gpmc_fck; |
| 194 | int eth_cs; |
| 195 | |
| 196 | gpmc_fck = clk_get(NULL, "gpmc_fck"); /* Always on ENABLE_ON_INIT */ |
| 197 | if (IS_ERR(gpmc_fck)) { |
| 198 | WARN_ON(1); |
| 199 | return; |
| 200 | } |
| 201 | |
| 202 | clk_enable(gpmc_fck); |
| 203 | rate = clk_get_rate(gpmc_fck); |
| 204 | |
| 205 | eth_cs = APOLLON_ETH_CS; |
| 206 | |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 207 | /* Make sure CS1 timings are correct */ |
Paul Walmsley | 4459598 | 2008-03-18 10:04:51 +0200 | [diff] [blame] | 208 | gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG1, 0x00011200); |
| 209 | |
| 210 | if (rate >= 160000000) { |
| 211 | gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG2, 0x001f1f01); |
| 212 | gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG3, 0x00080803); |
| 213 | gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG4, 0x1c0b1c0a); |
| 214 | gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG5, 0x041f1F1F); |
| 215 | gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG6, 0x000004C4); |
| 216 | } else if (rate >= 130000000) { |
| 217 | gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG2, 0x001f1f00); |
| 218 | gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG3, 0x00080802); |
| 219 | gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG4, 0x1C091C09); |
| 220 | gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG5, 0x041f1F1F); |
| 221 | gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG6, 0x000004C4); |
| 222 | } else {/* rate = 100000000 */ |
| 223 | gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG2, 0x001f1f00); |
| 224 | gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG3, 0x00080802); |
| 225 | gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG4, 0x1C091C09); |
| 226 | gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG5, 0x031A1F1F); |
| 227 | gpmc_cs_write_reg(eth_cs, GPMC_CS_CONFIG6, 0x000003C2); |
| 228 | } |
Kyungmin Park | f024840 | 2006-12-06 17:13:53 -0800 | [diff] [blame] | 229 | |
| 230 | if (gpmc_cs_request(APOLLON_ETH_CS, SZ_16M, &base) < 0) { |
| 231 | printk(KERN_ERR "Failed to request GPMC CS for smc91x\n"); |
Paul Walmsley | 4459598 | 2008-03-18 10:04:51 +0200 | [diff] [blame] | 232 | goto out; |
Kyungmin Park | f024840 | 2006-12-06 17:13:53 -0800 | [diff] [blame] | 233 | } |
| 234 | apollon_smc91x_resources[0].start = base + 0x300; |
| 235 | apollon_smc91x_resources[0].end = base + 0x30f; |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 236 | udelay(100); |
| 237 | |
| 238 | omap_cfg_reg(W4__24XX_GPIO74); |
Jarkko Nikula | f2d18fe | 2008-12-10 17:35:30 -0800 | [diff] [blame] | 239 | if (gpio_request(APOLLON_ETHR_GPIO_IRQ, "SMC91x irq") < 0) { |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 240 | printk(KERN_ERR "Failed to request GPIO%d for smc91x IRQ\n", |
| 241 | APOLLON_ETHR_GPIO_IRQ); |
Kyungmin Park | f024840 | 2006-12-06 17:13:53 -0800 | [diff] [blame] | 242 | gpmc_cs_free(APOLLON_ETH_CS); |
Paul Walmsley | 4459598 | 2008-03-18 10:04:51 +0200 | [diff] [blame] | 243 | goto out; |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 244 | } |
David Brownell | 40e3925 | 2008-12-10 17:35:26 -0800 | [diff] [blame] | 245 | gpio_direction_input(APOLLON_ETHR_GPIO_IRQ); |
Paul Walmsley | 4459598 | 2008-03-18 10:04:51 +0200 | [diff] [blame] | 246 | |
| 247 | out: |
| 248 | clk_disable(gpmc_fck); |
| 249 | clk_put(gpmc_fck); |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 250 | } |
| 251 | |
| 252 | static void __init omap_apollon_init_irq(void) |
| 253 | { |
| 254 | omap2_init_common_hw(); |
| 255 | omap_init_irq(); |
| 256 | omap_gpio_init(); |
| 257 | apollon_init_smc91x(); |
| 258 | } |
| 259 | |
| 260 | static struct omap_uart_config apollon_uart_config __initdata = { |
| 261 | .enabled_uarts = (1 << 0) | (0 << 1) | (0 << 2), |
| 262 | }; |
| 263 | |
| 264 | static struct omap_mmc_config apollon_mmc_config __initdata = { |
| 265 | .mmc [0] = { |
Kyungmin Park | abc45e1 | 2006-09-25 12:41:25 +0300 | [diff] [blame] | 266 | .enabled = 1, |
| 267 | .wire4 = 1, |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 268 | .wp_pin = -1, |
| 269 | .power_pin = -1, |
| 270 | .switch_pin = -1, |
| 271 | }, |
| 272 | }; |
| 273 | |
Kyungmin Park | f024840 | 2006-12-06 17:13:53 -0800 | [diff] [blame] | 274 | static struct omap_usb_config apollon_usb_config __initdata = { |
| 275 | .register_dev = 1, |
| 276 | .hmc_mode = 0x14, /* 0:dev 1:host1 2:disable */ |
| 277 | |
| 278 | .pins[0] = 6, |
| 279 | }; |
| 280 | |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 281 | static struct omap_lcd_config apollon_lcd_config __initdata = { |
| 282 | .ctrl_name = "internal", |
| 283 | }; |
| 284 | |
| 285 | static struct omap_board_config_kernel apollon_config[] = { |
| 286 | { OMAP_TAG_UART, &apollon_uart_config }, |
| 287 | { OMAP_TAG_MMC, &apollon_mmc_config }, |
Kyungmin Park | f024840 | 2006-12-06 17:13:53 -0800 | [diff] [blame] | 288 | { OMAP_TAG_USB, &apollon_usb_config }, |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 289 | { OMAP_TAG_LCD, &apollon_lcd_config }, |
| 290 | }; |
| 291 | |
| 292 | static void __init apollon_led_init(void) |
| 293 | { |
| 294 | /* LED0 - AA10 */ |
| 295 | omap_cfg_reg(AA10_242X_GPIO13); |
| 296 | omap_request_gpio(LED0_GPIO13); |
| 297 | omap_set_gpio_direction(LED0_GPIO13, 0); |
| 298 | omap_set_gpio_dataout(LED0_GPIO13, 0); |
| 299 | /* LED1 - AA6 */ |
| 300 | omap_cfg_reg(AA6_242X_GPIO14); |
| 301 | omap_request_gpio(LED1_GPIO14); |
| 302 | omap_set_gpio_direction(LED1_GPIO14, 0); |
| 303 | omap_set_gpio_dataout(LED1_GPIO14, 0); |
| 304 | /* LED2 - AA4 */ |
| 305 | omap_cfg_reg(AA4_242X_GPIO15); |
| 306 | omap_request_gpio(LED2_GPIO15); |
| 307 | omap_set_gpio_direction(LED2_GPIO15, 0); |
| 308 | omap_set_gpio_dataout(LED2_GPIO15, 0); |
| 309 | } |
| 310 | |
Linus Torvalds | 0cd61b6 | 2006-10-06 10:53:39 -0700 | [diff] [blame] | 311 | static irqreturn_t apollon_sw_interrupt(int irq, void *ignored) |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 312 | { |
| 313 | static unsigned int led0, led1, led2; |
| 314 | |
| 315 | if (irq == OMAP_GPIO_IRQ(SW_ENTER_GPIO16)) |
| 316 | omap_set_gpio_dataout(LED0_GPIO13, led0 ^= 1); |
| 317 | else if (irq == OMAP_GPIO_IRQ(SW_UP_GPIO17)) |
| 318 | omap_set_gpio_dataout(LED1_GPIO14, led1 ^= 1); |
| 319 | else if (irq == OMAP_GPIO_IRQ(SW_DOWN_GPIO58)) |
| 320 | omap_set_gpio_dataout(LED2_GPIO15, led2 ^= 1); |
| 321 | |
| 322 | return IRQ_HANDLED; |
| 323 | } |
| 324 | |
| 325 | static void __init apollon_sw_init(void) |
| 326 | { |
| 327 | /* Enter SW - Y11 */ |
| 328 | omap_cfg_reg(Y11_242X_GPIO16); |
| 329 | omap_request_gpio(SW_ENTER_GPIO16); |
David Brownell | 40e3925 | 2008-12-10 17:35:26 -0800 | [diff] [blame] | 330 | gpio_direction_input(SW_ENTER_GPIO16); |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 331 | /* Up SW - AA12 */ |
| 332 | omap_cfg_reg(AA12_242X_GPIO17); |
| 333 | omap_request_gpio(SW_UP_GPIO17); |
David Brownell | 40e3925 | 2008-12-10 17:35:26 -0800 | [diff] [blame] | 334 | gpio_direction_input(SW_UP_GPIO17); |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 335 | /* Down SW - AA8 */ |
| 336 | omap_cfg_reg(AA8_242X_GPIO58); |
| 337 | omap_request_gpio(SW_DOWN_GPIO58); |
David Brownell | 40e3925 | 2008-12-10 17:35:26 -0800 | [diff] [blame] | 338 | gpio_direction_input(SW_DOWN_GPIO58); |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 339 | |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 340 | set_irq_type(OMAP_GPIO_IRQ(SW_ENTER_GPIO16), IRQ_TYPE_EDGE_RISING); |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 341 | if (request_irq(OMAP_GPIO_IRQ(SW_ENTER_GPIO16), &apollon_sw_interrupt, |
Thomas Gleixner | 52e405e | 2006-07-03 02:20:05 +0200 | [diff] [blame] | 342 | IRQF_SHARED, "enter sw", |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 343 | &apollon_sw_interrupt)) |
| 344 | return; |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 345 | set_irq_type(OMAP_GPIO_IRQ(SW_UP_GPIO17), IRQ_TYPE_EDGE_RISING); |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 346 | if (request_irq(OMAP_GPIO_IRQ(SW_UP_GPIO17), &apollon_sw_interrupt, |
Thomas Gleixner | 52e405e | 2006-07-03 02:20:05 +0200 | [diff] [blame] | 347 | IRQF_SHARED, "up sw", |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 348 | &apollon_sw_interrupt)) |
| 349 | return; |
Dmitry Baryshkov | 6cab486 | 2008-07-27 04:23:31 +0100 | [diff] [blame] | 350 | set_irq_type(OMAP_GPIO_IRQ(SW_DOWN_GPIO58), IRQ_TYPE_EDGE_RISING); |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 351 | if (request_irq(OMAP_GPIO_IRQ(SW_DOWN_GPIO58), &apollon_sw_interrupt, |
Thomas Gleixner | 52e405e | 2006-07-03 02:20:05 +0200 | [diff] [blame] | 352 | IRQF_SHARED, "down sw", |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 353 | &apollon_sw_interrupt)) |
| 354 | return; |
| 355 | } |
| 356 | |
Kyungmin Park | f024840 | 2006-12-06 17:13:53 -0800 | [diff] [blame] | 357 | static void __init apollon_usb_init(void) |
| 358 | { |
| 359 | /* USB device */ |
| 360 | /* DEVICE_SUSPEND */ |
| 361 | omap_cfg_reg(P21_242X_GPIO12); |
Jarkko Nikula | f2d18fe | 2008-12-10 17:35:30 -0800 | [diff] [blame] | 362 | gpio_request(12, "USB suspend"); |
David Brownell | e918edf | 2008-12-10 17:35:26 -0800 | [diff] [blame] | 363 | gpio_direction_output(12, 0); |
Kyungmin Park | f024840 | 2006-12-06 17:13:53 -0800 | [diff] [blame] | 364 | } |
| 365 | |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 366 | static void __init omap_apollon_init(void) |
| 367 | { |
Paul Walmsley | 4459598 | 2008-03-18 10:04:51 +0200 | [diff] [blame] | 368 | u32 v; |
| 369 | |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 370 | apollon_led_init(); |
| 371 | apollon_sw_init(); |
Kyungmin Park | f024840 | 2006-12-06 17:13:53 -0800 | [diff] [blame] | 372 | apollon_flash_init(); |
| 373 | apollon_usb_init(); |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 374 | |
| 375 | /* REVISIT: where's the correct place */ |
| 376 | omap_cfg_reg(W19_24XX_SYS_NIRQ); |
| 377 | |
Kyungmin Park | abc45e1 | 2006-09-25 12:41:25 +0300 | [diff] [blame] | 378 | /* Use Interal loop-back in MMC/SDIO Module Input Clock selection */ |
Paul Walmsley | 4459598 | 2008-03-18 10:04:51 +0200 | [diff] [blame] | 379 | v = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0); |
| 380 | v |= (1 << 24); |
| 381 | omap_ctrl_writel(v, OMAP2_CONTROL_DEVCONF0); |
Kyungmin Park | abc45e1 | 2006-09-25 12:41:25 +0300 | [diff] [blame] | 382 | |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 383 | /* |
| 384 | * Make sure the serial ports are muxed on at this point. |
| 385 | * You have to mux them off in device drivers later on |
| 386 | * if not needed. |
| 387 | */ |
| 388 | platform_add_devices(apollon_devices, ARRAY_SIZE(apollon_devices)); |
| 389 | omap_board_config = apollon_config; |
| 390 | omap_board_config_size = ARRAY_SIZE(apollon_config); |
| 391 | omap_serial_init(); |
| 392 | } |
| 393 | |
| 394 | static void __init omap_apollon_map_io(void) |
| 395 | { |
Paul Walmsley | c8d2eb8 | 2008-05-07 16:55:13 -0700 | [diff] [blame] | 396 | omap2_set_globals_242x(); |
Tony Lindgren | 9b6553c | 2006-04-02 17:46:30 +0100 | [diff] [blame] | 397 | omap2_map_common_io(); |
| 398 | } |
| 399 | |
| 400 | MACHINE_START(OMAP_APOLLON, "OMAP24xx Apollon") |
| 401 | /* Maintainer: Kyungmin Park <kyungmin.park@samsung.com> */ |
| 402 | .phys_io = 0x48000000, |
| 403 | .io_pg_offst = ((0xd8000000) >> 18) & 0xfffc, |
| 404 | .boot_params = 0x80000100, |
| 405 | .map_io = omap_apollon_map_io, |
| 406 | .init_irq = omap_apollon_init_irq, |
| 407 | .init_machine = omap_apollon_init, |
| 408 | .timer = &omap_timer, |
| 409 | MACHINE_END |