2010-12-01 14:45:00 +08:00
|
|
|
#ifndef ZBOOT_H
|
|
|
|
#define ZBOOT_H
|
|
|
|
|
2010-12-01 14:40:16 +08:00
|
|
|
#include <mach/zboot_macros.h>
|
|
|
|
|
2010-12-01 14:45:00 +08:00
|
|
|
/**************************************************
|
|
|
|
*
|
|
|
|
* board specific settings
|
|
|
|
*
|
|
|
|
**************************************************/
|
|
|
|
|
2013-06-12 17:18:19 +08:00
|
|
|
#ifdef CONFIG_MACH_MACKEREL
|
2013-06-05 15:55:31 +08:00
|
|
|
#define MEMORY_START 0x40000000
|
2010-12-09 08:47:15 +08:00
|
|
|
#include "mach/head-mackerel.txt"
|
2013-11-27 04:53:20 +08:00
|
|
|
#elif defined(CONFIG_MACH_KZM9G) || defined(CONFIG_MACH_KZM9G_REFERENCE)
|
|
|
|
#define MEMORY_START 0x43000000
|
|
|
|
#include "mach/head-kzm9g.txt"
|
2010-12-01 14:40:16 +08:00
|
|
|
#else
|
2010-12-01 14:45:00 +08:00
|
|
|
#error "unsupported board."
|
2010-12-01 14:40:16 +08:00
|
|
|
#endif
|
2010-12-01 14:45:00 +08:00
|
|
|
|
|
|
|
#endif /* ZBOOT_H */
|