Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 1 | /* linux/arch/arm/mach-s3c2410/mach-qt2410.c |
| 2 | * |
| 3 | * Copyright (C) 2006 by OpenMoko, Inc. |
| 4 | * Author: Harald Welte <laforge@openmoko.org> |
| 5 | * All rights reserved. |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License as |
| 9 | * published by the Free Software Foundation; either version 2 of |
| 10 | * the License, or (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 20 | * MA 02111-1307 USA |
| 21 | * |
| 22 | */ |
| 23 | |
| 24 | #include <linux/kernel.h> |
| 25 | #include <linux/types.h> |
| 26 | #include <linux/interrupt.h> |
| 27 | #include <linux/list.h> |
| 28 | #include <linux/timer.h> |
| 29 | #include <linux/init.h> |
Ben Dooks | ec976d6 | 2009-05-13 22:52:24 +0100 | [diff] [blame] | 30 | #include <linux/gpio.h> |
Kay Sievers | edbaa60 | 2011-12-21 16:26:03 -0800 | [diff] [blame] | 31 | #include <linux/device.h> |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 32 | #include <linux/platform_device.h> |
| 33 | #include <linux/serial_core.h> |
Tushar Behera | 334a1c7 | 2014-02-14 10:32:45 +0900 | [diff] [blame] | 34 | #include <linux/serial_s3c.h> |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 35 | #include <linux/spi/spi.h> |
Peter Korsgaard | aa35316 | 2011-06-28 14:49:14 +0200 | [diff] [blame] | 36 | #include <linux/spi/spi_gpio.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 37 | #include <linux/io.h> |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 38 | #include <linux/mtd/mtd.h> |
| 39 | #include <linux/mtd/nand.h> |
| 40 | #include <linux/mtd/nand_ecc.h> |
| 41 | #include <linux/mtd/partitions.h> |
| 42 | |
| 43 | #include <asm/mach/arch.h> |
| 44 | #include <asm/mach/map.h> |
| 45 | #include <asm/mach/irq.h> |
| 46 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 47 | #include <mach/hardware.h> |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 48 | #include <asm/irq.h> |
| 49 | #include <asm/mach-types.h> |
| 50 | |
Arnd Bergmann | 436d42c | 2012-08-24 15:22:12 +0200 | [diff] [blame] | 51 | #include <linux/platform_data/leds-s3c24xx.h> |
Kukjin Kim | 61c542b | 2011-10-03 09:46:13 +0900 | [diff] [blame] | 52 | #include <mach/regs-lcd.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 53 | #include <mach/fb.h> |
Arnd Bergmann | 436d42c | 2012-08-24 15:22:12 +0200 | [diff] [blame] | 54 | #include <linux/platform_data/mtd-nand-s3c2410.h> |
| 55 | #include <linux/platform_data/usb-s3c2410_udc.h> |
| 56 | #include <linux/platform_data/i2c-s3c2410.h> |
Linus Walleij | b0161ca | 2014-01-14 14:24:24 +0100 | [diff] [blame] | 57 | #include <mach/gpio-samsung.h> |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 58 | |
Ben Dooks | 40b956f | 2010-05-04 14:38:49 +0900 | [diff] [blame] | 59 | #include <plat/gpio-cfg.h> |
Ben Dooks | a2b7ba9 | 2008-10-07 22:26:09 +0100 | [diff] [blame] | 60 | #include <plat/devs.h> |
| 61 | #include <plat/cpu.h> |
| 62 | #include <plat/pm.h> |
Romain Naour | 7f78b6e | 2013-01-09 18:47:04 -0800 | [diff] [blame] | 63 | #include <plat/samsung-time.h> |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 64 | |
Kukjin Kim | b27b072 | 2012-01-03 14:02:03 +0100 | [diff] [blame] | 65 | #include "common.h" |
Kukjin Kim | 4d512a9 | 2013-02-08 10:18:48 -0800 | [diff] [blame] | 66 | #include "common-smdk.h" |
Kukjin Kim | b27b072 | 2012-01-03 14:02:03 +0100 | [diff] [blame] | 67 | |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 68 | static struct map_desc qt2410_iodesc[] __initdata = { |
| 69 | { 0xe0000000, __phys_to_pfn(S3C2410_CS3+0x01000000), SZ_1M, MT_DEVICE } |
| 70 | }; |
| 71 | |
| 72 | #define UCON S3C2410_UCON_DEFAULT |
| 73 | #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE | S3C2410_LCON_STOPB |
| 74 | #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE |
| 75 | |
| 76 | static struct s3c2410_uartcfg smdk2410_uartcfgs[] = { |
| 77 | [0] = { |
| 78 | .hwport = 0, |
| 79 | .flags = 0, |
| 80 | .ucon = UCON, |
| 81 | .ulcon = ULCON, |
| 82 | .ufcon = UFCON, |
| 83 | }, |
| 84 | [1] = { |
| 85 | .hwport = 1, |
| 86 | .flags = 0, |
| 87 | .ucon = UCON, |
| 88 | .ulcon = ULCON, |
| 89 | .ufcon = UFCON, |
| 90 | }, |
| 91 | [2] = { |
| 92 | .hwport = 2, |
| 93 | .flags = 0, |
| 94 | .ucon = UCON, |
| 95 | .ulcon = ULCON, |
| 96 | .ufcon = UFCON, |
| 97 | } |
| 98 | }; |
| 99 | |
| 100 | /* LCD driver info */ |
| 101 | |
Krzysztof Helt | 09fe75f | 2007-10-16 01:28:56 -0700 | [diff] [blame] | 102 | static struct s3c2410fb_display qt2410_lcd_cfg[] __initdata = { |
| 103 | { |
| 104 | /* Configuration for 640x480 SHARP LQ080V3DG01 */ |
Krzysztof Helt | f28ef57 | 2007-10-16 01:28:58 -0700 | [diff] [blame] | 105 | .lcdcon5 = S3C2410_LCDCON5_FRM565 | |
| 106 | S3C2410_LCDCON5_INVVLINE | |
| 107 | S3C2410_LCDCON5_INVVFRAME | |
| 108 | S3C2410_LCDCON5_PWREN | |
| 109 | S3C2410_LCDCON5_HWSWP, |
Krzysztof Helt | 09fe75f | 2007-10-16 01:28:56 -0700 | [diff] [blame] | 110 | |
Krzysztof Helt | 1f41153 | 2007-10-16 01:28:57 -0700 | [diff] [blame] | 111 | .type = S3C2410_LCDCON1_TFT, |
Krzysztof Helt | 09fe75f | 2007-10-16 01:28:56 -0700 | [diff] [blame] | 112 | .width = 640, |
| 113 | .height = 480, |
| 114 | |
Krzysztof Helt | 6981669 | 2007-10-16 01:29:06 -0700 | [diff] [blame] | 115 | .pixclock = 40000, /* HCLK/4 */ |
Krzysztof Helt | 09fe75f | 2007-10-16 01:28:56 -0700 | [diff] [blame] | 116 | .xres = 640, |
| 117 | .yres = 480, |
| 118 | .bpp = 16, |
Krzysztof Helt | 1f41153 | 2007-10-16 01:28:57 -0700 | [diff] [blame] | 119 | .left_margin = 44, |
| 120 | .right_margin = 116, |
Krzysztof Helt | 93d11f5 | 2007-10-16 01:29:00 -0700 | [diff] [blame] | 121 | .hsync_len = 96, |
Krzysztof Helt | 5f20f69 | 2007-10-16 01:28:59 -0700 | [diff] [blame] | 122 | .upper_margin = 19, |
| 123 | .lower_margin = 11, |
Krzysztof Helt | 93d11f5 | 2007-10-16 01:29:00 -0700 | [diff] [blame] | 124 | .vsync_len = 15, |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 125 | }, |
Krzysztof Helt | 09fe75f | 2007-10-16 01:28:56 -0700 | [diff] [blame] | 126 | { |
| 127 | /* Configuration for 480x640 toppoly TD028TTEC1 */ |
Krzysztof Helt | f28ef57 | 2007-10-16 01:28:58 -0700 | [diff] [blame] | 128 | .lcdcon5 = S3C2410_LCDCON5_FRM565 | |
| 129 | S3C2410_LCDCON5_INVVLINE | |
| 130 | S3C2410_LCDCON5_INVVFRAME | |
| 131 | S3C2410_LCDCON5_PWREN | |
| 132 | S3C2410_LCDCON5_HWSWP, |
Krzysztof Helt | 09fe75f | 2007-10-16 01:28:56 -0700 | [diff] [blame] | 133 | |
Krzysztof Helt | 1f41153 | 2007-10-16 01:28:57 -0700 | [diff] [blame] | 134 | .type = S3C2410_LCDCON1_TFT, |
Krzysztof Helt | 09fe75f | 2007-10-16 01:28:56 -0700 | [diff] [blame] | 135 | .width = 480, |
| 136 | .height = 640, |
Krzysztof Helt | 6981669 | 2007-10-16 01:29:06 -0700 | [diff] [blame] | 137 | .pixclock = 40000, /* HCLK/4 */ |
Krzysztof Helt | 09fe75f | 2007-10-16 01:28:56 -0700 | [diff] [blame] | 138 | .xres = 480, |
| 139 | .yres = 640, |
| 140 | .bpp = 16, |
Krzysztof Helt | 1f41153 | 2007-10-16 01:28:57 -0700 | [diff] [blame] | 141 | .left_margin = 8, |
| 142 | .right_margin = 24, |
Krzysztof Helt | 93d11f5 | 2007-10-16 01:29:00 -0700 | [diff] [blame] | 143 | .hsync_len = 8, |
Krzysztof Helt | 5f20f69 | 2007-10-16 01:28:59 -0700 | [diff] [blame] | 144 | .upper_margin = 2, |
| 145 | .lower_margin = 4, |
Krzysztof Helt | 93d11f5 | 2007-10-16 01:29:00 -0700 | [diff] [blame] | 146 | .vsync_len = 2, |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 147 | }, |
Krzysztof Helt | 09fe75f | 2007-10-16 01:28:56 -0700 | [diff] [blame] | 148 | { |
| 149 | /* Config for 240x320 LCD */ |
Krzysztof Helt | f28ef57 | 2007-10-16 01:28:58 -0700 | [diff] [blame] | 150 | .lcdcon5 = S3C2410_LCDCON5_FRM565 | |
| 151 | S3C2410_LCDCON5_INVVLINE | |
| 152 | S3C2410_LCDCON5_INVVFRAME | |
| 153 | S3C2410_LCDCON5_PWREN | |
| 154 | S3C2410_LCDCON5_HWSWP, |
Krzysztof Helt | 09fe75f | 2007-10-16 01:28:56 -0700 | [diff] [blame] | 155 | |
Krzysztof Helt | 1f41153 | 2007-10-16 01:28:57 -0700 | [diff] [blame] | 156 | .type = S3C2410_LCDCON1_TFT, |
Krzysztof Helt | 09fe75f | 2007-10-16 01:28:56 -0700 | [diff] [blame] | 157 | .width = 240, |
| 158 | .height = 320, |
Krzysztof Helt | 6981669 | 2007-10-16 01:29:06 -0700 | [diff] [blame] | 159 | .pixclock = 100000, /* HCLK/10 */ |
Krzysztof Helt | 09fe75f | 2007-10-16 01:28:56 -0700 | [diff] [blame] | 160 | .xres = 240, |
| 161 | .yres = 320, |
| 162 | .bpp = 16, |
Krzysztof Helt | 1f41153 | 2007-10-16 01:28:57 -0700 | [diff] [blame] | 163 | .left_margin = 13, |
| 164 | .right_margin = 8, |
Krzysztof Helt | 93d11f5 | 2007-10-16 01:29:00 -0700 | [diff] [blame] | 165 | .hsync_len = 4, |
Krzysztof Helt | 5f20f69 | 2007-10-16 01:28:59 -0700 | [diff] [blame] | 166 | .upper_margin = 2, |
| 167 | .lower_margin = 7, |
Krzysztof Helt | 93d11f5 | 2007-10-16 01:29:00 -0700 | [diff] [blame] | 168 | .vsync_len = 4, |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 169 | }, |
| 170 | }; |
| 171 | |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 172 | |
Krzysztof Helt | 09fe75f | 2007-10-16 01:28:56 -0700 | [diff] [blame] | 173 | static struct s3c2410fb_mach_info qt2410_fb_info __initdata = { |
| 174 | .displays = qt2410_lcd_cfg, |
| 175 | .num_displays = ARRAY_SIZE(qt2410_lcd_cfg), |
| 176 | .default_display = 0, |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 177 | |
| 178 | .lpcsel = ((0xCE6) & ~7) | 1<<4, |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 179 | }; |
| 180 | |
| 181 | /* CS8900 */ |
| 182 | |
| 183 | static struct resource qt2410_cs89x0_resources[] = { |
Tushar Behera | 5fdbdd1 | 2012-05-13 06:47:13 +0900 | [diff] [blame] | 184 | [0] = DEFINE_RES_MEM(0x19000000, 17), |
| 185 | [1] = DEFINE_RES_IRQ(IRQ_EINT9), |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 186 | }; |
| 187 | |
| 188 | static struct platform_device qt2410_cs89x0 = { |
| 189 | .name = "cirrus-cs89x0", |
| 190 | .num_resources = ARRAY_SIZE(qt2410_cs89x0_resources), |
| 191 | .resource = qt2410_cs89x0_resources, |
| 192 | }; |
| 193 | |
| 194 | /* LED */ |
| 195 | |
| 196 | static struct s3c24xx_led_platdata qt2410_pdata_led = { |
Ben Dooks | 070276d | 2009-05-17 22:32:23 +0100 | [diff] [blame] | 197 | .gpio = S3C2410_GPB(0), |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 198 | .flags = S3C24XX_LEDF_ACTLOW | S3C24XX_LEDF_TRISTATE, |
| 199 | .name = "led", |
| 200 | .def_trigger = "timer", |
| 201 | }; |
| 202 | |
| 203 | static struct platform_device qt2410_led = { |
| 204 | .name = "s3c24xx_led", |
| 205 | .id = 0, |
| 206 | .dev = { |
| 207 | .platform_data = &qt2410_pdata_led, |
| 208 | }, |
| 209 | }; |
| 210 | |
| 211 | /* SPI */ |
| 212 | |
Peter Korsgaard | aa35316 | 2011-06-28 14:49:14 +0200 | [diff] [blame] | 213 | static struct spi_gpio_platform_data spi_gpio_cfg = { |
| 214 | .sck = S3C2410_GPG(7), |
| 215 | .mosi = S3C2410_GPG(6), |
| 216 | .miso = S3C2410_GPG(5), |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 217 | }; |
| 218 | |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 219 | static struct platform_device qt2410_spi = { |
Peter Korsgaard | aa35316 | 2011-06-28 14:49:14 +0200 | [diff] [blame] | 220 | .name = "spi-gpio", |
| 221 | .id = 1, |
| 222 | .dev.platform_data = &spi_gpio_cfg, |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 223 | }; |
| 224 | |
| 225 | /* Board devices */ |
| 226 | |
| 227 | static struct platform_device *qt2410_devices[] __initdata = { |
Ben Dooks | b813248 | 2009-11-23 00:13:39 +0000 | [diff] [blame] | 228 | &s3c_device_ohci, |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 229 | &s3c_device_lcd, |
| 230 | &s3c_device_wdt, |
Ben Dooks | 3e1b776 | 2008-10-31 16:14:40 +0000 | [diff] [blame] | 231 | &s3c_device_i2c0, |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 232 | &s3c_device_iis, |
| 233 | &s3c_device_sdi, |
| 234 | &s3c_device_usbgadget, |
| 235 | &qt2410_spi, |
| 236 | &qt2410_cs89x0, |
| 237 | &qt2410_led, |
| 238 | }; |
| 239 | |
Ben Dooks | 2a3a180 | 2009-09-28 13:59:49 +0300 | [diff] [blame] | 240 | static struct mtd_partition __initdata qt2410_nand_part[] = { |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 241 | [0] = { |
| 242 | .name = "U-Boot", |
| 243 | .size = 0x30000, |
| 244 | .offset = 0, |
| 245 | }, |
| 246 | [1] = { |
| 247 | .name = "U-Boot environment", |
| 248 | .offset = 0x30000, |
| 249 | .size = 0x4000, |
| 250 | }, |
| 251 | [2] = { |
| 252 | .name = "kernel", |
| 253 | .offset = 0x34000, |
| 254 | .size = SZ_2M, |
| 255 | }, |
| 256 | [3] = { |
| 257 | .name = "initrd", |
| 258 | .offset = 0x234000, |
| 259 | .size = SZ_4M, |
| 260 | }, |
| 261 | [4] = { |
| 262 | .name = "jffs2", |
| 263 | .offset = 0x634000, |
| 264 | .size = 0x39cc000, |
| 265 | }, |
| 266 | }; |
| 267 | |
Ben Dooks | 2a3a180 | 2009-09-28 13:59:49 +0300 | [diff] [blame] | 268 | static struct s3c2410_nand_set __initdata qt2410_nand_sets[] = { |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 269 | [0] = { |
| 270 | .name = "NAND", |
| 271 | .nr_chips = 1, |
| 272 | .nr_partitions = ARRAY_SIZE(qt2410_nand_part), |
| 273 | .partitions = qt2410_nand_part, |
| 274 | }, |
| 275 | }; |
| 276 | |
| 277 | /* choose a set of timings which should suit most 512Mbit |
| 278 | * chips and beyond. |
| 279 | */ |
| 280 | |
Ben Dooks | 2a3a180 | 2009-09-28 13:59:49 +0300 | [diff] [blame] | 281 | static struct s3c2410_platform_nand __initdata qt2410_nand_info = { |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 282 | .tacls = 20, |
| 283 | .twrph0 = 60, |
| 284 | .twrph1 = 20, |
| 285 | .nr_sets = ARRAY_SIZE(qt2410_nand_sets), |
| 286 | .sets = qt2410_nand_sets, |
Sergio Prado | e9f66ae | 2016-10-20 19:42:44 -0200 | [diff] [blame] | 287 | .ecc_mode = NAND_ECC_SOFT, |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 288 | }; |
| 289 | |
| 290 | /* UDC */ |
| 291 | |
| 292 | static struct s3c2410_udc_mach_info qt2410_udc_cfg = { |
| 293 | }; |
| 294 | |
| 295 | static char tft_type = 's'; |
| 296 | |
| 297 | static int __init qt2410_tft_setup(char *str) |
| 298 | { |
| 299 | tft_type = str[0]; |
| 300 | return 1; |
| 301 | } |
| 302 | |
| 303 | __setup("tft=", qt2410_tft_setup); |
| 304 | |
| 305 | static void __init qt2410_map_io(void) |
| 306 | { |
| 307 | s3c24xx_init_io(qt2410_iodesc, ARRAY_SIZE(qt2410_iodesc)); |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 308 | s3c24xx_init_uarts(smdk2410_uartcfgs, ARRAY_SIZE(smdk2410_uartcfgs)); |
Romain Naour | 7f78b6e | 2013-01-09 18:47:04 -0800 | [diff] [blame] | 309 | samsung_set_timer_source(SAMSUNG_PWM3, SAMSUNG_PWM4); |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 310 | } |
| 311 | |
Heiko Stuebner | 07ee5e7 | 2014-05-09 05:49:29 +0900 | [diff] [blame] | 312 | static void __init qt2410_init_time(void) |
| 313 | { |
| 314 | s3c2410_init_clocks(12000000); |
| 315 | samsung_timer_init(); |
| 316 | } |
| 317 | |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 318 | static void __init qt2410_machine_init(void) |
| 319 | { |
Ben Dooks | 2a3a180 | 2009-09-28 13:59:49 +0300 | [diff] [blame] | 320 | s3c_nand_set_platdata(&qt2410_nand_info); |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 321 | |
| 322 | switch (tft_type) { |
| 323 | case 'p': /* production */ |
Krzysztof Helt | 09fe75f | 2007-10-16 01:28:56 -0700 | [diff] [blame] | 324 | qt2410_fb_info.default_display = 1; |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 325 | break; |
| 326 | case 'b': /* big */ |
Krzysztof Helt | 09fe75f | 2007-10-16 01:28:56 -0700 | [diff] [blame] | 327 | qt2410_fb_info.default_display = 0; |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 328 | break; |
| 329 | case 's': /* small */ |
| 330 | default: |
Krzysztof Helt | 09fe75f | 2007-10-16 01:28:56 -0700 | [diff] [blame] | 331 | qt2410_fb_info.default_display = 2; |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 332 | break; |
| 333 | } |
Krzysztof Helt | 09fe75f | 2007-10-16 01:28:56 -0700 | [diff] [blame] | 334 | s3c24xx_fb_set_platdata(&qt2410_fb_info); |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 335 | |
Sylwester Nawrocki | 5c9fb56 | 2012-07-13 18:04:50 +0900 | [diff] [blame] | 336 | /* set initial state of the LED GPIO */ |
| 337 | WARN_ON(gpio_request_one(S3C2410_GPB(0), GPIOF_OUT_INIT_HIGH, NULL)); |
| 338 | gpio_free(S3C2410_GPB(0)); |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 339 | |
| 340 | s3c24xx_udc_set_platdata(&qt2410_udc_cfg); |
Ben Dooks | 3e1b776 | 2008-10-31 16:14:40 +0000 | [diff] [blame] | 341 | s3c_i2c0_set_platdata(NULL); |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 342 | |
Ben Dooks | 2d2e0c8 | 2010-05-04 12:32:16 +0900 | [diff] [blame] | 343 | WARN_ON(gpio_request(S3C2410_GPB(5), "spi cs")); |
| 344 | gpio_direction_output(S3C2410_GPB(5), 1); |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 345 | |
Ben Dooks | 57e5171 | 2007-04-20 11:19:16 +0100 | [diff] [blame] | 346 | platform_add_devices(qt2410_devices, ARRAY_SIZE(qt2410_devices)); |
Ben Dooks | 4e59c25 | 2008-12-12 00:24:18 +0000 | [diff] [blame] | 347 | s3c_pm_init(); |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | MACHINE_START(QT2410, "QT2410") |
Nicolas Pitre | 69d5071 | 2011-07-05 22:38:17 -0400 | [diff] [blame] | 351 | .atag_offset = 0x100, |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 352 | .map_io = qt2410_map_io, |
Heiko Stuebner | f182aa1 | 2013-03-07 12:38:19 +0900 | [diff] [blame] | 353 | .init_irq = s3c2410_init_irq, |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 354 | .init_machine = qt2410_machine_init, |
Heiko Stuebner | 07ee5e7 | 2014-05-09 05:49:29 +0900 | [diff] [blame] | 355 | .init_time = qt2410_init_time, |
Ben Dooks | c6184e2 | 2007-02-17 00:52:37 +0100 | [diff] [blame] | 356 | MACHINE_END |