Merge branches 'tracing/kmemtrace2' and 'tracing/ftrace' into tracing/urgent
[deliverable/linux.git] / arch / arm / mach-s3c2412 / mach-jive.c
1 /* linux/arch/arm/mach-s3c2410/mach-jive.c
2 *
3 * Copyright 2007 Simtec Electronics
4 * Ben Dooks <ben@simtec.co.uk>
5 *
6 * http://armlinux.simtec.co.uk/
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13 #include <linux/kernel.h>
14 #include <linux/types.h>
15 #include <linux/interrupt.h>
16 #include <linux/list.h>
17 #include <linux/timer.h>
18 #include <linux/init.h>
19 #include <linux/sysdev.h>
20 #include <linux/serial_core.h>
21 #include <linux/platform_device.h>
22 #include <linux/i2c.h>
23
24 #include <video/ili9320.h>
25
26 #include <linux/spi/spi.h>
27
28 #include <asm/mach/arch.h>
29 #include <asm/mach/map.h>
30 #include <asm/mach/irq.h>
31
32 #include <plat/regs-serial.h>
33 #include <plat/nand.h>
34 #include <plat/iic.h>
35
36 #include <mach/regs-power.h>
37 #include <mach/regs-gpio.h>
38 #include <mach/regs-mem.h>
39 #include <mach/regs-lcd.h>
40 #include <mach/spi-gpio.h>
41 #include <mach/fb.h>
42
43 #include <asm/mach-types.h>
44
45 #include <linux/mtd/mtd.h>
46 #include <linux/mtd/nand.h>
47 #include <linux/mtd/nand_ecc.h>
48 #include <linux/mtd/partitions.h>
49
50 #include <plat/clock.h>
51 #include <plat/devs.h>
52 #include <plat/cpu.h>
53 #include <plat/pm.h>
54 #include <plat/udc.h>
55 #include <plat/iic.h>
56
57 static struct map_desc jive_iodesc[] __initdata = {
58 };
59
60 #define UCON S3C2410_UCON_DEFAULT
61 #define ULCON S3C2410_LCON_CS8 | S3C2410_LCON_PNONE
62 #define UFCON S3C2410_UFCON_RXTRIG8 | S3C2410_UFCON_FIFOMODE
63
64 static struct s3c2410_uartcfg jive_uartcfgs[] = {
65 [0] = {
66 .hwport = 0,
67 .flags = 0,
68 .ucon = UCON,
69 .ulcon = ULCON,
70 .ufcon = UFCON,
71 },
72 [1] = {
73 .hwport = 1,
74 .flags = 0,
75 .ucon = UCON,
76 .ulcon = ULCON,
77 .ufcon = UFCON,
78 },
79 [2] = {
80 .hwport = 2,
81 .flags = 0,
82 .ucon = UCON,
83 .ulcon = ULCON,
84 .ufcon = UFCON,
85 }
86 };
87
88 /* Jive flash assignment
89 *
90 * 0x00000000-0x00028000 : uboot
91 * 0x00028000-0x0002c000 : uboot env
92 * 0x0002c000-0x00030000 : spare
93 * 0x00030000-0x00200000 : zimage A
94 * 0x00200000-0x01600000 : cramfs A
95 * 0x01600000-0x017d0000 : zimage B
96 * 0x017d0000-0x02bd0000 : cramfs B
97 * 0x02bd0000-0x03fd0000 : yaffs
98 */
99 static struct mtd_partition jive_imageA_nand_part[] = {
100
101 #ifdef CONFIG_MACH_JIVE_SHOW_BOOTLOADER
102 /* Don't allow access to the bootloader from linux */
103 {
104 .name = "uboot",
105 .offset = 0,
106 .size = (160 * SZ_1K),
107 .mask_flags = MTD_WRITEABLE, /* force read-only */
108 },
109
110 /* spare */
111 {
112 .name = "spare",
113 .offset = (176 * SZ_1K),
114 .size = (16 * SZ_1K),
115 },
116 #endif
117
118 /* booted images */
119 {
120 .name = "kernel (ro)",
121 .offset = (192 * SZ_1K),
122 .size = (SZ_2M) - (192 * SZ_1K),
123 .mask_flags = MTD_WRITEABLE, /* force read-only */
124 }, {
125 .name = "root (ro)",
126 .offset = (SZ_2M),
127 .size = (20 * SZ_1M),
128 .mask_flags = MTD_WRITEABLE, /* force read-only */
129 },
130
131 /* yaffs */
132 {
133 .name = "yaffs",
134 .offset = (44 * SZ_1M),
135 .size = (20 * SZ_1M),
136 },
137
138 /* bootloader environment */
139 {
140 .name = "env",
141 .offset = (160 * SZ_1K),
142 .size = (16 * SZ_1K),
143 },
144
145 /* upgrade images */
146 {
147 .name = "zimage",
148 .offset = (22 * SZ_1M),
149 .size = (2 * SZ_1M) - (192 * SZ_1K),
150 }, {
151 .name = "cramfs",
152 .offset = (24 * SZ_1M) - (192*SZ_1K),
153 .size = (20 * SZ_1M),
154 },
155 };
156
157 static struct mtd_partition jive_imageB_nand_part[] = {
158
159 #ifdef CONFIG_MACH_JIVE_SHOW_BOOTLOADER
160 /* Don't allow access to the bootloader from linux */
161 {
162 .name = "uboot",
163 .offset = 0,
164 .size = (160 * SZ_1K),
165 .mask_flags = MTD_WRITEABLE, /* force read-only */
166 },
167
168 /* spare */
169 {
170 .name = "spare",
171 .offset = (176 * SZ_1K),
172 .size = (16 * SZ_1K),
173 },
174 #endif
175
176 /* booted images */
177 {
178 .name = "kernel (ro)",
179 .offset = (22 * SZ_1M),
180 .size = (2 * SZ_1M) - (192 * SZ_1K),
181 .mask_flags = MTD_WRITEABLE, /* force read-only */
182 },
183 {
184 .name = "root (ro)",
185 .offset = (24 * SZ_1M) - (192 * SZ_1K),
186 .size = (20 * SZ_1M),
187 .mask_flags = MTD_WRITEABLE, /* force read-only */
188 },
189
190 /* yaffs */
191 {
192 .name = "yaffs",
193 .offset = (44 * SZ_1M),
194 .size = (20 * SZ_1M),
195 },
196
197 /* bootloader environment */
198 {
199 .name = "env",
200 .offset = (160 * SZ_1K),
201 .size = (16 * SZ_1K),
202 },
203
204 /* upgrade images */
205 {
206 .name = "zimage",
207 .offset = (192 * SZ_1K),
208 .size = (2 * SZ_1M) - (192 * SZ_1K),
209 }, {
210 .name = "cramfs",
211 .offset = (2 * SZ_1M),
212 .size = (20 * SZ_1M),
213 },
214 };
215
216 static struct s3c2410_nand_set jive_nand_sets[] = {
217 [0] = {
218 .name = "flash",
219 .nr_chips = 1,
220 .nr_partitions = ARRAY_SIZE(jive_imageA_nand_part),
221 .partitions = jive_imageA_nand_part,
222 },
223 };
224
225 static struct s3c2410_platform_nand jive_nand_info = {
226 /* set taken from osiris nand timings, possibly still conservative */
227 .tacls = 30,
228 .twrph0 = 55,
229 .twrph1 = 40,
230 .sets = jive_nand_sets,
231 .nr_sets = ARRAY_SIZE(jive_nand_sets),
232 };
233
234 static int __init jive_mtdset(char *options)
235 {
236 struct s3c2410_nand_set *nand = &jive_nand_sets[0];
237 unsigned long set;
238
239 if (options == NULL || options[0] == '\0')
240 return 0;
241
242 if (strict_strtoul(options, 10, &set)) {
243 printk(KERN_ERR "failed to parse mtdset=%s\n", options);
244 return 0;
245 }
246
247 switch (set) {
248 case 1:
249 nand->nr_partitions = ARRAY_SIZE(jive_imageB_nand_part);
250 nand->partitions = jive_imageB_nand_part;
251 case 0:
252 /* this is already setup in the nand info */
253 break;
254 default:
255 printk(KERN_ERR "Unknown mtd set %ld specified,"
256 "using default.", set);
257 }
258
259 return 0;
260 }
261
262 /* parse the mtdset= option given to the kernel command line */
263 __setup("mtdset=", jive_mtdset);
264
265 /* LCD timing and setup */
266
267 #define LCD_XRES (240)
268 #define LCD_YRES (320)
269 #define LCD_LEFT_MARGIN (12)
270 #define LCD_RIGHT_MARGIN (12)
271 #define LCD_LOWER_MARGIN (12)
272 #define LCD_UPPER_MARGIN (12)
273 #define LCD_VSYNC (2)
274 #define LCD_HSYNC (2)
275
276 #define LCD_REFRESH (60)
277
278 #define LCD_HTOT (LCD_HSYNC + LCD_LEFT_MARGIN + LCD_XRES + LCD_RIGHT_MARGIN)
279 #define LCD_VTOT (LCD_VSYNC + LCD_LOWER_MARGIN + LCD_YRES + LCD_UPPER_MARGIN)
280
281 struct s3c2410fb_display jive_vgg2432a4_display[] = {
282 [0] = {
283 .width = LCD_XRES,
284 .height = LCD_YRES,
285 .xres = LCD_XRES,
286 .yres = LCD_YRES,
287 .left_margin = LCD_LEFT_MARGIN,
288 .right_margin = LCD_RIGHT_MARGIN,
289 .upper_margin = LCD_UPPER_MARGIN,
290 .lower_margin = LCD_LOWER_MARGIN,
291 .hsync_len = LCD_HSYNC,
292 .vsync_len = LCD_VSYNC,
293
294 .pixclock = (1000000000000LL /
295 (LCD_REFRESH * LCD_HTOT * LCD_VTOT)),
296
297 .bpp = 16,
298 .type = (S3C2410_LCDCON1_TFT16BPP |
299 S3C2410_LCDCON1_TFT),
300
301 .lcdcon5 = (S3C2410_LCDCON5_FRM565 |
302 S3C2410_LCDCON5_INVVLINE |
303 S3C2410_LCDCON5_INVVFRAME |
304 S3C2410_LCDCON5_INVVDEN |
305 S3C2410_LCDCON5_PWREN),
306 },
307 };
308
309 /* todo - put into gpio header */
310
311 #define S3C2410_GPCCON_MASK(x) (3 << ((x) * 2))
312 #define S3C2410_GPDCON_MASK(x) (3 << ((x) * 2))
313
314 struct s3c2410fb_mach_info jive_lcd_config = {
315 .displays = jive_vgg2432a4_display,
316 .num_displays = ARRAY_SIZE(jive_vgg2432a4_display),
317 .default_display = 0,
318
319 /* Enable VD[2..7], VD[10..15], VD[18..23] and VCLK, syncs, VDEN
320 * and disable the pull down resistors on pins we are using for LCD
321 * data. */
322
323 .gpcup = (0xf << 1) | (0x3f << 10),
324
325 .gpccon = (S3C2410_GPC1_VCLK | S3C2410_GPC2_VLINE |
326 S3C2410_GPC3_VFRAME | S3C2410_GPC4_VM |
327 S3C2410_GPC10_VD2 | S3C2410_GPC11_VD3 |
328 S3C2410_GPC12_VD4 | S3C2410_GPC13_VD5 |
329 S3C2410_GPC14_VD6 | S3C2410_GPC15_VD7),
330
331 .gpccon_mask = (S3C2410_GPCCON_MASK(1) | S3C2410_GPCCON_MASK(2) |
332 S3C2410_GPCCON_MASK(3) | S3C2410_GPCCON_MASK(4) |
333 S3C2410_GPCCON_MASK(10) | S3C2410_GPCCON_MASK(11) |
334 S3C2410_GPCCON_MASK(12) | S3C2410_GPCCON_MASK(13) |
335 S3C2410_GPCCON_MASK(14) | S3C2410_GPCCON_MASK(15)),
336
337 .gpdup = (0x3f << 2) | (0x3f << 10),
338
339 .gpdcon = (S3C2410_GPD2_VD10 | S3C2410_GPD3_VD11 |
340 S3C2410_GPD4_VD12 | S3C2410_GPD5_VD13 |
341 S3C2410_GPD6_VD14 | S3C2410_GPD7_VD15 |
342 S3C2410_GPD10_VD18 | S3C2410_GPD11_VD19 |
343 S3C2410_GPD12_VD20 | S3C2410_GPD13_VD21 |
344 S3C2410_GPD14_VD22 | S3C2410_GPD15_VD23),
345
346 .gpdcon_mask = (S3C2410_GPDCON_MASK(2) | S3C2410_GPDCON_MASK(3) |
347 S3C2410_GPDCON_MASK(4) | S3C2410_GPDCON_MASK(5) |
348 S3C2410_GPDCON_MASK(6) | S3C2410_GPDCON_MASK(7) |
349 S3C2410_GPDCON_MASK(10) | S3C2410_GPDCON_MASK(11)|
350 S3C2410_GPDCON_MASK(12) | S3C2410_GPDCON_MASK(13)|
351 S3C2410_GPDCON_MASK(14) | S3C2410_GPDCON_MASK(15)),
352 };
353
354 /* ILI9320 support. */
355
356 static void jive_lcm_reset(unsigned int set)
357 {
358 printk(KERN_DEBUG "%s(%d)\n", __func__, set);
359
360 s3c2410_gpio_setpin(S3C2410_GPG13, set);
361 s3c2410_gpio_cfgpin(S3C2410_GPG13, S3C2410_GPIO_OUTPUT);
362 }
363
364 #undef LCD_UPPER_MARGIN
365 #define LCD_UPPER_MARGIN 2
366
367 static struct ili9320_platdata jive_lcm_config = {
368 .hsize = LCD_XRES,
369 .vsize = LCD_YRES,
370
371 .reset = jive_lcm_reset,
372 .suspend = ILI9320_SUSPEND_DEEP,
373
374 .entry_mode = ILI9320_ENTRYMODE_ID(3) | ILI9320_ENTRYMODE_BGR,
375 .display2 = (ILI9320_DISPLAY2_FP(LCD_UPPER_MARGIN) |
376 ILI9320_DISPLAY2_BP(LCD_LOWER_MARGIN)),
377 .display3 = 0x0,
378 .display4 = 0x0,
379 .rgb_if1 = (ILI9320_RGBIF1_RIM_RGB18 |
380 ILI9320_RGBIF1_RM | ILI9320_RGBIF1_CLK_RGBIF),
381 .rgb_if2 = ILI9320_RGBIF2_DPL,
382 .interface2 = 0x0,
383 .interface3 = 0x3,
384 .interface4 = (ILI9320_INTERFACE4_RTNE(16) |
385 ILI9320_INTERFACE4_DIVE(1)),
386 .interface5 = 0x0,
387 .interface6 = 0x0,
388 };
389
390 /* LCD SPI support */
391
392 static void jive_lcd_spi_chipselect(struct s3c2410_spigpio_info *spi, int cs)
393 {
394 s3c2410_gpio_setpin(S3C2410_GPB7, cs ? 0 : 1);
395 }
396
397 static struct s3c2410_spigpio_info jive_lcd_spi = {
398 .bus_num = 1,
399 .pin_clk = S3C2410_GPG8,
400 .pin_mosi = S3C2410_GPB8,
401 .num_chipselect = 1,
402 .chip_select = jive_lcd_spi_chipselect,
403 };
404
405 static struct platform_device jive_device_lcdspi = {
406 .name = "spi_s3c24xx_gpio",
407 .id = 1,
408 .num_resources = 0,
409 .dev.platform_data = &jive_lcd_spi,
410 };
411
412 /* WM8750 audio code SPI definition */
413
414 static void jive_wm8750_chipselect(struct s3c2410_spigpio_info *spi, int cs)
415 {
416 s3c2410_gpio_setpin(S3C2410_GPH10, cs ? 0 : 1);
417 }
418
419 static struct s3c2410_spigpio_info jive_wm8750_spi = {
420 .bus_num = 2,
421 .pin_clk = S3C2410_GPB4,
422 .pin_mosi = S3C2410_GPB9,
423 .num_chipselect = 1,
424 .chip_select = jive_wm8750_chipselect,
425 };
426
427 static struct platform_device jive_device_wm8750 = {
428 .name = "spi_s3c24xx_gpio",
429 .id = 2,
430 .num_resources = 0,
431 .dev.platform_data = &jive_wm8750_spi,
432 };
433
434 /* JIVE SPI devices. */
435
436 static struct spi_board_info __initdata jive_spi_devs[] = {
437 [0] = {
438 .modalias = "VGG2432A4",
439 .bus_num = 1,
440 .chip_select = 0,
441 .mode = SPI_MODE_3, /* CPOL=1, CPHA=1 */
442 .max_speed_hz = 100000,
443 .platform_data = &jive_lcm_config,
444 }, {
445 .modalias = "WM8750",
446 .bus_num = 2,
447 .chip_select = 0,
448 .mode = SPI_MODE_0, /* CPOL=0, CPHA=0 */
449 .max_speed_hz = 100000,
450 },
451 };
452
453 /* I2C bus and device configuration. */
454
455 static struct s3c2410_platform_i2c jive_i2c_cfg __initdata = {
456 .max_freq = 80 * 1000,
457 .bus_freq = 50 * 1000,
458 .flags = S3C_IICFLG_FILTER,
459 .sda_delay = 2,
460 };
461
462 static struct i2c_board_info jive_i2c_devs[] __initdata = {
463 [0] = {
464 I2C_BOARD_INFO("lis302dl", 0x1c),
465 .irq = IRQ_EINT14,
466 },
467 };
468
469 /* The platform devices being used. */
470
471 static struct platform_device *jive_devices[] __initdata = {
472 &s3c_device_usb,
473 &s3c_device_rtc,
474 &s3c_device_wdt,
475 &s3c_device_i2c0,
476 &s3c_device_lcd,
477 &jive_device_lcdspi,
478 &jive_device_wm8750,
479 &s3c_device_nand,
480 &s3c_device_usbgadget,
481 };
482
483 static struct s3c2410_udc_mach_info jive_udc_cfg __initdata = {
484 .vbus_pin = S3C2410_GPG1, /* detect is on GPG1 */
485 };
486
487 /* Jive power management device */
488
489 #ifdef CONFIG_PM
490 static int jive_pm_suspend(struct sys_device *sd, pm_message_t state)
491 {
492 /* Write the magic value u-boot uses to check for resume into
493 * the INFORM0 register, and ensure INFORM1 is set to the
494 * correct address to resume from. */
495
496 __raw_writel(0x2BED, S3C2412_INFORM0);
497 __raw_writel(virt_to_phys(s3c2410_cpu_resume), S3C2412_INFORM1);
498
499 return 0;
500 }
501
502 static int jive_pm_resume(struct sys_device *sd)
503 {
504 __raw_writel(0x0, S3C2412_INFORM0);
505 return 0;
506 }
507
508 #else
509 #define jive_pm_suspend NULL
510 #define jive_pm_resume NULL
511 #endif
512
513 static struct sysdev_class jive_pm_sysclass = {
514 .name = "jive-pm",
515 .suspend = jive_pm_suspend,
516 .resume = jive_pm_resume,
517 };
518
519 static struct sys_device jive_pm_sysdev = {
520 .cls = &jive_pm_sysclass,
521 };
522
523 static void __init jive_map_io(void)
524 {
525 s3c24xx_init_io(jive_iodesc, ARRAY_SIZE(jive_iodesc));
526 s3c24xx_init_clocks(12000000);
527 s3c24xx_init_uarts(jive_uartcfgs, ARRAY_SIZE(jive_uartcfgs));
528 }
529
530 static void jive_power_off(void)
531 {
532 printk(KERN_INFO "powering system down...\n");
533
534 s3c2410_gpio_setpin(S3C2410_GPC5, 1);
535 s3c2410_gpio_cfgpin(S3C2410_GPC5, S3C2410_GPIO_OUTPUT);
536 }
537
538 static void __init jive_machine_init(void)
539 {
540 /* register system devices for managing low level suspend */
541
542 sysdev_class_register(&jive_pm_sysclass);
543 sysdev_register(&jive_pm_sysdev);
544
545 /* write our sleep configurations for the IO. Pull down all unused
546 * IO, ensure that we have turned off all peripherals we do not
547 * need, and configure the ones we do need. */
548
549 /* Port B sleep */
550
551 __raw_writel(S3C2412_SLPCON_IN(0) |
552 S3C2412_SLPCON_PULL(1) |
553 S3C2412_SLPCON_HIGH(2) |
554 S3C2412_SLPCON_PULL(3) |
555 S3C2412_SLPCON_PULL(4) |
556 S3C2412_SLPCON_PULL(5) |
557 S3C2412_SLPCON_PULL(6) |
558 S3C2412_SLPCON_HIGH(7) |
559 S3C2412_SLPCON_PULL(8) |
560 S3C2412_SLPCON_PULL(9) |
561 S3C2412_SLPCON_PULL(10), S3C2412_GPBSLPCON);
562
563 /* Port C sleep */
564
565 __raw_writel(S3C2412_SLPCON_PULL(0) |
566 S3C2412_SLPCON_PULL(1) |
567 S3C2412_SLPCON_PULL(2) |
568 S3C2412_SLPCON_PULL(3) |
569 S3C2412_SLPCON_PULL(4) |
570 S3C2412_SLPCON_PULL(5) |
571 S3C2412_SLPCON_LOW(6) |
572 S3C2412_SLPCON_PULL(6) |
573 S3C2412_SLPCON_PULL(7) |
574 S3C2412_SLPCON_PULL(8) |
575 S3C2412_SLPCON_PULL(9) |
576 S3C2412_SLPCON_PULL(10) |
577 S3C2412_SLPCON_PULL(11) |
578 S3C2412_SLPCON_PULL(12) |
579 S3C2412_SLPCON_PULL(13) |
580 S3C2412_SLPCON_PULL(14) |
581 S3C2412_SLPCON_PULL(15), S3C2412_GPCSLPCON);
582
583 /* Port D sleep */
584
585 __raw_writel(S3C2412_SLPCON_ALL_PULL, S3C2412_GPDSLPCON);
586
587 /* Port F sleep */
588
589 __raw_writel(S3C2412_SLPCON_LOW(0) |
590 S3C2412_SLPCON_LOW(1) |
591 S3C2412_SLPCON_LOW(2) |
592 S3C2412_SLPCON_EINT(3) |
593 S3C2412_SLPCON_EINT(4) |
594 S3C2412_SLPCON_EINT(5) |
595 S3C2412_SLPCON_EINT(6) |
596 S3C2412_SLPCON_EINT(7), S3C2412_GPFSLPCON);
597
598 /* Port G sleep */
599
600 __raw_writel(S3C2412_SLPCON_IN(0) |
601 S3C2412_SLPCON_IN(1) |
602 S3C2412_SLPCON_IN(2) |
603 S3C2412_SLPCON_IN(3) |
604 S3C2412_SLPCON_IN(4) |
605 S3C2412_SLPCON_IN(5) |
606 S3C2412_SLPCON_IN(6) |
607 S3C2412_SLPCON_IN(7) |
608 S3C2412_SLPCON_PULL(8) |
609 S3C2412_SLPCON_PULL(9) |
610 S3C2412_SLPCON_IN(10) |
611 S3C2412_SLPCON_PULL(11) |
612 S3C2412_SLPCON_PULL(12) |
613 S3C2412_SLPCON_PULL(13) |
614 S3C2412_SLPCON_IN(14) |
615 S3C2412_SLPCON_PULL(15), S3C2412_GPGSLPCON);
616
617 /* Port H sleep */
618
619 __raw_writel(S3C2412_SLPCON_PULL(0) |
620 S3C2412_SLPCON_PULL(1) |
621 S3C2412_SLPCON_PULL(2) |
622 S3C2412_SLPCON_PULL(3) |
623 S3C2412_SLPCON_PULL(4) |
624 S3C2412_SLPCON_PULL(5) |
625 S3C2412_SLPCON_PULL(6) |
626 S3C2412_SLPCON_IN(7) |
627 S3C2412_SLPCON_IN(8) |
628 S3C2412_SLPCON_PULL(9) |
629 S3C2412_SLPCON_IN(10), S3C2412_GPHSLPCON);
630
631 /* initialise the power management now we've setup everything. */
632
633 s3c2410_pm_init();
634
635 s3c_device_nand.dev.platform_data = &jive_nand_info;
636
637 /* initialise the spi */
638
639 s3c2410_gpio_setpin(S3C2410_GPG13, 0);
640 s3c2410_gpio_cfgpin(S3C2410_GPG13, S3C2410_GPIO_OUTPUT);
641
642 s3c2410_gpio_setpin(S3C2410_GPB7, 1);
643 s3c2410_gpio_cfgpin(S3C2410_GPB7, S3C2410_GPIO_OUTPUT);
644
645 s3c2410_gpio_setpin(S3C2410_GPB6, 0);
646 s3c2410_gpio_cfgpin(S3C2410_GPB6, S3C2410_GPIO_OUTPUT);
647
648 s3c2410_gpio_setpin(S3C2410_GPG8, 1);
649 s3c2410_gpio_cfgpin(S3C2410_GPG8, S3C2410_GPIO_OUTPUT);
650
651 /* initialise the WM8750 spi */
652
653 s3c2410_gpio_setpin(S3C2410_GPH10, 1);
654 s3c2410_gpio_cfgpin(S3C2410_GPH10, S3C2410_GPIO_OUTPUT);
655
656 /* Turn off suspend on both USB ports, and switch the
657 * selectable USB port to USB device mode. */
658
659 s3c2410_modify_misccr(S3C2410_MISCCR_USBHOST |
660 S3C2410_MISCCR_USBSUSPND0 |
661 S3C2410_MISCCR_USBSUSPND1, 0x0);
662
663 s3c24xx_udc_set_platdata(&jive_udc_cfg);
664 s3c24xx_fb_set_platdata(&jive_lcd_config);
665
666 spi_register_board_info(jive_spi_devs, ARRAY_SIZE(jive_spi_devs));
667
668 s3c_i2c0_set_platdata(&jive_i2c_cfg);
669 i2c_register_board_info(0, jive_i2c_devs, ARRAY_SIZE(jive_i2c_devs));
670
671 pm_power_off = jive_power_off;
672
673 platform_add_devices(jive_devices, ARRAY_SIZE(jive_devices));
674 }
675
676 MACHINE_START(JIVE, "JIVE")
677 /* Maintainer: Ben Dooks <ben@fluff.org> */
678 .phys_io = S3C2410_PA_UART,
679 .io_pg_offst = (((u32)S3C24XX_VA_UART) >> 18) & 0xfffc,
680 .boot_params = S3C2410_SDRAM_PA + 0x100,
681
682 .init_irq = s3c24xx_init_irq,
683 .map_io = jive_map_io,
684 .init_machine = jive_machine_init,
685 .timer = &s3c24xx_timer,
686 MACHINE_END
This page took 0.061377 seconds and 5 git commands to generate.