From db546a17b86f9a4293d55060155100b73b912e6b Mon Sep 17 00:00:00 2001 From: Pali Rohár Date: Sun, 12 Aug 2012 17:32:42 +0200 Subject: cold-flash: Add all omap boot messages --- src/cold-flash.c | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'src/cold-flash.c') diff --git a/src/cold-flash.c b/src/cold-flash.c index c2c69ff..fb69666 100644 --- a/src/cold-flash.c +++ b/src/cold-flash.c @@ -85,9 +85,36 @@ static uint32_t crc32(unsigned char * bytes, size_t size, uint32_t crc) { /* Omap Peripheral boot message */ static const uint32_t omap_peripheral_msg = 0xF0030002; +/* Omap Void (no device) boot message */ +static const uint32_t omap_void_msg = 0xF0030006; + +/* Omap XIP memory boot message */ +static const uint32_t omap_xip_msg = 0xF0030106; + +/* Omap Nand boot message */ +static const uint32_t omap_nand_msg = 0xF0030206; + /* Omap OneNAND boot message */ static const uint32_t omap_onenand_msg = 0xF0030306; +/* Omap DOC boot message */ +static const uint32_t omap_doc_msg = 0xF0030406; + +/* Omap MMC/SD2 boot message */ +static const uint32_t omap_mmc2_msg = 0xF0030506; + +/* Omap MMC/SD1 boot message */ +static const uint32_t omap_mmc1_msg = 0xF0030606; + +/* Omap XIP memory with wait monitoring boot message */ +static const uint32_t omap_xipwait_msg = 0xF0030706; + +/* Omap UART boot message */ +static const uint32_t omap_uart_msg = 0xF0031006; + +/* Omap HS USB boot message */ +static const uint32_t omap_hsusb_msg = 0xF0031106; + /* Omap next device boot message */ static const uint32_t omap_next_msg = 0xFFFFFFFF; -- cgit v1.2.3