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