/* Use FFUART */
#define USE_SERIAL1 1
#define TERMINAL_SPEED baud_115200
/* the base address were BLOB is loaded by the first stage loader */
#define BLOB_ABS_BASE_ADDR (0xa0300400)
/* where do various parts live in RAM */
#define BLOB_RAM_BASE (0xa0200000)
#define KERNEL_RAM_BASE (0xa0008000)
#define PARAM_RAM_BASE (0xa0210000)
#define RAMDISK_RAM_BASE (0xa0500000)
/* and where do they live in flash */
#define BLOB_FLASH_BASE (0x00000000)
#define BLOB_FLASH_LEN (256 * 1024)
#define PARAM_FLASH_BASE (BLOB_FLASH_BASE + BLOB_FLASH_LEN)
#define PARAM_FLASH_LEN (0) /* no parameters */
#define KERNEL_FLASH_BASE (PARAM_FLASH_BASE + PARAM_FLASH_LEN)
#define KERNEL_FLASH_LEN (2 * 1024 * 1024)
#define LOAD_RAMDISK 0 /* load ramdisk into ram */
#define RAMDISK_FLASH_BASE (KERNEL_FLASH_BASE + KERNEL_FLASH_LEN)
#define RAMDISK_FLASH_LEN (4 * 1024 * 1024)
/* the position of the kernel boot parameters */
#define BOOT_PARAMS (0xa0000100)
/* the size (in kbytes) to which the compressed ramdisk expands */
#define RAMDISK_SIZE (8 * 1024)