blob: 1caedd0b67d6bf1c23a5e41dfe51ffccac35d301 [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;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000051 uint8_t id1, id2;
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000052
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000053#if 0
Stefan Reinauerce532972007-05-23 17:20:56 +000054 /* Enter ID mode */
Uwe Hermanna7e05482007-05-09 10:17:44 +000055 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
56 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
57 *(volatile uint8_t *)(bios + 0x5555) = 0x90;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000058#endif
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000059
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000060 *bios = 0xff;
61 myusec_delay(10);
62 *bios = 0x90;
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000063 myusec_delay(10);
64
Uwe Hermanna7e05482007-05-09 10:17:44 +000065 id1 = *(volatile uint8_t *)bios;
66 id2 = *(volatile uint8_t *)(bios + 0x01);
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000067
Stefan Reinauerce532972007-05-23 17:20:56 +000068 /* Leave ID mode */
Uwe Hermanna7e05482007-05-09 10:17:44 +000069 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
70 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
71 *(volatile uint8_t *)(bios + 0x5555) = 0xF0;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000072
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000073 myusec_delay(10);
74
75 printf_debug("%s: id1 0x%x, id2 0x%x\n", __FUNCTION__, id1, id2);
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000076
Stefan Reinauerff4f1972007-05-24 08:48:10 +000077 if (id1 != flash->manufacture_id || id2 != flash->model_id)
78 return 0;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000079
Stefan Reinauerff4f1972007-05-24 08:48:10 +000080 map_flash_registers(flash);
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000081
Stefan Reinauerff4f1972007-05-24 08:48:10 +000082 return 1;
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000083}
84
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000085uint8_t wait_lhf00l04(volatile uint8_t *bios)
86{
87
88 uint8_t status;
89 uint8_t id1, id2;
90
91 *bios = 0x70;
92 if ((*bios & 0x80) == 0) { // it's busy
Uwe Hermanna7e05482007-05-09 10:17:44 +000093 while ((*bios & 0x80) == 0) ;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +000094 }
95
96 status = *bios;
97
98 // put another command to get out of status register mode
99
100 *bios = 0x90;
101 myusec_delay(10);
102
Uwe Hermanna7e05482007-05-09 10:17:44 +0000103 id1 = *(volatile uint8_t *)bios;
104 id2 = *(volatile uint8_t *)(bios + 0x01);
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000105
106 // this is needed to jam it out of "read id" mode
Uwe Hermanna7e05482007-05-09 10:17:44 +0000107 *(volatile uint8_t *)(bios + 0x5555) = 0xAA;
108 *(volatile uint8_t *)(bios + 0x2AAA) = 0x55;
109 *(volatile uint8_t *)(bios + 0x5555) = 0xF0;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000110 return status;
111
112}
113int erase_lhf00l04_block(struct flashchip *flash, int offset)
114{
Stefan Reinauerce532972007-05-23 17:20:56 +0000115 volatile uint8_t *bios = flash->virtual_memory + offset;
116 volatile uint8_t *wrprotect = flash->virtual_registers + offset + 2;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000117 uint8_t status;
118
119 // clear status register
120 *bios = 0x50;
121 printf("Erase at %p\n", bios);
Stefan Reinauerce532972007-05-23 17:20:56 +0000122 status = wait_lhf00l04(flash->virtual_memory);
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000123 print_lhf00l04_status(status);
124 // clear write protect
125 printf("write protect is at %p\n", (wrprotect));
126 printf("write protect is 0x%x\n", *(wrprotect));
127 *(wrprotect) = 0;
128 printf("write protect is 0x%x\n", *(wrprotect));
129
130 // now start it
Uwe Hermanna7e05482007-05-09 10:17:44 +0000131 *(volatile uint8_t *)(bios) = 0x20;
132 *(volatile uint8_t *)(bios) = 0xd0;
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000133 myusec_delay(10);
134 // now let's see what the register is
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 printf("DONE BLOCK 0x%x\n", offset);
138 return (0);
139}
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000140int erase_lhf00l04(struct flashchip *flash)
141{
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000142 int i;
143 unsigned int total_size = flash->total_size * 1024;
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000144
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000145 printf("total_size is %d; flash->page_size is %d\n",
146 total_size, flash->page_size);
147 for (i = 0; i < total_size; i += flash->page_size)
148 erase_lhf00l04_block(flash, i);
149 printf("DONE ERASE\n");
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000150 return (0);
151}
152
Uwe Hermanna7e05482007-05-09 10:17:44 +0000153void write_page_lhf00l04(volatile uint8_t *bios, uint8_t *src,
154 volatile uint8_t *dst, int page_size)
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000155{
156 int i;
157
158 for (i = 0; i < page_size; i++) {
159 /* transfer data from source to destination */
160 *dst = 0x40;
161 *dst++ = *src++;
162 wait_lhf00l04(bios);
163 }
164
165}
166
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000167int write_lhf00l04(struct flashchip *flash, uint8_t *buf)
168{
169 int i;
Uwe Hermanna7e05482007-05-09 10:17:44 +0000170 int total_size = flash->total_size * 1024;
171 int page_size = flash->page_size;
Stefan Reinauerce532972007-05-23 17:20:56 +0000172 volatile uint8_t *bios = flash->virtual_memory;
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000173
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000174 erase_lhf00l04(flash);
175 if (*bios != 0xff) {
176 printf("ERASE FAILED\n");
177 return -1;
178 }
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000179 printf("Programming Page: ");
180 for (i = 0; i < total_size / page_size; i++) {
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000181 printf("%04d at address: 0x%08x", i, i * page_size);
Ronald G. Minnich5eaed682006-03-14 19:58:14 +0000182 write_page_lhf00l04(bios, buf + i * page_size,
Uwe Hermanna7e05482007-05-09 10:17:44 +0000183 bios + i * page_size, page_size);
184 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 +0000185 }
186 printf("\n");
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000187 protect_lhf00l04(bios);
Ronald G. Minnich5b582f22006-02-23 17:16:44 +0000188 return (0);
189}