b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | /* |
| 2 | * LZMA compressed kernel loader for Atheros AR7XXX/AR9XXX based boards |
| 3 | * |
| 4 | * Copyright (C) 2011 Gabor Juhos <juhosg@openwrt.org> |
| 5 | * |
| 6 | * Some parts of this code was based on the OpenWrt specific lzma-loader |
| 7 | * for the BCM47xx and ADM5120 based boards: |
| 8 | * Copyright (C) 2004 Manuel Novoa III (mjn3@codepoet.org) |
| 9 | * Copyright (C) 2005 Mineharu Takahara <mtakahar@yahoo.com> |
| 10 | * Copyright (C) 2005 by Oleg I. Vdovikin <oleg@cs.msu.su> |
| 11 | * |
| 12 | * The image_header structure has been taken from the U-Boot project. |
| 13 | * (C) Copyright 2008 Semihalf |
| 14 | * (C) Copyright 2000-2005 |
| 15 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 16 | * |
| 17 | * This program is free software; you can redistribute it and/or modify it |
| 18 | * under the terms of the GNU General Public License version 2 as published |
| 19 | * by the Free Software Foundation. |
| 20 | */ |
| 21 | |
| 22 | #include <stddef.h> |
| 23 | #include <stdint.h> |
| 24 | |
| 25 | #include "config.h" |
| 26 | #include "cache.h" |
| 27 | #include "printf.h" |
| 28 | #include "LzmaDecode.h" |
| 29 | |
| 30 | #define AR71XX_FLASH_START 0x1f000000 |
| 31 | #define AR71XX_FLASH_END 0x1fe00000 |
| 32 | |
| 33 | #define KSEG0 0x80000000 |
| 34 | #define KSEG1 0xa0000000 |
| 35 | |
| 36 | #define KSEG1ADDR(a) ((((unsigned)(a)) & 0x1fffffffU) | KSEG1) |
| 37 | |
| 38 | #undef LZMA_DEBUG |
| 39 | |
| 40 | #ifdef LZMA_DEBUG |
| 41 | # define DBG(f, a...) printf(f, ## a) |
| 42 | #else |
| 43 | # define DBG(f, a...) do {} while (0) |
| 44 | #endif |
| 45 | |
| 46 | #define IH_MAGIC_OKLI 0x4f4b4c49 /* 'OKLI' */ |
| 47 | |
| 48 | #define IH_NMLEN 32 /* Image Name Length */ |
| 49 | |
| 50 | typedef struct image_header { |
| 51 | uint32_t ih_magic; /* Image Header Magic Number */ |
| 52 | uint32_t ih_hcrc; /* Image Header CRC Checksum */ |
| 53 | uint32_t ih_time; /* Image Creation Timestamp */ |
| 54 | uint32_t ih_size; /* Image Data Size */ |
| 55 | uint32_t ih_load; /* Data Load Address */ |
| 56 | uint32_t ih_ep; /* Entry Point Address */ |
| 57 | uint32_t ih_dcrc; /* Image Data CRC Checksum */ |
| 58 | uint8_t ih_os; /* Operating System */ |
| 59 | uint8_t ih_arch; /* CPU architecture */ |
| 60 | uint8_t ih_type; /* Image Type */ |
| 61 | uint8_t ih_comp; /* Compression Type */ |
| 62 | uint8_t ih_name[IH_NMLEN]; /* Image Name */ |
| 63 | } image_header_t; |
| 64 | |
| 65 | /* beyond the image end, size not known in advance */ |
| 66 | extern unsigned char workspace[]; |
| 67 | extern void board_init(void); |
| 68 | |
| 69 | static CLzmaDecoderState lzma_state; |
| 70 | static unsigned char *lzma_data; |
| 71 | static unsigned long lzma_datasize; |
| 72 | static unsigned long lzma_outsize; |
| 73 | static unsigned long kernel_la; |
| 74 | |
| 75 | #ifdef CONFIG_KERNEL_CMDLINE |
| 76 | #define kernel_argc 2 |
| 77 | static const char kernel_cmdline[] = CONFIG_KERNEL_CMDLINE; |
| 78 | static const char *const kernel_argv[] = { |
| 79 | NULL, |
| 80 | kernel_cmdline, |
| 81 | NULL, |
| 82 | }; |
| 83 | #endif /* CONFIG_KERNEL_CMDLINE */ |
| 84 | |
| 85 | static void halt(void) |
| 86 | { |
| 87 | printf("\nSystem halted!\n"); |
| 88 | for(;;); |
| 89 | } |
| 90 | |
| 91 | static __inline__ unsigned long get_be32(void *buf) |
| 92 | { |
| 93 | unsigned char *p = buf; |
| 94 | |
| 95 | return (((unsigned long) p[0] << 24) + |
| 96 | ((unsigned long) p[1] << 16) + |
| 97 | ((unsigned long) p[2] << 8) + |
| 98 | (unsigned long) p[3]); |
| 99 | } |
| 100 | |
| 101 | static __inline__ unsigned char lzma_get_byte(void) |
| 102 | { |
| 103 | unsigned char c; |
| 104 | |
| 105 | lzma_datasize--; |
| 106 | c = *lzma_data++; |
| 107 | |
| 108 | return c; |
| 109 | } |
| 110 | |
| 111 | static int lzma_init_props(void) |
| 112 | { |
| 113 | unsigned char props[LZMA_PROPERTIES_SIZE]; |
| 114 | int res; |
| 115 | int i; |
| 116 | |
| 117 | /* read lzma properties */ |
| 118 | for (i = 0; i < LZMA_PROPERTIES_SIZE; i++) |
| 119 | props[i] = lzma_get_byte(); |
| 120 | |
| 121 | /* read the lower half of uncompressed size in the header */ |
| 122 | lzma_outsize = ((SizeT) lzma_get_byte()) + |
| 123 | ((SizeT) lzma_get_byte() << 8) + |
| 124 | ((SizeT) lzma_get_byte() << 16) + |
| 125 | ((SizeT) lzma_get_byte() << 24); |
| 126 | |
| 127 | /* skip rest of the header (upper half of uncompressed size) */ |
| 128 | for (i = 0; i < 4; i++) |
| 129 | lzma_get_byte(); |
| 130 | |
| 131 | res = LzmaDecodeProperties(&lzma_state.Properties, props, |
| 132 | LZMA_PROPERTIES_SIZE); |
| 133 | return res; |
| 134 | } |
| 135 | |
| 136 | static int lzma_decompress(unsigned char *outStream) |
| 137 | { |
| 138 | SizeT ip, op; |
| 139 | int ret; |
| 140 | |
| 141 | lzma_state.Probs = (CProb *) workspace; |
| 142 | |
| 143 | ret = LzmaDecode(&lzma_state, lzma_data, lzma_datasize, &ip, outStream, |
| 144 | lzma_outsize, &op); |
| 145 | |
| 146 | if (ret != LZMA_RESULT_OK) { |
| 147 | int i; |
| 148 | |
| 149 | DBG("LzmaDecode error %d at %08x, osize:%d ip:%d op:%d\n", |
| 150 | ret, lzma_data + ip, lzma_outsize, ip, op); |
| 151 | |
| 152 | for (i = 0; i < 16; i++) |
| 153 | DBG("%02x ", lzma_data[ip + i]); |
| 154 | |
| 155 | DBG("\n"); |
| 156 | } |
| 157 | |
| 158 | return ret; |
| 159 | } |
| 160 | |
| 161 | #if (LZMA_WRAPPER) |
| 162 | static void lzma_init_data(void) |
| 163 | { |
| 164 | extern unsigned char _lzma_data_start[]; |
| 165 | extern unsigned char _lzma_data_end[]; |
| 166 | |
| 167 | kernel_la = LOADADDR; |
| 168 | lzma_data = _lzma_data_start; |
| 169 | lzma_datasize = _lzma_data_end - _lzma_data_start; |
| 170 | } |
| 171 | #else |
| 172 | static void lzma_init_data(void) |
| 173 | { |
| 174 | struct image_header *hdr = NULL; |
| 175 | unsigned char *flash_base; |
| 176 | unsigned long flash_ofs; |
| 177 | unsigned long kernel_ofs; |
| 178 | unsigned long kernel_size; |
| 179 | |
| 180 | flash_base = (unsigned char *) KSEG1ADDR(AR71XX_FLASH_START); |
| 181 | |
| 182 | printf("Looking for OpenWrt image... "); |
| 183 | |
| 184 | for (flash_ofs = CONFIG_FLASH_OFFS; |
| 185 | flash_ofs <= (CONFIG_FLASH_OFFS + CONFIG_FLASH_MAX); |
| 186 | flash_ofs += CONFIG_FLASH_STEP) { |
| 187 | unsigned long magic; |
| 188 | unsigned char *p; |
| 189 | |
| 190 | p = flash_base + flash_ofs; |
| 191 | magic = get_be32(p); |
| 192 | #ifdef CONFIG_KERNEL_MAGIC |
| 193 | if (magic == CONFIG_KERNEL_MAGIC) { |
| 194 | #else |
| 195 | if (magic == IH_MAGIC_OKLI) { |
| 196 | #endif |
| 197 | hdr = (struct image_header *) p; |
| 198 | break; |
| 199 | } |
| 200 | } |
| 201 | |
| 202 | if (hdr == NULL) { |
| 203 | printf("not found!\n"); |
| 204 | halt(); |
| 205 | } |
| 206 | |
| 207 | printf("found at 0x%08x\n", flash_base + flash_ofs); |
| 208 | |
| 209 | kernel_ofs = sizeof(struct image_header); |
| 210 | kernel_size = get_be32(&hdr->ih_size); |
| 211 | kernel_la = get_be32(&hdr->ih_load); |
| 212 | |
| 213 | lzma_data = flash_base + flash_ofs + kernel_ofs; |
| 214 | lzma_datasize = kernel_size; |
| 215 | } |
| 216 | #endif /* (LZMA_WRAPPER) */ |
| 217 | |
| 218 | void loader_main(unsigned long reg_a0, unsigned long reg_a1, |
| 219 | unsigned long reg_a2, unsigned long reg_a3) |
| 220 | { |
| 221 | void (*kernel_entry) (unsigned long, unsigned long, unsigned long, |
| 222 | unsigned long); |
| 223 | int res; |
| 224 | |
| 225 | board_init(); |
| 226 | |
| 227 | printf("\n\nOpenWrt kernel loader for AR7XXX/AR9XXX\n"); |
| 228 | printf("Copyright (C) 2011 Gabor Juhos <juhosg@openwrt.org>\n"); |
| 229 | |
| 230 | lzma_init_data(); |
| 231 | |
| 232 | res = lzma_init_props(); |
| 233 | if (res != LZMA_RESULT_OK) { |
| 234 | printf("Incorrect LZMA stream properties!\n"); |
| 235 | halt(); |
| 236 | } |
| 237 | |
| 238 | printf("Decompressing kernel... "); |
| 239 | |
| 240 | res = lzma_decompress((unsigned char *) kernel_la); |
| 241 | if (res != LZMA_RESULT_OK) { |
| 242 | printf("failed, "); |
| 243 | switch (res) { |
| 244 | case LZMA_RESULT_DATA_ERROR: |
| 245 | printf("data error!\n"); |
| 246 | break; |
| 247 | default: |
| 248 | printf("unknown error %d!\n", res); |
| 249 | } |
| 250 | halt(); |
| 251 | } else { |
| 252 | printf("done!\n"); |
| 253 | } |
| 254 | |
| 255 | flush_cache(kernel_la, lzma_outsize); |
| 256 | |
| 257 | printf("Starting kernel at %08x...\n\n", kernel_la); |
| 258 | |
| 259 | #ifdef CONFIG_KERNEL_CMDLINE |
| 260 | reg_a0 = kernel_argc; |
| 261 | reg_a1 = (unsigned long) kernel_argv; |
| 262 | reg_a2 = 0; |
| 263 | reg_a3 = 0; |
| 264 | #endif |
| 265 | |
| 266 | kernel_entry = (void *) kernel_la; |
| 267 | kernel_entry(reg_a0, reg_a1, reg_a2, reg_a3); |
| 268 | } |