summaryrefslogtreecommitdiffstats
path: root/qemu/roms/openbios/utils/devbios/flashchips.h
blob: 3e6e5a6e0a41f453a5eccd955fcbc89edcb89b36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
 *                     OpenBIOS - free your system! 
 *              ( firmware/flash device driver for Linux )
 *                          
 *  flashchips.h - flash device structures.
 *  
 *  This program is part of a free implementation of the IEEE 1275-1994 
 *  Standard for Boot (Initialization Configuration) Firmware.
 *
 *  Copyright (C) 1998-2004  Stefan Reinauer, <stepan@openbios.org>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; version 2 of the License.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA, 02110-1301 USA
 *
 */

/*
 *   flags structure
 *   bit 0 = needs erase before write (f_needs_erase)
 *   bit 1-3 flash manu type
 *   bit 4-6 probably needed for more manu
 *   bit 7 = sector erase happens one sector at a time
 *           (f_slow_sector_erase)
 */

#define f_needs_erase   0x01

/* 3 bit for flashtype */
#define f_manuf_compl   0x0e /* Mask out bits 1-3 */
#define f_intel_compl   0x02 /* 001 */
#define f_atmel_compl   0x04 /* 010 */
#define f_fwh_compl     0x08 /* 100 */

#define f_slow_sector_erase 0x80

#define FLASH_UNKNOWN	0
#define FLASH_CFI	1
#define FLASH_JEDEC	2

typedef struct flashdevice {
	unsigned long	mapped;
	unsigned long   physical;
	unsigned long   offset;
	unsigned int	flashnum, manufnum;
	unsigned short	id;
	unsigned int	size, sectors;
	unsigned int	idx;
	void		*data;
	int		open_mode, open_cnt;
} flashdevice_t;

typedef struct flashchip {
	char		*name;
	unsigned short	id;
	unsigned int	voltage;
	unsigned int	size;		/* KBytes */
	unsigned int	supported;
	unsigned int	pagesize;	/* Bytes */
	unsigned int	flags;
	unsigned int	*sectors;	/* Kbytes[] including end of last sector */
} flashchip_t;

typedef struct manufacturer {
	char		*name;
	unsigned short	id;
} manufacturer_t;

extern unsigned int currflash;
extern flashdevice_t  flashdevices[BIOS_MAXDEV];
extern const flashchip_t flashchips[];
extern const manufacturer_t manufacturers[];