summaryrefslogtreecommitdiffstats
path: root/ichspi.c
diff options
context:
space:
mode:
authorCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>2009-07-10 21:08:55 +0000
committerCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>2009-07-10 21:08:55 +0000
commitd0478299b1d714a7001f19fb2cafeb257698a2c0 (patch)
tree4cd9e2881c6f02f26270149770210e6d1aa742cd /ichspi.c
parent8ef7dce29aead4f17000e2c14b39f0723adc3953 (diff)
downloadast2050-flashrom-d0478299b1d714a7001f19fb2cafeb257698a2c0.zip
ast2050-flashrom-d0478299b1d714a7001f19fb2cafeb257698a2c0.tar.gz
Add SPI multicommand infrastructure
Some SPI opcodes need to be sent in direct succession after each other without any chip deselect happening in between. A prominent example is WREN (Write Enable) directly before PP (Page Program). Intel calls the first opcode in such a row "preopcode". Right now, we ignore the direct succession requirement completely and it works pretty well because most onboard SPI masters have a timing or heuristics which make the problem disappear. The FT2232 SPI flasher is different. Since it is an external flasher, timing is very different to what we can expect from onboard flashers and this leads to failure at slow speeds. This patch allows any function to submit multiple SPI commands in a stream to any flasher. Support in the individual flashers isn't implemented yet, so there is one generic function which passes the each command in the stream one-by-one to the command functions of the selected SPI flash driver. Tested-by: Jakob Bornecrantz <wallbraker@gmail.com> Corresponding to flashrom svn r645. Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net> Acked-by: Jakob Bornecrantz <wallbraker@gmail.com>
Diffstat (limited to 'ichspi.c')
-rw-r--r--ichspi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ichspi.c b/ichspi.c
index b87bd5c..6ad55bb 100644
--- a/ichspi.c
+++ b/ichspi.c
@@ -682,7 +682,7 @@ int ich_spi_write_256(struct flashchip *flash, uint8_t * buf)
return rc;
}
-int ich_spi_command(unsigned int writecnt, unsigned int readcnt,
+int ich_spi_send_command(unsigned int writecnt, unsigned int readcnt,
const unsigned char *writearr, unsigned char *readarr)
{
int a;
OpenPOWER on IntegriCloud