source: trunk/spi.h @ 1532

Revision 1532, 3.9 KB checked in by stefanct, 2 weeks ago (diff)

dummyflasher: Add a status register to SPI chips.

Signed-off-by: Stefan Tauner <stefan.tauner@…>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@…>

Line 
1/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2007, 2008 Carl-Daniel Hailfinger
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18 */
19
20#ifndef __SPI_H__
21#define __SPI_H__ 1
22
23/*
24 * Contains the generic SPI headers
25 */
26
27/* Read Electronic ID */
28#define JEDEC_RDID              0x9f
29#define JEDEC_RDID_OUTSIZE      0x01
30/* INSIZE may be 0x04 for some chips*/
31#define JEDEC_RDID_INSIZE       0x03
32
33/* AT25F512A has bit 3 as don't care bit in commands */
34#define AT25F512A_RDID          0x15    /* 0x15 or 0x1d */
35#define AT25F512A_RDID_OUTSIZE  0x01
36#define AT25F512A_RDID_INSIZE   0x02
37
38/* Read Electronic Manufacturer Signature */
39#define JEDEC_REMS              0x90
40#define JEDEC_REMS_OUTSIZE      0x04
41#define JEDEC_REMS_INSIZE       0x02
42
43/* Read Serial Flash Discoverable Parameters (SFDP) */
44#define JEDEC_SFDP              0x5a
45#define JEDEC_SFDP_OUTSIZE      0x05    /* 8b op, 24b addr, 8b dummy */
46/*      JEDEC_SFDP_INSIZE : any length */
47
48/* Read Electronic Signature */
49#define JEDEC_RES               0xab
50#define JEDEC_RES_OUTSIZE       0x04
51/* INSIZE may be 0x02 for some chips*/
52#define JEDEC_RES_INSIZE        0x01
53
54/* Write Enable */
55#define JEDEC_WREN              0x06
56#define JEDEC_WREN_OUTSIZE      0x01
57#define JEDEC_WREN_INSIZE       0x00
58
59/* Write Disable */
60#define JEDEC_WRDI              0x04
61#define JEDEC_WRDI_OUTSIZE      0x01
62#define JEDEC_WRDI_INSIZE       0x00
63
64/* Chip Erase 0x60 is supported by Macronix/SST chips. */
65#define JEDEC_CE_60             0x60
66#define JEDEC_CE_60_OUTSIZE     0x01
67#define JEDEC_CE_60_INSIZE      0x00
68
69/* Chip Erase 0xc7 is supported by SST/ST/EON/Macronix chips. */
70#define JEDEC_CE_C7             0xc7
71#define JEDEC_CE_C7_OUTSIZE     0x01
72#define JEDEC_CE_C7_INSIZE      0x00
73
74/* Block Erase 0x52 is supported by SST and old Atmel chips. */
75#define JEDEC_BE_52             0x52
76#define JEDEC_BE_52_OUTSIZE     0x04
77#define JEDEC_BE_52_INSIZE      0x00
78
79/* Block Erase 0xd8 is supported by EON/Macronix chips. */
80#define JEDEC_BE_D8             0xd8
81#define JEDEC_BE_D8_OUTSIZE     0x04
82#define JEDEC_BE_D8_INSIZE      0x00
83
84/* Block Erase 0xd7 is supported by PMC chips. */
85#define JEDEC_BE_D7             0xd7
86#define JEDEC_BE_D7_OUTSIZE     0x04
87#define JEDEC_BE_D7_INSIZE      0x00
88
89/* Sector Erase 0x20 is supported by Macronix/SST chips. */
90#define JEDEC_SE                0x20
91#define JEDEC_SE_OUTSIZE        0x04
92#define JEDEC_SE_INSIZE         0x00
93
94/* Read Status Register */
95#define JEDEC_RDSR              0x05
96#define JEDEC_RDSR_OUTSIZE      0x01
97#define JEDEC_RDSR_INSIZE       0x01
98
99/* Status Register Bits */
100#define SPI_SR_WIP      (0x01 << 0)
101#define SPI_SR_WEL      (0x01 << 1)
102#define SPI_SR_AAI      (0x01 << 6)
103
104/* Write Status Enable */
105#define JEDEC_EWSR              0x50
106#define JEDEC_EWSR_OUTSIZE      0x01
107#define JEDEC_EWSR_INSIZE       0x00
108
109/* Write Status Register */
110#define JEDEC_WRSR              0x01
111#define JEDEC_WRSR_OUTSIZE      0x02
112#define JEDEC_WRSR_INSIZE       0x00
113
114/* Read the memory */
115#define JEDEC_READ              0x03
116#define JEDEC_READ_OUTSIZE      0x04
117/*      JEDEC_READ_INSIZE : any length */
118
119/* Write memory byte */
120#define JEDEC_BYTE_PROGRAM              0x02
121#define JEDEC_BYTE_PROGRAM_OUTSIZE      0x05
122#define JEDEC_BYTE_PROGRAM_INSIZE       0x00
123
124/* Write AAI word (SST25VF080B) */
125#define JEDEC_AAI_WORD_PROGRAM                  0xad
126#define JEDEC_AAI_WORD_PROGRAM_OUTSIZE          0x06
127#define JEDEC_AAI_WORD_PROGRAM_CONT_OUTSIZE     0x03
128#define JEDEC_AAI_WORD_PROGRAM_INSIZE           0x00
129
130/* Error codes */
131#define SPI_GENERIC_ERROR       -1
132#define SPI_INVALID_OPCODE      -2
133#define SPI_INVALID_ADDRESS     -3
134#define SPI_INVALID_LENGTH      -4
135#define SPI_FLASHROM_BUG        -5
136#define SPI_PROGRAMMER_ERROR    -6
137
138#endif          /* !__SPI_H__ */
Note: See TracBrowser for help on using the repository browser.