blob: d24a027f8ed2578970daad106b466f107ef77b80 [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);
63int write_29f040b(struct flashchip *flash, uint8_t *buf);
64
65/* pm29f002.c */
66int write_pm29f002(struct flashchip *flash, uint8_t *buf);
67
68/* en29f002a.c */
69int probe_en29f002a(struct flashchip *flash);
70int erase_en29f002a(struct flashchip *flash);
71int write_en29f002a(struct flashchip *flash, uint8_t *buf);
72
73/* jedec.c */
74uint8_t oddparity(uint8_t val);
75void toggle_ready_jedec(chipaddr dst);
76void data_polling_jedec(chipaddr dst, uint8_t data);
77void start_program_jedec(chipaddr bios);
78int write_byte_program_jedec(chipaddr bios, uint8_t *src,
79 chipaddr dst);
80int probe_jedec(struct flashchip *flash);
81int erase_chip_jedec(struct flashchip *flash);
82int write_jedec(struct flashchip *flash, uint8_t *buf);
83int write_jedec_1(struct flashchip *flash, uint8_t *buf);
84int erase_sector_jedec(struct flashchip *flash, unsigned int page, unsigned int pagesize);
85int erase_block_jedec(struct flashchip *flash, unsigned int page, unsigned int blocksize);
86int write_sector_jedec(chipaddr bios, uint8_t *src,
87 chipaddr dst, unsigned int page_size);
88
89/* m29f002.c */
90int erase_m29f002(struct flashchip *flash);
91int write_m29f002t(struct flashchip *flash, uint8_t *buf);
92int write_m29f002b(struct flashchip *flash, uint8_t *buf);
93
94/* m29f400bt.c */
95int probe_m29f400bt(struct flashchip *flash);
96int erase_m29f400bt(struct flashchip *flash);
97int block_erase_m29f400bt(struct flashchip *flash, int start, int len);
98int write_m29f400bt(struct flashchip *flash, uint8_t *buf);
99int write_coreboot_m29f400bt(struct flashchip *flash, uint8_t *buf);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000100void protect_m29f400bt(chipaddr bios);
101void write_page_m29f400bt(chipaddr bios, uint8_t *src,
102 chipaddr dst, int page_size);
103
104/* mx29f002.c */
105int probe_29f002(struct flashchip *flash);
106int erase_29f002(struct flashchip *flash);
107int write_29f002(struct flashchip *flash, uint8_t *buf);
108
109/* pm49fl00x.c */
110int probe_49fl00x(struct flashchip *flash);
111int erase_49fl00x(struct flashchip *flash);
112int write_49fl00x(struct flashchip *flash, uint8_t *buf);
113
114/* sharplhf00l04.c */
115int probe_lhf00l04(struct flashchip *flash);
116int erase_lhf00l04(struct flashchip *flash);
117int write_lhf00l04(struct flashchip *flash, uint8_t *buf);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000118void protect_lhf00l04(chipaddr bios);
119
120/* sst28sf040.c */
121int probe_28sf040(struct flashchip *flash);
122int erase_28sf040(struct flashchip *flash);
123int write_28sf040(struct flashchip *flash, uint8_t *buf);
124
125/* sst39sf020.c */
126int probe_39sf020(struct flashchip *flash);
127int write_39sf020(struct flashchip *flash, uint8_t *buf);
128
129/* sst49lf040.c */
130int erase_49lf040(struct flashchip *flash);
131int write_49lf040(struct flashchip *flash, uint8_t *buf);
132
133/* sst49lfxxxc.c */
134int probe_49lfxxxc(struct flashchip *flash);
135int erase_49lfxxxc(struct flashchip *flash);
136int write_49lfxxxc(struct flashchip *flash, uint8_t *buf);
137
138/* sst_fwhub.c */
139int probe_sst_fwhub(struct flashchip *flash);
140int erase_sst_fwhub(struct flashchip *flash);
141int erase_sst_fwhub_block(struct flashchip *flash, unsigned int offset, unsigned int page_size);
142int write_sst_fwhub(struct flashchip *flash, uint8_t *buf);
143
144/* w39v040c.c */
145int probe_w39v040c(struct flashchip *flash);
146int erase_w39v040c(struct flashchip *flash);
147int write_w39v040c(struct flashchip *flash, uint8_t *buf);
148
149/* w39V080fa.c */
150int probe_winbond_fwhub(struct flashchip *flash);
151int erase_winbond_fwhub(struct flashchip *flash);
152int write_winbond_fwhub(struct flashchip *flash, uint8_t *buf);
153
154/* w29ee011.c */
155int probe_w29ee011(struct flashchip *flash);
156
157/* w49f002u.c */
158int write_49f002(struct flashchip *flash, uint8_t *buf);
159
160/* stm50flw0x0x.c */
161int probe_stm50flw0x0x(struct flashchip *flash);
162int erase_stm50flw0x0x(struct flashchip *flash);
163int write_stm50flw0x0x(struct flashchip *flash, uint8_t *buf);
164
165#endif /* !__CHIPDRIVERS_H__ */