zboot.h 560 B

12345678910111213141516171819202122232425
  1. #ifndef ZBOOT_H
  2. #define ZBOOT_H
  3. #include <asm/mach-types.h>
  4. #include <mach/zboot_macros.h>
  5. /**************************************************
  6. *
  7. * board specific settings
  8. *
  9. **************************************************/
  10. #ifdef CONFIG_MACH_AP4EVB
  11. #define MACH_TYPE MACH_TYPE_AP4EVB
  12. #define MEMORY_START 0x40000000
  13. #include "mach/head-ap4evb.txt"
  14. #elif defined(CONFIG_MACH_MACKEREL)
  15. #define MACH_TYPE MACH_TYPE_MACKEREL
  16. #define MEMORY_START 0x40000000
  17. #include "mach/head-mackerel.txt"
  18. #else
  19. #error "unsupported board."
  20. #endif
  21. #endif /* ZBOOT_H */