blob: aa24cac391d657ab5e8b5e9335f3c61e0fd0a486 [file] [log] [blame]
stepan5c3f1382007-02-06 19:47:50 +00001/*
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
rminnich8d3ff912003-10-25 17:01:29 +000024#ifndef __FLASH_H__
25#define __FLASH_H__ 1
26
stepan5c3f1382007-02-06 19:47:50 +000027#if defined(__GLIBC__)
rminnich8d3ff912003-10-25 17:01:29 +000028#include <sys/io.h>
stepan5c3f1382007-02-06 19:47:50 +000029#endif
30
rminnich8d3ff912003-10-25 17:01:29 +000031#include <unistd.h>
ollie6a600992005-11-26 21:55:36 +000032#include <stdint.h>
rminnich8d3ff912003-10-25 17:01:29 +000033
34struct flashchip {
ollie5b621572004-03-20 16:46:10 +000035 char *name;
rminnich8d3ff912003-10-25 17:01:29 +000036 int manufacture_id;
37 int model_id;
38
ollie6a600992005-11-26 21:55:36 +000039 volatile uint8_t *virt_addr;
rminnich8d3ff912003-10-25 17:01:29 +000040 int total_size;
41 int page_size;
42
uwe8e1a2ba2007-04-01 19:44:21 +000043 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);
rminnich8d3ff912003-10-25 17:01:29 +000047
48 int fd_mem;
ollie6a600992005-11-26 21:55:36 +000049 volatile uint8_t *virt_addr_2;
rminnich8d3ff912003-10-25 17:01:29 +000050};
51
ollie6a600992005-11-26 21:55:36 +000052extern struct flashchip flashchips[];
53
uwe8e1a2ba2007-04-01 19:44:21 +000054#define AMD_ID 0x01
55#define AM_29F040B 0xA4
56#define AM_29F016D 0xAD
rminnich8d3ff912003-10-25 17:01:29 +000057
uwe8e1a2ba2007-04-01 19:44:21 +000058#define ASD_ID 0x25
59#define ASD_AE49F2008 0x52
stepan8fdc8122006-11-21 23:51:08 +000060
uwe8e1a2ba2007-04-01 19:44:21 +000061#define ATMEL_ID 0x1F /* Winbond Manufacture ID code */
62#define AT_29C040A 0xA4 /* Winbond w29c020c device code */
rminnich8d3ff912003-10-25 17:01:29 +000063
uwe8e1a2ba2007-04-01 19:44:21 +000064#define MX_ID 0xC2
65#define MX_29F002 0xB0
rminnich8d3ff912003-10-25 17:01:29 +000066
uwe8e1a2ba2007-04-01 19:44:21 +000067#define SHARP_ID 0xB0
68#define SHARP_LHF00L04 0xCF
rminnich5f8fd452006-02-23 17:16:44 +000069
uwe8e1a2ba2007-04-01 19:44:21 +000070#define SST_ID 0xBF /* SST Manufacturer ID code */
71#define SST_29EE020A 0x10 /* SST 29EE020 device */
72#define SST_28SF040 0x04 /* SST 29EE040 device */
73#define SST_39SF010 0xB5 /* SST 39SF010A device */
74#define SST_39SF020 0xB6 /* SST 39SF020A device */
75#define SST_39SF040 0xB7 /* SST 39SF040 device */
76#define SST_39VF020 0xD6 /* SST 39VF020 device */
77#define SST_49LF040B 0x50 /* SST 49LF040B device */
78#define SST_49LF040 0x51 /* SST 49LF040 device */
79#define SST_49LF020A 0x52 /* SST 49LF020A device */
80#define SST_49LF080A 0x5B /* SST 48LF080A device */
81#define SST_49LF002A 0x57 /* SST 49LF002A device */
82#define SST_49LF003A 0x1B /* SST 49LF003A device */
83#define SST_49LF004A 0x60 /* SST 49LF004A device */
84#define SST_49LF008A 0x5A /* SST 49LF008A device */
85#define SST_49LF004C 0x54 /* SST 49LF004C device */
86#define SST_49LF008C 0x59 /* SST 49LF008C device */
87#define SST_49LF016C 0x5C /* SST 49LF016C device */
88#define SST_49LF160C 0x4C /* SST 49LF160C device */
rminnich8d3ff912003-10-25 17:01:29 +000089
uwe8e1a2ba2007-04-01 19:44:21 +000090#define PMC_ID 0x9D /* PMC Manufacturer ID code */
91#define PMC_49FL002 0x6D /* PMC 49FL002 device code */
92#define PMC_49FL004 0x6E /* PMC 49FL004 device code */
rminnichbe1ace12004-02-10 21:34:18 +000093
uwe8e1a2ba2007-04-01 19:44:21 +000094#define WINBOND_ID 0xDA /* Winbond Manufacture ID code */
95#define W_29C011 0xC1 /* Winbond w29c011 device code */
96#define W_29C020C 0x45 /* Winbond w29c020c device code */
97#define W_39V040A 0x3D /* Winbond w39v040a device code */
98#define W_39V040B 0x54 /* Winbond w39v040b device code */
99#define W_39V080A 0xD0 /* Winbond w39v080a device code */
100#define W_49F002U 0x0B /* Winbond w49F002u device code */
101#define W_49V002A 0xB0 /* Winbond W49V002A device code */
102#define W_49V002FA 0x32 /* Winbond W49V002FA device code */
rminnich8d3ff912003-10-25 17:01:29 +0000103
uwe8e1a2ba2007-04-01 19:44:21 +0000104#define ST_ID 0x20
105#define ST_M29F040B 0xE2
106#define ST_M29F400BT 0xD5
rminnich8d3ff912003-10-25 17:01:29 +0000107
uwe8e1a2ba2007-04-01 19:44:21 +0000108#define EMST_ID 0x8c /* EMST - Elite Flash Storage Inc. Manufacturer ID code */
109#define EMST_F49B002UA 0x00 /* EMST F49B002UA device code */
stepanbc493132006-06-30 20:07:50 +0000110
uwe8e1a2ba2007-04-01 19:44:21 +0000111#define MSYSTEMS_ID 0x156f
112#define MSYSTEMS_MD2200 0xdb /* ? */
113#define MSYSTEMS_MD2800 0x30 /* hmm -- both 0x30 */
114#define MSYSTEMS_MD2802 0x30 /* hmm -- both 0x30 */
rminnich8d3ff912003-10-25 17:01:29 +0000115
uwe8e1a2ba2007-04-01 19:44:21 +0000116#define SYNCMOS_ID 0x40 /* SyncMOS ID */
117#define S29C51001T 0x01 /* SyncMOS S29C51001T/B */
118#define S29C51002T 0x02 /* SyncMOS S29C51002T/B */
119#define S29C51004T 0x03 /* SyncMOS S29C51004T/B */
120#define S29C31004T 0x63 /* SyncMOS S29C31004T */
uwebad17702006-11-20 20:03:07 +0000121
stepan5c3f1382007-02-06 19:47:50 +0000122/* function prototypes from udelay.h */
123
rminnich8d3ff912003-10-25 17:01:29 +0000124extern void myusec_delay(int time);
ollie5672ac62004-03-17 22:22:08 +0000125extern void myusec_calibrate_delay();
126extern int enable_flash_write(void);
stepan5c3f1382007-02-06 19:47:50 +0000127
128/* physical memory mapping device */
129
130#if defined (__sun) && (defined(__i386) || defined(__amd64))
131# define MEM_DEV "/dev/xsvc"
132#else
133# define MEM_DEV "/dev/mem"
134#endif
135
ollie5b621572004-03-20 16:46:10 +0000136#endif /* !__FLASH_H__ */