Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2008 Semihalf |
| 3 | * |
| 4 | * (C) Copyright 2000-2006 |
| 5 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 6 | * |
| 7 | * See file CREDITS for list of people who contributed to this |
| 8 | * project. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License as |
| 12 | * published by the Free Software Foundation; either version 2 of |
| 13 | * the License, or (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 23 | * MA 02111-1307 USA |
| 24 | */ |
| 25 | |
Marian Balakowicz | 7582438 | 2008-01-31 13:20:06 +0100 | [diff] [blame] | 26 | #define DEBUG |
| 27 | |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 28 | #include <common.h> |
| 29 | #include <watchdog.h> |
| 30 | #include <command.h> |
| 31 | #include <image.h> |
| 32 | #include <malloc.h> |
| 33 | #include <zlib.h> |
| 34 | #include <bzlib.h> |
| 35 | #include <environment.h> |
| 36 | #include <asm/byteorder.h> |
| 37 | |
| 38 | #if defined(CONFIG_OF_LIBFDT) |
| 39 | #include <fdt.h> |
| 40 | #include <libfdt.h> |
| 41 | #include <fdt_support.h> |
Marian Balakowicz | d3c5eb6 | 2008-01-31 13:20:08 +0100 | [diff] [blame] | 42 | |
| 43 | static void fdt_error (const char *msg); |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 44 | static int boot_get_fdt (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[], |
Marian Balakowicz | d2ced9e | 2008-02-04 08:28:17 +0100 | [diff] [blame] | 45 | bootm_headers_t *images, char **of_flat_tree, ulong *of_size); |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 46 | static int boot_relocate_fdt (struct lmb *lmb, ulong bootmap_base, |
Marian Balakowicz | d2ced9e | 2008-02-04 08:28:17 +0100 | [diff] [blame] | 47 | cmd_tbl_t *cmdtp, int flag, int argc, char *argv[], |
| 48 | char **of_flat_tree, ulong *of_size); |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 49 | #endif |
| 50 | |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 51 | #ifdef CFG_INIT_RAM_LOCK |
| 52 | #include <asm/cache.h> |
| 53 | #endif |
| 54 | |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 55 | DECLARE_GLOBAL_DATA_PTR; |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 56 | |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 57 | extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]); |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 58 | extern ulong get_effective_memsize(void); |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 59 | static ulong get_sp (void); |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 60 | static void set_clocks_in_mhz (bd_t *kbd); |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 61 | |
Kumar Gala | d3f2fa0 | 2008-02-27 21:51:50 -0600 | [diff] [blame] | 62 | #ifndef CFG_LINUX_LOWMEM_MAX_SIZE |
| 63 | #define CFG_LINUX_LOWMEM_MAX_SIZE (768*1024*1024) |
| 64 | #endif |
| 65 | |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 66 | void __attribute__((noinline)) |
Marian Balakowicz | 8a5ea3e | 2008-02-27 11:01:04 +0100 | [diff] [blame] | 67 | do_bootm_linux(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[], |
| 68 | bootm_headers_t *images) |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 69 | { |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 70 | ulong sp; |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 71 | |
Marian Balakowicz | f13e7b2 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 72 | ulong initrd_start, initrd_end; |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 73 | ulong rd_data_start, rd_data_end, rd_len; |
Kumar Gala | d3f2fa0 | 2008-02-27 21:51:50 -0600 | [diff] [blame] | 74 | ulong size; |
Marian Balakowicz | f13e7b2 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 75 | |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 76 | ulong cmd_start, cmd_end, bootmap_base; |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 77 | bd_t *kbd; |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 78 | ulong ep = 0; |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 79 | void (*kernel)(bd_t *, ulong, ulong, ulong, ulong); |
Kumar Gala | d2bc095 | 2008-02-27 21:51:45 -0600 | [diff] [blame] | 80 | int ret; |
Kumar Gala | 2795349 | 2008-02-27 21:51:44 -0600 | [diff] [blame] | 81 | ulong of_size = 0; |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 82 | struct lmb *lmb = images->lmb; |
Marian Balakowicz | f13e7b2 | 2008-01-08 18:12:17 +0100 | [diff] [blame] | 83 | |
Marian Balakowicz | 4a2ad5f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 84 | #if defined(CONFIG_OF_LIBFDT) |
Marian Balakowicz | d2ced9e | 2008-02-04 08:28:17 +0100 | [diff] [blame] | 85 | char *of_flat_tree = NULL; |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 86 | #endif |
| 87 | |
Kumar Gala | d3f2fa0 | 2008-02-27 21:51:50 -0600 | [diff] [blame] | 88 | bootmap_base = getenv_bootm_low(); |
| 89 | size = getenv_bootm_size(); |
| 90 | |
| 91 | #ifdef DEBUG |
| 92 | if (((u64)bootmap_base + size) > (CFG_SDRAM_BASE + (u64)gd->ram_size)) |
| 93 | puts("WARNING: bootm_low + bootm_size exceed total memory\n"); |
| 94 | if ((bootmap_base + size) > get_effective_memsize()) |
| 95 | puts("WARNING: bootm_low + bootm_size exceed eff. memory\n"); |
| 96 | #endif |
| 97 | |
| 98 | size = min(size, get_effective_memsize()); |
| 99 | size = min(size, CFG_LINUX_LOWMEM_MAX_SIZE); |
| 100 | |
| 101 | if (size < getenv_bootm_size()) { |
| 102 | ulong base = bootmap_base + size; |
| 103 | printf("WARNING: adjusting available memory to %x\n", size); |
| 104 | lmb_reserve(lmb, base, getenv_bootm_size() - size); |
| 105 | } |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 106 | |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 107 | /* |
| 108 | * Booting a (Linux) kernel image |
| 109 | * |
| 110 | * Allocate space for command line and board info - the |
| 111 | * address should be as high as possible within the reach of |
| 112 | * the kernel (see CFG_BOOTMAPSZ settings), but in unused |
| 113 | * memory, which means far enough below the current stack |
| 114 | * pointer. |
| 115 | */ |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 116 | sp = get_sp(); |
Kumar Gala | d3f2fa0 | 2008-02-27 21:51:50 -0600 | [diff] [blame] | 117 | debug ("## Current stack ends at 0x%08lx\n", sp); |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 118 | |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 119 | /* adjust sp by 1K to be safe */ |
| 120 | sp -= 1024; |
| 121 | lmb_reserve(lmb, sp, (CFG_SDRAM_BASE + get_effective_memsize() - sp)); |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 122 | |
Kumar Gala | 2795349 | 2008-02-27 21:51:44 -0600 | [diff] [blame] | 123 | #if defined(CONFIG_OF_LIBFDT) |
| 124 | /* find flattened device tree */ |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 125 | ret = boot_get_fdt (cmdtp, flag, argc, argv, images, &of_flat_tree, &of_size); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 126 | |
| 127 | if (ret) |
| 128 | goto error; |
Kumar Gala | 2795349 | 2008-02-27 21:51:44 -0600 | [diff] [blame] | 129 | #endif |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 130 | |
Kumar Gala | 2795349 | 2008-02-27 21:51:44 -0600 | [diff] [blame] | 131 | if (!of_size) { |
| 132 | /* allocate space and init command line */ |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 133 | ret = boot_get_cmdline (lmb, &cmd_start, &cmd_end, bootmap_base); |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 134 | if (ret) { |
| 135 | puts("ERROR with allocation of cmdline\n"); |
| 136 | goto error; |
| 137 | } |
Kumar Gala | 2795349 | 2008-02-27 21:51:44 -0600 | [diff] [blame] | 138 | |
| 139 | /* allocate space for kernel copy of board info */ |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 140 | ret = boot_get_kbd (lmb, &kbd, bootmap_base); |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 141 | if (ret) { |
| 142 | puts("ERROR with allocation of kernel bd\n"); |
| 143 | goto error; |
| 144 | } |
Kumar Gala | 2795349 | 2008-02-27 21:51:44 -0600 | [diff] [blame] | 145 | set_clocks_in_mhz(kbd); |
| 146 | } |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 147 | |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 148 | /* find kernel entry point */ |
| 149 | if (images->legacy_hdr_valid) { |
| 150 | ep = image_get_ep (images->legacy_hdr_os); |
| 151 | #if defined(CONFIG_FIT) |
| 152 | } else if (images->fit_uname_os) { |
| 153 | fit_unsupported_reset ("PPC linux bootm"); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 154 | goto error; |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 155 | #endif |
| 156 | } else { |
| 157 | puts ("Could not find kernel entry point!\n"); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 158 | goto error; |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 159 | } |
| 160 | kernel = (void (*)(bd_t *, ulong, ulong, ulong, ulong))ep; |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 161 | |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 162 | /* find ramdisk */ |
Marian Balakowicz | d985c84 | 2008-03-12 10:14:38 +0100 | [diff] [blame^] | 163 | ret = boot_get_ramdisk (argc, argv, images, IH_ARCH_PPC, |
| 164 | &rd_data_start, &rd_data_end); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 165 | if (ret) |
| 166 | goto error; |
| 167 | |
Marian Balakowicz | 5ad03eb | 2008-01-31 13:55:39 +0100 | [diff] [blame] | 168 | rd_len = rd_data_end - rd_data_start; |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 169 | |
Marian Balakowicz | 4a2ad5f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 170 | #if defined(CONFIG_OF_LIBFDT) |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 171 | ret = boot_relocate_fdt (lmb, bootmap_base, |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 172 | cmdtp, flag, argc, argv, &of_flat_tree, &of_size); |
Marian Balakowicz | 4a2ad5f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 173 | |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 174 | /* |
| 175 | * Add the chosen node if it doesn't exist, add the env and bd_t |
| 176 | * if the user wants it (the logic is in the subroutines). |
| 177 | */ |
Marian Balakowicz | d2ced9e | 2008-02-04 08:28:17 +0100 | [diff] [blame] | 178 | if (of_size) { |
Kumar Gala | d2bc095 | 2008-02-27 21:51:45 -0600 | [diff] [blame] | 179 | /* pass in dummy initrd info, we'll fix up later */ |
| 180 | if (fdt_chosen(of_flat_tree, rd_data_start, rd_data_end, 0) < 0) { |
Marian Balakowicz | d3c5eb6 | 2008-01-31 13:20:08 +0100 | [diff] [blame] | 181 | fdt_error ("/chosen node create failed"); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 182 | goto error; |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 183 | } |
| 184 | #ifdef CONFIG_OF_HAS_UBOOT_ENV |
| 185 | if (fdt_env(of_flat_tree) < 0) { |
Marian Balakowicz | d3c5eb6 | 2008-01-31 13:20:08 +0100 | [diff] [blame] | 186 | fdt_error ("/u-boot-env node create failed"); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 187 | goto error; |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 188 | } |
| 189 | #endif |
| 190 | #ifdef CONFIG_OF_HAS_BD_T |
| 191 | if (fdt_bd_t(of_flat_tree) < 0) { |
Marian Balakowicz | d3c5eb6 | 2008-01-31 13:20:08 +0100 | [diff] [blame] | 192 | fdt_error ("/bd_t node create failed"); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 193 | goto error; |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 194 | } |
| 195 | #endif |
| 196 | #ifdef CONFIG_OF_BOARD_SETUP |
| 197 | /* Call the board-specific fixup routine */ |
| 198 | ft_board_setup(of_flat_tree, gd->bd); |
| 199 | #endif |
| 200 | } |
Marian Balakowicz | 4a2ad5f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 201 | #endif /* CONFIG_OF_LIBFDT */ |
Marian Balakowicz | d45d5a1 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 202 | |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 203 | ret = boot_ramdisk_high (lmb, rd_data_start, rd_len, &initrd_start, &initrd_end); |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 204 | if (ret) |
| 205 | goto error; |
Kumar Gala | d2bc095 | 2008-02-27 21:51:45 -0600 | [diff] [blame] | 206 | |
| 207 | #if defined(CONFIG_OF_LIBFDT) |
| 208 | /* fixup the initrd now that we know where it should be */ |
| 209 | if ((of_flat_tree) && (initrd_start && initrd_end)) { |
| 210 | uint64_t addr, size; |
| 211 | int total = fdt_num_mem_rsv(of_flat_tree); |
| 212 | int j; |
| 213 | |
| 214 | /* Look for the dummy entry and delete it */ |
| 215 | for (j = 0; j < total; j++) { |
| 216 | fdt_get_mem_rsv(of_flat_tree, j, &addr, &size); |
| 217 | if (addr == rd_data_start) { |
| 218 | fdt_del_mem_rsv(of_flat_tree, j); |
| 219 | break; |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | ret = fdt_add_mem_rsv(of_flat_tree, initrd_start, |
| 224 | initrd_end - initrd_start + 1); |
| 225 | if (ret < 0) { |
| 226 | printf("fdt_chosen: %s\n", fdt_strerror(ret)); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 227 | goto error; |
Kumar Gala | d2bc095 | 2008-02-27 21:51:45 -0600 | [diff] [blame] | 228 | } |
| 229 | |
| 230 | do_fixup_by_path_u32(of_flat_tree, "/chosen", |
| 231 | "linux,initrd-start", initrd_start, 0); |
| 232 | do_fixup_by_path_u32(of_flat_tree, "/chosen", |
| 233 | "linux,initrd-end", initrd_end, 0); |
| 234 | } |
| 235 | #endif |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 236 | debug ("## Transferring control to Linux (at address %08lx) ...\n", |
| 237 | (ulong)kernel); |
| 238 | |
| 239 | show_boot_progress (15); |
| 240 | |
| 241 | #if defined(CFG_INIT_RAM_LOCK) && !defined(CONFIG_E500) |
| 242 | unlock_ram_in_cache(); |
| 243 | #endif |
Kumar Gala | 75fa002 | 2008-02-27 21:51:51 -0600 | [diff] [blame] | 244 | if (!images->autostart) |
| 245 | return ; |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 246 | |
Marian Balakowicz | 4a2ad5f | 2008-01-31 13:20:07 +0100 | [diff] [blame] | 247 | #if defined(CONFIG_OF_LIBFDT) |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 248 | if (of_flat_tree) { /* device tree; boot new style */ |
| 249 | /* |
| 250 | * Linux Kernel Parameters (passing device tree): |
| 251 | * r3: pointer to the fdt, followed by the board info data |
| 252 | * r4: physical pointer to the kernel itself |
| 253 | * r5: NULL |
| 254 | * r6: NULL |
| 255 | * r7: NULL |
| 256 | */ |
| 257 | (*kernel) ((bd_t *)of_flat_tree, (ulong)kernel, 0, 0, 0); |
| 258 | /* does not return */ |
| 259 | } |
| 260 | #endif |
| 261 | /* |
| 262 | * Linux Kernel Parameters (passing board info data): |
| 263 | * r3: ptr to board info data |
| 264 | * r4: initrd_start or 0 if no initrd |
| 265 | * r5: initrd_end - unused if r4 is 0 |
| 266 | * r6: Start of command line string |
| 267 | * r7: End of command line string |
| 268 | */ |
| 269 | (*kernel) (kbd, initrd_start, initrd_end, cmd_start, cmd_end); |
| 270 | /* does not return */ |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 271 | return ; |
| 272 | |
| 273 | error: |
Kumar Gala | 75fa002 | 2008-02-27 21:51:51 -0600 | [diff] [blame] | 274 | if (images->autostart) |
| 275 | do_reset (cmdtp, flag, argc, argv); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 276 | return ; |
Marian Balakowicz | 5d3cc55 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 277 | } |
Marian Balakowicz | d3c5eb6 | 2008-01-31 13:20:08 +0100 | [diff] [blame] | 278 | |
Marian Balakowicz | ceaed2b | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 279 | static ulong get_sp (void) |
| 280 | { |
| 281 | ulong sp; |
| 282 | |
| 283 | asm( "mr %0,1": "=r"(sp) : ); |
| 284 | return sp; |
| 285 | } |
| 286 | |
Marian Balakowicz | b6b0fe6 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 287 | static void set_clocks_in_mhz (bd_t *kbd) |
| 288 | { |
| 289 | char *s; |
| 290 | |
| 291 | if ((s = getenv ("clocks_in_mhz")) != NULL) { |
| 292 | /* convert all clock information to MHz */ |
| 293 | kbd->bi_intfreq /= 1000000L; |
| 294 | kbd->bi_busfreq /= 1000000L; |
| 295 | #if defined(CONFIG_MPC8220) |
| 296 | kbd->bi_inpfreq /= 1000000L; |
| 297 | kbd->bi_pcifreq /= 1000000L; |
| 298 | kbd->bi_pevfreq /= 1000000L; |
| 299 | kbd->bi_flbfreq /= 1000000L; |
| 300 | kbd->bi_vcofreq /= 1000000L; |
| 301 | #endif |
| 302 | #if defined(CONFIG_CPM2) |
| 303 | kbd->bi_cpmfreq /= 1000000L; |
| 304 | kbd->bi_brgfreq /= 1000000L; |
| 305 | kbd->bi_sccfreq /= 1000000L; |
| 306 | kbd->bi_vco /= 1000000L; |
| 307 | #endif |
| 308 | #if defined(CONFIG_MPC5xxx) |
| 309 | kbd->bi_ipbfreq /= 1000000L; |
| 310 | kbd->bi_pcifreq /= 1000000L; |
| 311 | #endif /* CONFIG_MPC5xxx */ |
| 312 | } |
| 313 | } |
| 314 | |
Marian Balakowicz | d3c5eb6 | 2008-01-31 13:20:08 +0100 | [diff] [blame] | 315 | #if defined(CONFIG_OF_LIBFDT) |
| 316 | static void fdt_error (const char *msg) |
| 317 | { |
| 318 | puts ("ERROR: "); |
| 319 | puts (msg); |
| 320 | puts (" - must RESET the board to recover.\n"); |
| 321 | } |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 322 | |
Marian Balakowicz | ff0734c | 2008-02-27 11:02:26 +0100 | [diff] [blame] | 323 | static image_header_t *image_get_fdt (ulong fdt_addr) |
| 324 | { |
| 325 | image_header_t *fdt_hdr = (image_header_t *)fdt_addr; |
| 326 | |
| 327 | image_print_contents (fdt_hdr); |
| 328 | |
| 329 | puts (" Verifying Checksum ... "); |
| 330 | if (!image_check_hcrc (fdt_hdr)) { |
| 331 | fdt_error ("fdt header checksum invalid"); |
| 332 | return NULL; |
| 333 | } |
| 334 | |
| 335 | if (!image_check_dcrc (fdt_hdr)) { |
| 336 | fdt_error ("fdt checksum invalid"); |
| 337 | return NULL; |
| 338 | } |
| 339 | puts ("OK\n"); |
| 340 | |
| 341 | if (!image_check_type (fdt_hdr, IH_TYPE_FLATDT)) { |
| 342 | fdt_error ("uImage is not a fdt"); |
| 343 | return NULL; |
| 344 | } |
| 345 | if (image_get_comp (fdt_hdr) != IH_COMP_NONE) { |
| 346 | fdt_error ("uImage is compressed"); |
| 347 | return NULL; |
| 348 | } |
| 349 | if (fdt_check_header ((char *)image_get_data (fdt_hdr)) != 0) { |
| 350 | fdt_error ("uImage data is not a fdt"); |
| 351 | return NULL; |
| 352 | } |
| 353 | return fdt_hdr; |
| 354 | } |
| 355 | |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 356 | static int boot_get_fdt (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[], |
Marian Balakowicz | d2ced9e | 2008-02-04 08:28:17 +0100 | [diff] [blame] | 357 | bootm_headers_t *images, char **of_flat_tree, ulong *of_size) |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 358 | { |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 359 | ulong fdt_addr; |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 360 | image_header_t *fdt_hdr; |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 361 | char *fdt_blob = NULL; |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 362 | ulong image_start, image_end; |
| 363 | ulong load_start, load_end; |
| 364 | #if defined(CONFIG_FIT) |
| 365 | void *fit_hdr; |
| 366 | const char *fit_uname_config = NULL; |
| 367 | const char *fit_uname_fdt = NULL; |
| 368 | ulong default_addr; |
| 369 | #endif |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 370 | |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 371 | if (argc > 3) { |
| 372 | #if defined(CONFIG_FIT) |
| 373 | /* |
| 374 | * If the FDT blob comes from the FIT image and the FIT image |
| 375 | * address is omitted in the command line argument, try to use |
| 376 | * ramdisk or os FIT image address or default load address. |
| 377 | */ |
| 378 | if (images->fit_uname_rd) |
| 379 | default_addr = (ulong)images->fit_hdr_rd; |
| 380 | else if (images->fit_uname_os) |
| 381 | default_addr = (ulong)images->fit_hdr_os; |
| 382 | else |
| 383 | default_addr = load_addr; |
Marian Balakowicz | fff888a1 | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 384 | |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 385 | if (fit_parse_conf (argv[3], default_addr, |
| 386 | &fdt_addr, &fit_uname_config)) { |
| 387 | debug ("* fdt: config '%s' from image at 0x%08lx\n", |
| 388 | fit_uname_config, fdt_addr); |
| 389 | } else if (fit_parse_subimage (argv[3], default_addr, |
| 390 | &fdt_addr, &fit_uname_fdt)) { |
| 391 | debug ("* fdt: subimage '%s' from image at 0x%08lx\n", |
| 392 | fit_uname_fdt, fdt_addr); |
| 393 | } else |
| 394 | #endif |
| 395 | { |
| 396 | fdt_addr = simple_strtoul(argv[3], NULL, 16); |
| 397 | debug ("* fdt: cmdline image address = 0x%08lx\n", |
| 398 | fdt_addr); |
| 399 | } |
| 400 | |
| 401 | debug ("## Checking for 'FDT'/'FDT image' at %08lx\n", |
| 402 | fdt_addr); |
Marian Balakowicz | fff888a1 | 2008-02-21 17:20:19 +0100 | [diff] [blame] | 403 | |
| 404 | /* copy from dataflash if needed */ |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 405 | fdt_addr = genimg_get_image (fdt_addr); |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 406 | |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 407 | /* |
| 408 | * Check if there is an FDT image at the |
| 409 | * address provided in the second bootm argument |
| 410 | * check image type, for FIT images get a FIT node. |
| 411 | */ |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 412 | switch (genimg_get_format ((void *)fdt_addr)) { |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 413 | case IMAGE_FORMAT_LEGACY: |
| 414 | debug ("* fdt: legacy format image\n"); |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 415 | |
Marian Balakowicz | ff0734c | 2008-02-27 11:02:26 +0100 | [diff] [blame] | 416 | /* verify fdt_addr points to a valid image header */ |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 417 | printf ("## Flattened Device Tree Legacy Image at %08lx\n", |
Marian Balakowicz | ff0734c | 2008-02-27 11:02:26 +0100 | [diff] [blame] | 418 | fdt_addr); |
| 419 | fdt_hdr = image_get_fdt (fdt_addr); |
| 420 | if (!fdt_hdr) |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 421 | goto error; |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 422 | |
Marian Balakowicz | ff0734c | 2008-02-27 11:02:26 +0100 | [diff] [blame] | 423 | /* |
| 424 | * move image data to the load address, |
| 425 | * make sure we don't overwrite initial image |
| 426 | */ |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 427 | image_start = (ulong)fdt_hdr; |
| 428 | image_end = image_get_image_end (fdt_hdr); |
| 429 | |
| 430 | load_start = image_get_load (fdt_hdr); |
| 431 | load_end = load_start + image_get_data_size (fdt_hdr); |
| 432 | |
| 433 | if ((load_start < image_end) && (load_end > image_start)) { |
| 434 | fdt_error ("fdt overwritten"); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 435 | goto error; |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 436 | } |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 437 | memmove ((void *)image_get_load (fdt_hdr), |
Marian Balakowicz | ff0734c | 2008-02-27 11:02:26 +0100 | [diff] [blame] | 438 | (void *)image_get_data (fdt_hdr), |
| 439 | image_get_data_size (fdt_hdr)); |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 440 | |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 441 | fdt_blob = (char *)image_get_load (fdt_hdr); |
| 442 | break; |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 443 | case IMAGE_FORMAT_FIT: |
Marian Balakowicz | 4efbe9d | 2008-02-27 11:02:26 +0100 | [diff] [blame] | 444 | /* |
| 445 | * This case will catch both: new uImage format |
| 446 | * (libfdt based) and raw FDT blob (also libfdt |
| 447 | * based). |
| 448 | */ |
| 449 | #if defined(CONFIG_FIT) |
| 450 | /* check FDT blob vs FIT blob */ |
| 451 | if (0) { /* FIXME: call FIT format verification */ |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 452 | /* |
| 453 | * FIT image |
| 454 | */ |
| 455 | fit_hdr = (void *)fdt_addr; |
| 456 | debug ("* fdt: FIT format image\n"); |
| 457 | fit_unsupported_reset ("PPC fdt"); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 458 | goto error; |
Marian Balakowicz | 4efbe9d | 2008-02-27 11:02:26 +0100 | [diff] [blame] | 459 | } else |
| 460 | #endif |
| 461 | { |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 462 | /* |
| 463 | * FDT blob |
| 464 | */ |
Marian Balakowicz | 4efbe9d | 2008-02-27 11:02:26 +0100 | [diff] [blame] | 465 | debug ("* fdt: raw FDT blob\n"); |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 466 | printf ("## Flattened Device Tree blob at %08lx\n", fdt_blob); |
| 467 | fdt_blob = (char *)fdt_addr; |
| 468 | } |
| 469 | break; |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 470 | default: |
| 471 | fdt_error ("Did not find a cmdline Flattened Device Tree"); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 472 | goto error; |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 473 | } |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 474 | |
| 475 | printf (" Booting using the fdt blob at 0x%x\n", fdt_blob); |
| 476 | |
| 477 | } else if (images->legacy_hdr_valid && |
| 478 | image_check_type (images->legacy_hdr_os, IH_TYPE_MULTI)) { |
| 479 | |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 480 | ulong fdt_data, fdt_len; |
| 481 | |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 482 | /* |
| 483 | * Now check if we have a legacy multi-component image, |
| 484 | * get second entry data start address and len. |
| 485 | */ |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 486 | printf ("## Flattened Device Tree from multi " |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 487 | "component Image at %08lX\n", |
| 488 | (ulong)images->legacy_hdr_os); |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 489 | |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 490 | image_multi_getimg (images->legacy_hdr_os, 2, &fdt_data, &fdt_len); |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 491 | if (fdt_len) { |
| 492 | |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 493 | fdt_blob = (char *)fdt_data; |
| 494 | printf (" Booting using the fdt at 0x%x\n", fdt_blob); |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 495 | |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 496 | if (fdt_check_header (fdt_blob) != 0) { |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 497 | fdt_error ("image is not a fdt"); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 498 | goto error; |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 499 | } |
| 500 | |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 501 | if (be32_to_cpu (fdt_totalsize (fdt_blob)) != fdt_len) { |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 502 | fdt_error ("fdt size != image size"); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 503 | goto error; |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 504 | } |
| 505 | } else { |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 506 | fdt_error ("Did not find a Flattened Device Tree " |
| 507 | "in a legacy multi-component image"); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 508 | goto error; |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 509 | } |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 510 | } else { |
| 511 | debug ("## No Flattened Device Tree\n"); |
| 512 | *of_flat_tree = NULL; |
Marian Balakowicz | d2ced9e | 2008-02-04 08:28:17 +0100 | [diff] [blame] | 513 | *of_size = 0; |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 514 | return 0; |
Marian Balakowicz | d2ced9e | 2008-02-04 08:28:17 +0100 | [diff] [blame] | 515 | } |
| 516 | |
| 517 | *of_flat_tree = fdt_blob; |
| 518 | *of_size = be32_to_cpu (fdt_totalsize (fdt_blob)); |
| 519 | debug (" of_flat_tree at 0x%08lx size 0x%08lx\n", |
| 520 | *of_flat_tree, *of_size); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 521 | |
| 522 | return 0; |
| 523 | |
| 524 | error: |
| 525 | do_reset (cmdtp, flag, argc, argv); |
| 526 | return 1; |
Marian Balakowicz | d2ced9e | 2008-02-04 08:28:17 +0100 | [diff] [blame] | 527 | } |
| 528 | |
Marian Balakowicz | 9a4daad | 2008-02-29 14:58:34 +0100 | [diff] [blame] | 529 | static int boot_relocate_fdt (struct lmb *lmb, ulong bootmap_base, |
Marian Balakowicz | d2ced9e | 2008-02-04 08:28:17 +0100 | [diff] [blame] | 530 | cmd_tbl_t *cmdtp, int flag, int argc, char *argv[], |
| 531 | char **of_flat_tree, ulong *of_size) |
| 532 | { |
| 533 | char *fdt_blob = *of_flat_tree; |
| 534 | ulong relocate = 0; |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 535 | ulong of_len = 0; |
Marian Balakowicz | d2ced9e | 2008-02-04 08:28:17 +0100 | [diff] [blame] | 536 | |
| 537 | /* nothing to do */ |
| 538 | if (*of_size == 0) |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 539 | return 0; |
Marian Balakowicz | d2ced9e | 2008-02-04 08:28:17 +0100 | [diff] [blame] | 540 | |
| 541 | if (fdt_check_header (fdt_blob) != 0) { |
| 542 | fdt_error ("image is not a fdt"); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 543 | goto error; |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 544 | } |
| 545 | |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 546 | #ifndef CFG_NO_FLASH |
Marian Balakowicz | d2ced9e | 2008-02-04 08:28:17 +0100 | [diff] [blame] | 547 | /* move the blob if it is in flash (set relocate) */ |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 548 | if (addr2info ((ulong)fdt_blob) != NULL) |
Marian Balakowicz | d2ced9e | 2008-02-04 08:28:17 +0100 | [diff] [blame] | 549 | relocate = 1; |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 550 | #endif |
| 551 | |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 552 | /* |
| 553 | * The blob must be within CFG_BOOTMAPSZ, |
| 554 | * so we flag it to be copied if it is not. |
| 555 | */ |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 556 | if (fdt_blob >= (char *)CFG_BOOTMAPSZ) |
Marian Balakowicz | d2ced9e | 2008-02-04 08:28:17 +0100 | [diff] [blame] | 557 | relocate = 1; |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 558 | |
Marian Balakowicz | 05e07b1 | 2008-02-29 22:22:46 +0100 | [diff] [blame] | 559 | of_len = be32_to_cpu (fdt_totalsize (fdt_blob)); |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 560 | |
| 561 | /* move flattend device tree if needed */ |
Marian Balakowicz | d2ced9e | 2008-02-04 08:28:17 +0100 | [diff] [blame] | 562 | if (relocate) { |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 563 | int err; |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 564 | ulong of_start; |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 565 | |
| 566 | /* position on a 4K boundary before the alloc_current */ |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 567 | of_start = lmb_alloc_base(lmb, of_len, 0x1000, |
| 568 | (CFG_BOOTMAPSZ + bootmap_base)); |
| 569 | |
| 570 | if (of_start == 0) { |
| 571 | puts("device tree - allocation error\n"); |
| 572 | goto error; |
| 573 | } |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 574 | |
| 575 | debug ("## device tree at 0x%08lX ... 0x%08lX (len=%ld=0x%lX)\n", |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 576 | (ulong)fdt_blob, (ulong)fdt_blob + of_len - 1, |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 577 | of_len, of_len); |
| 578 | |
| 579 | printf (" Loading Device Tree to %08lx, end %08lx ... ", |
| 580 | of_start, of_start + of_len - 1); |
| 581 | |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 582 | err = fdt_open_into (fdt_blob, (void *)of_start, of_len); |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 583 | if (err != 0) { |
| 584 | fdt_error ("fdt move failed"); |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 585 | goto error; |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 586 | } |
| 587 | puts ("OK\n"); |
| 588 | |
| 589 | *of_flat_tree = (char *)of_start; |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 590 | } else { |
Marian Balakowicz | d5934ad | 2008-02-04 08:28:09 +0100 | [diff] [blame] | 591 | *of_flat_tree = fdt_blob; |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 592 | lmb_reserve(lmb, (ulong)fdt, of_len); |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 593 | } |
| 594 | |
Kumar Gala | e822d7f | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 595 | return 0; |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 596 | |
| 597 | error: |
Kumar Gala | 274cea2 | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 598 | return 1; |
Marian Balakowicz | 7b32545 | 2008-01-31 13:58:20 +0100 | [diff] [blame] | 599 | } |
Marian Balakowicz | d3c5eb6 | 2008-01-31 13:20:08 +0100 | [diff] [blame] | 600 | #endif |