wanzongshun | 936fbe9 | 2009-08-21 07:08:24 +0100 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/mach-w90x900/mach-nuc950evb.c |
| 3 | * |
| 4 | * Based on mach-s3c2410/mach-smdk2410.c by Jonas Dietsche |
| 5 | * |
| 6 | * Copyright (C) 2008 Nuvoton technology corporation. |
| 7 | * |
| 8 | * Wan ZongShun <mcuos.com@gmail.com> |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License as |
| 12 | * published by the Free Software Foundation;version 2 of the License. |
Wang Qiang | 8661970 | 2010-03-10 15:21:47 -0800 | [diff] [blame] | 13 | * history: |
| 14 | * Wang Qiang (rurality.linux@gmail.com) add LCD support |
wanzongshun | 936fbe9 | 2009-08-21 07:08:24 +0100 | [diff] [blame] | 15 | * |
| 16 | */ |
| 17 | |
| 18 | #include <linux/platform_device.h> |
| 19 | #include <asm/mach/arch.h> |
| 20 | #include <asm/mach/map.h> |
| 21 | #include <asm/mach-types.h> |
| 22 | #include <mach/map.h> |
Arnd Bergmann | 54ecf4f | 2012-08-24 15:18:36 +0200 | [diff] [blame] | 23 | #include <linux/platform_data/video-nuc900fb.h> |
wanzongshun | 936fbe9 | 2009-08-21 07:08:24 +0100 | [diff] [blame] | 24 | |
| 25 | #include "nuc950.h" |
| 26 | |
| 27 | static void __init nuc950evb_map_io(void) |
| 28 | { |
| 29 | nuc950_map_io(); |
| 30 | nuc950_init_clocks(); |
| 31 | } |
| 32 | |
| 33 | static void __init nuc950evb_init(void) |
| 34 | { |
| 35 | nuc950_board_init(); |
wanzongshun | 936fbe9 | 2009-08-21 07:08:24 +0100 | [diff] [blame] | 36 | } |
| 37 | |
| 38 | MACHINE_START(W90P950EVB, "W90P950EVB") |
| 39 | /* Maintainer: Wan ZongShun */ |
wanzongshun | 936fbe9 | 2009-08-21 07:08:24 +0100 | [diff] [blame] | 40 | .map_io = nuc950evb_map_io, |
| 41 | .init_irq = nuc900_init_irq, |
| 42 | .init_machine = nuc950evb_init, |
Stephen Warren | 6bb27d7 | 2012-11-08 12:40:59 -0700 | [diff] [blame] | 43 | .init_time = nuc900_timer_init, |
Russell King | fe76dae | 2011-11-05 14:50:25 +0000 | [diff] [blame] | 44 | .restart = nuc9xx_restart, |
wanzongshun | 936fbe9 | 2009-08-21 07:08:24 +0100 | [diff] [blame] | 45 | MACHINE_END |