Uwe Hermann | 2dc5f42 | 2006-11-20 20:32:35 +0000 | [diff] [blame] | 1 | ------------------------------------------------------------------------------- |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame^] | 2 | flashprog README |
Uwe Hermann | 2dc5f42 | 2006-11-20 20:32:35 +0000 | [diff] [blame] | 3 | ------------------------------------------------------------------------------- |
Ronald G. Minnich | 1e5003f | 2002-04-10 18:02:07 +0000 | [diff] [blame] | 4 | |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame^] | 5 | flashprog is a utility for detecting, reading, writing, verifying and erasing |
Carl-Daniel Hailfinger | 1ebf845 | 2009-08-18 23:50:14 +0000 | [diff] [blame] | 6 | flash chips. It is often used to flash BIOS/EFI/coreboot/firmware images |
| 7 | in-system using a supported mainboard, but it also supports flashing of network |
Uwe Hermann | c7e8a0c | 2009-05-19 14:14:21 +0000 | [diff] [blame] | 8 | cards (NICs), SATA controller cards, and other external devices which can |
| 9 | program flash chips. |
Uwe Hermann | e74b9f8 | 2009-04-10 14:41:29 +0000 | [diff] [blame] | 10 | |
Stefan Tauner | 23e10b8 | 2016-01-23 16:16:49 +0000 | [diff] [blame] | 11 | It supports a wide range of flash chips (most commonly found in SOIC8, DIP8, |
| 12 | SOIC16, WSON8, PLCC32, DIP32, TSOP32, and TSOP40 packages), which use various |
| 13 | protocols such as LPC, FWH, parallel flash, or SPI. |
Uwe Hermann | 42eb17f | 2008-01-18 17:48:51 +0000 | [diff] [blame] | 14 | |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame^] | 15 | Do not use flashprog on laptops (yet)! The embedded controller (EC) present in |
Stefan Tauner | 23e10b8 | 2016-01-23 16:16:49 +0000 | [diff] [blame] | 16 | many laptops might interact badly with any attempts to communicate with the |
| 17 | flash chip and may brick your laptop. |
Carl-Daniel Hailfinger | 2702376 | 2010-04-28 15:22:14 +0000 | [diff] [blame] | 18 | |
| 19 | Please make a backup of your flash chip before writing to it. |
| 20 | |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame^] | 21 | Please see the flashprog(8) manpage. |
Stefan Reinauer | 009c51b | 2010-01-03 23:50:28 +0000 | [diff] [blame] | 22 | |
Uwe Hermann | 2dc5f42 | 2006-11-20 20:32:35 +0000 | [diff] [blame] | 23 | |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 24 | Packaging |
| 25 | --------- |
| 26 | |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame^] | 27 | To package flashprog and remove dependencies on Git, either use |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 28 | make export |
| 29 | or |
| 30 | make tarball |
| 31 | |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame^] | 32 | 'make export' will export all flashprog files from the Git repository at |
| 33 | revision HEAD into a directory named "$EXPORTDIR/flashprog-$RELEASENAME" |
Nico Huber | 6891709 | 2017-11-13 20:12:58 +0100 | [diff] [blame] | 34 | and will additionally add a "versioninfo.inc" file in that directory to |
| 35 | contain the Git revision of the exported tree and a date for the manual |
| 36 | page. |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 37 | |
Nico Huber | 6891709 | 2017-11-13 20:12:58 +0100 | [diff] [blame] | 38 | 'make tarball' will simply tar up the result of make export and compress |
| 39 | it with bzip2. |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 40 | |
Nico Huber | 6891709 | 2017-11-13 20:12:58 +0100 | [diff] [blame] | 41 | The snapshot tarballs are the result of 'make tarball' and require no |
| 42 | further processing. |
Carl-Daniel Hailfinger | a23041c | 2009-06-12 14:49:10 +0000 | [diff] [blame] | 43 | |
| 44 | |
Uwe Hermann | d1129ac | 2009-05-28 15:07:42 +0000 | [diff] [blame] | 45 | Build Instructions |
Stefan Reinauer | 06b2c4d | 2005-12-01 10:51:08 +0000 | [diff] [blame] | 46 | ------------------ |
| 47 | |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame^] | 48 | To build flashprog you need to install the following software: |
Carl-Daniel Hailfinger | 9e3a6c4 | 2010-10-08 12:40:09 +0000 | [diff] [blame] | 49 | |
| 50 | * pciutils+libpci (if you want support for mainboard or PCI device flashing) |
James Laird | c60de0e | 2013-03-27 13:00:23 +0000 | [diff] [blame] | 51 | * libusb (if you want FT2232, Dediprog or USB-Blaster support) |
| 52 | * libftdi (if you want FT2232 or USB-Blaster support) |
Marc Schink | 3578ec6 | 2016-03-17 16:23:03 +0100 | [diff] [blame] | 53 | * libjaylink (if you want support for SEGGER J-Link and compatible devices) |
Stefan Reinauer | 06b2c4d | 2005-12-01 10:51:08 +0000 | [diff] [blame] | 54 | |
Idwer Vollering | 5e410de | 2009-05-03 23:33:05 +0000 | [diff] [blame] | 55 | Linux et al: |
Uwe Hermann | 87c0793 | 2009-05-05 16:15:46 +0000 | [diff] [blame] | 56 | |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 57 | * pciutils / libpci |
Uwe Hermann | 87c0793 | 2009-05-05 16:15:46 +0000 | [diff] [blame] | 58 | * pciutils-devel / pciutils-dev / libpci-dev |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 59 | * zlib-devel / zlib1g-dev (needed if libpci was compiled with libz support) |
Steve Markgraf | 6189947 | 2023-01-09 23:06:52 +0100 | [diff] [blame] | 60 | * libgpiod-dev (if you want support for Linux GPIO devices) |
Stefan Reinauer | 06b2c4d | 2005-12-01 10:51:08 +0000 | [diff] [blame] | 61 | |
Idwer Vollering | 5e410de | 2009-05-03 23:33:05 +0000 | [diff] [blame] | 62 | On FreeBSD, you need the following ports: |
Idwer Vollering | 5e410de | 2009-05-03 23:33:05 +0000 | [diff] [blame] | 63 | |
Uwe Hermann | 87c0793 | 2009-05-05 16:15:46 +0000 | [diff] [blame] | 64 | * devel/gmake |
| 65 | * devel/libpci |
Idwer Vollering | 5e410de | 2009-05-03 23:33:05 +0000 | [diff] [blame] | 66 | |
Carl-Daniel Hailfinger | b63b067 | 2010-07-02 17:12:50 +0000 | [diff] [blame] | 67 | On OpenBSD, you need the following ports: |
| 68 | |
| 69 | * devel/gmake |
| 70 | * sysutils/pciutils |
| 71 | |
Uwe Hermann | 87c0793 | 2009-05-05 16:15:46 +0000 | [diff] [blame] | 72 | To compile on Linux, use: |
Carl-Daniel Hailfinger | 9abf529 | 2009-05-01 16:34:32 +0000 | [diff] [blame] | 73 | |
Uwe Hermann | 87c0793 | 2009-05-05 16:15:46 +0000 | [diff] [blame] | 74 | make |
| 75 | |
Stefan Tauner | 8d21ff1 | 2015-01-10 09:33:06 +0000 | [diff] [blame] | 76 | To compile on FreeBSD, OpenBSD or DragonFly BSD, use: |
Uwe Hermann | 87c0793 | 2009-05-05 16:15:46 +0000 | [diff] [blame] | 77 | |
| 78 | gmake |
| 79 | |
Carl-Daniel Hailfinger | 10572fa | 2009-08-17 16:30:53 +0000 | [diff] [blame] | 80 | To compile on Nexenta, use: |
| 81 | |
| 82 | make |
| 83 | |
Uwe Hermann | 87c0793 | 2009-05-05 16:15:46 +0000 | [diff] [blame] | 84 | To compile on Solaris, use: |
| 85 | |
Carl-Daniel Hailfinger | 10572fa | 2009-08-17 16:30:53 +0000 | [diff] [blame] | 86 | gmake LDFLAGS="-L$pathtolibpci" CC="gcc -I$pathtopciheaders" CFLAGS=-O2 |
Uwe Hermann | 87c0793 | 2009-05-05 16:15:46 +0000 | [diff] [blame] | 87 | |
Stefan Tauner | 8d21ff1 | 2015-01-10 09:33:06 +0000 | [diff] [blame] | 88 | To compile on NetBSD (with pciutils, libftdi, libusb installed in /usr/pkg/), use: |
Carl-Daniel Hailfinger | b63b067 | 2010-07-02 17:12:50 +0000 | [diff] [blame] | 89 | |
| 90 | gmake |
| 91 | |
Carl-Daniel Hailfinger | 9abf529 | 2009-05-01 16:34:32 +0000 | [diff] [blame] | 92 | To compile and run on Darwin/Mac OS X: |
Uwe Hermann | 87c0793 | 2009-05-05 16:15:46 +0000 | [diff] [blame] | 93 | |
Carl-Daniel Hailfinger | f992c19 | 2010-10-06 23:16:10 +0000 | [diff] [blame] | 94 | Install DirectHW from coresystems GmbH. |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 95 | DirectHW is available at http://www.coreboot.org/DirectHW . |
Carl-Daniel Hailfinger | 9abf529 | 2009-05-01 16:34:32 +0000 | [diff] [blame] | 96 | |
Carl-Daniel Hailfinger | 50415d2 | 2010-03-21 14:54:57 +0000 | [diff] [blame] | 97 | To cross-compile on Linux for DOS: |
| 98 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 99 | Get packages of the DJGPP cross compiler and install them: |
| 100 | djgpp-filesystem djgpp-gcc djgpp-cpp djgpp-runtime djgpp-binutils |
| 101 | As an alternative, the DJGPP web site offers packages for download as well: |
Rudolf Marek | 25fde40 | 2017-12-29 16:30:49 +0100 | [diff] [blame] | 102 | djcross-binutils-2.29.1-1ap.x86_64.rpm |
| 103 | djcross-gcc-7.2.0-1ap.x86_64.rpm |
| 104 | djcrx-2.05-5.x86_64.rpm |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 105 | The cross toolchain packages for your distribution may have slightly different |
| 106 | names (look for packages named *djgpp*). |
Stefan Tauner | 449abe2 | 2013-09-11 23:34:57 +0000 | [diff] [blame] | 107 | |
Rudolf Marek | 25fde40 | 2017-12-29 16:30:49 +0100 | [diff] [blame] | 108 | Alternatively, you could use a script to build it from scratch: |
| 109 | https://github.com/andrewwutw/build-djgpp |
Stefan Tauner | 449abe2 | 2013-09-11 23:34:57 +0000 | [diff] [blame] | 110 | |
Rudolf Marek | 25fde40 | 2017-12-29 16:30:49 +0100 | [diff] [blame] | 111 | You will need the libpci and libgetopt library source trees and |
| 112 | their compiled static libraries and header files installed in some |
| 113 | directory say libpci-libgetopt/, which will be later specified with |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame^] | 114 | LIBS_BASE parameter during flashprog compilation. Easiest way to |
| 115 | handle it is to put pciutils, libgetopt and flashprog directories |
Rudolf Marek | 25fde40 | 2017-12-29 16:30:49 +0100 | [diff] [blame] | 116 | in one subdirectory. There will be an extra subdirectory libpci-libgetopt |
| 117 | created, which will contain compiled libpci and libgetopt. |
| 118 | |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame^] | 119 | Download pciutils 3.5.6 and apply http://flashprog.org/File:Pciutils-3.5.6.patch.gz |
Rudolf Marek | 25fde40 | 2017-12-29 16:30:49 +0100 | [diff] [blame] | 120 | Compile pciutils, using following command line: |
| 121 | |
| 122 | make ZLIB=no DNS=no HOST=i386-djgpp-djgpp CROSS_COMPILE=i586-pc-msdosdjgpp- \ |
| 123 | PREFIX=/ DESTDIR=$PWD/../libpci-libgetopt \ |
| 124 | STRIP="--strip-program=i586-pc-msdosdjgpp-strip -s" install install-lib |
| 125 | |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame^] | 126 | Download and compile with 'make' http://flashprog.org/File:Libgetopt.tar.gz |
Rudolf Marek | 25fde40 | 2017-12-29 16:30:49 +0100 | [diff] [blame] | 127 | |
| 128 | Copy the libgetopt.a to ../libpci-libgetopt/lib and |
| 129 | getopt.h to ../libpci-libgetopt/include |
| 130 | |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame^] | 131 | Enter the flashprog directory. |
Rudolf Marek | 25fde40 | 2017-12-29 16:30:49 +0100 | [diff] [blame] | 132 | |
Nico Huber | da09599 | 2023-03-17 13:02:31 +0000 | [diff] [blame] | 133 | make CC=i586-pc-msdosdjgpp-gcc STRIP=i586-pc-msdosdjgpp-strip \ |
| 134 | LIBS_BASE=../libpci-libgetopt/ HAS_LIBPCI=yes CONFIG_LIBPCI_LDFLAGS=-lpci \ |
| 135 | strip |
Rudolf Marek | 25fde40 | 2017-12-29 16:30:49 +0100 | [diff] [blame] | 136 | |
| 137 | If you like, you can compress the resulting executable with UPX: |
| 138 | |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame^] | 139 | upx -9 flashprog.exe |
Rudolf Marek | 25fde40 | 2017-12-29 16:30:49 +0100 | [diff] [blame] | 140 | |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame^] | 141 | To run flashprog.exe, download http://flashprog.org/File:Csdpmi7b.zip and |
Stefan Tauner | 449abe2 | 2013-09-11 23:34:57 +0000 | [diff] [blame] | 142 | unpack CWSDPMI.EXE into the current directory or one in PATH. |
Stefan Reinauer | 06b2c4d | 2005-12-01 10:51:08 +0000 | [diff] [blame] | 143 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 144 | To cross-compile on Linux for Windows: |
| 145 | |
| 146 | Get packages of the MinGW cross compiler and install them: |
| 147 | mingw32-filesystem mingw32-cross-cpp mingw32-cross-binutils mingw32-cross-gcc |
| 148 | mingw32-runtime mingw32-headers |
| 149 | The cross toolchain packages for your distribution may have slightly different |
| 150 | names (look for packages named *mingw*). |
| 151 | PCI-based programmers (internal etc.) are not supported on Windows. |
| 152 | Run (change CC= and STRIP= settings where appropriate) |
| 153 | make CC=i686-w64-mingw32-gcc STRIP=i686-w64-mingw32-strip |
| 154 | |
Carl-Daniel Hailfinger | 9e3a6c4 | 2010-10-08 12:40:09 +0000 | [diff] [blame] | 155 | Processor architecture dependent features: |
| 156 | |
Carl-Daniel Hailfinger | 60d9bd2 | 2012-08-09 23:34:41 +0000 | [diff] [blame] | 157 | On non-x86 architectures a few programmers don't work (yet) because they |
| 158 | use port-based I/O which is not directly available on non-x86. Those |
| 159 | programmers will be disabled automatically if you run "make". |
Carl-Daniel Hailfinger | 9e3a6c4 | 2010-10-08 12:40:09 +0000 | [diff] [blame] | 160 | |
Stefan Tauner | 0be072c | 2016-03-13 15:16:30 +0000 | [diff] [blame] | 161 | Compiler quirks: |
| 162 | |
| 163 | If you are using clang and if you want to enable only one driver, you may hit an |
| 164 | overzealous compiler warning from clang. Compile with "make WARNERROR=no" to |
| 165 | force it to continue and enjoy. |
| 166 | |
Uwe Hermann | d1129ac | 2009-05-28 15:07:42 +0000 | [diff] [blame] | 167 | Installation |
| 168 | ------------ |
| 169 | |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame^] | 170 | In order to install flashprog and the manpage into /usr/local, type: |
Uwe Hermann | d1129ac | 2009-05-28 15:07:42 +0000 | [diff] [blame] | 171 | |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 172 | make install |
Uwe Hermann | d1129ac | 2009-05-28 15:07:42 +0000 | [diff] [blame] | 173 | |
| 174 | For installation in a different directory use DESTDIR, e.g. like this: |
| 175 | |
Carl-Daniel Hailfinger | a472b8b | 2009-10-03 17:08:02 +0000 | [diff] [blame] | 176 | make DESTDIR=/usr install |
| 177 | |
| 178 | If you have insufficient permissions for the destination directory, use sudo |
| 179 | by adding sudo in front of the commands above. |
Uwe Hermann | d1129ac | 2009-05-28 15:07:42 +0000 | [diff] [blame] | 180 | |
| 181 | |
Joerg Mayer | 7221d5f | 2009-08-24 13:24:52 +0000 | [diff] [blame] | 182 | Contact |
Uwe Hermann | e94dbf2 | 2009-05-22 13:18:38 +0000 | [diff] [blame] | 183 | ------- |
| 184 | |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame^] | 185 | The official flashprog website is: |
Uwe Hermann | e94dbf2 | 2009-05-22 13:18:38 +0000 | [diff] [blame] | 186 | |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame^] | 187 | http://www.flashprog.org/ |
Uwe Hermann | b6d2832 | 2006-12-04 08:15:47 +0000 | [diff] [blame] | 188 | |
Angel Pons | 1900e1d | 2021-07-02 12:42:23 +0200 | [diff] [blame] | 189 | Available contact methods are |
Joerg Mayer | 7221d5f | 2009-08-24 13:24:52 +0000 | [diff] [blame] | 190 | |
Nico Huber | c3b02dc | 2023-08-12 01:13:45 +0200 | [diff] [blame^] | 191 | https://www.flashprog.org/Contact |