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