blob: 3a25a100b9e826c31c5427a1fddefbe1bac4ed1c [file] [log] [blame]
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +00001/*
2 * This file is part of the flashrom project.
3 *
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +00004 * Copyright (C) 2007, 2008 Carl-Daniel Hailfinger
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +00005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20/*
21 * Contains the generic SPI framework
22 */
23
24#include <stdio.h>
25#include <pci/pci.h>
26#include <stdint.h>
27#include <string.h>
28#include "flash.h"
Carl-Daniel Hailfingerd6cbf762008-05-13 14:58:23 +000029#include "spi.h"
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000030
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +000031
32void spi_prettyprint_status_register(struct flashchip *flash);
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000033
Peter Stugefa8c5502008-05-10 23:07:52 +000034int spi_command(unsigned int writecnt, unsigned int readcnt, const unsigned char *writearr, unsigned char *readarr)
Carl-Daniel Hailfinger3d94a0e2007-10-16 21:09:06 +000035{
36 if (it8716f_flashport)
Carl-Daniel Hailfingera5b8efd2008-05-10 23:40:51 +000037 return it8716f_spi_command(writecnt, readcnt, writearr, readarr);
Dominik Geyerb46acba2008-05-16 12:55:55 +000038 else if (ich9_detected)
39 return ich_spi_command(writecnt, readcnt, writearr, readarr);
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +000040 printf_debug("%s called, but no SPI chipset detected\n", __FUNCTION__);
Carl-Daniel Hailfinger3d94a0e2007-10-16 21:09:06 +000041 return 1;
42}
43
Peter Stugefa8c5502008-05-10 23:07:52 +000044static int spi_rdid(unsigned char *readarr)
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000045{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +000046 const unsigned char cmd[JEDEC_RDID_OUTSIZE] = {JEDEC_RDID};
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000047
Peter Stugefa8c5502008-05-10 23:07:52 +000048 if (spi_command(JEDEC_RDID_OUTSIZE, JEDEC_RDID_INSIZE, cmd, readarr))
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000049 return 1;
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +000050 printf_debug("RDID returned %02x %02x %02x.\n", readarr[0], readarr[1], readarr[2]);
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000051 return 0;
52}
53
Carl-Daniel Hailfinger42c54972008-05-15 03:19:49 +000054static int spi_res(unsigned char *readarr)
55{
56 const unsigned char cmd[JEDEC_RES_OUTSIZE] = {JEDEC_RES, 0, 0, 0};
57
58 if (spi_command(JEDEC_RES_OUTSIZE, JEDEC_RES_INSIZE, cmd, readarr))
59 return 1;
60 printf_debug("RES returned %02x.\n", readarr[0]);
61 return 0;
62}
63
Peter Stugefa8c5502008-05-10 23:07:52 +000064void spi_write_enable()
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000065{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +000066 const unsigned char cmd[JEDEC_WREN_OUTSIZE] = {JEDEC_WREN};
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000067
68 /* Send WREN (Write Enable) */
Peter Stugefa8c5502008-05-10 23:07:52 +000069 spi_command(JEDEC_WREN_OUTSIZE, JEDEC_WREN_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000070}
71
Peter Stugefa8c5502008-05-10 23:07:52 +000072void spi_write_disable()
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000073{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +000074 const unsigned char cmd[JEDEC_WRDI_OUTSIZE] = {JEDEC_WRDI};
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000075
76 /* Send WRDI (Write Disable) */
Peter Stugefa8c5502008-05-10 23:07:52 +000077 spi_command(JEDEC_WRDI_OUTSIZE, JEDEC_WRDI_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +000078}
79
Carl-Daniel Hailfinger42c54972008-05-15 03:19:49 +000080int probe_spi_rdid(struct flashchip *flash)
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000081{
82 unsigned char readarr[3];
Carl-Daniel Hailfinger1263d2a2008-02-06 22:07:58 +000083 uint32_t manuf_id;
84 uint32_t model_id;
Peter Stugefa8c5502008-05-10 23:07:52 +000085 if (!spi_rdid(readarr)) {
Carl-Daniel Hailfingera758f512008-05-14 12:03:06 +000086 if (!oddparity(readarr[0]))
87 printf_debug("RDID byte 0 parity violation.\n");
Carl-Daniel Hailfinger1263d2a2008-02-06 22:07:58 +000088 /* Check if this is a continuation vendor ID */
89 if (readarr[0] == 0x7f) {
Carl-Daniel Hailfingera758f512008-05-14 12:03:06 +000090 if (!oddparity(readarr[1]))
91 printf_debug("RDID byte 1 parity violation.\n");
Carl-Daniel Hailfinger1263d2a2008-02-06 22:07:58 +000092 manuf_id = (readarr[0] << 8) | readarr[1];
93 model_id = readarr[2];
94 } else {
95 manuf_id = readarr[0];
96 model_id = (readarr[1] << 8) | readarr[2];
97 }
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +000098 printf_debug("%s: id1 0x%x, id2 0x%x\n", __FUNCTION__, manuf_id, model_id);
Carl-Daniel Hailfingere973b052008-01-04 16:22:09 +000099 if (manuf_id == flash->manufacture_id &&
100 model_id == flash->model_id) {
101 /* Print the status register to tell the
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000102 * user about possible write protection.
103 */
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000104 spi_prettyprint_status_register(flash);
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000105
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000106 return 1;
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000107 }
Carl-Daniel Hailfingere973b052008-01-04 16:22:09 +0000108 /* Test if this is a pure vendor match. */
109 if (manuf_id == flash->manufacture_id &&
110 GENERIC_DEVICE_ID == flash->model_id)
111 return 1;
Carl-Daniel Hailfinger70539262007-10-15 21:45:29 +0000112 }
113
114 return 0;
115}
116
Carl-Daniel Hailfinger42c54972008-05-15 03:19:49 +0000117int probe_spi_res(struct flashchip *flash)
118{
119 unsigned char readarr[3];
120 uint32_t model_id;
121 if (!spi_rdid(readarr)) {
122 /* Check if RDID returns 0xff 0xff 0xff, then we use RES. */
123 if ((readarr[0] != 0xff) || (readarr[1] != 0xff) ||
124 (readarr[2] != 0xff))
125 return 0;
126 } else {
127 /* We couldn't issue RDID, it's pointless to try RES. */
128 return 0;
129 }
130 if (!spi_res(readarr)) {
131 model_id = readarr[0];
132 printf_debug("%s: id 0x%x\n", __FUNCTION__, model_id);
133 if (model_id == flash->model_id) {
134 /* Print the status register to tell the
135 * user about possible write protection.
136 */
137 spi_prettyprint_status_register(flash);
138
139 return 1;
140 }
141 }
142
143 return 0;
144}
145
Peter Stugefa8c5502008-05-10 23:07:52 +0000146uint8_t spi_read_status_register()
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000147{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +0000148 const unsigned char cmd[JEDEC_RDSR_OUTSIZE] = {JEDEC_RDSR};
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000149 unsigned char readarr[1];
150
151 /* Read Status Register */
Peter Stugefa8c5502008-05-10 23:07:52 +0000152 spi_command(JEDEC_RDSR_OUTSIZE, JEDEC_RDSR_INSIZE, cmd, readarr);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000153 return readarr[0];
154}
155
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000156/* Prettyprint the status register. Common definitions.
157 */
158void spi_prettyprint_status_register_common(uint8_t status)
159{
160 printf_debug("Chip status register: Bit 5 / Block Protect 3 (BP3) is "
161 "%sset\n", (status & (1 << 5)) ? "" : "not ");
162 printf_debug("Chip status register: Bit 4 / Block Protect 2 (BP2) is "
163 "%sset\n", (status & (1 << 4)) ? "" : "not ");
164 printf_debug("Chip status register: Bit 3 / Block Protect 1 (BP1) is "
165 "%sset\n", (status & (1 << 3)) ? "" : "not ");
166 printf_debug("Chip status register: Bit 2 / Block Protect 0 (BP0) is "
167 "%sset\n", (status & (1 << 2)) ? "" : "not ");
168 printf_debug("Chip status register: Write Enable Latch (WEL) is "
169 "%sset\n", (status & (1 << 1)) ? "" : "not ");
170 printf_debug("Chip status register: Write In Progress (WIP/BUSY) is "
171 "%sset\n", (status & (1 << 0)) ? "" : "not ");
172}
173
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000174/* Prettyprint the status register. Works for
175 * ST M25P series
176 * MX MX25L series
177 */
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000178void spi_prettyprint_status_register_st_m25p(uint8_t status)
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000179{
180 printf_debug("Chip status register: Status Register Write Disable "
181 "(SRWD) is %sset\n", (status & (1 << 7)) ? "" : "not ");
182 printf_debug("Chip status register: Bit 6 is "
183 "%sset\n", (status & (1 << 6)) ? "" : "not ");
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000184 spi_prettyprint_status_register_common(status);
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000185}
186
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000187/* Prettyprint the status register. Works for
188 * SST 25VF016
189 */
190void spi_prettyprint_status_register_sst25vf016(uint8_t status)
191{
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000192 const char *bpt[] = {
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000193 "none",
194 "1F0000H-1FFFFFH",
195 "1E0000H-1FFFFFH",
196 "1C0000H-1FFFFFH",
197 "180000H-1FFFFFH",
198 "100000H-1FFFFFH",
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000199 "all", "all"
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000200 };
201 printf_debug("Chip status register: Block Protect Write Disable "
202 "(BPL) is %sset\n", (status & (1 << 7)) ? "" : "not ");
203 printf_debug("Chip status register: Auto Address Increment Programming "
204 "(AAI) is %sset\n", (status & (1 << 6)) ? "" : "not ");
205 spi_prettyprint_status_register_common(status);
206 printf_debug("Resulting block protection : %s\n",
207 bpt[(status & 0x1c) >> 2]);
208}
209
210void spi_prettyprint_status_register(struct flashchip *flash)
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000211{
212 uint8_t status;
213
Peter Stugefa8c5502008-05-10 23:07:52 +0000214 status = spi_read_status_register();
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000215 printf_debug("Chip status register is %02x\n", status);
216 switch (flash->manufacture_id) {
217 case ST_ID:
Carl-Daniel Hailfingerf43e6422008-05-15 22:32:08 +0000218 if (((flash->model_id & 0xff00) == 0x2000) ||
219 ((flash->model_id & 0xff00) == 0x2500))
220 spi_prettyprint_status_register_st_m25p(status);
221 break;
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000222 case MX_ID:
223 if ((flash->model_id & 0xff00) == 0x2000)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000224 spi_prettyprint_status_register_st_m25p(status);
225 break;
226 case SST_ID:
227 if (flash->model_id == SST_25VF016B)
228 spi_prettyprint_status_register_sst25vf016(status);
Carl-Daniel Hailfinger9a3ec822007-12-29 10:15:58 +0000229 break;
230 }
231}
232
Peter Stugefa8c5502008-05-10 23:07:52 +0000233int spi_chip_erase_c7(struct flashchip *flash)
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000234{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +0000235 const unsigned char cmd[JEDEC_CE_C7_OUTSIZE] = {JEDEC_CE_C7};
Carl-Daniel Hailfingerf5df46f2007-12-16 21:15:27 +0000236
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000237 spi_disable_blockprotect();
Peter Stugefa8c5502008-05-10 23:07:52 +0000238 spi_write_enable();
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000239 /* Send CE (Chip Erase) */
Peter Stugefa8c5502008-05-10 23:07:52 +0000240 spi_command(JEDEC_CE_C7_OUTSIZE, JEDEC_CE_C7_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000241 /* Wait until the Write-In-Progress bit is cleared.
242 * This usually takes 1-85 s, so wait in 1 s steps.
243 */
Peter Stugefa8c5502008-05-10 23:07:52 +0000244 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000245 sleep(1);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000246 return 0;
247}
248
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000249/* Block size is usually
250 * 64k for Macronix
251 * 32k for SST
252 * 4-32k non-uniform for EON
253 */
Peter Stugefa8c5502008-05-10 23:07:52 +0000254int spi_block_erase_d8(const struct flashchip *flash, unsigned long addr)
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000255{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +0000256 unsigned char cmd[JEDEC_BE_D8_OUTSIZE] = {JEDEC_BE_D8};
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000257
258 cmd[1] = (addr & 0x00ff0000) >> 16;
259 cmd[2] = (addr & 0x0000ff00) >> 8;
260 cmd[3] = (addr & 0x000000ff);
Peter Stugefa8c5502008-05-10 23:07:52 +0000261 spi_write_enable();
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000262 /* Send BE (Block Erase) */
Peter Stugefa8c5502008-05-10 23:07:52 +0000263 spi_command(JEDEC_BE_D8_OUTSIZE, JEDEC_BE_D8_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000264 /* Wait until the Write-In-Progress bit is cleared.
265 * This usually takes 100-4000 ms, so wait in 100 ms steps.
266 */
Peter Stugefa8c5502008-05-10 23:07:52 +0000267 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000268 usleep(100 * 1000);
269 return 0;
270}
271
272/* Sector size is usually 4k, though Macronix eliteflash has 64k */
Peter Stugefa8c5502008-05-10 23:07:52 +0000273int spi_sector_erase(const struct flashchip *flash, unsigned long addr)
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000274{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +0000275 unsigned char cmd[JEDEC_SE_OUTSIZE] = {JEDEC_SE};
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000276 cmd[1] = (addr & 0x00ff0000) >> 16;
277 cmd[2] = (addr & 0x0000ff00) >> 8;
278 cmd[3] = (addr & 0x000000ff);
279
Peter Stugefa8c5502008-05-10 23:07:52 +0000280 spi_write_enable();
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000281 /* Send SE (Sector Erase) */
Peter Stugefa8c5502008-05-10 23:07:52 +0000282 spi_command(JEDEC_SE_OUTSIZE, JEDEC_SE_INSIZE, cmd, NULL);
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000283 /* Wait until the Write-In-Progress bit is cleared.
284 * This usually takes 15-800 ms, so wait in 10 ms steps.
285 */
Peter Stugefa8c5502008-05-10 23:07:52 +0000286 while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP)
Carl-Daniel Hailfinger5b1c6ed2007-10-22 16:15:28 +0000287 usleep(10 * 1000);
288 return 0;
289}
290
Peter Stugefa8c5502008-05-10 23:07:52 +0000291void spi_page_program(int block, uint8_t *buf, uint8_t *bios)
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000292{
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000293 if (it8716f_flashport) {
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000294 it8716f_spi_page_program(block, buf, bios);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000295 return;
296 }
297 printf_debug("%s called, but no SPI chipset detected\n", __FUNCTION__);
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000298}
299
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000300/*
301 * This is according the SST25VF016 datasheet, who knows it is more
302 * generic that this...
303 */
304void spi_write_status_register(int status)
305{
Carl-Daniel Hailfinger228231f2008-05-13 14:01:22 +0000306 const unsigned char cmd[JEDEC_WRSR_OUTSIZE] = {JEDEC_WRSR, (unsigned char)status};
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000307
308 /* Send WRSR (Write Status Register) */
Peter Stugefa8c5502008-05-10 23:07:52 +0000309 spi_command(JEDEC_WRSR_OUTSIZE, JEDEC_WRSR_INSIZE, cmd, NULL);
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000310}
311
312void spi_byte_program(int address, uint8_t byte)
313{
314 const unsigned char cmd[JEDEC_BYTE_PROGRAM_OUTSIZE] = {JEDEC_BYTE_PROGRAM,
315 (address>>16)&0xff,
316 (address>>8)&0xff,
317 (address>>0)&0xff,
318 byte
319 };
320
321 /* Send Byte-Program */
Peter Stugefa8c5502008-05-10 23:07:52 +0000322 spi_command(JEDEC_BYTE_PROGRAM_OUTSIZE, JEDEC_BYTE_PROGRAM_INSIZE, cmd, NULL);
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000323}
324
325void spi_disable_blockprotect(void)
326{
327 uint8_t status;
328
Peter Stugefa8c5502008-05-10 23:07:52 +0000329 status = spi_read_status_register();
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000330 /* If there is block protection in effect, unprotect it first. */
331 if ((status & 0x3c) != 0) {
332 printf_debug("Some block protection in effect, disabling\n");
Peter Stugefa8c5502008-05-10 23:07:52 +0000333 spi_write_enable();
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000334 spi_write_status_register(status & ~0x3c);
335 }
336}
337
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000338void spi_nbyte_read(int address, uint8_t *bytes, int len)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000339{
340 const unsigned char cmd[JEDEC_READ_OUTSIZE] = {JEDEC_READ,
Carl-Daniel Hailfingerd3568ad2008-01-22 14:37:31 +0000341 (address >> 16) & 0xff,
342 (address >> 8) & 0xff,
343 (address >> 0) & 0xff,
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000344 };
345
346 /* Send Read */
Peter Stugefa8c5502008-05-10 23:07:52 +0000347 spi_command(JEDEC_READ_OUTSIZE, len, cmd, bytes);
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000348}
349
Peter Stugefa8c5502008-05-10 23:07:52 +0000350int spi_chip_read(struct flashchip *flash, uint8_t *buf)
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000351{
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000352 if (it8716f_flashport)
353 return it8716f_spi_chip_read(flash, buf);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000354 else if (ich9_detected)
355 return ich_spi_read(flash, buf);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000356 printf_debug("%s called, but no SPI chipset detected\n", __FUNCTION__);
357 return 1;
Ronald Hoogenboom7ff530b2008-01-19 00:04:46 +0000358}
359
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000360int spi_chip_write(struct flashchip *flash, uint8_t *buf)
361{
362 if (it8716f_flashport)
363 return it8716f_spi_chip_write(flash, buf);
Dominik Geyerb46acba2008-05-16 12:55:55 +0000364 else if (ich9_detected)
365 return ich_spi_write(flash, buf);
Carl-Daniel Hailfingerbfe5b4a2008-05-13 23:03:12 +0000366 printf_debug("%s called, but no SPI chipset detected\n", __FUNCTION__);
367 return 1;
Carl-Daniel Hailfinger6b444962007-10-18 00:24:07 +0000368}
369