blob: a4e12730e03d06801c2a915ec4028d5622cf4060 [file] [log] [blame]
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2009 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 * Header file for flash chip drivers. Included from flash.h.
21 * As a general rule, every function listed here should take a pointer to
22 * struct flashchip as first parameter.
23 */
24
25#ifndef __CHIPDRIVERS_H__
26#define __CHIPDRIVERS_H__ 1
27
28/* spi.c, should probably be in spi_chip.c */
29int probe_spi_rdid(struct flashchip *flash);
30int probe_spi_rdid4(struct flashchip *flash);
31int probe_spi_rems(struct flashchip *flash);
32int probe_spi_res(struct flashchip *flash);
33int spi_write_enable(void);
34int spi_write_disable(void);
35int spi_chip_erase_60(struct flashchip *flash);
36int spi_chip_erase_c7(struct flashchip *flash);
37int spi_chip_erase_60_c7(struct flashchip *flash);
38int spi_chip_erase_d8(struct flashchip *flash);
39int spi_block_erase_20(struct flashchip *flash, unsigned int addr, unsigned int blocklen);
40int spi_block_erase_52(struct flashchip *flash, unsigned int addr, unsigned int blocklen);
41int spi_block_erase_d8(struct flashchip *flash, unsigned int addr, unsigned int blocklen);
42int spi_block_erase_60(struct flashchip *flash, unsigned int addr, unsigned int blocklen);
43int spi_block_erase_c7(struct flashchip *flash, unsigned int addr, unsigned int blocklen);
44int spi_chip_write_1(struct flashchip *flash, uint8_t *buf);
45int spi_chip_write_256(struct flashchip *flash, uint8_t *buf);
46int spi_chip_read(struct flashchip *flash, uint8_t *buf, int start, int len);
47uint8_t spi_read_status_register(void);
48int spi_disable_blockprotect(void);
49int spi_byte_program(int addr, uint8_t byte);
50int spi_nbyte_program(int addr, uint8_t *bytes, int len);
51int spi_nbyte_read(int addr, uint8_t *bytes, int len);
52int spi_read_chunked(struct flashchip *flash, uint8_t *buf, int start, int len, int chunksize);
53int spi_aai_write(struct flashchip *flash, uint8_t *buf);
54
55/* 82802ab.c */
56int probe_82802ab(struct flashchip *flash);
57int erase_82802ab(struct flashchip *flash);
58int write_82802ab(struct flashchip *flash, uint8_t *buf);
59
60/* am29f040b.c */
61int probe_29f040b(struct flashchip *flash);
62int erase_29f040b(struct flashchip *flash);
Sean Nelson72a9a022009-12-22 22:15:33 +000063int erase_sector_29f040b(struct flashchip *flash, unsigned int blockaddr, unsigned int blocksize);
64int erase_chip_29f040b(struct flashchip *flash, unsigned int blockaddr, unsigned int blocksize);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000065int write_29f040b(struct flashchip *flash, uint8_t *buf);
66
67/* pm29f002.c */
68int write_pm29f002(struct flashchip *flash, uint8_t *buf);
69
70/* en29f002a.c */
71int probe_en29f002a(struct flashchip *flash);
72int erase_en29f002a(struct flashchip *flash);
73int write_en29f002a(struct flashchip *flash, uint8_t *buf);
74
75/* jedec.c */
76uint8_t oddparity(uint8_t val);
77void toggle_ready_jedec(chipaddr dst);
78void data_polling_jedec(chipaddr dst, uint8_t data);
79void start_program_jedec(chipaddr bios);
80int write_byte_program_jedec(chipaddr bios, uint8_t *src,
81 chipaddr dst);
82int probe_jedec(struct flashchip *flash);
83int erase_chip_jedec(struct flashchip *flash);
84int write_jedec(struct flashchip *flash, uint8_t *buf);
85int write_jedec_1(struct flashchip *flash, uint8_t *buf);
86int erase_sector_jedec(struct flashchip *flash, unsigned int page, unsigned int pagesize);
87int erase_block_jedec(struct flashchip *flash, unsigned int page, unsigned int blocksize);
Sean Nelson72a9a022009-12-22 22:15:33 +000088int erase_chip_block_jedec(struct flashchip *flash, unsigned int page, unsigned int blocksize);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000089int write_sector_jedec(chipaddr bios, uint8_t *src,
90 chipaddr dst, unsigned int page_size);
91
92/* m29f002.c */
93int erase_m29f002(struct flashchip *flash);
94int write_m29f002t(struct flashchip *flash, uint8_t *buf);
95int write_m29f002b(struct flashchip *flash, uint8_t *buf);
96
97/* m29f400bt.c */
98int probe_m29f400bt(struct flashchip *flash);
99int erase_m29f400bt(struct flashchip *flash);
100int block_erase_m29f400bt(struct flashchip *flash, int start, int len);
101int write_m29f400bt(struct flashchip *flash, uint8_t *buf);
102int write_coreboot_m29f400bt(struct flashchip *flash, uint8_t *buf);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000103void protect_m29f400bt(chipaddr bios);
104void write_page_m29f400bt(chipaddr bios, uint8_t *src,
105 chipaddr dst, int page_size);
106
107/* mx29f002.c */
108int probe_29f002(struct flashchip *flash);
109int erase_29f002(struct flashchip *flash);
110int write_29f002(struct flashchip *flash, uint8_t *buf);
111
112/* pm49fl00x.c */
113int probe_49fl00x(struct flashchip *flash);
114int erase_49fl00x(struct flashchip *flash);
115int write_49fl00x(struct flashchip *flash, uint8_t *buf);
116
117/* sharplhf00l04.c */
118int probe_lhf00l04(struct flashchip *flash);
119int erase_lhf00l04(struct flashchip *flash);
120int write_lhf00l04(struct flashchip *flash, uint8_t *buf);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000121void protect_lhf00l04(chipaddr bios);
122
123/* sst28sf040.c */
124int probe_28sf040(struct flashchip *flash);
125int erase_28sf040(struct flashchip *flash);
126int write_28sf040(struct flashchip *flash, uint8_t *buf);
127
128/* sst39sf020.c */
129int probe_39sf020(struct flashchip *flash);
130int write_39sf020(struct flashchip *flash, uint8_t *buf);
131
132/* sst49lf040.c */
133int erase_49lf040(struct flashchip *flash);
134int write_49lf040(struct flashchip *flash, uint8_t *buf);
135
136/* sst49lfxxxc.c */
137int probe_49lfxxxc(struct flashchip *flash);
138int erase_49lfxxxc(struct flashchip *flash);
139int write_49lfxxxc(struct flashchip *flash, uint8_t *buf);
140
141/* sst_fwhub.c */
142int probe_sst_fwhub(struct flashchip *flash);
143int erase_sst_fwhub(struct flashchip *flash);
144int erase_sst_fwhub_block(struct flashchip *flash, unsigned int offset, unsigned int page_size);
145int write_sst_fwhub(struct flashchip *flash, uint8_t *buf);
146
147/* w39v040c.c */
148int probe_w39v040c(struct flashchip *flash);
149int erase_w39v040c(struct flashchip *flash);
150int write_w39v040c(struct flashchip *flash, uint8_t *buf);
151
152/* w39V080fa.c */
153int probe_winbond_fwhub(struct flashchip *flash);
154int erase_winbond_fwhub(struct flashchip *flash);
155int write_winbond_fwhub(struct flashchip *flash, uint8_t *buf);
156
157/* w29ee011.c */
158int probe_w29ee011(struct flashchip *flash);
159
160/* w49f002u.c */
161int write_49f002(struct flashchip *flash, uint8_t *buf);
162
163/* stm50flw0x0x.c */
164int probe_stm50flw0x0x(struct flashchip *flash);
165int erase_stm50flw0x0x(struct flashchip *flash);
166int write_stm50flw0x0x(struct flashchip *flash, uint8_t *buf);
167
168#endif /* !__CHIPDRIVERS_H__ */