blob: 9e7af2dc79d16bf4f260b5167e647bf52d0e601e [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);
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +000032int probe_spi_res1(struct flashchip *flash);
33int probe_spi_res2(struct flashchip *flash);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000034int spi_write_enable(void);
35int spi_write_disable(void);
36int spi_chip_erase_60(struct flashchip *flash);
37int spi_chip_erase_c7(struct flashchip *flash);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000038int spi_block_erase_20(struct flashchip *flash, unsigned int addr, unsigned int blocklen);
39int spi_block_erase_52(struct flashchip *flash, unsigned int addr, unsigned int blocklen);
Sean Nelson5643c072010-01-19 03:23:07 +000040int spi_block_erase_d7(struct flashchip *flash, unsigned int addr, unsigned int blocklen);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000041int 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);
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +000046int spi_chip_write_1_new(struct flashchip *flash, uint8_t *buf, int start, int len);
47int spi_chip_write_256_new(struct flashchip *flash, uint8_t *buf, int start, int len);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000048int spi_chip_read(struct flashchip *flash, uint8_t *buf, int start, int len);
49uint8_t spi_read_status_register(void);
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000050int spi_disable_blockprotect(struct flashchip *flash);
Michael Karcher4e2fb0e2010-01-12 23:29:26 +000051int spi_byte_program(int addr, uint8_t databyte);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000052int spi_nbyte_program(int addr, uint8_t *bytes, int len);
53int spi_nbyte_read(int addr, uint8_t *bytes, int len);
54int spi_read_chunked(struct flashchip *flash, uint8_t *buf, int start, int len, int chunksize);
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +000055int spi_write_chunked(struct flashchip *flash, uint8_t *buf, int start, int len, int chunksize);
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +000056int spi_aai_write(struct flashchip *flash, uint8_t *buf, int start, int len);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000057
58/* 82802ab.c */
Carl-Daniel Hailfingeraca1dce2010-01-07 21:23:45 +000059uint8_t wait_82802ab(chipaddr bios);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000060int probe_82802ab(struct flashchip *flash);
61int erase_82802ab(struct flashchip *flash);
Sean Nelson28accc22010-03-19 18:47:06 +000062int erase_block_82802ab(struct flashchip *flash, unsigned int page, unsigned int pagesize);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000063int write_82802ab(struct flashchip *flash, uint8_t *buf);
Sean Nelson28accc22010-03-19 18:47:06 +000064void print_status_82802ab(uint8_t status);
Sean Nelsone4446e42010-03-16 00:51:31 +000065void write_page_82802ab(chipaddr bios, uint8_t *src, chipaddr dst, int page_size);
Sean Nelson28accc22010-03-19 18:47:06 +000066int unlock_82802ab(struct flashchip *flash);
Sean Nelson88647102010-03-22 06:57:02 +000067int unlock_28f004s5(struct flashchip *flash);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000068
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000069/* jedec.c */
70uint8_t oddparity(uint8_t val);
71void toggle_ready_jedec(chipaddr dst);
72void data_polling_jedec(chipaddr dst, uint8_t data);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000073int write_byte_program_jedec(chipaddr bios, uint8_t *src,
74 chipaddr dst);
75int probe_jedec(struct flashchip *flash);
76int erase_chip_jedec(struct flashchip *flash);
77int write_jedec(struct flashchip *flash, uint8_t *buf);
78int write_jedec_1(struct flashchip *flash, uint8_t *buf);
79int erase_sector_jedec(struct flashchip *flash, unsigned int page, unsigned int pagesize);
80int erase_block_jedec(struct flashchip *flash, unsigned int page, unsigned int blocksize);
Sean Nelson72a9a022009-12-22 22:15:33 +000081int erase_chip_block_jedec(struct flashchip *flash, unsigned int page, unsigned int blocksize);
Sean Nelsonc57a9202010-01-04 17:15:23 +000082int 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 +000083
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000084/* m29f400bt.c */
85int probe_m29f400bt(struct flashchip *flash);
86int erase_m29f400bt(struct flashchip *flash);
Sean Nelson6b11ad22009-12-23 17:05:59 +000087int block_erase_m29f400bt(struct flashchip *flash, unsigned int start, unsigned int len);
88int block_erase_chip_m29f400bt(struct flashchip *flash, unsigned int start, unsigned int len);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000089int write_m29f400bt(struct flashchip *flash, uint8_t *buf);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000090void protect_m29f400bt(chipaddr bios);
91void write_page_m29f400bt(chipaddr bios, uint8_t *src,
92 chipaddr dst, int page_size);
93
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000094/* pm49fl00x.c */
Sean Nelson6e0b9122010-02-19 00:52:10 +000095int unlock_49fl00x(struct flashchip *flash);
Sean Nelson36172342010-02-27 18:01:15 +000096int lock_49fl00x(struct flashchip *flash);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000097
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000098/* sst28sf040.c */
Sean Nelson51c83fb2010-01-20 20:55:53 +000099int erase_chip_28sf040(struct flashchip *flash, unsigned int addr, unsigned int blocklen);
100int erase_sector_28sf040(struct flashchip *flash, unsigned int address, unsigned int sector_size);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000101int write_28sf040(struct flashchip *flash, uint8_t *buf);
102
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000103/* sst49lfxxxc.c */
Sean Nelson51c83fb2010-01-20 20:55:53 +0000104int erase_sector_49lfxxxc(struct flashchip *flash, unsigned int address, unsigned int sector_size);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000105int write_49lfxxxc(struct flashchip *flash, uint8_t *buf);
Sean Nelson6e0b9122010-02-19 00:52:10 +0000106int unlock_49lfxxxc(struct flashchip *flash);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000107
108/* sst_fwhub.c */
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +0000109int printlock_sst_fwhub(struct flashchip *flash);
Sean Nelsonccf7a2a2010-03-16 03:09:10 +0000110int unlock_sst_fwhub(struct flashchip *flash);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000111
112/* w39v040c.c */
Sean Nelson6e0b9122010-02-19 00:52:10 +0000113int printlock_w39v040c(struct flashchip *flash);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000114
115/* w39V080fa.c */
Sean Nelson6e0b9122010-02-19 00:52:10 +0000116int unlock_winbond_fwhub(struct flashchip *flash);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000117
118/* w29ee011.c */
119int probe_w29ee011(struct flashchip *flash);
120
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000121/* stm50flw0x0x.c */
Sean Nelson56358aa2010-01-19 16:08:51 +0000122int erase_sector_stm50flw0x0x(struct flashchip *flash, unsigned int block, unsigned int blocksize);
123int erase_chip_stm50flw0x0x(struct flashchip *flash, unsigned int addr, unsigned int blocklen);
Sean Nelson28accc22010-03-19 18:47:06 +0000124int unlock_stm50flw0x0x(struct flashchip *flash);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000125
126#endif /* !__CHIPDRIVERS_H__ */