Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 1 | .TH FLASHROM 8 "Jun 06, 2010" |
Stefan Reinauer | 261144c | 2006-07-27 23:29:02 +0000 | [diff] [blame] | 2 | .SH NAME |
Uwe Hermann | 530cb2d | 2009-05-14 22:58:21 +0000 | [diff] [blame] | 3 | flashrom \- detect, read, write, verify and erase flash chips |
Stefan Reinauer | 261144c | 2006-07-27 23:29:02 +0000 | [diff] [blame] | 4 | .SH SYNOPSIS |
Carl-Daniel Hailfinger | 8841d3e | 2010-05-15 15:04:37 +0000 | [diff] [blame] | 5 | .B flashrom \fR[\fB\-n\fR] [\fB\-V\fR] [\fB\-f\fR] [\fB\-h\fR|\fB\-R\fR|\ |
| 6 | \fB\-L\fR|\fB\-z\fR|\fB\-E\fR|\fB\-r\fR <file>|\fB\-w\fR <file>|\ |
| 7 | \fB\-v\fR <file>] |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 8 | [\fB\-c\fR <chipname>] [\fB\-m\fR [<vendor>:]<board>] \ |
Carl-Daniel Hailfinger | 8841d3e | 2010-05-15 15:04:37 +0000 | [diff] [blame] | 9 | [\fB\-l\fR <file>] |
| 10 | [\fB\-i\fR <image>] [\fB\-p\fR <programmername>[:<parameters>]] |
Stefan Reinauer | 261144c | 2006-07-27 23:29:02 +0000 | [diff] [blame] | 11 | .SH DESCRIPTION |
| 12 | .B flashrom |
Uwe Hermann | e8ba538 | 2009-05-22 11:37:27 +0000 | [diff] [blame] | 13 | is a utility for detecting, reading, writing, verifying and erasing flash |
Uwe Hermann | 530cb2d | 2009-05-14 22:58:21 +0000 | [diff] [blame] | 14 | chips. It's often used to flash BIOS/EFI/coreboot/firmware images in-system |
| 15 | using a supported mainboard, but it also supports flashing of network cards |
| 16 | (NICs), SATA controller cards, and other external devices which can program |
| 17 | flash chips. |
Uwe Hermann | e74b9f8 | 2009-04-10 14:41:29 +0000 | [diff] [blame] | 18 | .PP |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 19 | It supports a wide range of DIP32, PLCC32, DIP8, SO8/SOIC8, TSOP32, TSOP40, |
| 20 | and TSOP48 chips, which use various protocols such as LPC, FWH, parallel flash, |
Uwe Hermann | d42009c | 2009-04-11 13:59:00 +0000 | [diff] [blame] | 21 | or SPI. |
Stefan Reinauer | 261144c | 2006-07-27 23:29:02 +0000 | [diff] [blame] | 22 | .SH OPTIONS |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 23 | .B IMPORTANT: |
Carl-Daniel Hailfinger | 5de9341 | 2009-05-01 10:53:49 +0000 | [diff] [blame] | 24 | Please note that the command line interface for flashrom will change before |
| 25 | flashrom 1.0. Do not use flashrom in scripts or other automated tools without |
Uwe Hermann | e8ba538 | 2009-05-22 11:37:27 +0000 | [diff] [blame] | 26 | checking that your flashrom version won't interpret options in a different way. |
Carl-Daniel Hailfinger | 5de9341 | 2009-05-01 10:53:49 +0000 | [diff] [blame] | 27 | .PP |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 28 | You can specify one of |
| 29 | .BR \-h ", " \-R ", " \-L ", " \-z ", " \-E ", " \-r ", " \-w ", " \-v |
| 30 | or no operation. |
Carl-Daniel Hailfinger | 8841d3e | 2010-05-15 15:04:37 +0000 | [diff] [blame] | 31 | If no operation is specified, flashrom will only probe for flash chips. It is |
Michael Karcher | 31fd825 | 2010-03-12 06:41:39 +0000 | [diff] [blame] | 32 | recommended that if you try flashrom the first time on a system, you run it |
| 33 | in probe only mode and check the output. Also you are advised to make a |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 34 | backup of your current ROM contents with |
| 35 | .B \-r |
| 36 | before you try to write a new image. |
Stefan Reinauer | de063bf | 2006-09-21 13:09:22 +0000 | [diff] [blame] | 37 | .TP |
Uwe Hermann | e74b9f8 | 2009-04-10 14:41:29 +0000 | [diff] [blame] | 38 | .B "\-r, \-\-read <file>" |
| 39 | Read flash ROM contents and save them into the given |
| 40 | .BR <file> . |
Stefan Reinauer | de063bf | 2006-09-21 13:09:22 +0000 | [diff] [blame] | 41 | .TP |
Uwe Hermann | e74b9f8 | 2009-04-10 14:41:29 +0000 | [diff] [blame] | 42 | .B "\-w, \-\-write <file>" |
Carl-Daniel Hailfinger | 8841d3e | 2010-05-15 15:04:37 +0000 | [diff] [blame] | 43 | Write |
| 44 | .B <file> |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 45 | into flash ROM. This will first automatically |
| 46 | .B erase |
| 47 | the chip, then write to it. |
Stefan Reinauer | de063bf | 2006-09-21 13:09:22 +0000 | [diff] [blame] | 48 | .TP |
Uwe Hermann | ea07f62 | 2009-06-24 17:31:08 +0000 | [diff] [blame] | 49 | .B "\-n, \-\-noverify" |
Carl-Daniel Hailfinger | 8841d3e | 2010-05-15 15:04:37 +0000 | [diff] [blame] | 50 | Skip the automatic verification of flash ROM contents after writing. Using this |
Uwe Hermann | ea07f62 | 2009-06-24 17:31:08 +0000 | [diff] [blame] | 51 | option is |
| 52 | .B not |
Carl-Daniel Hailfinger | 8841d3e | 2010-05-15 15:04:37 +0000 | [diff] [blame] | 53 | recommended, you should only use it if you know what you are doing and if you |
Uwe Hermann | ea07f62 | 2009-06-24 17:31:08 +0000 | [diff] [blame] | 54 | feel that the time for verification takes too long. |
| 55 | .sp |
| 56 | Typical usage is: |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 57 | .B "flashrom \-n \-w <file>" |
Uwe Hermann | ea07f62 | 2009-06-24 17:31:08 +0000 | [diff] [blame] | 58 | .sp |
| 59 | This option is only useful in combination with |
| 60 | .BR \-\-write . |
| 61 | .TP |
Uwe Hermann | e74b9f8 | 2009-04-10 14:41:29 +0000 | [diff] [blame] | 62 | .B "\-v, \-\-verify <file>" |
| 63 | Verify the flash ROM contents against the given |
| 64 | .BR <file> . |
Stefan Reinauer | de063bf | 2006-09-21 13:09:22 +0000 | [diff] [blame] | 65 | .TP |
Stefan Reinauer | 261144c | 2006-07-27 23:29:02 +0000 | [diff] [blame] | 66 | .B "\-E, \-\-erase" |
Uwe Hermann | e74b9f8 | 2009-04-10 14:41:29 +0000 | [diff] [blame] | 67 | Erase the flash ROM chip. |
Stefan Reinauer | de063bf | 2006-09-21 13:09:22 +0000 | [diff] [blame] | 68 | .TP |
Stefan Reinauer | 261144c | 2006-07-27 23:29:02 +0000 | [diff] [blame] | 69 | .B "\-V, \-\-verbose" |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 70 | More verbose output. This option can be supplied multiple times |
| 71 | (max. 2 times, i.e. |
| 72 | .BR \-VV ) |
| 73 | for even more debug output. |
Stefan Reinauer | de063bf | 2006-09-21 13:09:22 +0000 | [diff] [blame] | 74 | .TP |
Stefan Reinauer | 261144c | 2006-07-27 23:29:02 +0000 | [diff] [blame] | 75 | .B "\-c, \-\-chip" <chipname> |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 76 | Probe only for the specified flash ROM chip. This option takes the chip name as |
Carl-Daniel Hailfinger | 2702376 | 2010-04-28 15:22:14 +0000 | [diff] [blame] | 77 | printed by |
| 78 | .B "flashrom \-L" |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 79 | without the vendor name as parameter. Please note that the chip name is |
| 80 | case sensitive. |
Joerg Mayer | 645c6df | 2010-03-13 14:47:48 +0000 | [diff] [blame] | 81 | .TP |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 82 | .B "\-m, \-\-mainboard" [<vendor>:]<board> |
Joerg Mayer | 645c6df | 2010-03-13 14:47:48 +0000 | [diff] [blame] | 83 | Override mainboard settings. |
| 84 | .sp |
| 85 | flashrom reads the coreboot table to determine the current mainboard. If no |
| 86 | coreboot table could be read or if you want to override these values, you can |
| 87 | specify \-m, e.g.: |
| 88 | .sp |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 89 | .B " flashrom \-\-mainboard AGAMI:ARUMA \-w agami_aruma.rom" |
Joerg Mayer | 645c6df | 2010-03-13 14:47:48 +0000 | [diff] [blame] | 90 | .sp |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 91 | See the 'Known boards' or 'Known laptops' section in the output |
| 92 | of 'flashrom \-L' for a list of boards which require the specification of |
| 93 | the board name, if no coreboot table is found. |
Joerg Mayer | 645c6df | 2010-03-13 14:47:48 +0000 | [diff] [blame] | 94 | .TP |
| 95 | .B "\-f, \-\-force" |
Carl-Daniel Hailfinger | 2702376 | 2010-04-28 15:22:14 +0000 | [diff] [blame] | 96 | Force one or more of the following actions: |
Joerg Mayer | 645c6df | 2010-03-13 14:47:48 +0000 | [diff] [blame] | 97 | .sp |
Carl-Daniel Hailfinger | 2702376 | 2010-04-28 15:22:14 +0000 | [diff] [blame] | 98 | * Force chip read and pretend the chip is there. |
| 99 | .sp |
Carl-Daniel Hailfinger | 3e85442 | 2010-10-06 23:03:21 +0000 | [diff] [blame] | 100 | * Force chip access even if the chip is bigger than the maximum supported \ |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 101 | size for the flash bus. |
Carl-Daniel Hailfinger | 2702376 | 2010-04-28 15:22:14 +0000 | [diff] [blame] | 102 | .sp |
| 103 | * Force erase even if erase is known bad. |
| 104 | .sp |
| 105 | * Force write even if write is known bad. |
Joerg Mayer | 645c6df | 2010-03-13 14:47:48 +0000 | [diff] [blame] | 106 | .TP |
| 107 | .B "\-l, \-\-layout <file>" |
| 108 | Read ROM layout from |
| 109 | .BR <file> . |
Uwe Hermann | 87c0793 | 2009-05-05 16:15:46 +0000 | [diff] [blame] | 110 | .sp |
| 111 | flashrom supports ROM layouts. This allows you to flash certain parts of |
| 112 | the flash chip only. A ROM layout file looks like follows: |
| 113 | .sp |
| 114 | 00000000:00008fff gfxrom |
| 115 | 00009000:0003ffff normal |
| 116 | 00040000:0007ffff fallback |
| 117 | .sp |
| 118 | i.e.: |
| 119 | startaddr:endaddr name |
| 120 | .sp |
| 121 | All addresses are offsets within the file, not absolute addresses! |
| 122 | If you only want to update the normal image in a ROM you can say: |
| 123 | .sp |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 124 | .B " flashrom \-\-layout rom.layout \-\-image normal \-w agami_aruma.rom" |
Uwe Hermann | 87c0793 | 2009-05-05 16:15:46 +0000 | [diff] [blame] | 125 | .sp |
| 126 | To update normal and fallback but leave the VGA BIOS alone, say: |
| 127 | .sp |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 128 | .B " flashrom \-l rom.layout \-i normal \" |
Uwe Hermann | 87c0793 | 2009-05-05 16:15:46 +0000 | [diff] [blame] | 129 | .br |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 130 | .B " \-i fallback \-w agami_aruma.rom" |
Uwe Hermann | 87c0793 | 2009-05-05 16:15:46 +0000 | [diff] [blame] | 131 | .sp |
| 132 | Currently overlapping sections are not supported. |
Stefan Reinauer | de063bf | 2006-09-21 13:09:22 +0000 | [diff] [blame] | 133 | .TP |
Uwe Hermann | e74b9f8 | 2009-04-10 14:41:29 +0000 | [diff] [blame] | 134 | .B "\-i, \-\-image <name>" |
Uwe Hermann | 67808fe | 2007-10-18 00:29:05 +0000 | [diff] [blame] | 135 | Only flash image |
| 136 | .B <name> |
| 137 | from flash layout. |
Stefan Reinauer | de063bf | 2006-09-21 13:09:22 +0000 | [diff] [blame] | 138 | .TP |
Uwe Hermann | e5ac164 | 2008-03-12 11:54:51 +0000 | [diff] [blame] | 139 | .B "\-L, \-\-list\-supported" |
Uwe Hermann | e8ba538 | 2009-05-22 11:37:27 +0000 | [diff] [blame] | 140 | List the flash chips, chipsets, mainboards, and PCI card "programmers" |
| 141 | supported by flashrom. |
Uwe Hermann | e5ac164 | 2008-03-12 11:54:51 +0000 | [diff] [blame] | 142 | .sp |
Uwe Hermann | e8ba538 | 2009-05-22 11:37:27 +0000 | [diff] [blame] | 143 | There are many unlisted boards which will work out of the box, without |
| 144 | special support in flashrom. Please let us know if you can verify that |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 145 | other boards work or do not work out of the box. |
| 146 | .sp |
| 147 | .B IMPORTANT: |
| 148 | For verification you have |
Uwe Hermann | e8ba538 | 2009-05-22 11:37:27 +0000 | [diff] [blame] | 149 | to test an ERASE and/or WRITE operation, so make sure you only do that |
| 150 | if you have proper means to recover from failure! |
Uwe Hermann | e5ac164 | 2008-03-12 11:54:51 +0000 | [diff] [blame] | 151 | .TP |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 152 | .B "\-z, \-\-list\-supported-wiki" |
| 153 | Same as |
| 154 | .BR \-\-list\-supported , |
| 155 | but outputs the supported hardware in MediaWiki syntax, so that it can be |
Carl-Daniel Hailfinger | 8841d3e | 2010-05-15 15:04:37 +0000 | [diff] [blame] | 156 | easily pasted into the wiki page at http://www.flashrom.org/. Please note |
| 157 | that MediaWiki output is not compiled in by default. |
Uwe Hermann | 20a293f | 2009-06-19 10:42:43 +0000 | [diff] [blame] | 158 | .TP |
Carl-Daniel Hailfinger | 2702376 | 2010-04-28 15:22:14 +0000 | [diff] [blame] | 159 | .B "\-p, \-\-programmer <name>[:parameter[,parameter[,parameter]]]" |
Carl-Daniel Hailfinger | ce98677 | 2009-05-09 00:27:07 +0000 | [diff] [blame] | 160 | Specify the programmer device. Currently supported are: |
| 161 | .sp |
Uwe Hermann | 530cb2d | 2009-05-14 22:58:21 +0000 | [diff] [blame] | 162 | .BR "* internal" " (default, for in-system flashing in the mainboard)" |
| 163 | .sp |
Uwe Hermann | c7e8a0c | 2009-05-19 14:14:21 +0000 | [diff] [blame] | 164 | .BR "* dummy" " (just prints all operations and accesses)" |
| 165 | .sp |
Uwe Hermann | 530cb2d | 2009-05-14 22:58:21 +0000 | [diff] [blame] | 166 | .BR "* nic3com" " (for flash ROMs on 3COM network cards)" |
| 167 | .sp |
Uwe Hermann | 829ed84 | 2010-05-24 17:39:14 +0000 | [diff] [blame] | 168 | .BR "* nicrealtek" " (for flash ROMs on Realtek network cards)" |
| 169 | .sp |
| 170 | .BR "* nicsmc1211" " (for flash ROMs on RTL8139-compatible SMC2 network cards)" |
| 171 | .sp |
Carl-Daniel Hailfinger | 3e85442 | 2010-10-06 23:03:21 +0000 | [diff] [blame] | 172 | .BR "* nicnatsemi" " (for flash ROMs on National Semiconductor DP838* network \ |
| 173 | cards)" |
| 174 | .sp |
Uwe Hermann | 2bc98f6 | 2009-09-30 18:29:55 +0000 | [diff] [blame] | 175 | .BR "* gfxnvidia" " (for flash ROMs on NVIDIA graphics cards)" |
| 176 | .sp |
TURBO J | b0912c0 | 2009-09-02 23:00:46 +0000 | [diff] [blame] | 177 | .BR "* drkaiser" " (for flash ROMs on Dr. Kaiser PC-Waechter PCI cards)" |
| 178 | .sp |
Uwe Hermann | c7e8a0c | 2009-05-19 14:14:21 +0000 | [diff] [blame] | 179 | .BR "* satasii" " (for flash ROMs on Silicon Image SATA/IDE controllers)" |
| 180 | .sp |
Uwe Hermann | ddd5c9e | 2010-02-21 21:17:00 +0000 | [diff] [blame] | 181 | .BR "* atahpt" " (for flash ROMs on Highpoint ATA/RAID controllers)" |
| 182 | .sp |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 183 | .BR "* it87spi" " (for flash ROMs behind an ITE IT87xx Super I/O LPC/SPI \ |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 184 | translation unit)" |
Carl-Daniel Hailfinger | b8afecd | 2009-05-31 18:00:57 +0000 | [diff] [blame] | 185 | .sp |
Jörg Fischer | 6529b9f | 2010-07-29 15:54:53 +0000 | [diff] [blame] | 186 | .BR "* ft2232_spi" " (for SPI flash ROMs attached to a FT2232H/FT4232H/JTAGkey \ |
| 187 | based USB SPI programmer)" |
Paul Fox | 05dfbe6 | 2009-06-16 21:08:06 +0000 | [diff] [blame] | 188 | .sp |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 189 | .BR "* serprog" " (for flash ROMs attached to a programmer speaking serprog)" |
Carl-Daniel Hailfinger | dfade10 | 2009-08-18 23:51:22 +0000 | [diff] [blame] | 190 | .sp |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 191 | .BR "* buspirate_spi" " (for SPI flash ROMs attached to a Bus Pirate)" |
Carl-Daniel Hailfinger | d5b28fa | 2009-11-24 18:27:10 +0000 | [diff] [blame] | 192 | .sp |
Carl-Daniel Hailfinger | 3e85442 | 2010-10-06 23:03:21 +0000 | [diff] [blame] | 193 | .BR "* dediprog" " (for SPI flash ROMs attached to a Dediprog SF100)" |
| 194 | .sp |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 195 | .BR "* rayer_spi" " (for SPI flash ROMs attached to a RayeR parport \ |
| 196 | based programmer)" |
| 197 | .sp |
Idwer Vollering | 004f4b7 | 2010-09-03 18:21:21 +0000 | [diff] [blame] | 198 | .BR "* nicintel_spi" " (for SPI flash ROMs attached to an Intel Gigabit \ |
| 199 | network cards)" |
| 200 | .sp |
Mark Marshall | 90021f2 | 2010-12-03 14:48:11 +0000 | [diff] [blame] | 201 | .BR "* ogp_spi" " (for SPI flash ROMs attached to an Open Graphics Project \ |
| 202 | graphics card)" |
| 203 | .sp |
Michael Karcher | e5eafb2 | 2010-03-07 12:11:08 +0000 | [diff] [blame] | 204 | Some programmers have optional or mandatory parameters which are described |
| 205 | in detail in the |
| 206 | .B PROGRAMMER SPECIFIC INFO |
| 207 | section. Support for some programmers can be disabled at compile time. |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 208 | .B "flashrom \-h" |
Michael Karcher | e5eafb2 | 2010-03-07 12:11:08 +0000 | [diff] [blame] | 209 | lists all supported programmers. |
| 210 | .TP |
| 211 | .B "\-h, \-\-help" |
| 212 | Show a help text and exit. |
| 213 | .TP |
| 214 | .B "\-R, \-\-version" |
| 215 | Show version information and exit. |
| 216 | .SH PROGRAMMER SPECIFIC INFO |
| 217 | Some programmer drivers accept further parameters to set programmer-specific |
Uwe Hermann | 4e3d0b3 | 2010-03-25 23:18:41 +0000 | [diff] [blame] | 218 | parameters. These parameters are separated from the programmer name by a |
Michael Karcher | e5eafb2 | 2010-03-07 12:11:08 +0000 | [diff] [blame] | 219 | colon. While some programmers take arguments at fixed positions, other |
| 220 | programmers use a key/value interface in which the key and value is separated |
| 221 | by an equal sign and different pairs are separated by a comma or a colon. |
| 222 | .TP |
Michael Karcher | 7f0c3ec | 2010-03-07 22:29:28 +0000 | [diff] [blame] | 223 | .BR "internal " programmer |
| 224 | Some mainboards require to run mainboard specific code to enable flash erase |
| 225 | and write support (and probe support on old systems with parallel flash). |
| 226 | The mainboard brand and model (if it requires specific code) is usually |
| 227 | autodetected using one of the following mechanisms: If your system is |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 228 | running coreboot, the mainboard type is determined from the coreboot table. |
| 229 | Otherwise, the mainboard is detected by examining the onboard PCI devices |
Michael Karcher | 7f0c3ec | 2010-03-07 22:29:28 +0000 | [diff] [blame] | 230 | and possibly DMI info. If PCI and DMI do not contain information to uniquely |
| 231 | identify the mainboard (which is the exception), it might be necessary to |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 232 | specify the mainboard using the |
| 233 | .B \-m |
| 234 | switch (see above). |
Michael Karcher | 7f0c3ec | 2010-03-07 22:29:28 +0000 | [diff] [blame] | 235 | .sp |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 236 | Some of these board-specific flash enabling functions (called |
| 237 | .BR "board enables" ) |
Michael Karcher | 7f0c3ec | 2010-03-07 22:29:28 +0000 | [diff] [blame] | 238 | in flashrom have not yet been tested. If your mainboard is detected needing |
| 239 | an untested board enable function, a warning message is printed and the |
| 240 | board enable is not executed, because a wrong board enable function might |
| 241 | cause the system to behave erratically, as board enable functions touch the |
| 242 | low-level internals of a mainboard. Not executing a board enable function |
| 243 | (if one is needed) might cause detection or erasing failure. If your board |
| 244 | protects only part of the flash (commonly the top end, called boot block), |
| 245 | flashrom might encounter an error only after erasing the unprotected part, |
| 246 | so running without the board-enable function might be dangerous for erase |
| 247 | and write (which includes erase). |
| 248 | .sp |
| 249 | The suggested procedure for a mainboard with untested board specific code is |
| 250 | to first try to probe the ROM (just invoke flashrom and check that it |
| 251 | detects your flash chip type) without running the board enable code (i.e. |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 252 | without any parameters). If it finds your chip, fine. Otherwise, retry |
Michael Karcher | 7f0c3ec | 2010-03-07 22:29:28 +0000 | [diff] [blame] | 253 | probing your chip with the board-enable code running, using |
| 254 | .sp |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 255 | .B " flashrom \-p internal:boardenable=force" |
Michael Karcher | 7f0c3ec | 2010-03-07 22:29:28 +0000 | [diff] [blame] | 256 | .sp |
| 257 | If your chip is still not detected, the board enable code seems to be broken |
| 258 | or the flash chip unsupported. Otherwise, make a backup of your current ROM |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 259 | contents (using |
| 260 | .BR \-r ) |
| 261 | and store it to a medium outside of your computer, like |
| 262 | a USB drive or a network share. If you needed to run the board enable code |
Michael Karcher | 7f0c3ec | 2010-03-07 22:29:28 +0000 | [diff] [blame] | 263 | already for probing, use it for reading too. Now you can try to write the |
| 264 | new image. You should enable the board enable code in any case now, as it |
| 265 | has been written because it is known that writing/erasing without the board |
| 266 | enable is going to fail. In any case (success or failure), please report to |
| 267 | the flashrom mailing list, see below. |
| 268 | .sp |
Carl-Daniel Hailfinger | 2702376 | 2010-04-28 15:22:14 +0000 | [diff] [blame] | 269 | On systems running coreboot, flashrom checks whether the desired image matches |
| 270 | your mainboard. This needs some special board ID to be present in the image. |
| 271 | If flashrom detects that the image you want to write and the current board |
| 272 | do not match, it will refuse to write the image unless you specify |
| 273 | .sp |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 274 | .B " flashrom \-p internal:boardmismatch=force" |
Carl-Daniel Hailfinger | 2702376 | 2010-04-28 15:22:14 +0000 | [diff] [blame] | 275 | .sp |
Carl-Daniel Hailfinger | 01f3ef4 | 2010-03-25 02:50:40 +0000 | [diff] [blame] | 276 | If your mainboard uses an ITE IT87 series Super I/O for LPC<->SPI flash bus |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 277 | translation, flashrom should autodetect that configuration. You can use the |
Carl-Daniel Hailfinger | 8841d3e | 2010-05-15 15:04:37 +0000 | [diff] [blame] | 278 | .sp |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 279 | .B " flashrom \-p internal:it87spiport=portnum" |
| 280 | .sp |
Carl-Daniel Hailfinger | 01f3ef4 | 2010-03-25 02:50:40 +0000 | [diff] [blame] | 281 | syntax as explained in the |
| 282 | .B it87spi |
| 283 | programmer section to use a non-default port for controlling the IT87 series |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 284 | Super I/O. In the unlikely case flashrom doesn't detect an active |
| 285 | IT87 LPC<->SPI bridge, you can try to force recognition by using the |
| 286 | .B it87spi |
| 287 | programmer. |
Carl-Daniel Hailfinger | 2702376 | 2010-04-28 15:22:14 +0000 | [diff] [blame] | 288 | .sp |
| 289 | Using flashrom on laptops is dangerous and may easily make your hardware |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 290 | unusable (see also the |
| 291 | .B BUGS |
| 292 | section). The embedded controller (EC) in these |
| 293 | machines often interacts badly with flashing. |
| 294 | .B http://www.flashrom.org/Laptops |
Carl-Daniel Hailfinger | 2702376 | 2010-04-28 15:22:14 +0000 | [diff] [blame] | 295 | has more information. If flash is shared with the EC, erase is guaranteed to |
| 296 | brick your laptop and write is very likely to brick your laptop. |
| 297 | Chip read and probe may irritate your EC and cause fan failure, backlight |
| 298 | failure, sudden poweroff, and other nasty effects. |
| 299 | flashrom will attempt to detect laptops and abort immediately for safety |
| 300 | reasons. |
| 301 | If you want to proceed anyway at your own risk, use |
| 302 | .sp |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 303 | .B " flashrom \-p internal:laptop=force_I_want_a_brick" |
Carl-Daniel Hailfinger | 2702376 | 2010-04-28 15:22:14 +0000 | [diff] [blame] | 304 | .sp |
| 305 | You have been warned. |
| 306 | .sp |
| 307 | We will not help you if you force flashing on a laptop because this is a really |
| 308 | dumb idea. |
Carl-Daniel Hailfinger | 01f3ef4 | 2010-03-25 02:50:40 +0000 | [diff] [blame] | 309 | .TP |
Michael Karcher | e5eafb2 | 2010-03-07 12:11:08 +0000 | [diff] [blame] | 310 | .BR "dummy " programmer |
| 311 | An optional parameter specifies the bus types it |
Carl-Daniel Hailfinger | 3504b53 | 2009-06-01 00:02:11 +0000 | [diff] [blame] | 312 | should support. For that you have to use the |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 313 | .B "flashrom \-p dummy:bus=[type[+type[+type]]]" |
Carl-Daniel Hailfinger | 3504b53 | 2009-06-01 00:02:11 +0000 | [diff] [blame] | 314 | syntax where |
| 315 | .B type |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 316 | can be any of |
| 317 | .BR parallel ", " lpc ", " fwh ", " spi |
| 318 | in any order. If you specify bus without type, all buses will be disabled. |
| 319 | If you do not specify bus, all buses will be enabled. |
Carl-Daniel Hailfinger | 3504b53 | 2009-06-01 00:02:11 +0000 | [diff] [blame] | 320 | .sp |
| 321 | Example: |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 322 | .B "flashrom \-p dummy:bus=lpc+fwh" |
Michael Karcher | e5eafb2 | 2010-03-07 12:11:08 +0000 | [diff] [blame] | 323 | .TP |
Carl-Daniel Hailfinger | 3e85442 | 2010-10-06 23:03:21 +0000 | [diff] [blame] | 324 | .BR "nic3com" , " nicrealtek" , " nicsmc1211" , " nicnatsemi" , " gfxnvidia\ |
| 325 | " , " satasii " and " atahpt " programmers |
Michael Karcher | e5eafb2 | 2010-03-07 12:11:08 +0000 | [diff] [blame] | 326 | These programmers have an option to specify the PCI address of the card |
| 327 | your want to use, which must be specified if more than one card supported |
| 328 | by the selected programmer is installed in your system. The syntax is |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 329 | .BR "flashrom \-p xxxx:pci=bb:dd.f" , |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 330 | where |
Uwe Hermann | c7e8a0c | 2009-05-19 14:14:21 +0000 | [diff] [blame] | 331 | .B xxxx |
| 332 | is the name of the programmer |
Uwe Hermann | 530cb2d | 2009-05-14 22:58:21 +0000 | [diff] [blame] | 333 | .B bb |
| 334 | is the PCI bus number, |
| 335 | .B dd |
| 336 | is the PCI device number, and |
| 337 | .B f |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 338 | is the PCI function number of the desired device. |
Uwe Hermann | 530cb2d | 2009-05-14 22:58:21 +0000 | [diff] [blame] | 339 | .sp |
| 340 | Example: |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 341 | .B "flashrom \-p nic3com:pci=05:04.0" |
Michael Karcher | e5eafb2 | 2010-03-07 12:11:08 +0000 | [diff] [blame] | 342 | .TP |
| 343 | .BR "it87spi " programmer |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 344 | An optional |
| 345 | .B it87spiport |
| 346 | parameter sets the I/O base port of the IT87 series SPI controller |
Michael Karcher | e5eafb2 | 2010-03-07 12:11:08 +0000 | [diff] [blame] | 347 | interface to the port specified in the parameter instead of using the port |
| 348 | address set by the BIOS. For that you have to use the |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 349 | .sp |
| 350 | .B " flashrom \-p it87spi:it87spiport=portnum" |
| 351 | .sp |
Carl-Daniel Hailfinger | bb297f7 | 2009-07-11 18:05:42 +0000 | [diff] [blame] | 352 | syntax where |
| 353 | .B portnum |
| 354 | is an I/O port number which must be a multiple of 8. |
Michael Karcher | e5eafb2 | 2010-03-07 12:11:08 +0000 | [diff] [blame] | 355 | .TP |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 356 | .BR "ft2232_spi " programmer |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 357 | An optional parameter specifies the controller |
Carl-Daniel Hailfinger | dfade10 | 2009-08-18 23:51:22 +0000 | [diff] [blame] | 358 | type and interface/port it should support. For that you have to use the |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 359 | .sp |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 360 | .B " flashrom \-p ft2232_spi:type=model,port=interface" |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 361 | .sp |
Carl-Daniel Hailfinger | feea272 | 2009-07-01 00:02:23 +0000 | [diff] [blame] | 362 | syntax where |
| 363 | .B model |
| 364 | can be any of |
Uwe Hermann | 48ec1b1 | 2010-08-08 17:01:18 +0000 | [diff] [blame] | 365 | .BR 2232H ", " JTAGkey ", or " 4232H |
Carl-Daniel Hailfinger | feea272 | 2009-07-01 00:02:23 +0000 | [diff] [blame] | 366 | and |
| 367 | .B interface |
| 368 | can be any of |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 369 | .BR A ", or " B . |
Carl-Daniel Hailfinger | feea272 | 2009-07-01 00:02:23 +0000 | [diff] [blame] | 370 | The default model is |
| 371 | .B 4232H |
| 372 | and the default interface is |
| 373 | .BR B . |
Michael Karcher | e5eafb2 | 2010-03-07 12:11:08 +0000 | [diff] [blame] | 374 | .TP |
| 375 | .BR "serprog " programmer |
| 376 | A mandatory parameter specifies either a serial |
Carl-Daniel Hailfinger | dfade10 | 2009-08-18 23:51:22 +0000 | [diff] [blame] | 377 | device/baud combination or an IP/port combination for communication with the |
Michael Karcher | e5eafb2 | 2010-03-07 12:11:08 +0000 | [diff] [blame] | 378 | programmer. In the device/baud combination, the device has to start with a |
| 379 | slash. For serial, you have to use the |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 380 | .sp |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 381 | .B " flashrom \-p serprog:dev=/dev/device:baud" |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 382 | .sp |
Carl-Daniel Hailfinger | dfade10 | 2009-08-18 23:51:22 +0000 | [diff] [blame] | 383 | syntax and for IP, you have to use |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 384 | .sp |
Carl-Daniel Hailfinger | 744132a | 2010-07-06 09:55:48 +0000 | [diff] [blame] | 385 | .B " flashrom \-p serprog:ip=ipaddr:port" |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 386 | .sp |
| 387 | instead. More information about serprog is available in |
| 388 | .B serprog-protocol.txt |
| 389 | in the source distribution. |
Michael Karcher | e5eafb2 | 2010-03-07 12:11:08 +0000 | [diff] [blame] | 390 | .TP |
Carl-Daniel Hailfinger | 7112772 | 2010-05-31 15:27:27 +0000 | [diff] [blame] | 391 | .BR "buspirate_spi " programmer |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 392 | A required |
| 393 | .B dev |
| 394 | parameter specifies the Bus Pirate device node and an optional |
| 395 | .B spispeed |
| 396 | parameter specifies the frequency of the SPI bus. The parameter |
Michael Karcher | e5eafb2 | 2010-03-07 12:11:08 +0000 | [diff] [blame] | 397 | delimiter is a comma. Syntax is |
Carl-Daniel Hailfinger | dfade10 | 2009-08-18 23:51:22 +0000 | [diff] [blame] | 398 | .sp |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 399 | .B "flashrom \-p buspirate_spi:dev=/dev/device,spispeed=frequency" |
Michael Karcher | e5eafb2 | 2010-03-07 12:11:08 +0000 | [diff] [blame] | 400 | .sp |
Carl-Daniel Hailfinger | d5b28fa | 2009-11-24 18:27:10 +0000 | [diff] [blame] | 401 | where |
| 402 | .B frequency |
| 403 | can be any of |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 404 | .BR 30k ", " 125k ", " 250k ", " 1M ", " 2M ", " 2.6M ", " 4M ", " 8M |
Michael Karcher | e5eafb2 | 2010-03-07 12:11:08 +0000 | [diff] [blame] | 405 | (in Hz). The default is the maximum frequency of 8 MHz. |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 406 | .TP |
Carl-Daniel Hailfinger | 3e85442 | 2010-10-06 23:03:21 +0000 | [diff] [blame] | 407 | .BR "dediprog " programmer |
Carl-Daniel Hailfinger | c244138 | 2010-11-09 22:00:31 +0000 | [diff] [blame] | 408 | An optional |
| 409 | .B voltage |
| 410 | parameter specifies the voltage the Dediprog should use. The default unit is |
| 411 | Volt if no unit is specified. You can use |
| 412 | .BR mV ", " milliVolt ", " V " or " Volt |
| 413 | as unit specifier. Syntax is |
| 414 | .sp |
| 415 | .B "flashrom \-p dediprog:voltage=value" |
| 416 | .sp |
| 417 | where |
| 418 | .B value |
| 419 | can be any of |
| 420 | .BR 0V ", " 1.8V ", " 2.5V ", " 3.5V |
| 421 | or the equivalent in mV. |
Carl-Daniel Hailfinger | 3e85442 | 2010-10-06 23:03:21 +0000 | [diff] [blame] | 422 | .TP |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 423 | .BR "rayer_spi " programmer |
Carl-Daniel Hailfinger | 37c4252 | 2010-10-05 19:19:48 +0000 | [diff] [blame] | 424 | The default I/O base address used for the parallel port is 0x378 and you can use |
| 425 | the optional |
| 426 | .B iobase |
| 427 | parameter to specify an alternate base I/O address with the |
| 428 | .sp |
| 429 | .B " flashrom \-p rayer_spi:iobase=baseaddr" |
| 430 | .sp |
| 431 | syntax where |
| 432 | .B baseaddr |
| 433 | is base I/O port address of the parallel port, which must be a multiple of |
| 434 | four. Make sure to not forget the "0x" prefix for hexadecimal port addresses. |
| 435 | .sp |
| 436 | More information about the hardware is available at |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 437 | http://rayer.ic.cz/elektro/spipgm.htm |
Mark Marshall | 90021f2 | 2010-12-03 14:48:11 +0000 | [diff] [blame] | 438 | .TP |
| 439 | .BR "ogp_spi " programmer |
| 440 | The FLASH ROM chip to access must be specified with the |
| 441 | .B rom |
| 442 | parameter. |
| 443 | .sp |
| 444 | .B " flashrom \-p ogp_spi:rom=name" |
| 445 | .sp |
| 446 | Where |
| 447 | .B name |
| 448 | is either |
| 449 | .B cprom |
| 450 | or |
| 451 | .B s3 |
| 452 | for the configuration ROM and |
| 453 | .B bprom |
| 454 | or |
| 455 | .B bios |
| 456 | for the BIOS ROM. If more than one card supported by the ogp_spi programmer |
| 457 | is installed in your system, you have to specify the PCI address of the card |
| 458 | you want to use with the |
| 459 | .B pci= |
| 460 | parameter as explained in the |
| 461 | .B nic3com |
| 462 | section above. |
| 463 | .sp |
| 464 | More information about the hardware is available at |
| 465 | http://wiki.opengraphics.org |
Peter Stuge | 42688e5 | 2009-01-26 02:20:56 +0000 | [diff] [blame] | 466 | .SH EXIT STATUS |
| 467 | flashrom exits with 0 on success, 1 on most failures but with 2 if /dev/mem |
| 468 | (/dev/xsvc on Solaris) can not be opened and with 3 if a call to mmap() fails. |
Carl-Daniel Hailfinger | b63b067 | 2010-07-02 17:12:50 +0000 | [diff] [blame] | 469 | .SH REQUIREMENTS |
| 470 | flashrom needs different access permissions for different programmers. |
| 471 | .sp |
| 472 | .B internal |
| 473 | needs raw memory access, PCI configuration space access, raw I/O port |
| 474 | access (x86) and MSR access (x86). |
| 475 | .sp |
| 476 | .B it87spi |
| 477 | needs raw I/O port access (x86). |
| 478 | .sp |
| 479 | .BR nic3com ", " nicrealtek ", " nicsmc1211 " and " nicnatsemi " |
| 480 | need PCI configuration space read access and raw I/O port access. |
| 481 | .sp |
| 482 | .B atahpt |
| 483 | needs PCI configuration space access and raw I/O port access. |
| 484 | .sp |
| 485 | .BR gfxnvidia " and " drkaiser |
| 486 | need PCI configuration space access and raw memory access. |
| 487 | .sp |
Carl-Daniel Hailfinger | e7fdd6e | 2010-07-21 10:26:01 +0000 | [diff] [blame] | 488 | .B rayer_spi |
| 489 | needs raw I/O port access. |
| 490 | .sp |
Carl-Daniel Hailfinger | b63b067 | 2010-07-02 17:12:50 +0000 | [diff] [blame] | 491 | .B satasii |
| 492 | needs PCI configuration space read access and raw memory access. |
| 493 | .sp |
| 494 | .B serprog |
| 495 | needs TCP access to the network or userspace access to a serial port. |
| 496 | .sp |
| 497 | .B buspirate_spi |
| 498 | needs userspace access to a serial port. |
| 499 | .sp |
| 500 | .BR dediprog " and " ft2232_spi |
| 501 | need access to the USB device via libusb. |
| 502 | .sp |
| 503 | .B dummy |
| 504 | needs no access permissions at all. |
| 505 | .sp |
| 506 | .BR internal ", " it87spi ", " nic3com ", " nicrealtek ", " nicsmc1211 ", " |
| 507 | .BR nicnatsemi ", " "gfxnvidia" ", " drkaiser ", " satasii " and " atahpt |
| 508 | have to be run as superuser/root, and need additional raw access permission. |
| 509 | .sp |
| 510 | .BR serprog ", " buspirate_spi ", " dediprog " and " ft2232_spi |
| 511 | can be run as normal user on most operating systems if appropriate device |
| 512 | permissions are set. |
| 513 | .sp |
Mark Marshall | 90021f2 | 2010-12-03 14:48:11 +0000 | [diff] [blame] | 514 | .B ogp |
| 515 | needs PCI configuration space read access and raw memory access. |
| 516 | .sp |
Carl-Daniel Hailfinger | b63b067 | 2010-07-02 17:12:50 +0000 | [diff] [blame] | 517 | On OpenBSD, you can obtain raw access permission by setting |
| 518 | securelevel=-1 in /etc/rc.securelevel and rebooting, or rebooting into single |
| 519 | user mode. |
Stefan Reinauer | 261144c | 2006-07-27 23:29:02 +0000 | [diff] [blame] | 520 | .SH BUGS |
Uwe Hermann | 42eb17f | 2008-01-18 17:48:51 +0000 | [diff] [blame] | 521 | Please report any bugs at |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 522 | .sp |
| 523 | .B " http://www.flashrom.org/trac/flashrom/newticket" |
| 524 | .sp |
Carl-Daniel Hailfinger | 2702376 | 2010-04-28 15:22:14 +0000 | [diff] [blame] | 525 | or on the flashrom mailing list at |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 526 | .B "<flashrom@flashrom.org>" |
| 527 | .sp |
| 528 | We recommend to subscribe first at |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 529 | .sp |
| 530 | .B " http://www.flashrom.org/mailman/listinfo/flashrom" |
Carl-Daniel Hailfinger | 2702376 | 2010-04-28 15:22:14 +0000 | [diff] [blame] | 531 | .sp |
| 532 | Using flashrom on laptops is dangerous and may easily make your hardware |
| 533 | unusable unless you can desolder the flash chip and have a full flash chip |
| 534 | backup. This is caused by the embedded controller (EC) present in many laptops, |
| 535 | which interacts badly with any flash attempts. This is a hardware limitation |
| 536 | and flashrom will attempt to detect it and abort immediately for safety reasons. |
Stefan Reinauer | 261144c | 2006-07-27 23:29:02 +0000 | [diff] [blame] | 537 | .SH LICENCE |
| 538 | .B flashrom |
Carl-Daniel Hailfinger | 851ecf2 | 2009-01-08 04:56:59 +0000 | [diff] [blame] | 539 | is covered by the GNU General Public License (GPL), version 2. Some files are |
| 540 | additionally available under the GPL (version 2, or any later version). |
Stefan Reinauer | 261144c | 2006-07-27 23:29:02 +0000 | [diff] [blame] | 541 | .SH COPYRIGHT |
Stefan Reinauer | 261144c | 2006-07-27 23:29:02 +0000 | [diff] [blame] | 542 | .br |
Carl-Daniel Hailfinger | 851ecf2 | 2009-01-08 04:56:59 +0000 | [diff] [blame] | 543 | Please see the individual files. |
Stefan Reinauer | 261144c | 2006-07-27 23:29:02 +0000 | [diff] [blame] | 544 | .SH AUTHORS |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 545 | Andrew Morgan |
Carl-Daniel Hailfinger | 3e85442 | 2010-10-06 23:03:21 +0000 | [diff] [blame] | 546 | .br |
Carl-Daniel Hailfinger | 851ecf2 | 2009-01-08 04:56:59 +0000 | [diff] [blame] | 547 | Carl-Daniel Hailfinger |
| 548 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 549 | Claus Gindhart |
Carl-Daniel Hailfinger | 851ecf2 | 2009-01-08 04:56:59 +0000 | [diff] [blame] | 550 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 551 | David Borg |
Carl-Daniel Hailfinger | 3e85442 | 2010-10-06 23:03:21 +0000 | [diff] [blame] | 552 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 553 | David Hendricks |
Carl-Daniel Hailfinger | 3e85442 | 2010-10-06 23:03:21 +0000 | [diff] [blame] | 554 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 555 | Dominik Geyer |
Carl-Daniel Hailfinger | 851ecf2 | 2009-01-08 04:56:59 +0000 | [diff] [blame] | 556 | .br |
Stefan Reinauer | edc6188 | 2010-01-03 14:40:30 +0000 | [diff] [blame] | 557 | Eric Biederman |
Carl-Daniel Hailfinger | 851ecf2 | 2009-01-08 04:56:59 +0000 | [diff] [blame] | 558 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 559 | Giampiero Giancipoli |
Carl-Daniel Hailfinger | 851ecf2 | 2009-01-08 04:56:59 +0000 | [diff] [blame] | 560 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 561 | Helge Wagner |
Carl-Daniel Hailfinger | 3e85442 | 2010-10-06 23:03:21 +0000 | [diff] [blame] | 562 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 563 | Idwer Vollering |
Carl-Daniel Hailfinger | 3e85442 | 2010-10-06 23:03:21 +0000 | [diff] [blame] | 564 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 565 | Joe Bao |
Carl-Daniel Hailfinger | 851ecf2 | 2009-01-08 04:56:59 +0000 | [diff] [blame] | 566 | .br |
Stefan Tauner | c0aaf95 | 2011-05-19 02:58:17 +0000 | [diff] [blame] | 567 | Joerg Fischer |
Carl-Daniel Hailfinger | 3e85442 | 2010-10-06 23:03:21 +0000 | [diff] [blame] | 568 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 569 | Joshua Roys |
Carl-Daniel Hailfinger | 3e85442 | 2010-10-06 23:03:21 +0000 | [diff] [blame] | 570 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 571 | Luc Verhaegen |
Carl-Daniel Hailfinger | 851ecf2 | 2009-01-08 04:56:59 +0000 | [diff] [blame] | 572 | .br |
Carl-Daniel Hailfinger | 451dc80 | 2009-05-01 11:00:39 +0000 | [diff] [blame] | 573 | Li-Ta Lo |
| 574 | .br |
Mark Marshall | 90021f2 | 2010-12-03 14:48:11 +0000 | [diff] [blame] | 575 | Mark Marshall |
| 576 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 577 | Markus Boas |
Carl-Daniel Hailfinger | 851ecf2 | 2009-01-08 04:56:59 +0000 | [diff] [blame] | 578 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 579 | Mattias Mattsson |
Carl-Daniel Hailfinger | 3e85442 | 2010-10-06 23:03:21 +0000 | [diff] [blame] | 580 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 581 | Michael Karcher |
Carl-Daniel Hailfinger | 8841d3e | 2010-05-15 15:04:37 +0000 | [diff] [blame] | 582 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 583 | Nikolay Petukhov |
Carl-Daniel Hailfinger | 851ecf2 | 2009-01-08 04:56:59 +0000 | [diff] [blame] | 584 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 585 | Patrick Georgi |
Carl-Daniel Hailfinger | 3e85442 | 2010-10-06 23:03:21 +0000 | [diff] [blame] | 586 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 587 | Peter Lemenkov |
Carl-Daniel Hailfinger | 3e85442 | 2010-10-06 23:03:21 +0000 | [diff] [blame] | 588 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 589 | Peter Stuge |
Carl-Daniel Hailfinger | 851ecf2 | 2009-01-08 04:56:59 +0000 | [diff] [blame] | 590 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 591 | Reinder E.N. de Haan |
Carl-Daniel Hailfinger | 851ecf2 | 2009-01-08 04:56:59 +0000 | [diff] [blame] | 592 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 593 | Ronald G. Minnich |
Carl-Daniel Hailfinger | 851ecf2 | 2009-01-08 04:56:59 +0000 | [diff] [blame] | 594 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 595 | Ronald Hoogenboom |
Stefan Reinauer | 261144c | 2006-07-27 23:29:02 +0000 | [diff] [blame] | 596 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 597 | Sean Nelson |
Carl-Daniel Hailfinger | 8841d3e | 2010-05-15 15:04:37 +0000 | [diff] [blame] | 598 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 599 | Stefan Reinauer |
Stefan Reinauer | 261144c | 2006-07-27 23:29:02 +0000 | [diff] [blame] | 600 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 601 | Stefan Wildemann |
Carl-Daniel Hailfinger | 851ecf2 | 2009-01-08 04:56:59 +0000 | [diff] [blame] | 602 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 603 | Stephan Guilloux |
Carl-Daniel Hailfinger | 3e85442 | 2010-10-06 23:03:21 +0000 | [diff] [blame] | 604 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 605 | Steven James |
Carl-Daniel Hailfinger | 851ecf2 | 2009-01-08 04:56:59 +0000 | [diff] [blame] | 606 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 607 | Uwe Hermann |
Carl-Daniel Hailfinger | 851ecf2 | 2009-01-08 04:56:59 +0000 | [diff] [blame] | 608 | .br |
Stefan Reinauer | edc6188 | 2010-01-03 14:40:30 +0000 | [diff] [blame] | 609 | Wang Qingpei |
Carl-Daniel Hailfinger | 851ecf2 | 2009-01-08 04:56:59 +0000 | [diff] [blame] | 610 | .br |
Stefan Reinauer | edc6188 | 2010-01-03 14:40:30 +0000 | [diff] [blame] | 611 | Yinghai Lu |
Stefan Reinauer | f8337dd | 2006-08-03 10:49:09 +0000 | [diff] [blame] | 612 | .br |
Carl-Daniel Hailfinger | ef69783 | 2010-10-07 22:21:45 +0000 | [diff] [blame] | 613 | some others, please see the flashrom svn changelog for details. |
| 614 | .br |
| 615 | All authors can be reached via e-mail at <flashrom@flashrom.org>. |
Stefan Reinauer | 261144c | 2006-07-27 23:29:02 +0000 | [diff] [blame] | 616 | .PP |
Uwe Hermann | 9ff514d | 2010-06-07 19:41:25 +0000 | [diff] [blame] | 617 | This manual page was written by Uwe Hermann <uwe@hermann-uwe.de> |
| 618 | and Carl-Daniel Hailfinger. |
Uwe Hermann | 42eb17f | 2008-01-18 17:48:51 +0000 | [diff] [blame] | 619 | It is licensed under the terms of the GNU GPL (version 2 or later). |