aaed2000.c 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * linux/arch/arm/mach-aaec2000/aaed2000.c
  3. *
  4. * Support for the Agilent AAED-2000 Development Platform.
  5. *
  6. * Copyright (c) 2005 Nicolas Bellido Y Ortega
  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/module.h>
  14. #include <linux/kernel.h>
  15. #include <linux/init.h>
  16. #include <linux/device.h>
  17. #include <linux/major.h>
  18. #include <linux/interrupt.h>
  19. #include <asm/setup.h>
  20. #include <asm/memory.h>
  21. #include <asm/mach-types.h>
  22. #include <asm/hardware.h>
  23. #include <asm/irq.h>
  24. #include <asm/mach/arch.h>
  25. #include <asm/mach/map.h>
  26. #include <asm/mach/irq.h>
  27. #include "core.h"
  28. static void __init aaed2000_init_irq(void)
  29. {
  30. aaec2000_init_irq();
  31. }
  32. static void __init aaed2000_map_io(void)
  33. {
  34. aaec2000_map_io();
  35. }
  36. MACHINE_START(AAED2000, "Agilent AAED-2000 Development Platform")
  37. MAINTAINER("Nicolas Bellido Y Ortega")
  38. BOOT_MEM(0xf0000000, PIO_BASE, VIO_BASE)
  39. MAPIO(aaed2000_map_io)
  40. INITIRQ(aaed2000_init_irq)
  41. .timer = &aaec2000_timer,
  42. MACHINE_END