blob: e7261e071bef25cf7382ad68e3130b75ba3dee82 [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);
Michael Karcher4e2fb0e2010-01-12 23:29:26 +000049int spi_byte_program(int addr, uint8_t databyte);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000050int 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 */
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +000056uint8_t wait_82802ab(chipaddr bios);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000057int probe_82802ab(struct flashchip *flash);
58int erase_82802ab(struct flashchip *flash);
Sean Nelson54596372010-01-09 05:30:14 +000059int erase_82802ab_block(struct flashchip *flash, unsigned int page, unsigned int pagesize);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000060int write_82802ab(struct flashchip *flash, uint8_t *buf);
61
62/* am29f040b.c */
63int probe_29f040b(struct flashchip *flash);
64int erase_29f040b(struct flashchip *flash);
Sean Nelson72a9a022009-12-22 22:15:33 +000065int erase_sector_29f040b(struct flashchip *flash, unsigned int blockaddr, unsigned int blocksize);
66int erase_chip_29f040b(struct flashchip *flash, unsigned int blockaddr, unsigned int blocksize);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000067int write_29f040b(struct flashchip *flash, uint8_t *buf);
68
69/* pm29f002.c */
70int write_pm29f002(struct flashchip *flash, uint8_t *buf);
71
72/* en29f002a.c */
73int probe_en29f002a(struct flashchip *flash);
74int erase_en29f002a(struct flashchip *flash);
75int write_en29f002a(struct flashchip *flash, uint8_t *buf);
76
77/* jedec.c */
78uint8_t oddparity(uint8_t val);
79void toggle_ready_jedec(chipaddr dst);
80void data_polling_jedec(chipaddr dst, uint8_t data);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000081int write_byte_program_jedec(chipaddr bios, uint8_t *src,
82 chipaddr dst);
83int probe_jedec(struct flashchip *flash);
84int erase_chip_jedec(struct flashchip *flash);
85int write_jedec(struct flashchip *flash, uint8_t *buf);
86int write_jedec_1(struct flashchip *flash, uint8_t *buf);
87int erase_sector_jedec(struct flashchip *flash, unsigned int page, unsigned int pagesize);
88int erase_block_jedec(struct flashchip *flash, unsigned int page, unsigned int blocksize);
Sean Nelson72a9a022009-12-22 22:15:33 +000089int erase_chip_block_jedec(struct flashchip *flash, unsigned int page, unsigned int blocksize);
Sean Nelsonc57a9202010-01-04 17:15:23 +000090int write_sector_jedec_common(struct flashchip *flash, uint8_t *src, chipaddr dst, unsigned int page_size, unsigned int mask);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000091
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);
Sean Nelson6b11ad22009-12-23 17:05:59 +0000100int block_erase_m29f400bt(struct flashchip *flash, unsigned int start, unsigned int len);
101int block_erase_chip_m29f400bt(struct flashchip *flash, unsigned int start, unsigned int len);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000102int write_m29f400bt(struct flashchip *flash, uint8_t *buf);
103int write_coreboot_m29f400bt(struct flashchip *flash, uint8_t *buf);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000104void protect_m29f400bt(chipaddr bios);
105void write_page_m29f400bt(chipaddr bios, uint8_t *src,
106 chipaddr dst, int page_size);
107
108/* mx29f002.c */
109int probe_29f002(struct flashchip *flash);
110int erase_29f002(struct flashchip *flash);
Sean Nelson6b11ad22009-12-23 17:05:59 +0000111int erase_chip_29f002(struct flashchip *flash, unsigned int addr, unsigned int blocklen);
112int erase_sector_29f002(struct flashchip *flash, unsigned int address, unsigned int blocklen);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000113int write_29f002(struct flashchip *flash, uint8_t *buf);
114
115/* pm49fl00x.c */
116int probe_49fl00x(struct flashchip *flash);
117int erase_49fl00x(struct flashchip *flash);
118int write_49fl00x(struct flashchip *flash, uint8_t *buf);
119
120/* sharplhf00l04.c */
121int probe_lhf00l04(struct flashchip *flash);
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +0000122int erase_lhf00l04_block(struct flashchip *flash, unsigned int blockaddr, unsigned int blocklen);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000123int write_lhf00l04(struct flashchip *flash, uint8_t *buf);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000124void protect_lhf00l04(chipaddr bios);
125
126/* sst28sf040.c */
127int probe_28sf040(struct flashchip *flash);
128int erase_28sf040(struct flashchip *flash);
129int write_28sf040(struct flashchip *flash, uint8_t *buf);
130
131/* sst39sf020.c */
132int probe_39sf020(struct flashchip *flash);
133int write_39sf020(struct flashchip *flash, uint8_t *buf);
134
135/* sst49lf040.c */
136int erase_49lf040(struct flashchip *flash);
137int write_49lf040(struct flashchip *flash, uint8_t *buf);
138
139/* sst49lfxxxc.c */
140int probe_49lfxxxc(struct flashchip *flash);
141int erase_49lfxxxc(struct flashchip *flash);
142int write_49lfxxxc(struct flashchip *flash, uint8_t *buf);
143
144/* sst_fwhub.c */
145int probe_sst_fwhub(struct flashchip *flash);
146int erase_sst_fwhub(struct flashchip *flash);
147int erase_sst_fwhub_block(struct flashchip *flash, unsigned int offset, unsigned int page_size);
148int write_sst_fwhub(struct flashchip *flash, uint8_t *buf);
149
150/* w39v040c.c */
151int probe_w39v040c(struct flashchip *flash);
152int erase_w39v040c(struct flashchip *flash);
153int write_w39v040c(struct flashchip *flash, uint8_t *buf);
154
155/* w39V080fa.c */
156int probe_winbond_fwhub(struct flashchip *flash);
157int erase_winbond_fwhub(struct flashchip *flash);
158int write_winbond_fwhub(struct flashchip *flash, uint8_t *buf);
159
160/* w29ee011.c */
161int probe_w29ee011(struct flashchip *flash);
162
163/* w49f002u.c */
164int write_49f002(struct flashchip *flash, uint8_t *buf);
165
166/* stm50flw0x0x.c */
167int probe_stm50flw0x0x(struct flashchip *flash);
168int erase_stm50flw0x0x(struct flashchip *flash);
169int write_stm50flw0x0x(struct flashchip *flash, uint8_t *buf);
170
171#endif /* !__CHIPDRIVERS_H__ */