Adam Kaufman | 064b1f2 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 1 | /* |
| 2 | * flash.h: flash programming utility - central include file |
| 3 | * |
| 4 | * Copyright 2000 Silicon Integrated System Corporation |
| 5 | * Copyright 2000 Ronald G. Minnich <rminnich@gmail.com> |
| 6 | * Copyright 2005 coresystems GmbH <stepan@coresystems.de> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 21 | * |
| 22 | */ |
| 23 | |
| 24 | |
Ronald G. Minnich | eaab50b | 2003-09-12 22:41:53 +0000 | [diff] [blame] | 25 | #ifndef __FLASH_H__ |
| 26 | #define __FLASH_H__ 1 |
| 27 | |
Adam Kaufman | 064b1f2 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 28 | #if defined(__GLIBC__) |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 29 | #include <sys/io.h> |
Adam Kaufman | 064b1f2 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 30 | #endif |
| 31 | |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 32 | #include <unistd.h> |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 33 | #include <stdint.h> |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 34 | |
| 35 | struct flashchip { |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 36 | char *name; |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 37 | int manufacture_id; |
| 38 | int model_id; |
| 39 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 40 | volatile uint8_t *virt_addr; |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 41 | int total_size; |
| 42 | int page_size; |
| 43 | |
| 44 | int (*probe) (struct flashchip * flash); |
| 45 | int (*erase) (struct flashchip * flash); |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 46 | int (*write) (struct flashchip * flash, uint8_t *buf); |
| 47 | int (*read) (struct flashchip * flash, uint8_t *buf); |
Ronald G. Minnich | eaab50b | 2003-09-12 22:41:53 +0000 | [diff] [blame] | 48 | |
Ronald G. Minnich | 5643942 | 2002-09-06 16:58:14 +0000 | [diff] [blame] | 49 | int fd_mem; |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 50 | volatile uint8_t *virt_addr_2; |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 51 | }; |
| 52 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 53 | extern struct flashchip flashchips[]; |
| 54 | |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 55 | #define AMD_ID 0x01 |
| 56 | #define AM_29F040B 0xA4 |
Stefan Reinauer | d918daa | 2006-03-16 16:44:07 +0000 | [diff] [blame] | 57 | #define AM_29F016D 0xAD |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 58 | |
Stefan Reinauer | ef54aba | 2006-11-21 23:51:08 +0000 | [diff] [blame] | 59 | #define ASD_ID 0x25 |
| 60 | #define ASD_AE49F2008 0x52 |
| 61 | |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 62 | #define ATMEL_ID 0x1F /* Winbond Manufacture ID code */ |
| 63 | #define AT_29C040A 0xA4 /* Winbond w29c020c device code */ |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 64 | |
| 65 | #define MX_ID 0xC2 |
| 66 | #define MX_29F002 0xB0 |
| 67 | |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 68 | #define SHARP_ID 0xB0 |
| 69 | #define SHARP_LHF00L04 0xCF |
| 70 | |
Stefan Reinauer | e807d82 | 2006-07-31 23:37:17 +0000 | [diff] [blame] | 71 | #define SST_ID 0xBF /* SST Manufacturer ID code */ |
| 72 | #define SST_29EE020A 0x10 /* SST 29EE020 device */ |
| 73 | #define SST_28SF040 0x04 /* SST 29EE040 device */ |
| 74 | #define SST_39SF010 0xB5 /* SST 39SF010A device */ |
| 75 | #define SST_39SF020 0xB6 /* SST 39SF020A device */ |
| 76 | #define SST_39SF040 0xB7 /* SST 39SF040 device */ |
| 77 | #define SST_39VF020 0xD6 /* SST 39VF020 device */ |
Scott Tsai | 023af76 | 2006-03-31 11:36:06 +0000 | [diff] [blame] | 78 | #define SST_49LF040B 0x50 /* SST 49LF040B device */ |
David Hendricks | 3770a11 | 2004-03-17 21:47:30 +0000 | [diff] [blame] | 79 | #define SST_49LF040 0x51 /* SST 49LF040 device */ |
Uwe Hermann | e205d98 | 2006-10-07 22:59:03 +0000 | [diff] [blame] | 80 | #define SST_49LF020A 0x52 /* SST 49LF020A device */ |
David Hendricks | 1f12810 | 2004-03-18 21:55:22 +0000 | [diff] [blame] | 81 | #define SST_49LF080A 0x5B /* SST 48LF080A device */ |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 82 | #define SST_49LF002A 0x57 /* SST 49LF002A device */ |
| 83 | #define SST_49LF003A 0x1B /* SST 49LF003A device */ |
| 84 | #define SST_49LF004A 0x60 /* SST 49LF004A device */ |
| 85 | #define SST_49LF008A 0x5A /* SST 49LF008A device */ |
Yinghai Lu | ca78297 | 2007-01-22 20:21:17 +0000 | [diff] [blame] | 86 | #define SST_49LF004C 0x54 /* SST 49LF004C device */ |
| 87 | #define SST_49LF008C 0x59 /* SST 49LF008C device */ |
| 88 | #define SST_49LF016C 0x5C /* SST 49LF016C device */ |
Alan Carvalho de Assis | 474230a | 2007-01-27 13:39:06 +0000 | [diff] [blame] | 89 | #define SST_49LF160C 0x4C /* SST 49LF160C device */ |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 90 | |
Stefan Reinauer | e807d82 | 2006-07-31 23:37:17 +0000 | [diff] [blame] | 91 | #define PMC_ID 0x9D /* PMC Manufacturer ID code */ |
Stefan Reinauer | 6424faf | 2006-06-25 09:56:45 +0000 | [diff] [blame] | 92 | #define PMC_49FL002 0x6D /* PMC 49FL002 device code */ |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 93 | #define PMC_49FL004 0x6E /* PMC 49FL004 device code */ |
Ronald G. Minnich | e3dad01 | 2004-02-10 21:34:18 +0000 | [diff] [blame] | 94 | |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 95 | #define WINBOND_ID 0xDA /* Winbond Manufacture ID code */ |
| 96 | #define W_29C011 0xC1 /* Winbond w29c011 device code */ |
| 97 | #define W_29C020C 0x45 /* Winbond w29c020c device code */ |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 98 | #define W_39V040A 0x3D /* Winbond w39v040a device code */ |
Stefan Reinauer | e807d82 | 2006-07-31 23:37:17 +0000 | [diff] [blame] | 99 | #define W_39V040B 0x54 /* Winbond w39v040b device code */ |
David Hendricks | 71437d0 | 2007-03-02 02:25:36 +0000 | [diff] [blame] | 100 | #define W_39V080A 0xD0 /* Winbond w39v080a device code */ |
Stefan Reinauer | 86de283 | 2006-03-31 11:26:55 +0000 | [diff] [blame] | 101 | #define W_49F002U 0x0B /* Winbond w49F002u device code */ |
Stefan Reinauer | db8b13a | 2006-06-14 15:58:41 +0000 | [diff] [blame] | 102 | #define W_49V002A 0xB0 /* Winbond W49V002A device code */ |
Stefan Reinauer | 64f05bb | 2006-07-19 15:13:21 +0000 | [diff] [blame] | 103 | #define W_49V002FA 0x32 /* Winbond W49V002FA device code */ |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 104 | |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 105 | #define ST_ID 0x20 |
Stefan Reinauer | 9d3d93e | 2006-02-24 13:47:26 +0000 | [diff] [blame] | 106 | #define ST_M29F040B 0xE2 |
Ronald G. Minnich | 3c910ed | 2002-05-28 23:29:17 +0000 | [diff] [blame] | 107 | #define ST_M29F400BT 0xD5 |
| 108 | |
Stefan Reinauer | af2c2b5 | 2006-06-30 20:07:50 +0000 | [diff] [blame] | 109 | #define EMST_ID 0x8c /* EMST - Elite Flash Storage Inc. Manufacturer ID code */ |
| 110 | #define EMST_F49B002UA 0x00 /* EMST F49B002UA device code */ |
| 111 | |
Ronald G. Minnich | eaab50b | 2003-09-12 22:41:53 +0000 | [diff] [blame] | 112 | #define MSYSTEMS_ID 0x156f |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 113 | #define MSYSTEMS_MD2200 0xdb /* ? */ |
| 114 | #define MSYSTEMS_MD2800 0x30 /* hmm -- both 0x30 */ |
| 115 | #define MSYSTEMS_MD2802 0x30 /* hmm -- both 0x30 */ |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 116 | |
Uwe Hermann | 566820d | 2006-11-21 15:09:05 +0000 | [diff] [blame] | 117 | #define SYNCMOS_ID 0x40 /* SyncMOS ID */ |
Uwe Hermann | 838c769 | 2006-11-21 15:02:27 +0000 | [diff] [blame] | 118 | #define S29C51001T 0x01 /* SyncMOS S29C51001T/B */ |
| 119 | #define S29C51002T 0x02 /* SyncMOS S29C51002T/B */ |
| 120 | #define S29C51004T 0x03 /* SyncMOS S29C51004T/B */ |
| 121 | #define S29C31004T 0x63 /* SyncMOS S29C31004T */ |
Giampiero Giancipoli | a8c8082 | 2006-11-20 20:03:07 +0000 | [diff] [blame] | 122 | |
Adam Kaufman | 064b1f2 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 123 | /* function prototypes from udelay.h */ |
| 124 | |
Ronald G. Minnich | eaab50b | 2003-09-12 22:41:53 +0000 | [diff] [blame] | 125 | extern void myusec_delay(int time); |
Ollie Lho | cbbf125 | 2004-03-17 22:22:08 +0000 | [diff] [blame] | 126 | extern void myusec_calibrate_delay(); |
| 127 | extern int enable_flash_write(void); |
Adam Kaufman | 064b1f2 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 128 | |
| 129 | /* physical memory mapping device */ |
| 130 | |
| 131 | #if defined (__sun) && (defined(__i386) || defined(__amd64)) |
| 132 | # define MEM_DEV "/dev/xsvc" |
| 133 | #else |
| 134 | # define MEM_DEV "/dev/mem" |
| 135 | #endif |
| 136 | |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 137 | #endif /* !__FLASH_H__ */ |