summaryrefslogtreecommitdiffstats
path: root/flash.h
diff options
context:
space:
mode:
authorPaul Kocialkowski <contact@paulk.fr>2018-01-15 01:07:46 +0300
committerNico Huber <nico.h@gmx.de>2018-02-11 16:53:34 +0000
commit80ae14e5105bb938679193906d1ee43b7a51c094 (patch)
tree629130fad3e6b0b731429bb90dc8e285a91ea8ab /flash.h
parent995f755ff569cbf6ed8d4eec5920b41628aa8ac9 (diff)
downloadflashrom-80ae14e5105bb938679193906d1ee43b7a51c094.tar.gz
flashrom-80ae14e5105bb938679193906d1ee43b7a51c094.tar.bz2
flashrom-80ae14e5105bb938679193906d1ee43b7a51c094.zip
Add support for the ENE Embedded Debug Interface EDI and KB9012 EC
The ENE Embedded Debug Interface (EDI) is a SPI-based interface for accessing the memory of ENE embedded controllers. The ENE KB9012 EC is an embedded controller found on various laptops such as the Lenovo G505s. It features a 8051 microcontroller and has 128 KiB of internal storage for program data. EDI can be accessed on the KB9012 through pins 59-62 (CS-CLK-MOSI-MISO) when flash direct access is not in use. Some firmwares disable EDI at runtime so it might be necessary to ground pin 42 to reset the 8051 microcontroller before accessing the KB9012 via EDI. The example of flashing KB9012 at Lenovo G505S laptop could be found here: http://dangerousprototypes.com/docs/Flashing_KB9012_with_Bus_Pirate Change-Id: Ib8b2eb2feeef5c337d725d15ebf994a299897854 Signed-off-by: Mike Banon <mikebdp2@gmail.com> Signed-off-by: Paul Kocialkowski <contact@paulk.fr> Reviewed-on: https://review.coreboot.org/23259 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'flash.h')
-rw-r--r--flash.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/flash.h b/flash.h
index f2c6cbef0..7bf3cc714 100644
--- a/flash.h
+++ b/flash.h
@@ -199,6 +199,7 @@ struct flashchip {
/* SPI25 is very common. Keep it at zero so we don't have
to specify it for each and every chip in the database.*/
SPI25 = 0,
+ SPI_EDI = 1,
} spi_cmd_set;
int (*probe) (struct flashctx *flash);
@@ -266,7 +267,7 @@ struct flashrom_flashctx {
/* Timing used in probe routines. ZERO is -2 to differentiate between an unset
* field and zero delay.
- *
+ *
* SPI devices will always have zero delay and ignore this field.
*/
#define TIMING_FIXME -1