Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 1 | /* |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 2 | * This file is part of the flashrom project. |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 3 | * |
Uwe Hermann | d22a1d4 | 2007-09-09 20:21:05 +0000 | [diff] [blame] | 4 | * Copyright (C) 2000 Silicon Integrated System Corporation |
| 5 | * Copyright (C) 2004 Tyan Corp <yhlu@tyan.com> |
| 6 | * Copyright (C) 2005-2007 coresystems GmbH |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 7 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 12 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 17 | * |
Uwe Hermann | d110764 | 2007-08-29 17:52:32 +0000 | [diff] [blame] | 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 21 | */ |
| 22 | |
| 23 | #include <errno.h> |
| 24 | #include <fcntl.h> |
| 25 | #include <sys/mman.h> |
Stefan Reinauer | 018aca8 | 2006-11-21 23:48:51 +0000 | [diff] [blame] | 26 | #include <sys/types.h> |
| 27 | #include <sys/stat.h> |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 28 | #include <unistd.h> |
| 29 | #include <stdio.h> |
Ronald G. Minnich | ceec420 | 2003-07-25 04:37:41 +0000 | [diff] [blame] | 30 | #include <string.h> |
Ronald G. Minnich | eaab50b | 2003-09-12 22:41:53 +0000 | [diff] [blame] | 31 | #include <stdlib.h> |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 32 | #include <getopt.h> |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 33 | #include <pci/pci.h> |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 34 | /* for iopl */ |
| 35 | #if defined (__sun) && (defined(__i386) || defined(__amd64)) |
| 36 | #include <strings.h> |
| 37 | #include <sys/sysi86.h> |
| 38 | #include <sys/psw.h> |
| 39 | #include <asm/sunddi.h> |
| 40 | #endif |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 41 | #include "flash.h" |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 42 | |
Ronald G. Minnich | ceec420 | 2003-07-25 04:37:41 +0000 | [diff] [blame] | 43 | char *chip_to_probe = NULL; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 44 | struct pci_access *pacc; /* For board and chipset_enable */ |
Stefan Reinauer | e370528 | 2005-12-18 16:41:10 +0000 | [diff] [blame] | 45 | int exclude_start_page, exclude_end_page; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 46 | int force = 0, verbose = 0; |
Stefan Reinauer | 7038564 | 2007-04-06 11:58:03 +0000 | [diff] [blame] | 47 | int fd_mem; |
| 48 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 49 | struct pci_dev *pci_dev_find(uint16_t vendor, uint16_t device) |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 50 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 51 | struct pci_dev *temp; |
| 52 | struct pci_filter filter; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 53 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 54 | pci_filter_init(NULL, &filter); |
| 55 | filter.vendor = vendor; |
| 56 | filter.device = device; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 57 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 58 | for (temp = pacc->devices; temp; temp = temp->next) |
| 59 | if (pci_filter_match(&filter, temp)) |
| 60 | return temp; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 61 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 62 | return NULL; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 63 | } |
| 64 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 65 | struct pci_dev *pci_card_find(uint16_t vendor, uint16_t device, |
| 66 | uint16_t card_vendor, uint16_t card_device) |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 67 | { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 68 | struct pci_dev *temp; |
| 69 | struct pci_filter filter; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 70 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 71 | pci_filter_init(NULL, &filter); |
| 72 | filter.vendor = vendor; |
| 73 | filter.device = device; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 74 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 75 | for (temp = pacc->devices; temp; temp = temp->next) |
| 76 | if (pci_filter_match(&filter, temp)) { |
| 77 | if ((card_vendor == pci_read_word(temp, 0x2C)) && |
| 78 | (card_device == pci_read_word(temp, 0x2E))) |
| 79 | return temp; |
| 80 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 81 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 82 | return NULL; |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 83 | } |
| 84 | |
Stefan Reinauer | ff4f197 | 2007-05-24 08:48:10 +0000 | [diff] [blame] | 85 | int map_flash_registers(struct flashchip *flash) |
| 86 | { |
| 87 | volatile uint8_t *registers; |
| 88 | size_t size = flash->total_size * 1024; |
| 89 | |
| 90 | registers = mmap(0, size, PROT_WRITE | PROT_READ, MAP_SHARED, |
Uwe Hermann | a880885 | 2007-05-24 19:17:29 +0000 | [diff] [blame] | 91 | fd_mem, (off_t) (0xFFFFFFFF - 0x400000 - size + 1)); |
Stefan Reinauer | ff4f197 | 2007-05-24 08:48:10 +0000 | [diff] [blame] | 92 | |
| 93 | if (registers == MAP_FAILED) { |
| 94 | perror("Can't mmap registers using " MEM_DEV); |
| 95 | exit(1); |
| 96 | } |
| 97 | flash->virtual_registers = registers; |
| 98 | |
| 99 | return 0; |
| 100 | } |
| 101 | |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 102 | struct flashchip *probe_flash(struct flashchip *flash) |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 103 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 104 | volatile uint8_t *bios; |
Stefan Reinauer | 7038564 | 2007-04-06 11:58:03 +0000 | [diff] [blame] | 105 | unsigned long flash_baseaddr, size; |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 106 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 107 | while (flash->name != NULL) { |
Ollie Lho | 8b8897a | 2004-03-27 00:18:15 +0000 | [diff] [blame] | 108 | if (chip_to_probe && strcmp(flash->name, chip_to_probe) != 0) { |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 109 | flash++; |
| 110 | continue; |
| 111 | } |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 112 | printf_debug("Probing for %s, %d KB\n", |
| 113 | flash->name, flash->total_size); |
Stefan Reinauer | 7038564 | 2007-04-06 11:58:03 +0000 | [diff] [blame] | 114 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 115 | size = flash->total_size * 1024; |
Stefan Reinauer | 7038564 | 2007-04-06 11:58:03 +0000 | [diff] [blame] | 116 | |
| 117 | #ifdef TS5300 |
| 118 | // FIXME: Wrong place for this decision |
Stefan Reinauer | 7c1402f | 2007-05-23 18:24:58 +0000 | [diff] [blame] | 119 | // FIXME: This should be autodetected. It is trivial. |
Stefan Reinauer | 7038564 | 2007-04-06 11:58:03 +0000 | [diff] [blame] | 120 | flash_baseaddr = 0x9400000; |
| 121 | #else |
| 122 | flash_baseaddr = (0xffffffff - size + 1); |
| 123 | #endif |
| 124 | |
| 125 | /* If getpagesize() > size -> |
Stefan Reinauer | 7c1402f | 2007-05-23 18:24:58 +0000 | [diff] [blame] | 126 | * "Can't mmap memory using /dev/mem: Invalid argument" |
Stefan Reinauer | 7038564 | 2007-04-06 11:58:03 +0000 | [diff] [blame] | 127 | * This should never happen as we don't support any flash chips |
Stefan Reinauer | 7c1402f | 2007-05-23 18:24:58 +0000 | [diff] [blame] | 128 | * smaller than 4k or 8k (yet). |
Stefan Reinauer | 7038564 | 2007-04-06 11:58:03 +0000 | [diff] [blame] | 129 | */ |
| 130 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 131 | if (getpagesize() > size) { |
| 132 | size = getpagesize(); |
Stefan Reinauer | 7038564 | 2007-04-06 11:58:03 +0000 | [diff] [blame] | 133 | printf("WARNING: size: %d -> %ld (page size)\n", |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 134 | flash->total_size * 1024, (unsigned long)size); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 135 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 136 | |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 137 | bios = mmap(0, size, PROT_WRITE | PROT_READ, MAP_SHARED, |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 138 | fd_mem, (off_t) flash_baseaddr); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 139 | if (bios == MAP_FAILED) { |
Stefan Reinauer | 7c1402f | 2007-05-23 18:24:58 +0000 | [diff] [blame] | 140 | perror("Can't mmap memory using " MEM_DEV); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 141 | exit(1); |
| 142 | } |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 143 | flash->virtual_memory = bios; |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 144 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 145 | if (flash->probe(flash) == 1) { |
Uwe Hermann | a502dce | 2007-10-17 23:55:15 +0000 | [diff] [blame] | 146 | printf("%s found at physical address 0x%lx.\n", |
Stefan Reinauer | 7038564 | 2007-04-06 11:58:03 +0000 | [diff] [blame] | 147 | flash->name, flash_baseaddr); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 148 | return flash; |
| 149 | } |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 150 | munmap((void *)bios, size); |
Stefan Reinauer | fcb6368 | 2006-03-16 16:57:41 +0000 | [diff] [blame] | 151 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 152 | flash++; |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 153 | } |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 154 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 155 | return NULL; |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 156 | } |
| 157 | |
Stefan Reinauer | e370528 | 2005-12-18 16:41:10 +0000 | [diff] [blame] | 158 | int verify_flash(struct flashchip *flash, uint8_t *buf) |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 159 | { |
Stefan Reinauer | fcb6368 | 2006-03-16 16:57:41 +0000 | [diff] [blame] | 160 | int idx; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 161 | int total_size = flash->total_size * 1024; |
Carl-Daniel Hailfinger | d7b5bf3 | 2008-01-22 15:19:01 +0000 | [diff] [blame] | 162 | uint8_t *buf2 = (uint8_t *) calloc(total_size, sizeof(char)); |
| 163 | if (flash->read == NULL) |
| 164 | memcpy(buf2, (const char *)flash->virtual_memory, total_size); |
| 165 | else |
| 166 | flash->read(flash, buf2); |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 167 | |
Uwe Hermann | a502dce | 2007-10-17 23:55:15 +0000 | [diff] [blame] | 168 | printf("Verifying flash... "); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 169 | |
| 170 | if (verbose) |
| 171 | printf("address: 0x00000000\b\b\b\b\b\b\b\b\b\b"); |
| 172 | |
Stefan Reinauer | fcb6368 | 2006-03-16 16:57:41 +0000 | [diff] [blame] | 173 | for (idx = 0; idx < total_size; idx++) { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 174 | if (verbose && ((idx & 0xfff) == 0xfff)) |
Stefan Reinauer | fcb6368 | 2006-03-16 16:57:41 +0000 | [diff] [blame] | 175 | printf("0x%08x", idx); |
| 176 | |
Carl-Daniel Hailfinger | d7b5bf3 | 2008-01-22 15:19:01 +0000 | [diff] [blame] | 177 | if (*(buf2 + idx) != *(buf + idx)) { |
Stefan Reinauer | fcb6368 | 2006-03-16 16:57:41 +0000 | [diff] [blame] | 178 | if (verbose) { |
| 179 | printf("0x%08x ", idx); |
| 180 | } |
Uwe Hermann | a502dce | 2007-10-17 23:55:15 +0000 | [diff] [blame] | 181 | printf("FAILED!\n"); |
Stefan Reinauer | fcb6368 | 2006-03-16 16:57:41 +0000 | [diff] [blame] | 182 | return 1; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 183 | } |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 184 | |
| 185 | if (verbose && ((idx & 0xfff) == 0xfff)) |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 186 | printf("\b\b\b\b\b\b\b\b\b\b"); |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 187 | } |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 188 | if (verbose) |
Stefan Reinauer | fcb6368 | 2006-03-16 16:57:41 +0000 | [diff] [blame] | 189 | printf("\b\b\b\b\b\b\b\b\b\b "); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 190 | |
Uwe Hermann | a502dce | 2007-10-17 23:55:15 +0000 | [diff] [blame] | 191 | printf("VERIFIED. \n"); |
Uwe Hermann | ffec5f3 | 2007-08-23 16:08:21 +0000 | [diff] [blame] | 192 | |
Stefan Reinauer | fcb6368 | 2006-03-16 16:57:41 +0000 | [diff] [blame] | 193 | return 0; |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 194 | } |
| 195 | |
Uwe Hermann | e5ac164 | 2008-03-12 11:54:51 +0000 | [diff] [blame] | 196 | void print_supported_chips(void) |
| 197 | { |
| 198 | int i; |
| 199 | |
| 200 | printf("Supported ROM chips:\n\n"); |
| 201 | |
| 202 | for (i = 0; flashchips[i].name != NULL; i++) |
Carl-Daniel Hailfinger | e7bcb19 | 2008-03-14 00:02:25 +0000 | [diff] [blame] | 203 | printf("%s\n", flashchips[i].name); |
Uwe Hermann | e5ac164 | 2008-03-12 11:54:51 +0000 | [diff] [blame] | 204 | } |
| 205 | |
Ronald G. Minnich | e555957 | 2003-03-28 03:29:43 +0000 | [diff] [blame] | 206 | void usage(const char *name) |
| 207 | { |
Uwe Hermann | e5ac164 | 2008-03-12 11:54:51 +0000 | [diff] [blame] | 208 | printf("usage: %s [-rwvEVfLhR] [-c chipname] [-s exclude_start]\n", name); |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 209 | printf(" [-e exclude_end] [-m [vendor:]part] [-l file.layout] [-i imagename] [file]\n"); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 210 | printf |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 211 | (" -r | --read: read flash and save into file\n" |
| 212 | " -w | --write: write file into flash\n" |
| 213 | " -v | --verify: verify flash against file\n" |
| 214 | " -E | --erase: erase flash device\n" |
| 215 | " -V | --verbose: more verbose output\n" |
| 216 | " -c | --chip <chipname>: probe only for specified flash chip\n" |
| 217 | " -s | --estart <addr>: exclude start position\n" |
| 218 | " -e | --eend <addr>: exclude end postion\n" |
| 219 | " -m | --mainboard <[vendor:]part>: override mainboard settings\n" |
| 220 | " -f | --force: force write without checking image\n" |
| 221 | " -l | --layout <file.layout>: read rom layout from file\n" |
| 222 | " -i | --image <name>: only flash image name from flash layout\n" |
Uwe Hermann | e5ac164 | 2008-03-12 11:54:51 +0000 | [diff] [blame] | 223 | " -L | --list-supported: print supported devices\n" |
| 224 | " -h | --help: print this help text\n" |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 225 | " -R | --version: print the version (release)\n" |
Uwe Hermann | e5ac164 | 2008-03-12 11:54:51 +0000 | [diff] [blame] | 226 | "\n" " If no file is specified, then all that happens" |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 227 | " is that flash info is dumped.\n\n"); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 228 | exit(1); |
Ronald G. Minnich | e555957 | 2003-03-28 03:29:43 +0000 | [diff] [blame] | 229 | } |
| 230 | |
Bernhard Walle | 201bde3 | 2008-01-21 15:24:22 +0000 | [diff] [blame] | 231 | void print_version(void) |
| 232 | { |
| 233 | printf("flashrom r%s\n", FLASHROM_VERSION); |
| 234 | } |
| 235 | |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 236 | int main(int argc, char *argv[]) |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 237 | { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 238 | uint8_t *buf; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 239 | unsigned long size; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 240 | FILE *image; |
| 241 | struct flashchip *flash; |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 242 | int opt; |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 243 | int option_index = 0; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 244 | int read_it = 0, write_it = 0, erase_it = 0, verify_it = 0; |
Stefan Reinauer | 143da0b | 2006-01-04 16:42:57 +0000 | [diff] [blame] | 245 | int ret = 0; |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 246 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 247 | static struct option long_options[] = { |
| 248 | {"read", 0, 0, 'r'}, |
| 249 | {"write", 0, 0, 'w'}, |
| 250 | {"erase", 0, 0, 'E'}, |
| 251 | {"verify", 0, 0, 'v'}, |
| 252 | {"chip", 1, 0, 'c'}, |
| 253 | {"estart", 1, 0, 's'}, |
| 254 | {"eend", 1, 0, 'e'}, |
| 255 | {"mainboard", 1, 0, 'm'}, |
| 256 | {"verbose", 0, 0, 'V'}, |
| 257 | {"force", 0, 0, 'f'}, |
| 258 | {"layout", 1, 0, 'l'}, |
| 259 | {"image", 1, 0, 'i'}, |
Uwe Hermann | e5ac164 | 2008-03-12 11:54:51 +0000 | [diff] [blame] | 260 | {"list-supported", 0, 0, 'L'}, |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 261 | {"help", 0, 0, 'h'}, |
Bernhard Walle | 201bde3 | 2008-01-21 15:24:22 +0000 | [diff] [blame] | 262 | {"version", 0, 0, 'R'}, |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 263 | {0, 0, 0, 0} |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 264 | }; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 265 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 266 | char *filename = NULL; |
Ronald G. Minnich | ceec420 | 2003-07-25 04:37:41 +0000 | [diff] [blame] | 267 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 268 | unsigned int exclude_start_position = 0, exclude_end_position = 0; // [x,y) |
| 269 | char *tempstr = NULL, *tempstr2 = NULL; |
Yinghai Lu | ad8ffd2 | 2004-10-20 05:07:16 +0000 | [diff] [blame] | 270 | |
| 271 | if (argc > 1) { |
| 272 | /* Yes, print them. */ |
| 273 | int i; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 274 | printf_debug("The arguments are:\n"); |
Yinghai Lu | ad8ffd2 | 2004-10-20 05:07:16 +0000 | [diff] [blame] | 275 | for (i = 1; i < argc; ++i) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 276 | printf_debug("%s\n", argv[i]); |
Yinghai Lu | ad8ffd2 | 2004-10-20 05:07:16 +0000 | [diff] [blame] | 277 | } |
| 278 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 279 | setbuf(stdout, NULL); |
Uwe Hermann | e5ac164 | 2008-03-12 11:54:51 +0000 | [diff] [blame] | 280 | while ((opt = getopt_long(argc, argv, "rRwvVEfc:s:e:m:l:i:Lh", |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 281 | long_options, &option_index)) != EOF) { |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 282 | switch (opt) { |
| 283 | case 'r': |
| 284 | read_it = 1; |
| 285 | break; |
| 286 | case 'w': |
| 287 | write_it = 1; |
| 288 | break; |
| 289 | case 'v': |
| 290 | verify_it = 1; |
| 291 | break; |
| 292 | case 'c': |
| 293 | chip_to_probe = strdup(optarg); |
| 294 | break; |
Ollie Lho | 789ad3d | 2004-03-18 20:27:33 +0000 | [diff] [blame] | 295 | case 'V': |
| 296 | verbose = 1; |
| 297 | break; |
Ollie Lho | efa2858 | 2004-12-08 20:10:01 +0000 | [diff] [blame] | 298 | case 'E': |
| 299 | erase_it = 1; |
| 300 | break; |
Yinghai Lu | ad8ffd2 | 2004-10-20 05:07:16 +0000 | [diff] [blame] | 301 | case 's': |
| 302 | tempstr = strdup(optarg); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 303 | sscanf(tempstr, "%x", &exclude_start_position); |
Yinghai Lu | ad8ffd2 | 2004-10-20 05:07:16 +0000 | [diff] [blame] | 304 | break; |
| 305 | case 'e': |
Ollie Lho | 98bea8a | 2004-12-07 03:15:51 +0000 | [diff] [blame] | 306 | tempstr = strdup(optarg); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 307 | sscanf(tempstr, "%x", &exclude_end_position); |
Ollie Lho | 98bea8a | 2004-12-07 03:15:51 +0000 | [diff] [blame] | 308 | break; |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 309 | case 'm': |
| 310 | tempstr = strdup(optarg); |
| 311 | strtok(tempstr, ":"); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 312 | tempstr2 = strtok(NULL, ":"); |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 313 | if (tempstr2) { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 314 | lb_vendor = tempstr; |
| 315 | lb_part = tempstr2; |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 316 | } else { |
Peter Stuge | 6b53fed | 2008-01-27 16:21:21 +0000 | [diff] [blame] | 317 | lb_vendor = NULL; |
| 318 | lb_part = tempstr; |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 319 | } |
| 320 | break; |
| 321 | case 'f': |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 322 | force = 1; |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 323 | break; |
| 324 | case 'l': |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 325 | tempstr = strdup(optarg); |
Stefan Reinauer | 0a05d67 | 2007-04-14 16:32:59 +0000 | [diff] [blame] | 326 | if (read_romlayout(tempstr)) |
| 327 | exit(1); |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 328 | break; |
| 329 | case 'i': |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 330 | tempstr = strdup(optarg); |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 331 | find_romentry(tempstr); |
| 332 | break; |
Uwe Hermann | e5ac164 | 2008-03-12 11:54:51 +0000 | [diff] [blame] | 333 | case 'L': |
| 334 | print_supported_chips(); |
| 335 | print_supported_chipsets(); |
| 336 | print_supported_boards(); |
| 337 | exit(0); |
| 338 | break; |
Bernhard Walle | 201bde3 | 2008-01-21 15:24:22 +0000 | [diff] [blame] | 339 | case 'R': |
| 340 | print_version(); |
| 341 | exit(0); |
| 342 | break; |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 343 | case 'h': |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 344 | default: |
| 345 | usage(argv[0]); |
| 346 | break; |
| 347 | } |
| 348 | } |
Yinghai Lu | ad8ffd2 | 2004-10-20 05:07:16 +0000 | [diff] [blame] | 349 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 350 | if (read_it && write_it) { |
| 351 | printf("-r and -w are mutually exclusive\n"); |
| 352 | usage(argv[0]); |
| 353 | } |
Ronald G. Minnich | e555957 | 2003-03-28 03:29:43 +0000 | [diff] [blame] | 354 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 355 | if (optind < argc) |
| 356 | filename = argv[optind++]; |
Ronald G. Minnich | e555957 | 2003-03-28 03:29:43 +0000 | [diff] [blame] | 357 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 358 | /* First get full io access */ |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 359 | #if defined (__sun) && (defined(__i386) || defined(__amd64)) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 360 | if (sysi86(SI86V86, V86SC_IOPL, PS_IOPL) != 0) { |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 361 | #else |
| 362 | if (iopl(3) != 0) { |
| 363 | #endif |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 364 | fprintf(stderr, "ERROR: iopl failed: \"%s\"\n", |
| 365 | strerror(errno)); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 366 | exit(1); |
| 367 | } |
| 368 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 369 | /* Initialize PCI access for flash enables */ |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 370 | pacc = pci_alloc(); /* Get the pci_access structure */ |
| 371 | /* Set all options you want -- here we stick with the defaults */ |
| 372 | pci_init(pacc); /* Initialize the PCI library */ |
| 373 | pci_scan_bus(pacc); /* We want to get the list of devices */ |
| 374 | |
Stefan Reinauer | 7038564 | 2007-04-06 11:58:03 +0000 | [diff] [blame] | 375 | /* Open the memory device. A lot of functions need it */ |
| 376 | if ((fd_mem = open(MEM_DEV, O_RDWR)) < 0) { |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 377 | perror("Error: Can not access memory using " MEM_DEV |
| 378 | ". You need to be root."); |
Stefan Reinauer | 7038564 | 2007-04-06 11:58:03 +0000 | [diff] [blame] | 379 | exit(1); |
| 380 | } |
| 381 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 382 | myusec_calibrate_delay(); |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 383 | |
| 384 | /* We look at the lbtable first to see if we need a |
| 385 | * mainboard specific flash enable sequence. |
| 386 | */ |
Stefan Reinauer | e3f3e2e | 2008-01-18 15:33:10 +0000 | [diff] [blame] | 387 | coreboot_init(); |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 388 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 389 | /* try to enable it. Failure IS an option, since not all motherboards |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 390 | * really need this to be done, etc., etc. |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 391 | */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 392 | ret = chipset_flash_enable(); |
| 393 | if (ret == -2) { |
| 394 | printf("WARNING: No chipset found. Flash detection " |
| 395 | "will most likely fail.\n"); |
| 396 | } |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 397 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 398 | board_flash_enable(lb_vendor, lb_part); |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 399 | |
| 400 | if ((flash = probe_flash(flashchips)) == NULL) { |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 401 | printf("No EEPROM/flash device found.\n"); |
Jordan Crouse | 144ede6 | 2007-10-04 06:26:41 +0000 | [diff] [blame] | 402 | // FIXME: flash writes stay enabled! |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 403 | exit(1); |
| 404 | } |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 405 | |
Uwe Hermann | a502dce | 2007-10-17 23:55:15 +0000 | [diff] [blame] | 406 | printf("Flash part is %s (%d KB).\n", flash->name, flash->total_size); |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 407 | |
Jordan Crouse | 144ede6 | 2007-10-04 06:26:41 +0000 | [diff] [blame] | 408 | if (!(read_it | write_it | verify_it | erase_it)) { |
| 409 | printf("No operations were specified.\n"); |
| 410 | // FIXME: flash writes stay enabled! |
| 411 | exit(1); |
| 412 | } |
| 413 | |
Ollie Lho | efa2858 | 2004-12-08 20:10:01 +0000 | [diff] [blame] | 414 | if (!filename && !erase_it) { |
Jordan Crouse | 144ede6 | 2007-10-04 06:26:41 +0000 | [diff] [blame] | 415 | printf("Error: No filename specified.\n"); |
| 416 | // FIXME: flash writes stay enabled! |
| 417 | exit(1); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 418 | } |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 419 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 420 | size = flash->total_size * 1024; |
| 421 | buf = (uint8_t *) calloc(size, sizeof(char)); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 422 | |
Ollie Lho | efa2858 | 2004-12-08 20:10:01 +0000 | [diff] [blame] | 423 | if (erase_it) { |
| 424 | printf("Erasing flash chip\n"); |
| 425 | flash->erase(flash); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 426 | exit(0); |
Ollie Lho | efa2858 | 2004-12-08 20:10:01 +0000 | [diff] [blame] | 427 | } else if (read_it) { |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 428 | if ((image = fopen(filename, "w")) == NULL) { |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 429 | perror(filename); |
| 430 | exit(1); |
| 431 | } |
| 432 | printf("Reading Flash..."); |
Ollie Lho | 73eca80 | 2004-03-19 22:10:07 +0000 | [diff] [blame] | 433 | if (flash->read == NULL) |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 434 | memcpy(buf, (const char *)flash->virtual_memory, size); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 435 | else |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 436 | flash->read(flash, buf); |
Yinghai Lu | ad8ffd2 | 2004-10-20 05:07:16 +0000 | [diff] [blame] | 437 | |
Ollie Lho | 98bea8a | 2004-12-07 03:15:51 +0000 | [diff] [blame] | 438 | if (exclude_end_position - exclude_start_position > 0) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 439 | memset(buf + exclude_start_position, 0, |
| 440 | exclude_end_position - exclude_start_position); |
Yinghai Lu | ad8ffd2 | 2004-10-20 05:07:16 +0000 | [diff] [blame] | 441 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 442 | fwrite(buf, sizeof(char), size, image); |
| 443 | fclose(image); |
| 444 | printf("done\n"); |
| 445 | } else { |
Stefan Reinauer | 018aca8 | 2006-11-21 23:48:51 +0000 | [diff] [blame] | 446 | struct stat image_stat; |
| 447 | |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 448 | if ((image = fopen(filename, "r")) == NULL) { |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 449 | perror(filename); |
| 450 | exit(1); |
| 451 | } |
Stefan Reinauer | 018aca8 | 2006-11-21 23:48:51 +0000 | [diff] [blame] | 452 | if (fstat(fileno(image), &image_stat) != 0) { |
| 453 | perror(filename); |
| 454 | exit(1); |
| 455 | } |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 456 | if (image_stat.st_size != flash->total_size * 1024) { |
Stefan Reinauer | df8a3c8 | 2007-03-22 14:51:45 +0000 | [diff] [blame] | 457 | fprintf(stderr, "Error: Image size doesnt match\n"); |
Stefan Reinauer | 018aca8 | 2006-11-21 23:48:51 +0000 | [diff] [blame] | 458 | exit(1); |
| 459 | } |
| 460 | |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 461 | fread(buf, sizeof(char), size, image); |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 462 | show_id(buf, size); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 463 | fclose(image); |
| 464 | } |
| 465 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 466 | /* exclude range stuff. Nice idea, but at the moment it is only |
| 467 | * supported in hardware by the pm49fl004 chips. |
| 468 | * Instead of implementing this for all chips I suggest advancing |
| 469 | * it to the rom layout feature below and drop exclude range |
| 470 | * completely once all flash chips can do rom layouts. stepan |
| 471 | */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 472 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 473 | // //////////////////////////////////////////////////////////// |
Ollie Lho | 98bea8a | 2004-12-07 03:15:51 +0000 | [diff] [blame] | 474 | if (exclude_end_position - exclude_start_position > 0) |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 475 | memcpy(buf + exclude_start_position, |
Uwe Hermann | a880885 | 2007-05-24 19:17:29 +0000 | [diff] [blame] | 476 | (const char *)flash->virtual_memory + |
| 477 | exclude_start_position, |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 478 | exclude_end_position - exclude_start_position); |
Ollie Lho | 98bea8a | 2004-12-07 03:15:51 +0000 | [diff] [blame] | 479 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 480 | exclude_start_page = exclude_start_position / flash->page_size; |
| 481 | if ((exclude_start_position % flash->page_size) != 0) { |
Ollie Lho | 98bea8a | 2004-12-07 03:15:51 +0000 | [diff] [blame] | 482 | exclude_start_page++; |
| 483 | } |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 484 | exclude_end_page = exclude_end_position / flash->page_size; |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 485 | // //////////////////////////////////////////////////////////// |
Yinghai Lu | ad8ffd2 | 2004-10-20 05:07:16 +0000 | [diff] [blame] | 486 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 487 | // This should be moved into each flash part's code to do it |
| 488 | // cleanly. This does the job. |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 489 | handle_romentries(buf, (uint8_t *) flash->virtual_memory); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 490 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 491 | // //////////////////////////////////////////////////////////// |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 492 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 493 | if (write_it) |
Stefan Reinauer | 143da0b | 2006-01-04 16:42:57 +0000 | [diff] [blame] | 494 | ret |= flash->write(flash, buf); |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 495 | |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 496 | if (verify_it) |
Stefan Reinauer | 143da0b | 2006-01-04 16:42:57 +0000 | [diff] [blame] | 497 | ret |= verify_flash(flash, buf); |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 498 | |
Stefan Reinauer | 143da0b | 2006-01-04 16:42:57 +0000 | [diff] [blame] | 499 | return ret; |
Ronald G. Minnich | f4cf2ba | 2002-01-29 18:26:26 +0000 | [diff] [blame] | 500 | } |