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> |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 6 | * Copyright 2005-2007 coresystems GmbH <stepan@coresystems.de> |
Adam Kaufman | 064b1f2 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 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 | |
Ronald G. Minnich | eaab50b | 2003-09-12 22:41:53 +0000 | [diff] [blame] | 24 | #ifndef __FLASH_H__ |
| 25 | #define __FLASH_H__ 1 |
| 26 | |
Adam Kaufman | 064b1f2 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 27 | #if defined(__GLIBC__) |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 28 | #include <sys/io.h> |
Adam Kaufman | 064b1f2 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 29 | #endif |
| 30 | |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 31 | #include <unistd.h> |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 32 | #include <stdint.h> |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 33 | |
| 34 | struct flashchip { |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 35 | char *name; |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 36 | int manufacture_id; |
| 37 | int model_id; |
| 38 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 39 | volatile uint8_t *virt_addr; |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 40 | int total_size; |
| 41 | int page_size; |
| 42 | |
Uwe Hermann | 0b7afe6 | 2007-04-01 19:44:21 +0000 | [diff] [blame] | 43 | int (*probe) (struct flashchip *flash); |
| 44 | int (*erase) (struct flashchip *flash); |
| 45 | int (*write) (struct flashchip *flash, uint8_t *buf); |
| 46 | int (*read) (struct flashchip *flash, uint8_t *buf); |
Ronald G. Minnich | eaab50b | 2003-09-12 22:41:53 +0000 | [diff] [blame] | 47 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 48 | volatile uint8_t *virt_addr_2; |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 49 | }; |
| 50 | |
Ollie Lho | 184a404 | 2005-11-26 21:55:36 +0000 | [diff] [blame] | 51 | extern struct flashchip flashchips[]; |
| 52 | |
Uwe Hermann | af2b52d | 2007-04-01 20:00:32 +0000 | [diff] [blame] | 53 | /* Please keep this list sorted alphabetically by manufacturer. The first |
| 54 | * entry of each section should be the manufacturer ID, followed by the |
| 55 | * list of devices from that manufacturer (sorted by device IDs). |
| 56 | */ |
| 57 | |
| 58 | #define AMD_ID 0x01 /* AMD */ |
Uwe Hermann | 0b7afe6 | 2007-04-01 19:44:21 +0000 | [diff] [blame] | 59 | #define AM_29F040B 0xA4 |
| 60 | #define AM_29F016D 0xAD |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 61 | |
Uwe Hermann | af2b52d | 2007-04-01 20:00:32 +0000 | [diff] [blame] | 62 | #define ASD_ID 0x25 /* ASD */ |
Uwe Hermann | 0b7afe6 | 2007-04-01 19:44:21 +0000 | [diff] [blame] | 63 | #define ASD_AE49F2008 0x52 |
Stefan Reinauer | ef54aba | 2006-11-21 23:51:08 +0000 | [diff] [blame] | 64 | |
Uwe Hermann | af2b52d | 2007-04-01 20:00:32 +0000 | [diff] [blame] | 65 | #define ATMEL_ID 0x1F /* Atmel */ |
| 66 | #define AT_29C040A 0xA4 |
Uwe Hermann | d7f4806 | 2007-04-28 02:22:59 +0000 | [diff] [blame] | 67 | #define AT_29C020 0xDA |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 68 | |
Uwe Hermann | af2b52d | 2007-04-01 20:00:32 +0000 | [diff] [blame] | 69 | #define MX_ID 0xC2 /* Macronix (MX) */ |
Uwe Hermann | 0b7afe6 | 2007-04-01 19:44:21 +0000 | [diff] [blame] | 70 | #define MX_29F002 0xB0 |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 71 | |
Uwe Hermann | af2b52d | 2007-04-01 20:00:32 +0000 | [diff] [blame] | 72 | #define SHARP_ID 0xB0 /* Sharp */ |
Uwe Hermann | 0b7afe6 | 2007-04-01 19:44:21 +0000 | [diff] [blame] | 73 | #define SHARP_LHF00L04 0xCF |
Ronald G. Minnich | 5b582f2 | 2006-02-23 17:16:44 +0000 | [diff] [blame] | 74 | |
Uwe Hermann | af2b52d | 2007-04-01 20:00:32 +0000 | [diff] [blame] | 75 | #define SST_ID 0xBF /* SST */ |
| 76 | #define SST_29EE020A 0x10 |
| 77 | #define SST_28SF040 0x04 |
| 78 | #define SST_39SF010 0xB5 |
| 79 | #define SST_39SF020 0xB6 |
| 80 | #define SST_39SF040 0xB7 |
| 81 | #define SST_39VF020 0xD6 |
| 82 | #define SST_49LF040B 0x50 |
| 83 | #define SST_49LF040 0x51 |
| 84 | #define SST_49LF020A 0x52 |
| 85 | #define SST_49LF080A 0x5B |
| 86 | #define SST_49LF002A 0x57 |
| 87 | #define SST_49LF003A 0x1B |
| 88 | #define SST_49LF004A 0x60 |
| 89 | #define SST_49LF008A 0x5A |
| 90 | #define SST_49LF004C 0x54 |
| 91 | #define SST_49LF008C 0x59 |
| 92 | #define SST_49LF016C 0x5C |
| 93 | #define SST_49LF160C 0x4C |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 94 | |
Uwe Hermann | af2b52d | 2007-04-01 20:00:32 +0000 | [diff] [blame] | 95 | #define PMC_ID 0x9D /* PMC */ |
| 96 | #define PMC_49FL002 0x6D |
| 97 | #define PMC_49FL004 0x6E |
Ronald G. Minnich | e3dad01 | 2004-02-10 21:34:18 +0000 | [diff] [blame] | 98 | |
Uwe Hermann | af2b52d | 2007-04-01 20:00:32 +0000 | [diff] [blame] | 99 | #define WINBOND_ID 0xDA /* Winbond */ |
| 100 | #define W_29C011 0xC1 |
| 101 | #define W_29C020C 0x45 |
Uwe Hermann | bc1f1a0 | 2007-05-21 21:39:08 +0000 | [diff] [blame^] | 102 | #define W_39V040FA 0x34 |
Uwe Hermann | af2b52d | 2007-04-01 20:00:32 +0000 | [diff] [blame] | 103 | #define W_39V040A 0x3D |
| 104 | #define W_39V040B 0x54 |
| 105 | #define W_39V080A 0xD0 |
| 106 | #define W_49F002U 0x0B |
| 107 | #define W_49V002A 0xB0 |
| 108 | #define W_49V002FA 0x32 |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 109 | |
Uwe Hermann | af2b52d | 2007-04-01 20:00:32 +0000 | [diff] [blame] | 110 | #define ST_ID 0x20 /* ST */ |
Uwe Hermann | d7f4806 | 2007-04-28 02:22:59 +0000 | [diff] [blame] | 111 | #define ST_M29F002B 0x34 |
| 112 | #define ST_M29F002T 0xB0 /* M29F002T / M29F002NT */ |
Uwe Hermann | 0b7afe6 | 2007-04-01 19:44:21 +0000 | [diff] [blame] | 113 | #define ST_M29F400BT 0xD5 |
Uwe Hermann | d7f4806 | 2007-04-28 02:22:59 +0000 | [diff] [blame] | 114 | #define ST_M29F040B 0xE2 |
Ronald G. Minnich | 3c910ed | 2002-05-28 23:29:17 +0000 | [diff] [blame] | 115 | |
Uwe Hermann | af2b52d | 2007-04-01 20:00:32 +0000 | [diff] [blame] | 116 | #define EMST_ID 0x8c /* EMST / EFST */ |
| 117 | #define EMST_F49B002UA 0x00 |
Stefan Reinauer | af2c2b5 | 2006-06-30 20:07:50 +0000 | [diff] [blame] | 118 | |
Uwe Hermann | af2b52d | 2007-04-01 20:00:32 +0000 | [diff] [blame] | 119 | #define MSYSTEMS_ID 0x156f /* M-Systems */ |
Uwe Hermann | 0b7afe6 | 2007-04-01 19:44:21 +0000 | [diff] [blame] | 120 | #define MSYSTEMS_MD2200 0xdb /* ? */ |
| 121 | #define MSYSTEMS_MD2800 0x30 /* hmm -- both 0x30 */ |
| 122 | #define MSYSTEMS_MD2802 0x30 /* hmm -- both 0x30 */ |
Ronald G. Minnich | 5e5f75e | 2002-01-29 18:21:41 +0000 | [diff] [blame] | 123 | |
Uwe Hermann | af2b52d | 2007-04-01 20:00:32 +0000 | [diff] [blame] | 124 | #define SYNCMOS_ID 0x40 /* SyncMOS */ |
| 125 | #define S29C51001T 0x01 |
| 126 | #define S29C51002T 0x02 |
| 127 | #define S29C51004T 0x03 |
| 128 | #define S29C31004T 0x63 |
Giampiero Giancipoli | a8c8082 | 2006-11-20 20:03:07 +0000 | [diff] [blame] | 129 | |
Adam Kaufman | 064b1f2 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 130 | /* function prototypes from udelay.h */ |
| 131 | |
Stefan Reinauer | 7038564 | 2007-04-06 11:58:03 +0000 | [diff] [blame] | 132 | void myusec_delay(int time); |
| 133 | void myusec_calibrate_delay(); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 134 | |
| 135 | /* pci handling for board/chipset_enable */ |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 136 | struct pci_access *pacc; /* For board and chipset_enable */ |
Stefan Reinauer | 7038564 | 2007-04-06 11:58:03 +0000 | [diff] [blame] | 137 | struct pci_dev *pci_dev_find(uint16_t vendor, uint16_t device); |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 138 | struct pci_dev *pci_card_find(uint16_t vendor, uint16_t device, |
| 139 | uint16_t card_vendor, uint16_t card_device); |
Luc Verhaegen | 8e3a600 | 2007-04-04 22:45:58 +0000 | [diff] [blame] | 140 | |
Uwe Hermann | a7e0548 | 2007-05-09 10:17:44 +0000 | [diff] [blame] | 141 | int board_flash_enable(char *vendor, char *part); /* board_enable.c */ |
| 142 | int chipset_flash_enable(void); /* chipset_enable.c */ |
Adam Kaufman | 064b1f2 | 2007-02-06 19:47:50 +0000 | [diff] [blame] | 143 | |
| 144 | /* physical memory mapping device */ |
| 145 | |
| 146 | #if defined (__sun) && (defined(__i386) || defined(__amd64)) |
| 147 | # define MEM_DEV "/dev/xsvc" |
| 148 | #else |
| 149 | # define MEM_DEV "/dev/mem" |
| 150 | #endif |
| 151 | |
Stefan Reinauer | 7038564 | 2007-04-06 11:58:03 +0000 | [diff] [blame] | 152 | extern int fd_mem; |
| 153 | |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 154 | #endif /* !__FLASH_H__ */ |