summaryrefslogtreecommitdiffstats
path: root/src/cold-flash.c
diff options
context:
space:
mode:
authorPali Rohár <pali.rohar@gmail.com>2012-08-12 17:32:42 +0200
committerPali Rohár <pali.rohar@gmail.com>2012-08-12 17:32:42 +0200
commitdb546a17b86f9a4293d55060155100b73b912e6b (patch)
tree73384cf1367a7ce805e4e67c8e7c77b3451a203d /src/cold-flash.c
parentd35d6142caa2d0a8c7401d5999739ecc2429609e (diff)
download0xFFFF-db546a17b86f9a4293d55060155100b73b912e6b.tar.bz2
cold-flash: Add all omap boot messages
Diffstat (limited to 'src/cold-flash.c')
-rw-r--r--src/cold-flash.c27
1 files changed, 27 insertions, 0 deletions
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;