blob: 3167fd602a3b314a03aa977ad81b07a586a7da6a [file] [log] [blame]
Adam Kaufman064b1f22007-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
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000024#ifndef __FLASH_H__
25#define __FLASH_H__ 1
26
Adam Kaufman064b1f22007-02-06 19:47:50 +000027#if defined(__GLIBC__)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000028#include <sys/io.h>
Adam Kaufman064b1f22007-02-06 19:47:50 +000029#endif
30
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000031#include <unistd.h>
Ollie Lho184a4042005-11-26 21:55:36 +000032#include <stdint.h>
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000033
34struct flashchip {
Ollie Lho761bf1b2004-03-20 16:46:10 +000035 char *name;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000036 int manufacture_id;
37 int model_id;
38
Ollie Lho184a4042005-11-26 21:55:36 +000039 volatile uint8_t *virt_addr;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000040 int total_size;
41 int page_size;
42
Uwe Hermann0b7afe62007-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);
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000047
Ronald G. Minnich56439422002-09-06 16:58:14 +000048 int fd_mem;
Ollie Lho184a4042005-11-26 21:55:36 +000049 volatile uint8_t *virt_addr_2;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000050};
51
Ollie Lho184a4042005-11-26 21:55:36 +000052extern struct flashchip flashchips[];
53
Uwe Hermannaf2b52d2007-04-01 20:00:32 +000054/* Please keep this list sorted alphabetically by manufacturer. The first
55 * entry of each section should be the manufacturer ID, followed by the
56 * list of devices from that manufacturer (sorted by device IDs).
57 */
58
59#define AMD_ID 0x01 /* AMD */
Uwe Hermann0b7afe62007-04-01 19:44:21 +000060#define AM_29F040B 0xA4
61#define AM_29F016D 0xAD
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000062
Uwe Hermannaf2b52d2007-04-01 20:00:32 +000063#define ASD_ID 0x25 /* ASD */
Uwe Hermann0b7afe62007-04-01 19:44:21 +000064#define ASD_AE49F2008 0x52
Stefan Reinaueref54aba2006-11-21 23:51:08 +000065
Uwe Hermannaf2b52d2007-04-01 20:00:32 +000066#define ATMEL_ID 0x1F /* Atmel */
67#define AT_29C040A 0xA4
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000068
Uwe Hermannaf2b52d2007-04-01 20:00:32 +000069#define MX_ID 0xC2 /* Macronix (MX) */
Uwe Hermann0b7afe62007-04-01 19:44:21 +000070#define MX_29F002 0xB0
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000071
Uwe Hermannaf2b52d2007-04-01 20:00:32 +000072#define SHARP_ID 0xB0 /* Sharp */
Uwe Hermann0b7afe62007-04-01 19:44:21 +000073#define SHARP_LHF00L04 0xCF
Ronald G. Minnich5b582f22006-02-23 17:16:44 +000074
Uwe Hermannaf2b52d2007-04-01 20:00:32 +000075#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. Minnich5e5f75e2002-01-29 18:21:41 +000094
Uwe Hermannaf2b52d2007-04-01 20:00:32 +000095#define PMC_ID 0x9D /* PMC */
96#define PMC_49FL002 0x6D
97#define PMC_49FL004 0x6E
Ronald G. Minniche3dad012004-02-10 21:34:18 +000098
Uwe Hermannaf2b52d2007-04-01 20:00:32 +000099#define WINBOND_ID 0xDA /* Winbond */
100#define W_29C011 0xC1
101#define W_29C020C 0x45
102#define W_39V040A 0x3D
103#define W_39V040B 0x54
104#define W_39V080A 0xD0
105#define W_49F002U 0x0B
106#define W_49V002A 0xB0
107#define W_49V002FA 0x32
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000108
Uwe Hermannaf2b52d2007-04-01 20:00:32 +0000109#define ST_ID 0x20 /* ST */
Uwe Hermann0b7afe62007-04-01 19:44:21 +0000110#define ST_M29F040B 0xE2
111#define ST_M29F400BT 0xD5
Ronald G. Minnich3c910ed2002-05-28 23:29:17 +0000112
Uwe Hermannaf2b52d2007-04-01 20:00:32 +0000113#define EMST_ID 0x8c /* EMST / EFST */
114#define EMST_F49B002UA 0x00
Stefan Reinaueraf2c2b52006-06-30 20:07:50 +0000115
Uwe Hermannaf2b52d2007-04-01 20:00:32 +0000116#define MSYSTEMS_ID 0x156f /* M-Systems */
Uwe Hermann0b7afe62007-04-01 19:44:21 +0000117#define MSYSTEMS_MD2200 0xdb /* ? */
118#define MSYSTEMS_MD2800 0x30 /* hmm -- both 0x30 */
119#define MSYSTEMS_MD2802 0x30 /* hmm -- both 0x30 */
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000120
Uwe Hermannaf2b52d2007-04-01 20:00:32 +0000121#define SYNCMOS_ID 0x40 /* SyncMOS */
122#define S29C51001T 0x01
123#define S29C51002T 0x02
124#define S29C51004T 0x03
125#define S29C31004T 0x63
Giampiero Giancipolia8c80822006-11-20 20:03:07 +0000126
Adam Kaufman064b1f22007-02-06 19:47:50 +0000127/* function prototypes from udelay.h */
128
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000129extern void myusec_delay(int time);
Ollie Lhocbbf1252004-03-17 22:22:08 +0000130extern void myusec_calibrate_delay();
131extern int enable_flash_write(void);
Adam Kaufman064b1f22007-02-06 19:47:50 +0000132
133/* physical memory mapping device */
134
135#if defined (__sun) && (defined(__i386) || defined(__amd64))
136# define MEM_DEV "/dev/xsvc"
137#else
138# define MEM_DEV "/dev/mem"
139#endif
140
Ollie Lho761bf1b2004-03-20 16:46:10 +0000141#endif /* !__FLASH_H__ */