///////////////////////////////////////// // Devices mapped segments ///////////////////////////////////////// #define XICU_BASE 0x11800000 #define XICU_SIZE 0x00001000 #define DMA_BASE 0x32200000 #define DMA_SIZE 0x00000014 #define TTY_BASE 0x12200000 #define TTY_SIZE 0x00000040 #define BD_BASE 0x15200000 #define BD_SIZE 0x20 #define FB_XSIZE 512 #define FB_YSIZE 512 #define FB_BASE 0x13200000 #define FB_SIZE 0x200000 //////////////////////////////////////// ////////////////////////////////////////// // ROM mapped segments ////////////////////////////////////////// #define ROM_BASE 0xbfc00000 #define BOOT_BASE ROM_BASE #define BOOT_SIZE 0x00008000 #define BOOT_INFO_BLOCK 0xbfc08000 #define KERNEL_BIN_IMG 0xbfc10000 #define ROM_SIZE 0x00100000 ////////////////////////////////////////// ////////////////////////////////////////// // RAM ////////////////////////////////////////// #define RAM_BASE 0x00000000 #define RAM_SIZE 0x08000000 ////////////////////////////////////////// //////////////////////////////////////// //////////////////////////////////////// // Reserved segments //////////////////////////////////////// #define PROC0_BASE 0x08200000 #define PROC0_SIZE 0x00000010 #define PROC1_BASE 0x09200000 #define PROC1_SIZE 0x00000010 #define PROC2_BASE 0x0a200000 #define PROC2_SIZE 0x00000010 #define PROC3_BASE 0x0b200000 #define PROC3_SIZE 0x00000010 ////////////////////////////////////////