Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of the flashrom project. |
| 3 | * |
| 4 | * Copyright (C) 2007, 2008 Carl-Daniel Hailfinger |
| 5 | * Copyright (C) 2008 Ronald Hoogenboom <ronald@zonnet.nl> |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 6 | * Copyright (C) 2008 coresystems GmbH |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; version 2 of the License. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 20 | */ |
| 21 | |
| 22 | /* |
| 23 | * Contains the ITE IT87* SPI specific routines |
| 24 | */ |
| 25 | |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 26 | #include <string.h> |
| 27 | #include "flash.h" |
| 28 | #include "spi.h" |
| 29 | |
| 30 | #define ITE_SUPERIO_PORT1 0x2e |
| 31 | #define ITE_SUPERIO_PORT2 0x4e |
| 32 | |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 33 | uint16_t it8716f_flashport = 0; |
| 34 | /* use fast 33MHz SPI (<>0) or slow 16MHz (0) */ |
| 35 | int fast_spi = 1; |
| 36 | |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 37 | /* Helper functions for most recent ITE IT87xx Super I/O chips */ |
| 38 | #define CHIP_ID_BYTE1_REG 0x20 |
| 39 | #define CHIP_ID_BYTE2_REG 0x21 |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 40 | void enter_conf_mode_ite(uint16_t port) |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 41 | { |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 42 | OUTB(0x87, port); |
| 43 | OUTB(0x01, port); |
| 44 | OUTB(0x55, port); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 45 | if (port == ITE_SUPERIO_PORT1) |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 46 | OUTB(0x55, port); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 47 | else |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 48 | OUTB(0xaa, port); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 49 | } |
| 50 | |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 51 | void exit_conf_mode_ite(uint16_t port) |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 52 | { |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 53 | sio_write(port, 0x02, 0x02); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | static uint16_t find_ite_spi_flash_port(uint16_t port) |
| 57 | { |
| 58 | uint8_t tmp = 0; |
| 59 | uint16_t id, flashport = 0; |
| 60 | |
| 61 | enter_conf_mode_ite(port); |
| 62 | |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 63 | id = sio_read(port, CHIP_ID_BYTE1_REG) << 8; |
| 64 | id |= sio_read(port, CHIP_ID_BYTE2_REG); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 65 | |
| 66 | /* TODO: Handle more IT87xx if they support flash translation */ |
Peter Stuge | d3bce83 | 2009-01-12 21:28:03 +0000 | [diff] [blame] | 67 | if (0x8716 == id || 0x8718 == id) { |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 68 | /* NOLDN, reg 0x24, mask out lowest bit (suspend) */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 69 | tmp = sio_read(port, 0x24) & 0xFE; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 70 | printf("Serial flash segment 0x%08x-0x%08x %sabled\n", |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 71 | 0xFFFE0000, 0xFFFFFFFF, (tmp & 1 << 1) ? "en" : "dis"); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 72 | printf("Serial flash segment 0x%08x-0x%08x %sabled\n", |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 73 | 0x000E0000, 0x000FFFFF, (tmp & 1 << 1) ? "en" : "dis"); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 74 | printf("Serial flash segment 0x%08x-0x%08x %sabled\n", |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 75 | 0xFFEE0000, 0xFFEFFFFF, (tmp & 1 << 2) ? "en" : "dis"); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 76 | printf("Serial flash segment 0x%08x-0x%08x %sabled\n", |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 77 | 0xFFF80000, 0xFFFEFFFF, (tmp & 1 << 3) ? "en" : "dis"); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 78 | printf("LPC write to serial flash %sabled\n", |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 79 | (tmp & 1 << 4) ? "en" : "dis"); |
Carl-Daniel Hailfinger | 337df1d | 2008-05-16 00:19:52 +0000 | [diff] [blame] | 80 | /* If any serial flash segment is enabled, enable writing. */ |
| 81 | if ((tmp & 0xe) && (!(tmp & 1 << 4))) { |
| 82 | printf("Enabling LPC write to serial flash\n"); |
| 83 | tmp |= 1 << 4; |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 84 | sio_write(port, 0x24, tmp); |
Carl-Daniel Hailfinger | 337df1d | 2008-05-16 00:19:52 +0000 | [diff] [blame] | 85 | } |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 86 | printf("serial flash pin %i\n", (tmp & 1 << 5) ? 87 : 29); |
| 87 | /* LDN 0x7, reg 0x64/0x65 */ |
Carl-Daniel Hailfinger | 24c1a16 | 2009-05-25 23:26:50 +0000 | [diff] [blame] | 88 | sio_write(port, 0x07, 0x7); |
| 89 | flashport = sio_read(port, 0x64) << 8; |
| 90 | flashport |= sio_read(port, 0x65); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 91 | } |
| 92 | exit_conf_mode_ite(port); |
| 93 | return flashport; |
| 94 | } |
| 95 | |
| 96 | int it87xx_probe_spi_flash(const char *name) |
| 97 | { |
| 98 | it8716f_flashport = find_ite_spi_flash_port(ITE_SUPERIO_PORT1); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 99 | |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 100 | if (!it8716f_flashport) |
| 101 | it8716f_flashport = find_ite_spi_flash_port(ITE_SUPERIO_PORT2); |
Stefan Reinauer | 2cb94e1 | 2008-06-30 23:45:22 +0000 | [diff] [blame] | 102 | |
| 103 | if (it8716f_flashport) |
| 104 | flashbus = BUS_TYPE_IT87XX_SPI; |
| 105 | |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 106 | return (!it8716f_flashport); |
| 107 | } |
| 108 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 109 | /* |
| 110 | * The IT8716F only supports commands with length 1,2,4,5 bytes including |
| 111 | * command byte and can not read more than 3 bytes from the device. |
| 112 | * |
| 113 | * This function expects writearr[0] to be the first byte sent to the device, |
| 114 | * whereas the IT8716F splits commands internally into address and non-address |
| 115 | * commands with the address in inverse wire order. That's why the register |
| 116 | * ordering in case 4 and 5 may seem strange. |
| 117 | */ |
| 118 | int it8716f_spi_command(unsigned int writecnt, unsigned int readcnt, |
| 119 | const unsigned char *writearr, unsigned char *readarr) |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 120 | { |
| 121 | uint8_t busy, writeenc; |
| 122 | int i; |
| 123 | |
| 124 | do { |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 125 | busy = INB(it8716f_flashport) & 0x80; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 126 | } while (busy); |
| 127 | if (readcnt > 3) { |
| 128 | printf("%s called with unsupported readcnt %i.\n", |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 129 | __FUNCTION__, readcnt); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 130 | return 1; |
| 131 | } |
| 132 | switch (writecnt) { |
| 133 | case 1: |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 134 | OUTB(writearr[0], it8716f_flashport + 1); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 135 | writeenc = 0x0; |
| 136 | break; |
| 137 | case 2: |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 138 | OUTB(writearr[0], it8716f_flashport + 1); |
| 139 | OUTB(writearr[1], it8716f_flashport + 7); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 140 | writeenc = 0x1; |
| 141 | break; |
| 142 | case 4: |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 143 | OUTB(writearr[0], it8716f_flashport + 1); |
| 144 | OUTB(writearr[1], it8716f_flashport + 4); |
| 145 | OUTB(writearr[2], it8716f_flashport + 3); |
| 146 | OUTB(writearr[3], it8716f_flashport + 2); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 147 | writeenc = 0x2; |
| 148 | break; |
| 149 | case 5: |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 150 | OUTB(writearr[0], it8716f_flashport + 1); |
| 151 | OUTB(writearr[1], it8716f_flashport + 4); |
| 152 | OUTB(writearr[2], it8716f_flashport + 3); |
| 153 | OUTB(writearr[3], it8716f_flashport + 2); |
| 154 | OUTB(writearr[4], it8716f_flashport + 7); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 155 | writeenc = 0x3; |
| 156 | break; |
| 157 | default: |
| 158 | printf("%s called with unsupported writecnt %i.\n", |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 159 | __FUNCTION__, writecnt); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 160 | return 1; |
| 161 | } |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 162 | /* |
| 163 | * Start IO, 33 or 16 MHz, readcnt input bytes, writecnt output bytes. |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 164 | * Note: |
| 165 | * We can't use writecnt directly, but have to use a strange encoding. |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 166 | */ |
| 167 | OUTB(((0x4 + (fast_spi ? 1 : 0)) << 4) |
| 168 | | ((readcnt & 0x3) << 2) | (writeenc), it8716f_flashport); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 169 | |
| 170 | if (readcnt > 0) { |
| 171 | do { |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 172 | busy = INB(it8716f_flashport) & 0x80; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 173 | } while (busy); |
| 174 | |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 175 | for (i = 0; i < readcnt; i++) |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 176 | readarr[i] = INB(it8716f_flashport + 5 + i); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 177 | } |
| 178 | |
| 179 | return 0; |
| 180 | } |
| 181 | |
| 182 | /* Page size is usually 256 bytes */ |
Carl-Daniel Hailfinger | 03adbe1 | 2009-05-09 02:09:45 +0000 | [diff] [blame] | 183 | static int it8716f_spi_page_program(int block, uint8_t *buf, uint8_t *bios) |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 184 | { |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 185 | int i; |
Carl-Daniel Hailfinger | 03adbe1 | 2009-05-09 02:09:45 +0000 | [diff] [blame] | 186 | int result; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 187 | |
Carl-Daniel Hailfinger | 03adbe1 | 2009-05-09 02:09:45 +0000 | [diff] [blame] | 188 | result = spi_write_enable(); |
| 189 | if (result) |
| 190 | return result; |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 191 | OUTB(0x06, it8716f_flashport + 1); |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 192 | OUTB(((2 + (fast_spi ? 1 : 0)) << 4), it8716f_flashport); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 193 | for (i = 0; i < 256; i++) { |
| 194 | bios[256 * block + i] = buf[256 * block + i]; |
| 195 | } |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 196 | OUTB(0, it8716f_flashport); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 197 | /* Wait until the Write-In-Progress bit is cleared. |
| 198 | * This usually takes 1-10 ms, so wait in 1 ms steps. |
| 199 | */ |
| 200 | while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP) |
| 201 | usleep(1000); |
Carl-Daniel Hailfinger | 03adbe1 | 2009-05-09 02:09:45 +0000 | [diff] [blame] | 202 | return 0; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | /* |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 206 | * Program chip using firmware cycle byte programming. (SLOW!) |
Carl-Daniel Hailfinger | 96930c3 | 2009-05-09 02:30:21 +0000 | [diff] [blame] | 207 | * This is for chips which can only handle one byte writes |
| 208 | * and for chips where memory mapped programming is impossible due to |
| 209 | * size constraints in IT87* (over 512 kB) |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 210 | */ |
Carl-Daniel Hailfinger | 96930c3 | 2009-05-09 02:30:21 +0000 | [diff] [blame] | 211 | int it8716f_spi_chip_write_1(struct flashchip *flash, uint8_t *buf) |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 212 | { |
| 213 | int total_size = 1024 * flash->total_size; |
| 214 | int i; |
Carl-Daniel Hailfinger | 03adbe1 | 2009-05-09 02:09:45 +0000 | [diff] [blame] | 215 | int result; |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 216 | |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 217 | fast_spi = 0; |
| 218 | |
| 219 | spi_disable_blockprotect(); |
| 220 | for (i = 0; i < total_size; i++) { |
Carl-Daniel Hailfinger | 03adbe1 | 2009-05-09 02:09:45 +0000 | [diff] [blame] | 221 | result = spi_write_enable(); |
| 222 | if (result) |
| 223 | return result; |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 224 | spi_byte_program(i, buf[i]); |
| 225 | while (spi_read_status_register() & JEDEC_RDSR_BIT_WIP) |
| 226 | myusec_delay(10); |
| 227 | } |
| 228 | /* resume normal ops... */ |
Andriy Gapon | 65c1b86 | 2008-05-22 13:22:45 +0000 | [diff] [blame] | 229 | OUTB(0x20, it8716f_flashport); |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 230 | |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 231 | return 0; |
| 232 | } |
| 233 | |
| 234 | /* |
| 235 | * IT8716F only allows maximum of 512 kb SPI mapped to LPC memory cycles |
| 236 | * Need to read this big flash using firmware cycles 3 byte at a time. |
| 237 | */ |
| 238 | int it8716f_spi_chip_read(struct flashchip *flash, uint8_t *buf) |
| 239 | { |
| 240 | int total_size = 1024 * flash->total_size; |
| 241 | int i; |
| 242 | fast_spi = 0; |
| 243 | |
| 244 | if (total_size > 512 * 1024) { |
| 245 | for (i = 0; i < total_size; i += 3) { |
| 246 | int toread = 3; |
| 247 | if (total_size - i < toread) |
| 248 | toread = total_size - i; |
| 249 | spi_nbyte_read(i, buf + i, toread); |
| 250 | } |
| 251 | } else { |
| 252 | memcpy(buf, (const char *)flash->virtual_memory, total_size); |
| 253 | } |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 254 | |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 255 | return 0; |
| 256 | } |
| 257 | |
Carl-Daniel Hailfinger | 96930c3 | 2009-05-09 02:30:21 +0000 | [diff] [blame] | 258 | int it8716f_spi_chip_write_256(struct flashchip *flash, uint8_t *buf) |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 259 | { |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 260 | int total_size = 1024 * flash->total_size; |
| 261 | int i; |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 262 | |
Carl-Daniel Hailfinger | 96930c3 | 2009-05-09 02:30:21 +0000 | [diff] [blame] | 263 | /* |
| 264 | * IT8716F only allows maximum of 512 kb SPI chip size for memory |
| 265 | * mapped access. |
| 266 | */ |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 267 | if (total_size > 512 * 1024) { |
Carl-Daniel Hailfinger | 96930c3 | 2009-05-09 02:30:21 +0000 | [diff] [blame] | 268 | it8716f_spi_chip_write_1(flash, buf); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 269 | } else { |
| 270 | for (i = 0; i < total_size / 256; i++) { |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 271 | it8716f_spi_page_program(i, buf, |
| 272 | (uint8_t *)flash->virtual_memory); |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 273 | } |
| 274 | } |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 275 | |
Carl-Daniel Hailfinger | bfe5b4a | 2008-05-13 23:03:12 +0000 | [diff] [blame] | 276 | return 0; |
| 277 | } |