blob: 449103d299aa522ab890c287cc9d71737285805a [file] [log] [blame]
Uwe Hermann2dc5f422006-11-20 20:32:35 +00001-------------------------------------------------------------------------------
Peter Stuge44dd3042009-04-20 12:34:30 +00002flashrom README
Uwe Hermann2dc5f422006-11-20 20:32:35 +00003-------------------------------------------------------------------------------
Ronald G. Minnich1e5003f2002-04-10 18:02:07 +00004
Carl-Daniel Hailfinger1ebf8452009-08-18 23:50:14 +00005flashrom is a utility for detecting, reading, writing, verifying and erasing
6flash chips. It is often used to flash BIOS/EFI/coreboot/firmware images
7in-system using a supported mainboard, but it also supports flashing of network
Uwe Hermannc7e8a0c2009-05-19 14:14:21 +00008cards (NICs), SATA controller cards, and other external devices which can
9program flash chips.
Uwe Hermanne74b9f82009-04-10 14:41:29 +000010
Stefan Tauner23e10b82016-01-23 16:16:49 +000011It supports a wide range of flash chips (most commonly found in SOIC8, DIP8,
12SOIC16, WSON8, PLCC32, DIP32, TSOP32, and TSOP40 packages), which use various
13protocols such as LPC, FWH, parallel flash, or SPI.
Uwe Hermann42eb17f2008-01-18 17:48:51 +000014
Stefan Tauner23e10b82016-01-23 16:16:49 +000015Do not use flashrom on laptops (yet)! The embedded controller (EC) present in
16many laptops might interact badly with any attempts to communicate with the
17flash chip and may brick your laptop.
Carl-Daniel Hailfinger27023762010-04-28 15:22:14 +000018
19Please make a backup of your flash chip before writing to it.
20
Stefan Reinauer009c51b2010-01-03 23:50:28 +000021Please see the flashrom(8) manpage.
22
Uwe Hermann2dc5f422006-11-20 20:32:35 +000023
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +000024Packaging
25---------
26
Nico Huber68917092017-11-13 20:12:58 +010027To package flashrom and remove dependencies on Git, either use
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +000028make export
29or
30make tarball
31
Nico Huber68917092017-11-13 20:12:58 +010032'make export' will export all flashrom files from the Git repository at
33revision HEAD into a directory named "$EXPORTDIR/flashrom-$RELEASENAME"
34and will additionally add a "versioninfo.inc" file in that directory to
35contain the Git revision of the exported tree and a date for the manual
36page.
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +000037
Nico Huber68917092017-11-13 20:12:58 +010038'make tarball' will simply tar up the result of make export and compress
39it with bzip2.
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +000040
Nico Huber68917092017-11-13 20:12:58 +010041The snapshot tarballs are the result of 'make tarball' and require no
42further processing.
Carl-Daniel Hailfingera23041c2009-06-12 14:49:10 +000043
44
Uwe Hermannd1129ac2009-05-28 15:07:42 +000045Build Instructions
Stefan Reinauer06b2c4d2005-12-01 10:51:08 +000046------------------
47
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +000048To build flashrom you need to install the following software:
49
50 * pciutils+libpci (if you want support for mainboard or PCI device flashing)
James Lairdc60de0e2013-03-27 13:00:23 +000051 * libusb (if you want FT2232, Dediprog or USB-Blaster support)
52 * libftdi (if you want FT2232 or USB-Blaster support)
Stefan Reinauer06b2c4d2005-12-01 10:51:08 +000053
Idwer Vollering5e410de2009-05-03 23:33:05 +000054Linux et al:
Uwe Hermann87c07932009-05-05 16:15:46 +000055
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +000056 * pciutils / libpci
Uwe Hermann87c07932009-05-05 16:15:46 +000057 * pciutils-devel / pciutils-dev / libpci-dev
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000058 * zlib-devel / zlib1g-dev (needed if libpci was compiled with libz support)
Stefan Reinauer06b2c4d2005-12-01 10:51:08 +000059
Idwer Vollering5e410de2009-05-03 23:33:05 +000060On FreeBSD, you need the following ports:
Idwer Vollering5e410de2009-05-03 23:33:05 +000061
Uwe Hermann87c07932009-05-05 16:15:46 +000062 * devel/gmake
63 * devel/libpci
Idwer Vollering5e410de2009-05-03 23:33:05 +000064
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +000065On OpenBSD, you need the following ports:
66
67 * devel/gmake
68 * sysutils/pciutils
69
Uwe Hermann87c07932009-05-05 16:15:46 +000070To compile on Linux, use:
Carl-Daniel Hailfinger9abf5292009-05-01 16:34:32 +000071
Uwe Hermann87c07932009-05-05 16:15:46 +000072 make
73
Stefan Tauner8d21ff12015-01-10 09:33:06 +000074To compile on FreeBSD, OpenBSD or DragonFly BSD, use:
Uwe Hermann87c07932009-05-05 16:15:46 +000075
76 gmake
77
Carl-Daniel Hailfinger10572fa2009-08-17 16:30:53 +000078To compile on Nexenta, use:
79
80 make
81
Uwe Hermann87c07932009-05-05 16:15:46 +000082To compile on Solaris, use:
83
Carl-Daniel Hailfinger10572fa2009-08-17 16:30:53 +000084 gmake LDFLAGS="-L$pathtolibpci" CC="gcc -I$pathtopciheaders" CFLAGS=-O2
Uwe Hermann87c07932009-05-05 16:15:46 +000085
Stefan Tauner8d21ff12015-01-10 09:33:06 +000086To compile on NetBSD (with pciutils, libftdi, libusb installed in /usr/pkg/), use:
Carl-Daniel Hailfingerb63b0672010-07-02 17:12:50 +000087
88 gmake
89
Carl-Daniel Hailfinger9abf5292009-05-01 16:34:32 +000090To compile and run on Darwin/Mac OS X:
Uwe Hermann87c07932009-05-05 16:15:46 +000091
Carl-Daniel Hailfingerf992c192010-10-06 23:16:10 +000092 Install DirectHW from coresystems GmbH.
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000093 DirectHW is available at http://www.coreboot.org/DirectHW .
Carl-Daniel Hailfinger9abf5292009-05-01 16:34:32 +000094
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +000095To cross-compile on Linux for DOS:
96
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +000097 Get packages of the DJGPP cross compiler and install them:
98 djgpp-filesystem djgpp-gcc djgpp-cpp djgpp-runtime djgpp-binutils
99 As an alternative, the DJGPP web site offers packages for download as well:
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000100 djcross-binutils-2.19.1-10ap.i386.rpm
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000101 djcross-gcc-4.3.2-8ap.i686.rpm
Idwer Vollering9c31b502010-10-05 13:31:12 +0000102 djcrx-2.04pre_20090725-13ap.i386.rpm
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000103 The cross toolchain packages for your distribution may have slightly different
104 names (look for packages named *djgpp*).
Stefan Tauner449abe22013-09-11 23:34:57 +0000105
106 You will need the following library source trees containing their compiled
107 static libraries either in the parent directory of the flashrom source or
Stefan Taunerbe62d3f2015-01-10 09:32:44 +0000108 specify the base folder on compile time with the LIBS_BASE parameter.
Stefan Tauner449abe22013-09-11 23:34:57 +0000109 The default as described above is equal to calling
Stefan Taunerbe62d3f2015-01-10 09:32:44 +0000110 'make djgpp-dos LIBS_BASE=..'
Stefan Tauner449abe22013-09-11 23:34:57 +0000111
112 To get and build said libraries...
113 Download pciutils 3.1.5 and apply http://flashrom.org/File:Pciutils.patch.gz
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000114 Compile pciutils, see README.DJGPP for instructions.
Stefan Tauner449abe22013-09-11 23:34:57 +0000115 Download and compile http://flashrom.org/File:Libgetopt.tar.gz
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000116 Enter the flashrom directory.
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000117 Run either (change settings where appropriate)
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000118 make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip
Carl-Daniel Hailfinger50415d22010-03-21 14:54:57 +0000119 or (above settings hardcoded)
120 make djgpp-dos
Stefan Tauner449abe22013-09-11 23:34:57 +0000121 To run flashrom.exe, download http://flashrom.org/File:Csdpmi7b.zip and
122 unpack CWSDPMI.EXE into the current directory or one in PATH.
Stefan Reinauer06b2c4d2005-12-01 10:51:08 +0000123
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000124To cross-compile on Linux for Windows:
125
126 Get packages of the MinGW cross compiler and install them:
127 mingw32-filesystem mingw32-cross-cpp mingw32-cross-binutils mingw32-cross-gcc
128 mingw32-runtime mingw32-headers
129 The cross toolchain packages for your distribution may have slightly different
130 names (look for packages named *mingw*).
131 PCI-based programmers (internal etc.) are not supported on Windows.
132 Run (change CC= and STRIP= settings where appropriate)
133 make CC=i686-w64-mingw32-gcc STRIP=i686-w64-mingw32-strip
134
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000135Processor architecture dependent features:
136
Carl-Daniel Hailfinger60d9bd22012-08-09 23:34:41 +0000137 On non-x86 architectures a few programmers don't work (yet) because they
138 use port-based I/O which is not directly available on non-x86. Those
139 programmers will be disabled automatically if you run "make".
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000140
Stefan Tauner0be072c2016-03-13 15:16:30 +0000141Compiler quirks:
142
143If you are using clang and if you want to enable only one driver, you may hit an
144overzealous compiler warning from clang. Compile with "make WARNERROR=no" to
145force it to continue and enjoy.
146
Uwe Hermannd1129ac2009-05-28 15:07:42 +0000147Installation
148------------
149
150In order to install flashrom and the manpage into /usr/local, type:
151
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000152 make install
Uwe Hermannd1129ac2009-05-28 15:07:42 +0000153
154For installation in a different directory use DESTDIR, e.g. like this:
155
Carl-Daniel Hailfingera472b8b2009-10-03 17:08:02 +0000156 make DESTDIR=/usr install
157
158If you have insufficient permissions for the destination directory, use sudo
159by adding sudo in front of the commands above.
Uwe Hermannd1129ac2009-05-28 15:07:42 +0000160
161
Joerg Mayer7221d5f2009-08-24 13:24:52 +0000162Contact
Uwe Hermanne94dbf22009-05-22 13:18:38 +0000163-------
164
165The official flashrom website is:
166
Stefan Reinauer22ea8cd2009-07-30 13:32:26 +0000167 http://www.flashrom.org/
Uwe Hermannb6d28322006-12-04 08:15:47 +0000168
Joerg Mayer7221d5f2009-08-24 13:24:52 +0000169The IRC channel is
170
171 #flashrom at irc.freenode.net
172
Uwe Hermann4e3d0b32010-03-25 23:18:41 +0000173The mailing list address is
Joerg Mayer7221d5f2009-08-24 13:24:52 +0000174
175 flashrom@flashrom.org