summaryrefslogtreecommitdiffstats
path: root/src/include/gpxe/threewire.h
Commit message (Collapse)AuthorAgeFilesLines
* [build] Rename gPXE to iPXEMichael Brown2010-04-201-105/+0Star
| | | | | | | | | | | Access to the gpxe.org and etherboot.org domains and associated resources has been revoked by the registrant of the domain. Work around this problem by renaming project from gPXE to iPXE, and updating URLs to match. Also update README, LOG and COPYRIGHTS to remove obsolete information. Signed-off-by: Michael Brown <mcb30@ipxe.org>
* [nvs] Add init function for Atmel 93C66 EEPROMJoshua Oreman2009-06-231-0/+13
| | | | | | | | The 93C66 is identical to the 93C56 in programming interface and addressing, but twice as large in data storage (4096 bits). It's used in some RTL8185 wireless cards. Signed-off-by: Michael Brown <mcb30@etherboot.org>
* [spi] Add address-length autodetection to the SPI bit-bashing codeMichael Brown2009-05-281-0/+1
| | | | | | | | | | | Several SPI chips will respond to an SPI read command with a dummy zero bit immediately prior to the first real data bit. This can be used to autodetect the address length, provided that the command length and data length are already known, and that the MISO data line is tied high. Tested-by: Thomas Miletich <thomas.miletich@gmail.com> Debugged-by: Thomas Miletich <thomas.miletich@gmail.com>
* [legal] Add a selection of FILE_LICENCE declarationsMichael Brown2009-05-181-0/+2
| | | | | Add FILE_LICENCE declarations to almost all files that make up the various standard builds of gPXE.
* Added write support for three-wire devices (e.g. the RTL8139 EEPROM)Michael Brown2006-12-061-0/+20
|
* Added the generic block-splitting code to nvs.cMichael Brown2006-12-041-1/+1
|
* Abstracted out part of the concept of an SPI device to a generalised NVSMichael Brown2006-12-041-25/+33
| | | | | | | device. Separated the mechanisms of non-volatile storage access and non-volatile stored options.
* Changed length parameter in SPI methods to be a byte length, rather thanMichael Brown2006-12-041-1/+1
| | | | a word length.
* Generalised the SPI abstraction layer to also be able to handle interfacesMichael Brown2006-12-041-44/+40Star
| | | | | | that don't provide the full flexibility of a bit-bashing interface. Temporarily hacked rtl8139.c to use the new interface.
* Generalise three-wire interface to generic SPI interface.Michael Brown2006-06-141-0/+65
Update rtl8139 driver to instantiate an SPI interface with a three-wire device attached.