mach-nuc950evb.c 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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.
  13. * history:
  14. * Wang Qiang (rurality.linux@gmail.com) add LCD support
  15. *
  16. */
  17. #include <linux/platform_device.h>
  18. #include <asm/mach/arch.h>
  19. #include <asm/mach/map.h>
  20. #include <asm/mach-types.h>
  21. #include <mach/map.h>
  22. #include <linux/platform_data/video-nuc900fb.h>
  23. #include "nuc950.h"
  24. static void __init nuc950evb_map_io(void)
  25. {
  26. nuc950_map_io();
  27. nuc950_init_clocks();
  28. }
  29. static void __init nuc950evb_init(void)
  30. {
  31. nuc950_board_init();
  32. }
  33. MACHINE_START(W90P950EVB, "W90P950EVB")
  34. /* Maintainer: Wan ZongShun */
  35. .map_io = nuc950evb_map_io,
  36. .init_irq = nuc900_init_irq,
  37. .init_machine = nuc950evb_init,
  38. .init_time = nuc900_timer_init,
  39. .restart = nuc9xx_restart,
  40. MACHINE_END