blob: 9bd76eb97603c44cabfc9b55cf98ee76d6335fc9 [file] [log] [blame]
Stefan Roese6e83e342009-10-27 15:15:55 +01001/*
2 * (C) Copyright 2009
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (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., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 *
23 */
24
25#ifndef __CFI_FLASH_H__
26#define __CFI_FLASH_H__
27
28#define FLASH_CMD_CFI 0x98
29#define FLASH_CMD_READ_ID 0x90
30#define FLASH_CMD_RESET 0xff
31#define FLASH_CMD_BLOCK_ERASE 0x20
32#define FLASH_CMD_ERASE_CONFIRM 0xD0
33#define FLASH_CMD_WRITE 0x40
34#define FLASH_CMD_PROTECT 0x60
Stefan Roeseab935642010-10-25 18:31:48 +020035#define FLASH_CMD_SETUP 0x60
36#define FLASH_CMD_SET_CR_CONFIRM 0x03
Stefan Roese6e83e342009-10-27 15:15:55 +010037#define FLASH_CMD_PROTECT_SET 0x01
38#define FLASH_CMD_PROTECT_CLEAR 0xD0
39#define FLASH_CMD_CLEAR_STATUS 0x50
40#define FLASH_CMD_READ_STATUS 0x70
41#define FLASH_CMD_WRITE_TO_BUFFER 0xE8
42#define FLASH_CMD_WRITE_BUFFER_PROG 0xE9
43#define FLASH_CMD_WRITE_BUFFER_CONFIRM 0xD0
44
45#define FLASH_STATUS_DONE 0x80
46#define FLASH_STATUS_ESS 0x40
47#define FLASH_STATUS_ECLBS 0x20
48#define FLASH_STATUS_PSLBS 0x10
49#define FLASH_STATUS_VPENS 0x08
50#define FLASH_STATUS_PSS 0x04
51#define FLASH_STATUS_DPS 0x02
52#define FLASH_STATUS_R 0x01
53#define FLASH_STATUS_PROTECT 0x01
54
55#define AMD_CMD_RESET 0xF0
56#define AMD_CMD_WRITE 0xA0
57#define AMD_CMD_ERASE_START 0x80
58#define AMD_CMD_ERASE_SECTOR 0x30
59#define AMD_CMD_UNLOCK_START 0xAA
60#define AMD_CMD_UNLOCK_ACK 0x55
61#define AMD_CMD_WRITE_TO_BUFFER 0x25
62#define AMD_CMD_WRITE_BUFFER_CONFIRM 0x29
Anatolij Gustschin041b04f2012-08-09 08:18:12 +020063#define AMD_CMD_SET_PPB_ENTRY 0xC0
64#define AMD_CMD_SET_PPB_EXIT_BC1 0x90
65#define AMD_CMD_SET_PPB_EXIT_BC2 0x00
66#define AMD_CMD_PPB_UNLOCK_BC1 0x80
67#define AMD_CMD_PPB_UNLOCK_BC2 0x30
68#define AMD_CMD_PPB_LOCK_BC1 0xA0
69#define AMD_CMD_PPB_LOCK_BC2 0x00
Stefan Roese6e83e342009-10-27 15:15:55 +010070
71#define AMD_STATUS_TOGGLE 0x40
72#define AMD_STATUS_ERROR 0x20
73
74#define ATM_CMD_UNLOCK_SECT 0x70
75#define ATM_CMD_SOFTLOCK_START 0x80
76#define ATM_CMD_LOCK_SECT 0x40
77
78#define FLASH_CONTINUATION_CODE 0x7F
79
80#define FLASH_OFFSET_MANUFACTURER_ID 0x00
aaron.williams@caviumnetworks.com7e76d632013-03-03 16:45:05 +053081#define FLASH_OFFSET_DEVICE_ID 0x02
82#define FLASH_OFFSET_DEVICE_ID2 0x1C
83#define FLASH_OFFSET_DEVICE_ID3 0x1E
84#define FLASH_OFFSET_CFI 0xAA
85
Stefan Roese6e83e342009-10-27 15:15:55 +010086#define FLASH_OFFSET_CFI_ALT 0x555
aaron.williams@caviumnetworks.com7e76d632013-03-03 16:45:05 +053087#define FLASH_OFFSET_CFI_RESP 0x20
88#define FLASH_OFFSET_PRIMARY_VENDOR 0x26
Stefan Roese6e83e342009-10-27 15:15:55 +010089/* extended query table primary address */
aaron.williams@caviumnetworks.com7e76d632013-03-03 16:45:05 +053090#define FLASH_OFFSET_EXT_QUERY_T_P_ADDR 0x2A
Stefan Roese6e83e342009-10-27 15:15:55 +010091#define FLASH_OFFSET_WTOUT 0x1F
aaron.williams@caviumnetworks.com7e76d632013-03-03 16:45:05 +053092#define FLASH_OFFSET_WBTOUT 0x40
93#define FLASH_OFFSET_ETOUT 0x4A
94#define FLASH_OFFSET_CETOUT 0x44
95#define FLASH_OFFSET_WMAX_TOUT 0x46
96#define FLASH_OFFSET_WBMAX_TOUT 0x48
97#define FLASH_OFFSET_EMAX_TOUT 0x4A
98#define FLASH_OFFSET_CEMAX_TOUT 0x4C
99#define FLASH_OFFSET_SIZE 0x4E
100#define FLASH_OFFSET_INTERFACE 0x50
101#define FLASH_OFFSET_BUFFER_SIZE 0x54
102#define FLASH_OFFSET_NUM_ERASE_REGIONS 0x58
103#define FLASH_OFFSET_ERASE_REGIONS 0x5A
104#define FLASH_OFFSET_PROTECT 0x04
Stefan Roese6e83e342009-10-27 15:15:55 +0100105#define FLASH_OFFSET_USER_PROTECTION 0x85
106#define FLASH_OFFSET_INTEL_PROTECTION 0x81
107
108#define CFI_CMDSET_NONE 0
109#define CFI_CMDSET_INTEL_EXTENDED 1
110#define CFI_CMDSET_AMD_STANDARD 2
111#define CFI_CMDSET_INTEL_STANDARD 3
112#define CFI_CMDSET_AMD_EXTENDED 4
113#define CFI_CMDSET_MITSU_STANDARD 256
114#define CFI_CMDSET_MITSU_EXTENDED 257
115#define CFI_CMDSET_SST 258
116#define CFI_CMDSET_INTEL_PROG_REGIONS 512
117
118#ifdef CONFIG_SYS_FLASH_CFI_AMD_RESET /* needed for STM_ID_29W320DB on UC100 */
119# undef FLASH_CMD_RESET
120# define FLASH_CMD_RESET AMD_CMD_RESET /* use AMD-Reset instead */
121#endif
122
123#define NUM_ERASE_REGIONS 4 /* max. number of erase regions */
124
125typedef union {
126 unsigned char c;
127 unsigned short w;
128 unsigned long l;
129 unsigned long long ll;
130} cfiword_t;
131
132/* CFI standard query structure */
133struct cfi_qry {
134 u8 qry[3];
135 u16 p_id;
136 u16 p_adr;
137 u16 a_id;
138 u16 a_adr;
139 u8 vcc_min;
140 u8 vcc_max;
141 u8 vpp_min;
142 u8 vpp_max;
143 u8 word_write_timeout_typ;
144 u8 buf_write_timeout_typ;
145 u8 block_erase_timeout_typ;
146 u8 chip_erase_timeout_typ;
147 u8 word_write_timeout_max;
148 u8 buf_write_timeout_max;
149 u8 block_erase_timeout_max;
150 u8 chip_erase_timeout_max;
151 u8 dev_size;
152 u16 interface_desc;
153 u16 max_buf_write_size;
154 u8 num_erase_regions;
155 u32 erase_region_info[NUM_ERASE_REGIONS];
156} __attribute__((packed));
157
158struct cfi_pri_hdr {
159 u8 pri[3];
160 u8 major_version;
161 u8 minor_version;
162} __attribute__((packed));
163
Stefan Roesefb9a7302010-08-31 10:00:10 +0200164#ifndef CONFIG_SYS_FLASH_BANKS_LIST
165#define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE }
166#endif
167
168/*
169 * CFI_MAX_FLASH_BANKS only used for flash_info struct declaration.
170 *
171 * Use CONFIG_SYS_MAX_FLASH_BANKS_DETECT if defined
172 */
173#if defined(CONFIG_SYS_MAX_FLASH_BANKS_DETECT)
174#define CONFIG_SYS_MAX_FLASH_BANKS (cfi_flash_num_flash_banks)
175#define CFI_MAX_FLASH_BANKS CONFIG_SYS_MAX_FLASH_BANKS_DETECT
176/* board code can update this variable before CFI detection */
177extern int cfi_flash_num_flash_banks;
178#else
179#define CFI_MAX_FLASH_BANKS CONFIG_SYS_MAX_FLASH_BANKS
180#endif
181
Stefan Roese6e83e342009-10-27 15:15:55 +0100182void flash_write_cmd(flash_info_t * info, flash_sect_t sect,
183 uint offset, u32 cmd);
184
185#endif /* __CFI_FLASH_H__ */