OLD | NEW |
1 /* linux/arch/arm/mach-s5pv210/mach-voguev210.c | 1 /* linux/arch/arm/mach-s5pv210/mach-voguev210.c |
2 * | 2 * |
3 * Copyright (c) 2010 Samsung Electronics Co., Ltd. | 3 * Copyright (c) 2010 Samsung Electronics Co., Ltd. |
4 * http://www.samsung.com/ | 4 * http://www.samsung.com/ |
5 * | 5 * |
6 * This program is free software; you can redistribute it and/or modify | 6 * This program is free software; you can redistribute it and/or modify |
7 * it under the terms of the GNU General Public License version 2 as | 7 * it under the terms of the GNU General Public License version 2 as |
8 * published by the Free Software Foundation. | 8 * published by the Free Software Foundation. |
9 */ | 9 */ |
10 | 10 |
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 #endif | 297 #endif |
298 | 298 |
299 #ifdef CONFIG_DM9000 | 299 #ifdef CONFIG_DM9000 |
300 &device_dm9000, | 300 &device_dm9000, |
301 #endif | 301 #endif |
302 | 302 |
303 #ifdef CONFIG_VIDEO_MFC50 | 303 #ifdef CONFIG_VIDEO_MFC50 |
304 &s3c_device_mfc, | 304 &s3c_device_mfc, |
305 #endif | 305 #endif |
306 | 306 |
| 307 #ifdef CONFIG_S3C2410_WATCHDOG |
| 308 &s3c_device_wdt, |
| 309 #endif |
| 310 |
307 #ifdef CONFIG_VIDEO_TV20 | 311 #ifdef CONFIG_VIDEO_TV20 |
308 &s5p_device_tvout, | 312 &s5p_device_tvout, |
309 &s5p_device_cec, | 313 &s5p_device_cec, |
310 &s5p_device_hpd, | 314 &s5p_device_hpd, |
311 #endif | 315 #endif |
312 #ifdef CONFIG_SND_S3C24XX_SOC | 316 #ifdef CONFIG_SND_S3C24XX_SOC |
313 &s3c64xx_device_iis0, | 317 &s3c64xx_device_iis0, |
314 #endif | 318 #endif |
315 #ifdef CONFIG_SND_S3C_SOC_PCM | 319 #ifdef CONFIG_SND_S3C_SOC_PCM |
316 &s5p_device_pcm2, | 320 &s5p_device_pcm2, |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
428 /* Maintainer: Kukjin Kim <kgene.kim@samsung.com> */ | 432 /* Maintainer: Kukjin Kim <kgene.kim@samsung.com> */ |
429 .phys_io = S3C_PA_UART & 0xfff00000, | 433 .phys_io = S3C_PA_UART & 0xfff00000, |
430 .io_pg_offst = (((u32)S3C_VA_UART) >> 18) & 0xfffc, | 434 .io_pg_offst = (((u32)S3C_VA_UART) >> 18) & 0xfffc, |
431 .boot_params = S5P_PA_SDRAM + 0x100, | 435 .boot_params = S5P_PA_SDRAM + 0x100, |
432 .fixup = voguev210_fixup, | 436 .fixup = voguev210_fixup, |
433 .init_irq = s5pv210_init_irq, | 437 .init_irq = s5pv210_init_irq, |
434 .map_io = voguev210_map_io, | 438 .map_io = voguev210_map_io, |
435 .init_machine = voguev210_machine_init, | 439 .init_machine = voguev210_machine_init, |
436 .timer = &s5p_systimer, | 440 .timer = &s5p_systimer, |
437 MACHINE_END | 441 MACHINE_END |
OLD | NEW |