blob: dc7ee68fa1479f8cca2a27a49b04969b69c857ab [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 *
4 * Copyright 2000 Silicon Integrated System Corporation
Stefan Reinauer7ed78c82007-05-24 09:26:39 +00005 * Copyright 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 <unistd.h>
26#include <stdio.h>
27#include <stdlib.h>
28#include <stdint.h>
Yinghai Luca782972007-01-22 20:21:17 +000029#include "flash.h"
Yinghai Luca782972007-01-22 20:21:17 +000030
31#define SECTOR_ERASE 0x30
32#define BLOCK_ERASE 0x20
33#define ERASE 0xD0
34#define AUTO_PGRM 0x10
35#define RESET 0xFF
36#define READ_ID 0x90
37#define READ_STATUS 0x70
38#define CLEAR_STATUS 0x50
39
40#define STATUS_BPS (1 << 1)
41#define STATUS_ESS (1 << 6)
42#define STATUS_WSMS (1 << 7)
43
Yinghai Luca782972007-01-22 20:21:17 +000044static __inline__ int write_lockbits_49lfxxxc(volatile uint8_t *bios, int size,
Uwe Hermanna7e05482007-05-09 10:17:44 +000045 unsigned char bits)
Yinghai Luca782972007-01-22 20:21:17 +000046{
47 int i, left = size;
48 unsigned long address;
49
50 //printf("bios=0x%08lx\n", (unsigned long)bios);
51 for (i = 0; left > 65536; i++, left -= 65536) {
52 //printf("lockbits at address=0x%08lx is 0x%01x\n", (unsigned long)0xFFC00000 - size + (i * 65536) + 2, *(bios + (i * 65536) + 2) );
53 *(bios + (i * 65536) + 2) = bits;
54 }
55 address = i * 65536;
Uwe Hermanna7e05482007-05-09 10:17:44 +000056 //printf("lockbits at address=0x%08lx is 0x%01x\n", (unsigned long)0xFFc00000 - size + address + 2, *(bios + address + 2) );
Yinghai Luca782972007-01-22 20:21:17 +000057 *(bios + address + 2) = bits;
58 address += 32768;
Uwe Hermanna7e05482007-05-09 10:17:44 +000059 //printf("lockbits at address=0x%08lx is 0x%01x\n", (unsigned long)0xFFc00000 - size + address + 2, *(bios + address + 2) );
Yinghai Luca782972007-01-22 20:21:17 +000060 *(bios + address + 2) = bits;
61 address += 8192;
Uwe Hermanna7e05482007-05-09 10:17:44 +000062 //printf("lockbits at address=0x%08lx is 0x%01x\n", (unsigned long)0xFFc00000 - size + address + 2, *(bios + address + 2) );
Yinghai Luca782972007-01-22 20:21:17 +000063 *(bios + address + 2) = bits;
64 address += 8192;
Uwe Hermanna7e05482007-05-09 10:17:44 +000065 //printf("lockbits at address=0x%08lx is 0x%01x\n", (unsigned long)0xFFc00000 - size + address + 2, *(bios + address + 2) );
Yinghai Luca782972007-01-22 20:21:17 +000066 *(bios + address + 2) = bits;
67
Uwe Hermannffec5f32007-08-23 16:08:21 +000068 return 0;
Yinghai Luca782972007-01-22 20:21:17 +000069}
70
71static __inline__ int erase_sector_49lfxxxc(volatile uint8_t *bios,
Uwe Hermanna7e05482007-05-09 10:17:44 +000072 unsigned long address)
Yinghai Luca782972007-01-22 20:21:17 +000073{
74 unsigned char status;
75
76 *bios = SECTOR_ERASE;
77 *(bios + address) = ERASE;
78
79 do {
Uwe Hermanna7e05482007-05-09 10:17:44 +000080 status = *bios;
Yinghai Luca782972007-01-22 20:21:17 +000081 if (status & (STATUS_ESS | STATUS_BPS)) {
Uwe Hermanna7e05482007-05-09 10:17:44 +000082 printf("sector erase FAILED at address=0x%08lx status=0x%01x\n", (unsigned long)bios + address, status);
Yinghai Luca782972007-01-22 20:21:17 +000083 *bios = CLEAR_STATUS;
Uwe Hermanna7e05482007-05-09 10:17:44 +000084 return (-1);
Yinghai Luca782972007-01-22 20:21:17 +000085 }
Uwe Hermanna7e05482007-05-09 10:17:44 +000086 } while (!(status & STATUS_WSMS));
Yinghai Luca782972007-01-22 20:21:17 +000087
Uwe Hermannffec5f32007-08-23 16:08:21 +000088 return 0;
Yinghai Luca782972007-01-22 20:21:17 +000089}
90
91static __inline__ int write_sector_49lfxxxc(volatile uint8_t *bios,
Uwe Hermanna7e05482007-05-09 10:17:44 +000092 uint8_t *src,
93 volatile uint8_t *dst,
94 unsigned int page_size)
Yinghai Luca782972007-01-22 20:21:17 +000095{
96 int i;
97 unsigned char status;
98
99 *bios = CLEAR_STATUS;
100 for (i = 0; i < page_size; i++) {
101 /* transfer data from source to destination */
102 if (*src == 0xFF) {
103 dst++, src++;
104 /* If the data is 0xFF, don't program it */
105 continue;
106 }
107 /*issue AUTO PROGRAM command */
108 *bios = AUTO_PGRM;
109 *dst++ = *src++;
110
111 do {
112 status = *bios;
113 if (status & (STATUS_ESS | STATUS_BPS)) {
Uwe Hermanna7e05482007-05-09 10:17:44 +0000114 printf("sector write FAILED at address=0x%08lx status=0x%01x\n", (unsigned long)dst, status);
Yinghai Luca782972007-01-22 20:21:17 +0000115 *bios = CLEAR_STATUS;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000116 return (-1);
Yinghai Luca782972007-01-22 20:21:17 +0000117 }
118 } while (!(status & STATUS_WSMS));
119 }
120
Uwe Hermannffec5f32007-08-23 16:08:21 +0000121 return 0;
Yinghai Luca782972007-01-22 20:21:17 +0000122}
123
124int probe_49lfxxxc(struct flashchip *flash)
125{
Stefan Reinauerce532972007-05-23 17:20:56 +0000126 volatile uint8_t *bios = flash->virtual_memory;
Stefan Reinauerce532972007-05-23 17:20:56 +0000127
Yinghai Luca782972007-01-22 20:21:17 +0000128 uint8_t id1, id2;
Yinghai Luca782972007-01-22 20:21:17 +0000129
130 *bios = RESET;
131
132 *bios = READ_ID;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000133 id1 = *(volatile uint8_t *)bios;
134 id2 = *(volatile uint8_t *)(bios + 0x01);
Yinghai Luca782972007-01-22 20:21:17 +0000135
136 *bios = RESET;
137
138 printf_debug("%s: id1 0x%x, id2 0x%x\n", __FUNCTION__, id1, id2);
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000139
Yinghai Luca782972007-01-22 20:21:17 +0000140 if (!(id1 == flash->manufacture_id && id2 == flash->model_id))
141 return 0;
142
Stefan Reinauerff4f1972007-05-24 08:48:10 +0000143 map_flash_registers(flash);
144
Yinghai Luca782972007-01-22 20:21:17 +0000145 return 1;
146}
147
148int erase_49lfxxxc(struct flashchip *flash)
149{
Stefan Reinauerce532972007-05-23 17:20:56 +0000150 volatile uint8_t *bios = flash->virtual_memory;
151 volatile uint8_t *registers = flash->virtual_registers;
Yinghai Luca782972007-01-22 20:21:17 +0000152 int i;
153 unsigned int total_size = flash->total_size * 1024;
154
Stefan Reinauerce532972007-05-23 17:20:56 +0000155 write_lockbits_49lfxxxc(registers, total_size, 0);
Yinghai Luca782972007-01-22 20:21:17 +0000156 for (i = 0; i < total_size; i += flash->page_size)
Uwe Hermanna7e05482007-05-09 10:17:44 +0000157 if (erase_sector_49lfxxxc(bios, i) != 0)
158 return (-1);
Yinghai Luca782972007-01-22 20:21:17 +0000159
160 *bios = RESET;
Uwe Hermannffec5f32007-08-23 16:08:21 +0000161
162 return 0;
Yinghai Luca782972007-01-22 20:21:17 +0000163}
164
165int write_49lfxxxc(struct flashchip *flash, uint8_t *buf)
166{
167 int i;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000168 int total_size = flash->total_size * 1024;
169 int page_size = flash->page_size;
Stefan Reinauerce532972007-05-23 17:20:56 +0000170 volatile uint8_t *bios = flash->virtual_memory;
Yinghai Luca782972007-01-22 20:21:17 +0000171
Stefan Reinauerce532972007-05-23 17:20:56 +0000172 write_lockbits_49lfxxxc(flash->virtual_registers, total_size, 0);
Yinghai Luca782972007-01-22 20:21:17 +0000173 printf("Programming Page: ");
174 for (i = 0; i < total_size / page_size; i++) {
175 /* erase the page before programming */
176 erase_sector_49lfxxxc(bios, i * page_size);
177
178 /* write to the sector */
179 printf("%04d at address: 0x%08x", i, i * page_size);
180 write_sector_49lfxxxc(bios, buf + i * page_size,
Uwe Hermanna7e05482007-05-09 10:17:44 +0000181 bios + i * page_size, page_size);
Yinghai Luca782972007-01-22 20:21:17 +0000182 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");
183 }
184 printf("\n");
185
186 *bios = RESET;
Uwe Hermannffec5f32007-08-23 16:08:21 +0000187
188 return 0;
Yinghai Luca782972007-01-22 20:21:17 +0000189}