X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/0840c2ef25cbbe1634b050ba5c8bc1b036129d83..4f38f53ecdfac17b5632ee65165b2f570bfc2a7b:/tools/firmware-utils/src/mkzynfw.c diff --git a/tools/firmware-utils/src/mkzynfw.c b/tools/firmware-utils/src/mkzynfw.c old mode 100755 new mode 100644 index b4462ad45..690395f89 --- a/tools/firmware-utils/src/mkzynfw.c +++ b/tools/firmware-utils/src/mkzynfw.c @@ -4,37 +4,27 @@ * Copyright (C) 2007 OpenWrt.org * Copyright (C) 2007 Gabor Juhos * - * This code was based on the information of the ZyXEL's firmware - * image format written by Kolja Waschk, can be found at: + * This code was based on the information of the ZyXEL's firmware + * image format written by Kolja Waschk, can be found at: * http://www.ixo.de/info/zyxel_uclinux * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License version 2 as published + * by the Free Software Foundation. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the - * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, - * Boston, MA 02110-1301, USA. */ #include #include #include #include -#include /* for unlink() */ +#include /* for unlink() */ #include -#include /* for getopt() */ +#include /* for getopt() */ #include #include #include -#include /* for __BYTE_ORDER */ +#include /* for __BYTE_ORDER */ #if defined(__CYGWIN__) # include #endif @@ -100,6 +90,7 @@ struct fw_mmap { struct board_info { char *name; /* model name */ char *desc; /* description */ + uint16_t vendor; /* vendor id */ uint16_t model; /* model id */ uint32_t flash_base; /* flash base address */ uint32_t flash_size; /* board flash size */ @@ -127,24 +118,25 @@ int num_blocks = 0; #define AR7_FLASH_BASE 0xB0000000 #define AR7_CODE_START 0x94008000 -#define BOARD(n, d, m, fb, fs, cs, fo) { \ - .name = (n), .desc=(d), .model = (m), \ +#define BOARD(n, d, v, m, fb, fs, cs, fo) { \ + .name = (n), .desc=(d), \ + .vendor = (v), .model = (m), \ .flash_base = (fb), .flash_size = (fs)<<20, \ .code_start = (cs), .fw_offs = (fo) \ } -#define ADMBOARD1(n, d, m, fs) BOARD(n, d, m, \ +#define ADMBOARD1(n, d, m, fs) BOARD(n, d, ZYNOS_VENDOR_ID_ZYXEL, m, \ ADM5120_FLASH_BASE, fs, ADM5120_CODE_START, 0x8000) -#define ADMBOARD2(n, d, m, fs) BOARD(n, d, m, \ +#define ADMBOARD2(n, d, m, fs) BOARD(n, d, ZYNOS_VENDOR_ID_ZYXEL, m, \ ADM5120_FLASH_BASE, fs, ADM5120_CODE_START, 0x10000) -#define AR7BOARD1(n, d, m, fs) BOARD(n, d, m, \ +#define AR7BOARD1(n, d, m, fs) BOARD(n, d, ZYNOS_VENDOR_ID_ZYXEL, m, \ AR7_FLASH_BASE, fs, AR7_CODE_START, 0x8000) static struct board_info boards[] = { - /* - * Infineon/ADMtek ADM5120 based boards + /* + * Infineon/ADMtek ADM5120 based boards */ ADMBOARD2("ES-2024A", "ZyXEL ES-2024A", ZYNOS_MODEL_ES_2024A, 4), ADMBOARD2("ES-2024PWR", "ZyXEL ES-2024PWR", ZYNOS_MODEL_ES_2024PWR, 4), @@ -165,8 +157,9 @@ static struct board_info boards[] = { ADMBOARD1("P-335Plus", "ZyXEL Prestige 335Plus", ZYNOS_MODEL_P_335PLUS, 4), ADMBOARD1("P-335U", "ZyXEL Prestige 335U", ZYNOS_MODEL_P_335U, 4), ADMBOARD1("P-335WT", "ZyXEL Prestige 335WT", ZYNOS_MODEL_P_335WT, 4), + #if 0 - /* + /* * Texas Instruments AR7 based boards */ AR7BOARD1("P-660H-61", "ZyXEL P-660H-61", ZYNOS_MODEL_P_660H_61, 2), @@ -186,6 +179,17 @@ static struct board_info boards[] = { AR7BOARD1("P-660R-D1", "ZyXEL P-660R-D1", ZYNOS_MODEL_P_660R_D1, 2), AR7BOARD1("P-660R-D3", "ZyXEL P-660R-D3", ZYNOS_MODEL_P_660R_D3, 2), #endif + { + .name = "O2SURF", + .desc = "O2 DSL Surf & Phone", + .vendor = ZYNOS_VENDOR_ID_O2, + .model = ZYNOS_MODEL_O2SURF, + .flash_base = AR7_FLASH_BASE, + .flash_size = 8*1024*1024, + .code_start = 0x94014000, + .fw_offs = 0x40000, + }, + {.name = NULL} }; @@ -194,18 +198,20 @@ static struct board_info boards[] = { */ #define ERR(fmt, ...) do { \ fflush(0); \ - fprintf(stderr, "[%s] *** error: " fmt "\n", progname, ## __VA_ARGS__ ); \ + fprintf(stderr, "[%s] *** error: " fmt "\n", \ + progname, ## __VA_ARGS__ ); \ } while (0) #define ERRS(fmt, ...) do { \ int save = errno; \ fflush(0); \ - fprintf(stderr, "[%s] *** error: " fmt ", %s\n", progname, ## __VA_ARGS__ \ - , strerror(save)); \ + fprintf(stderr, "[%s] *** error: " fmt ", %s\n", \ + progname, ## __VA_ARGS__, strerror(save)); \ } while (0) #define WARN(fmt, ...) do { \ - fprintf(stderr, "[%s] *** warning: " fmt "\n", progname, ## __VA_ARGS__ ); \ + fprintf(stderr, "[%s] *** warning: " fmt "\n", \ + progname, ## __VA_ARGS__ ); \ } while (0) #define DBG(lev, fmt, ...) do { \ @@ -259,7 +265,7 @@ str2u32(char *arg, uint32_t *val) { char *err = NULL; uint32_t t; - + errno=0; t = strtoul(arg, &err, 0); if (errno || (err==arg) || ((err != NULL) && *err)) { @@ -282,7 +288,7 @@ str2u16(char *arg, uint16_t *val) if (errno || (err==arg) || ((err != NULL) && *err) || (t >= 0x10000)) { return -1; } - + *val = t & 0xFFFF; return 0; } @@ -298,7 +304,7 @@ str2u8(char *arg, uint8_t *val) if (errno || (err==arg) || ((err != NULL) && *err) || (t >= 0x100)) { return -1; } - + *val = t & 0xFF; return 0; } @@ -310,7 +316,7 @@ str2sig(char *arg, uint32_t *sig) return -1; *sig = arg[0] | (arg[1] << 8) | (arg[2] << 16) | (arg[3] << 24); - + return 0; } @@ -483,7 +489,7 @@ write_out_padding(FILE *outfile, size_t len, uint8_t padc, if (write_out_data(outfile, buf, buflen, css)) return -1; - + len -= buflen; } @@ -521,7 +527,7 @@ write_out_header(FILE *outfile, struct zyn_rombin_hdr *hdr) } /* setup temporary header fields */ - memset(&t,0, sizeof(t)); + memset(&t, 0, sizeof(t)); t.addr = HOST_TO_BE32(hdr->addr); memcpy(&t.sig, ROMBIN_SIGNATURE, ROMBIN_SIG_LEN); t.type = hdr->type; @@ -545,19 +551,21 @@ write_out_mmap(FILE *outfile, struct fw_mmap *mmap, struct csum_state *css) char *data; int res; - memset(buf,0,sizeof(buf)); + memset(buf, 0, sizeof(buf)); mh = (struct zyn_mmt_hdr *)buf; /* TODO: needs to recreate the memory map too? */ mh->count=0; - + /* Build user data section */ data = buf+sizeof(*mh); - data += sprintf(data,"Model 1 %d", BE16_TO_HOST(board->model)); + data += sprintf(data, "Vendor 1 %d", board->vendor); + *data++ = '\0'; + data += sprintf(data, "Model 1 %d", BE16_TO_HOST(board->model)); *data++ = '\0'; /* TODO: make hardware version configurable? */ - data += sprintf(data,"HwVerRange 2 %d %d", 0, 0); + data += sprintf(data, "HwVerRange 2 %d %d", 0, 0); *data++ = '\0'; user_size = (uint8_t *)data - buf; @@ -566,7 +574,7 @@ write_out_mmap(FILE *outfile, struct fw_mmap *mmap, struct csum_state *css) mh->csum = HOST_TO_BE16(csum_buf(buf+sizeof(*mh), user_size)); res = write_out_data(outfile, buf, sizeof(buf), css); - + return res; } @@ -638,7 +646,7 @@ int write_out_block(FILE *outfile, struct fw_block *block, struct csum_state *css) { int res; - + if (block == NULL) return 0; @@ -648,7 +656,7 @@ write_out_block(FILE *outfile, struct fw_block *block, struct csum_state *css) if (block->file_size == 0) return 0; - res = write_out_file(outfile, block->file_name, + res = write_out_file(outfile, block->file_name, block->file_size, css); return res; } @@ -666,9 +674,10 @@ write_out_image(FILE *outfile) uint32_t padlen; /* setup header fields */ + memset(&hdr, 0, sizeof(hdr)); hdr.addr = board->code_start; hdr.type = OBJECT_TYPE_BOOTEXT; - hdr.flags = ROMBIN_FLAG_40; + hdr.flags = ROMBIN_FLAG_OCSUM; res = write_out_header(outfile, &hdr); if (res) @@ -775,7 +784,7 @@ parse_opt_ofname(char ch, char *arg) return -1; } - if (required_arg(ch, arg)) + if (required_arg(ch, arg)) return -1; ofname = arg; @@ -794,13 +803,13 @@ parse_opt_block(char ch, char *arg) struct fw_block *block; int i; - if ( num_blocks > MAX_NUM_BLOCKS ) { + if ( num_blocks >= MAX_NUM_BLOCKS ) { ERR("too many blocks specified"); return -1; } block = &blocks[num_blocks++]; - + /* setup default field values */ block->padc = 0xFF; @@ -870,9 +879,9 @@ calc_block_offsets(int type, uint32_t *offset) avail = board->flash_size - board->fw_offs - next_offs; if (next_offs + block->file_size > avail) { ERR("file %s is too big, offset = %u, size=%u," - " align = %u", block->file_name, - (unsigned)next_offs, - (unsigned)block->file_size, + " align = %u", block->file_name, + (unsigned)next_offs, + (unsigned)block->file_size, (unsigned)block->align); res = -1; break; @@ -881,7 +890,7 @@ calc_block_offsets(int type, uint32_t *offset) block->padlen = next_offs - *offset; *offset += block->file_size; } - + return res; } @@ -916,13 +925,13 @@ main(int argc, char *argv[]) int res = EXIT_FAILURE; FILE *outfile; - + progname=basename(argv[0]); opterr = 0; /* could not print standard getopt error messages */ while ( 1 ) { optinvalid = 0; - + c = getopt(argc, argv, "b:B:ho:r:v"); if (c == -1) break; @@ -968,7 +977,7 @@ main(int argc, char *argv[]) ERR("invalid option: %s", argv[optind]); goto out; } - + if (process_blocks() != 0) { goto out;