M7350/kernel/arch/arm/mach-shmobile/include/mach/zboot.h

23 lines
498 B
C
Raw Normal View History

2024-09-09 08:52:07 +00:00
#ifndef ZBOOT_H
#define ZBOOT_H
#include <mach/zboot_macros.h>
/**************************************************
*
* board specific settings
*
**************************************************/
2024-09-09 08:57:42 +00:00
#ifdef CONFIG_MACH_MACKEREL
#define MEMORY_START 0x40000000
2024-09-09 08:52:07 +00:00
#include "mach/head-mackerel.txt"
2024-09-09 08:57:42 +00:00
#elif defined(CONFIG_MACH_KZM9G) || defined(CONFIG_MACH_KZM9G_REFERENCE)
#define MEMORY_START 0x43000000
#include "mach/head-kzm9g.txt"
2024-09-09 08:52:07 +00:00
#else
#error "unsupported board."
#endif
#endif /* ZBOOT_H */