Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 1 | /* |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 2 | * lhf00l04.c: driver for programming JEDEC standard flash parts |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 3 | * |
| 4 | * |
| 5 | * Copyright 2000 Silicon Integrated System Corporation |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 6 | * |
| 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. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 22 | * Reference: http://www.intel.com/design/chipsets/datashts/290658.htm |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 23 | */ |
| 24 | |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 25 | #include <errno.h> |
| 26 | #include <fcntl.h> |
| 27 | #include <sys/mman.h> |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 28 | #include <unistd.h> |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 29 | #include <stdio.h> |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 30 | #include <stdlib.h> |
| 31 | |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 32 | #include "flash.h" |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 33 | #include "sharplhf00l04.h" |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 34 | #include "debug.h" |
| 35 | |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 36 | // I need that Berkeley bit-map printer |
| 37 | void print_lhf00l04_status(uint8_t status) |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 38 | { |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 39 | 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. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 46 | } |
| 47 | |
| 48 | int probe_lhf00l04(struct flashchip *flash) |
| 49 | { |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 50 | volatile uint8_t *bios = flash->virtual_memory; |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 51 | uint8_t id1, id2; |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 52 | |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 53 | #if 0 |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 54 | /* Enter ID mode */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 55 | *(volatile uint8_t *)(bios + 0x5555) = 0xAA; |
| 56 | *(volatile uint8_t *)(bios + 0x2AAA) = 0x55; |
| 57 | *(volatile uint8_t *)(bios + 0x5555) = 0x90; |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 58 | #endif |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 59 | |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 60 | *bios = 0xff; |
| 61 | myusec_delay(10); |
| 62 | *bios = 0x90; |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 63 | myusec_delay(10); |
| 64 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 65 | id1 = *(volatile uint8_t *)bios; |
| 66 | id2 = *(volatile uint8_t *)(bios + 0x01); |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 67 | |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 68 | /* Leave ID mode */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 69 | *(volatile uint8_t *)(bios + 0x5555) = 0xAA; |
| 70 | *(volatile uint8_t *)(bios + 0x2AAA) = 0x55; |
| 71 | *(volatile uint8_t *)(bios + 0x5555) = 0xF0; |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 72 | |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 73 | myusec_delay(10); |
| 74 | |
| 75 | printf_debug("%s: id1 0x%x, id2 0x%x\n", __FUNCTION__, id1, id2); |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 76 | |
Stefan Reinauer | ff4f197 | 2007-05-24 08:48:10 +0000 | [diff] [blame] | 77 | if (id1 != flash->manufacture_id || id2 != flash->model_id) |
| 78 | return 0; |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 79 | |
Stefan Reinauer | ff4f197 | 2007-05-24 08:48:10 +0000 | [diff] [blame] | 80 | map_flash_registers(flash); |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 81 | |
Stefan Reinauer | ff4f197 | 2007-05-24 08:48:10 +0000 | [diff] [blame] | 82 | return 1; |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 83 | } |
| 84 | |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 85 | uint8_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 Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 93 | while ((*bios & 0x80) == 0) ; |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 94 | } |
| 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 Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 103 | id1 = *(volatile uint8_t *)bios; |
| 104 | id2 = *(volatile uint8_t *)(bios + 0x01); |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 105 | |
| 106 | // this is needed to jam it out of "read id" mode |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 107 | *(volatile uint8_t *)(bios + 0x5555) = 0xAA; |
| 108 | *(volatile uint8_t *)(bios + 0x2AAA) = 0x55; |
| 109 | *(volatile uint8_t *)(bios + 0x5555) = 0xF0; |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 110 | return status; |
| 111 | |
| 112 | } |
| 113 | int erase_lhf00l04_block(struct flashchip *flash, int offset) |
| 114 | { |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 115 | volatile uint8_t *bios = flash->virtual_memory + offset; |
| 116 | volatile uint8_t *wrprotect = flash->virtual_registers + offset + 2; |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 117 | uint8_t status; |
| 118 | |
| 119 | // clear status register |
| 120 | *bios = 0x50; |
| 121 | printf("Erase at %p\n", bios); |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 122 | status = wait_lhf00l04(flash->virtual_memory); |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 123 | 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 Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 131 | *(volatile uint8_t *)(bios) = 0x20; |
| 132 | *(volatile uint8_t *)(bios) = 0xd0; |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 133 | myusec_delay(10); |
| 134 | // now let's see what the register is |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 135 | status = wait_lhf00l04(flash->virtual_memory); |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 136 | print_lhf00l04_status(status); |
| 137 | printf("DONE BLOCK 0x%x\n", offset); |
| 138 | return (0); |
| 139 | } |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 140 | int erase_lhf00l04(struct flashchip *flash) |
| 141 | { |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 142 | int i; |
| 143 | unsigned int total_size = flash->total_size * 1024; |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 144 | |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 145 | 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. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 150 | return (0); |
| 151 | } |
| 152 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 153 | void write_page_lhf00l04(volatile uint8_t *bios, uint8_t *src, |
| 154 | volatile uint8_t *dst, int page_size) |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 155 | { |
| 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. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 167 | int write_lhf00l04(struct flashchip *flash, uint8_t *buf) |
| 168 | { |
| 169 | int i; |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 170 | int total_size = flash->total_size * 1024; |
| 171 | int page_size = flash->page_size; |
Stefan Reinauer | ce53297 | 2007-05-23 17:20:56 +0000 | [diff] [blame] | 172 | volatile uint8_t *bios = flash->virtual_memory; |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 173 | |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 174 | erase_lhf00l04(flash); |
| 175 | if (*bios != 0xff) { |
| 176 | printf("ERASE FAILED\n"); |
| 177 | return -1; |
| 178 | } |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 179 | printf("Programming Page: "); |
| 180 | for (i = 0; i < total_size / page_size; i++) { |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 181 | printf("%04d at address: 0x%08x", i, i * page_size); |
Ronald G. Minnich | 5eaed68 | 2006-03-14 19:58:14 +0000 | [diff] [blame] | 182 | write_page_lhf00l04(bios, buf + i * page_size, |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 183 | 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. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 185 | } |
| 186 | printf("\n"); |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 187 | protect_lhf00l04(bios); |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 188 | return (0); |
| 189 | } |