sbtools: add support for the stmp36xx format
[maemo-rb.git] / utils / imxtools / sbtools / sb1.h
blobf0a7a4ebc8b175f305552ebcf56a091786a495eb
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2012 Amaury Pouly
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
21 #ifndef __SB1_H__
22 #define __SB1_H__
24 #include <stdint.h>
25 #include <stdbool.h>
27 #include "misc.h"
29 #define SECTOR_SIZE 512
31 /* All fields are in big-endian BCD */
32 struct sb1_version_t
34 uint16_t major;
35 uint16_t pad0;
36 uint16_t minor;
37 uint16_t pad1;
38 uint16_t revision;
39 uint16_t pad2;
42 struct sb1_header_t
44 uint32_t rom_version;
45 uint32_t image_size;
46 uint32_t header_size;
47 uint32_t userdata_offset;
48 uint32_t pad2;
49 uint8_t signature[4]; /* Signature "STMP" */
50 struct sb1_version_t product_ver;
51 struct sb1_version_t component_ver;
52 uint32_t drive_tag;
53 } __attribute__((packed));
55 struct sb1_cmd_header_t
57 uint32_t cmd; // 31:21=cmd size, 20=critical, 19:6=size 5:4=datatype, 3:0=boot cmd
58 uint32_t addr;
59 } __attribute__((packed));
61 #define SB1_CMD_SIZE(cmd) ((cmd) >> 21)
62 #define SB1_CMD_CRITICAL(cmd) !!(cmd & (1 << 20))
63 #define SB1_CMD_BYTES(cmd) (((cmd) >> 6) & 0x3fff)
64 #define SB1_CMD_DATATYPE(cmd) (((cmd) >> 4) & 0x3)
65 #define SB1_CMD_BOOT(cmd) ((cmd) & 0xf)
67 #define SB1_INST_LOAD 0x1
68 #define SB1_INST_FILL 0x2
69 #define SB1_INST_JUMP 0x3
70 #define SB1_INST_CALL 0x4
71 #define SB1_INST_MODE 0x5
72 #define SB1_INST_SDRAM 0x6
74 struct sb1_file_t
76 struct sb1_version_t product_ver;
77 struct sb1_version_t component_ver;
78 void *data;
79 int data_size;
82 enum sb1_error_t
84 SB1_SUCCESS = 0,
85 SB1_ERROR = -1,
86 SB1_OPEN_ERROR = -2,
87 SB1_READ_ERROR = -3,
88 SB1_WRITE_ERROR = -4,
89 SB1_FORMAT_ERROR = -5,
90 SB1_CHECKSUM_ERROR = -6,
91 SB1_NO_VALID_KEY = -7,
92 SB1_FIRST_CRYPTO_ERROR = -8,
93 SB1_LAST_CRYPTO_ERROR = SB1_FIRST_CRYPTO_ERROR - CRYPTO_NUM_ERRORS,
96 enum sb1_error_t sb1_write_file(struct sb1_file_t *sb, const char *filename);
98 typedef void (*sb1_color_printf)(void *u, bool err, color_t c, const char *f, ...);
99 struct sb1_file_t *sb1_read_file(const char *filename, void *u,
100 sb1_color_printf printf, enum sb1_error_t *err);
101 /* use size_t(-1) to use maximum size */
102 struct sb1_file_t *sb1_read_file_ex(const char *filename, size_t offset, size_t size,
103 void *u, sb1_color_printf printf, enum sb1_error_t *err);
104 struct sb1_file_t *sb1_read_memory(void *buffer, size_t size, void *u,
105 sb1_color_printf printf, enum sb1_error_t *err);
107 void sb1_dump(struct sb1_file_t *file, void *u, sb1_color_printf printf);
108 void sb1_free(struct sb1_file_t *file);
110 #endif /* __SB1_H__ */