blob: fd3a7142023b1002526ef09582d723da0edc7361 [file] [log] [blame]
Ronald G. Minnich5b582f22006-02-23 17:16:44 +00001/*
Ronald G. Minnich5eaed682006-03-14 19:58:14 +00002 * lhf00l04.c: driver for programming JEDEC standard flash parts
Ronald G. Minnich5b582f22006-02-23 17:16:44 +00003 *
4 *
5 * Copyright 2000 Silicon Integrated System Corporation
Ronald G. Minnich5b582f22006-02-23 17:16:44 +00006 *
7 * 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.
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., 675 Mass Ave, Cambridge, MA 02139, USA.
20 *
21 *
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000022 * Reference: http://www.intel.com/design/chipsets/datashts/290658.htm
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000023 */
24
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000025#include <errno.h>
26#include <fcntl.h>
27#include <sys/mman.h>
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000028#include <unistd.h>
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000029#include <stdio.h>
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000030#include <stdlib.h>
31
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000032#include "flash.h"
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000033#include "sharplhf00l04.h"
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000034#include "debug.h"
35
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000036// I need that Berkeley bit-map printer
37void print_lhf00l04_status(uint8_t status)
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000038{
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000039 printf("%s", status & 0x80 ? "Ready:" : "Busy:");
40 printf("%s", status & 0x40 ? "BE SUSPEND:" : "BE RUN/FINISH:");
41 printf("%s", status & 0x20 ? "BE ERROR:" : "BE OK:");
42 printf("%s", status & 0x10 ? "PROG ERR:" : "PROG OK:");
43 printf("%s", status & 0x8 ? "VP ERR:" : "VPP OK:");
44 printf("%s", status & 0x4 ? "PROG SUSPEND:" : "PROG RUN/FINISH:");
45 printf("%s", status & 0x2 ? "WP|TBL#|WP#,ABORT:" : "UNLOCK:");
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000046}
47
48int probe_lhf00l04(struct flashchip *flash)
49{
Stefan Reinauerce532972007-05-23 17:20:56 +000050 volatile uint8_t *bios = flash->virtual_memory;
51 volatile uint8_t *registers;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000052 uint8_t id1, id2;
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000053
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000054#if 0
Stefan Reinauerce532972007-05-23 17:20:56 +000055 /* Enter ID mode */
Uwe Hermanna7e05482007-05-09 10:17:44 +000056 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
57 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
58 *(volatile uint8_t *)(bios + 0x5555) = 0x90;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000059#endif
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000060
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000061 *bios = 0xff;
62 myusec_delay(10);
63 *bios = 0x90;
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000064 myusec_delay(10);
65
Uwe Hermanna7e05482007-05-09 10:17:44 +000066 id1 = *(volatile uint8_t *)bios;
67 id2 = *(volatile uint8_t *)(bios + 0x01);
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000068
Stefan Reinauerce532972007-05-23 17:20:56 +000069 /* Leave ID mode */
Uwe Hermanna7e05482007-05-09 10:17:44 +000070 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
71 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
72 *(volatile uint8_t *)(bios + 0x5555) = 0xF0;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000073
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000074 myusec_delay(10);
75
76 printf_debug("%s: id1 0x%x, id2 0x%x\n", __FUNCTION__, id1, id2);
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000077
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000078 if (id1 == flash->manufacture_id && id2 == flash->model_id) {
79 size_t size = flash->total_size * 1024;
80 // we need to mmap the write-protect space.
Stefan Reinauerce532972007-05-23 17:20:56 +000081 registers = mmap(0, size, PROT_WRITE | PROT_READ, MAP_SHARED,
Stefan Reinauer70385642007-04-06 11:58:03 +000082 fd_mem, (off_t) (0 - 0x400000 - size));
Stefan Reinauerce532972007-05-23 17:20:56 +000083 if (registers == MAP_FAILED) {
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000084 // it's this part but we can't map it ...
85 perror("Error MMAP /dev/mem");
86 exit(1);
87 }
88
Stefan Reinauerce532972007-05-23 17:20:56 +000089 flash->virtual_registers = registers;
Uwe Hermanna7e05482007-05-09 10:17:44 +000090 printf("bios %p, *bios 0x%x, bios[1] 0x%x\n", bios, *bios,
91 bios[1]);
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000092 return 1;
93 }
94
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000095 return 0;
96}
97
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000098uint8_t wait_lhf00l04(volatile uint8_t *bios)
99{
100
101 uint8_t status;
102 uint8_t id1, id2;
103
104 *bios = 0x70;
105 if ((*bios & 0x80) == 0) { // it's busy
Uwe Hermanna7e05482007-05-09 10:17:44 +0000106 while ((*bios & 0x80) == 0) ;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000107 }
108
109 status = *bios;
110
111 // put another command to get out of status register mode
112
113 *bios = 0x90;
114 myusec_delay(10);
115
Uwe Hermanna7e05482007-05-09 10:17:44 +0000116 id1 = *(volatile uint8_t *)bios;
117 id2 = *(volatile uint8_t *)(bios + 0x01);
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000118
119 // this is needed to jam it out of "read id" mode
Uwe Hermanna7e05482007-05-09 10:17:44 +0000120 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
121 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
122 *(volatile uint8_t *)(bios + 0x5555) = 0xF0;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000123 return status;
124
125}
126int erase_lhf00l04_block(struct flashchip *flash, int offset)
127{
Stefan Reinauerce532972007-05-23 17:20:56 +0000128 volatile uint8_t *bios = flash->virtual_memory + offset;
129 volatile uint8_t *wrprotect = flash->virtual_registers + offset + 2;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000130 uint8_t status;
131
132 // clear status register
133 *bios = 0x50;
134 printf("Erase at %p\n", bios);
Stefan Reinauerce532972007-05-23 17:20:56 +0000135 status = wait_lhf00l04(flash->virtual_memory);
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000136 print_lhf00l04_status(status);
137 // clear write protect
138 printf("write protect is at %p\n", (wrprotect));
139 printf("write protect is 0x%x\n", *(wrprotect));
140 *(wrprotect) = 0;
141 printf("write protect is 0x%x\n", *(wrprotect));
142
143 // now start it
Uwe Hermanna7e05482007-05-09 10:17:44 +0000144 *(volatile uint8_t *)(bios) = 0x20;
145 *(volatile uint8_t *)(bios) = 0xd0;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000146 myusec_delay(10);
147 // now let's see what the register is
Stefan Reinauerce532972007-05-23 17:20:56 +0000148 status = wait_lhf00l04(flash->virtual_memory);
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000149 print_lhf00l04_status(status);
150 printf("DONE BLOCK 0x%x\n", offset);
151 return (0);
152}
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000153int erase_lhf00l04(struct flashchip *flash)
154{
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000155 int i;
156 unsigned int total_size = flash->total_size * 1024;
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000157
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000158 printf("total_size is %d; flash->page_size is %d\n",
159 total_size, flash->page_size);
160 for (i = 0; i < total_size; i += flash->page_size)
161 erase_lhf00l04_block(flash, i);
162 printf("DONE ERASE\n");
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000163 return (0);
164}
165
Uwe Hermanna7e05482007-05-09 10:17:44 +0000166void write_page_lhf00l04(volatile uint8_t *bios, uint8_t *src,
167 volatile uint8_t *dst, int page_size)
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000168{
169 int i;
170
171 for (i = 0; i < page_size; i++) {
172 /* transfer data from source to destination */
173 *dst = 0x40;
174 *dst++ = *src++;
175 wait_lhf00l04(bios);
176 }
177
178}
179
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000180int write_lhf00l04(struct flashchip *flash, uint8_t *buf)
181{
182 int i;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000183 int total_size = flash->total_size * 1024;
184 int page_size = flash->page_size;
Stefan Reinauerce532972007-05-23 17:20:56 +0000185 volatile uint8_t *bios = flash->virtual_memory;
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000186
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000187 erase_lhf00l04(flash);
188 if (*bios != 0xff) {
189 printf("ERASE FAILED\n");
190 return -1;
191 }
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000192 printf("Programming Page: ");
193 for (i = 0; i < total_size / page_size; i++) {
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000194 printf("%04d at address: 0x%08x", i, i * page_size);
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000195 write_page_lhf00l04(bios, buf + i * page_size,
Uwe Hermanna7e05482007-05-09 10:17:44 +0000196 bios + i * page_size, page_size);
197 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");
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000198 }
199 printf("\n");
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000200 protect_lhf00l04(bios);
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000201 return (0);
202}