aspenite.c 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*
  2. * linux/arch/arm/mach-mmp/aspenite.c
  3. *
  4. * Support for the Marvell PXA168-based Aspenite and Zylonite2
  5. * Development Platform.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * publishhed by the Free Software Foundation.
  10. */
  11. #include <linux/init.h>
  12. #include <asm/mach-types.h>
  13. #include <asm/mach/arch.h>
  14. #include <mach/addr-map.h>
  15. #include "common.h"
  16. static void __init common_init(void)
  17. {
  18. }
  19. MACHINE_START(ASPENITE, "PXA168-based Aspenite Development Platform")
  20. .phys_io = APB_PHYS_BASE,
  21. .boot_params = 0x00000100,
  22. .io_pg_offst = (APB_VIRT_BASE >> 18) & 0xfffc,
  23. .map_io = pxa_map_io,
  24. .init_irq = pxa168_init_irq,
  25. .timer = &pxa168_timer,
  26. .init_machine = common_init,
  27. MACHINE_END
  28. MACHINE_START(ZYLONITE2, "PXA168-based Zylonite2 Development Platform")
  29. .phys_io = APB_PHYS_BASE,
  30. .boot_params = 0x00000100,
  31. .io_pg_offst = (APB_VIRT_BASE >> 18) & 0xfffc,
  32. .map_io = pxa_map_io,
  33. .init_irq = pxa168_init_irq,
  34. .timer = &pxa168_timer,
  35. .init_machine = common_init,
  36. MACHINE_END