mach-nuc960evb.c 977 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * linux/arch/arm/mach-w90x900/mach-nuc960evb.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. *
  14. */
  15. #include <linux/platform_device.h>
  16. #include <asm/mach/arch.h>
  17. #include <asm/mach/map.h>
  18. #include <asm/mach-types.h>
  19. #include <mach/map.h>
  20. #include "nuc960.h"
  21. static void __init nuc960evb_map_io(void)
  22. {
  23. nuc960_map_io();
  24. nuc960_init_clocks();
  25. }
  26. static void __init nuc960evb_init(void)
  27. {
  28. nuc960_board_init();
  29. }
  30. MACHINE_START(W90N960EVB, "W90N960EVB")
  31. /* Maintainer: Wan ZongShun */
  32. .map_io = nuc960evb_map_io,
  33. .init_irq = nuc900_init_irq,
  34. .init_machine = nuc960evb_init,
  35. .init_time = nuc900_timer_init,
  36. .restart = nuc9xx_restart,
  37. MACHINE_END