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