blob: 3c4405d47a02390d96b47914bce59422f6610e5f [file] [log] [blame]
Yinghai Luca782972007-01-22 20:21:17 +00001/*
Uwe Hermannd1107642007-08-29 17:52:32 +00002 * This file is part of the flashrom project.
Yinghai Luca782972007-01-22 20:21:17 +00003 *
Uwe Hermannd22a1d42007-09-09 20:21:05 +00004 * Copyright (C) 2000 Silicon Integrated System Corporation
5 * Copyright (C) 2005-2007 coresystems GmbH
Yinghai Luca782972007-01-22 20:21:17 +00006 *
Uwe Hermannd1107642007-08-29 17:52:32 +00007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
Yinghai Luca782972007-01-22 20:21:17 +000011 *
Uwe Hermannd1107642007-08-29 17:52:32 +000012 * 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.
Yinghai Luca782972007-01-22 20:21:17 +000016 *
Uwe Hermannd1107642007-08-29 17:52:32 +000017 * 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
Yinghai Luca782972007-01-22 20:21:17 +000020 */
21
22#include <errno.h>
23#include <fcntl.h>
24#include <sys/mman.h>
Yinghai Luca782972007-01-22 20:21:17 +000025#include <stdlib.h>
Yinghai Luca782972007-01-22 20:21:17 +000026#include "flash.h"
Yinghai Luca782972007-01-22 20:21:17 +000027
28#define SECTOR_ERASE 0x30
29#define BLOCK_ERASE 0x20
30#define ERASE 0xD0
31#define AUTO_PGRM 0x10
32#define RESET 0xFF
33#define READ_ID 0x90
34#define READ_STATUS 0x70
35#define CLEAR_STATUS 0x50
36
37#define STATUS_BPS (1 << 1)
38#define STATUS_ESS (1 << 6)
39#define STATUS_WSMS (1 << 7)
40
Carl-Daniel Hailfinger500dd9d2009-06-05 13:30:49 +000041static int write_lockbits_49lfxxxc(struct flashchip *flash, unsigned char bits)
Yinghai Luca782972007-01-22 20:21:17 +000042{
Carl-Daniel Hailfinger500dd9d2009-06-05 13:30:49 +000043 chipaddr registers = flash->virtual_registers;
44 int i, left = flash->total_size * 1024;
Yinghai Luca782972007-01-22 20:21:17 +000045 unsigned long address;
46
Carl-Daniel Hailfinger500dd9d2009-06-05 13:30:49 +000047 printf_debug("\nbios=0x%08lx\n", registers);
Yinghai Luca782972007-01-22 20:21:17 +000048 for (i = 0; left > 65536; i++, left -= 65536) {
Carl-Daniel Hailfinger500dd9d2009-06-05 13:30:49 +000049 printf_debug("lockbits at address=0x%08lx is 0x%01x\n",
50 registers + (i * 65536) + 2,
51 chip_readb(registers + (i * 65536) + 2));
52 chip_writeb(bits, registers + (i * 65536) + 2);
Yinghai Luca782972007-01-22 20:21:17 +000053 }
54 address = i * 65536;
Carl-Daniel Hailfinger500dd9d2009-06-05 13:30:49 +000055 printf_debug("lockbits at address=0x%08lx is 0x%01x\n",
56 registers + address + 2,
57 chip_readb(registers + address + 2));
58 chip_writeb(bits, registers + address + 2);
Yinghai Luca782972007-01-22 20:21:17 +000059 address += 32768;
Carl-Daniel Hailfinger500dd9d2009-06-05 13:30:49 +000060 printf_debug("lockbits at address=0x%08lx is 0x%01x\n",
61 registers + address + 2,
62 chip_readb(registers + address + 2));
63 chip_writeb(bits, registers + address + 2);
Yinghai Luca782972007-01-22 20:21:17 +000064 address += 8192;
Carl-Daniel Hailfinger500dd9d2009-06-05 13:30:49 +000065 printf_debug("lockbits at address=0x%08lx is 0x%01x\n",
66 registers + address + 2,
67 chip_readb(registers + address + 2));
68 chip_writeb(bits, registers + address + 2);
Yinghai Luca782972007-01-22 20:21:17 +000069 address += 8192;
Carl-Daniel Hailfinger500dd9d2009-06-05 13:30:49 +000070 printf_debug("lockbits at address=0x%08lx is 0x%01x\n",
71 registers + address + 2,
72 chip_readb(registers + address + 2));
73 chip_writeb(bits, registers + address + 2);
Yinghai Luca782972007-01-22 20:21:17 +000074
Uwe Hermannffec5f32007-08-23 16:08:21 +000075 return 0;
Yinghai Luca782972007-01-22 20:21:17 +000076}
77
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +000078static int erase_sector_49lfxxxc(struct flashchip *flash, unsigned long address, int sector_size)
Yinghai Luca782972007-01-22 20:21:17 +000079{
80 unsigned char status;
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +000081 chipaddr bios = flash->virtual_memory;
Yinghai Luca782972007-01-22 20:21:17 +000082
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000083 chip_writeb(SECTOR_ERASE, bios);
84 chip_writeb(ERASE, bios + address);
Yinghai Luca782972007-01-22 20:21:17 +000085
86 do {
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000087 status = chip_readb(bios);
Yinghai Luca782972007-01-22 20:21:17 +000088 if (status & (STATUS_ESS | STATUS_BPS)) {
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +000089 printf("sector erase FAILED at address=0x%08lx status=0x%01x\n", bios + address, status);
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000090 chip_writeb(CLEAR_STATUS, bios);
Uwe Hermanna7e05482007-05-09 10:17:44 +000091 return (-1);
Yinghai Luca782972007-01-22 20:21:17 +000092 }
Uwe Hermanna7e05482007-05-09 10:17:44 +000093 } while (!(status & STATUS_WSMS));
Carl-Daniel Hailfinger322f3052009-07-20 15:21:18 +000094 chip_writeb(RESET, bios);
Yinghai Luca782972007-01-22 20:21:17 +000095
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +000096 if (check_erased_range(flash, address, sector_size)) {
97 fprintf(stderr, "ERASE FAILED!\n");
98 return -1;
99 }
Uwe Hermannffec5f32007-08-23 16:08:21 +0000100 return 0;
Yinghai Luca782972007-01-22 20:21:17 +0000101}
102
Uwe Hermann09e04f72009-05-16 22:36:00 +0000103static int write_sector_49lfxxxc(chipaddr bios, uint8_t *src, chipaddr dst,
104 unsigned int page_size)
Yinghai Luca782972007-01-22 20:21:17 +0000105{
106 int i;
107 unsigned char status;
108
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +0000109 chip_writeb(CLEAR_STATUS, bios);
Yinghai Luca782972007-01-22 20:21:17 +0000110 for (i = 0; i < page_size; i++) {
111 /* transfer data from source to destination */
112 if (*src == 0xFF) {
113 dst++, src++;
114 /* If the data is 0xFF, don't program it */
115 continue;
116 }
117 /*issue AUTO PROGRAM command */
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +0000118 chip_writeb(AUTO_PGRM, bios);
119 chip_writeb(*src++, dst++);
Yinghai Luca782972007-01-22 20:21:17 +0000120
121 do {
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +0000122 status = chip_readb(bios);
Yinghai Luca782972007-01-22 20:21:17 +0000123 if (status & (STATUS_ESS | STATUS_BPS)) {
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000124 printf("sector write FAILED at address=0x%08lx status=0x%01x\n", dst, status);
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +0000125 chip_writeb(CLEAR_STATUS, bios);
Uwe Hermanna7e05482007-05-09 10:17:44 +0000126 return (-1);
Yinghai Luca782972007-01-22 20:21:17 +0000127 }
128 } while (!(status & STATUS_WSMS));
129 }
130
Uwe Hermannffec5f32007-08-23 16:08:21 +0000131 return 0;
Yinghai Luca782972007-01-22 20:21:17 +0000132}
133
134int probe_49lfxxxc(struct flashchip *flash)
135{
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000136 chipaddr bios = flash->virtual_memory;
Yinghai Luca782972007-01-22 20:21:17 +0000137 uint8_t id1, id2;
Yinghai Luca782972007-01-22 20:21:17 +0000138
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +0000139 chip_writeb(RESET, bios);
Yinghai Luca782972007-01-22 20:21:17 +0000140
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +0000141 chip_writeb(READ_ID, bios);
142 id1 = chip_readb(bios);
143 id2 = chip_readb(bios + 0x01);
Yinghai Luca782972007-01-22 20:21:17 +0000144
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +0000145 chip_writeb(RESET, bios);
Yinghai Luca782972007-01-22 20:21:17 +0000146
Peter Stuge5cafc332009-01-25 23:52:45 +0000147 printf_debug("%s: id1 0x%02x, id2 0x%02x\n", __FUNCTION__, id1, id2);
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000148
Yinghai Luca782972007-01-22 20:21:17 +0000149 if (!(id1 == flash->manufacture_id && id2 == flash->model_id))
150 return 0;
151
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000152 map_flash_registers(flash);
153
Yinghai Luca782972007-01-22 20:21:17 +0000154 return 1;
155}
156
157int erase_49lfxxxc(struct flashchip *flash)
158{
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000159 chipaddr bios = flash->virtual_memory;
Yinghai Luca782972007-01-22 20:21:17 +0000160 int i;
161 unsigned int total_size = flash->total_size * 1024;
162
Carl-Daniel Hailfinger500dd9d2009-06-05 13:30:49 +0000163 write_lockbits_49lfxxxc(flash, 0);
Yinghai Luca782972007-01-22 20:21:17 +0000164 for (i = 0; i < total_size; i += flash->page_size)
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000165 if (erase_sector_49lfxxxc(flash, i, flash->page_size))
Uwe Hermanna7e05482007-05-09 10:17:44 +0000166 return (-1);
Yinghai Luca782972007-01-22 20:21:17 +0000167
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +0000168 chip_writeb(RESET, bios);
Uwe Hermannffec5f32007-08-23 16:08:21 +0000169
170 return 0;
Yinghai Luca782972007-01-22 20:21:17 +0000171}
172
173int write_49lfxxxc(struct flashchip *flash, uint8_t *buf)
174{
175 int i;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000176 int total_size = flash->total_size * 1024;
177 int page_size = flash->page_size;
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +0000178 chipaddr bios = flash->virtual_memory;
Yinghai Luca782972007-01-22 20:21:17 +0000179
Carl-Daniel Hailfinger500dd9d2009-06-05 13:30:49 +0000180 write_lockbits_49lfxxxc(flash, 0);
Uwe Hermanna502dce2007-10-17 23:55:15 +0000181 printf("Programming page: ");
Yinghai Luca782972007-01-22 20:21:17 +0000182 for (i = 0; i < total_size / page_size; i++) {
183 /* erase the page before programming */
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +0000184 if (erase_sector_49lfxxxc(flash, i * page_size, flash->page_size)) {
185 fprintf(stderr, "ERASE FAILED!\n");
186 return -1;
187 }
Yinghai Luca782972007-01-22 20:21:17 +0000188
189 /* write to the sector */
190 printf("%04d at address: 0x%08x", i, i * page_size);
191 write_sector_49lfxxxc(bios, buf + i * page_size,
Uwe Hermanna7e05482007-05-09 10:17:44 +0000192 bios + i * page_size, page_size);
Yinghai Luca782972007-01-22 20:21:17 +0000193 printf("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b");
194 }
195 printf("\n");
196
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +0000197 chip_writeb(RESET, bios);
Uwe Hermannffec5f32007-08-23 16:08:21 +0000198
199 return 0;
Yinghai Luca782972007-01-22 20:21:17 +0000200}