blob: 958c59ade9aa7b442716cb2cdd726a0d98380d16 [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
Stefan Taunera63c7c42011-08-16 12:08:22 +000028#include "flash.h" /* for chipaddr and flashchip */
29
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000030/* spi.c, should probably be in spi_chip.c */
31int probe_spi_rdid(struct flashchip *flash);
32int probe_spi_rdid4(struct flashchip *flash);
33int probe_spi_rems(struct flashchip *flash);
Carl-Daniel Hailfingerdc1cda12010-05-28 17:07:57 +000034int probe_spi_res1(struct flashchip *flash);
35int probe_spi_res2(struct flashchip *flash);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000036int spi_write_enable(void);
37int spi_write_disable(void);
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);
Stefan Tauner8c357452011-09-18 22:42:18 +000044int spi_chip_write_1(struct flashchip *flash, uint8_t *buf, int start, int len);
45int spi_chip_write_256(struct flashchip *flash, uint8_t *buf, int start, int len);
46int spi_chip_read(struct flashchip *flash, uint8_t *buf, int start, int len);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000047uint8_t spi_read_status_register(void);
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +000048int spi_write_status_register(struct flashchip *flash, int status);
49void spi_prettyprint_status_register_bit(uint8_t status, int bit);
50void spi_prettyprint_status_register_bp3210(uint8_t status, int bp);
51void spi_prettyprint_status_register_welwip(uint8_t status);
52int spi_prettyprint_status_register(struct flashchip *flash);
Carl-Daniel Hailfinger29a1c662010-07-14 20:21:22 +000053int spi_disable_blockprotect(struct flashchip *flash);
Stefan Tauner8c357452011-09-18 22:42:18 +000054int spi_byte_program(int addr, uint8_t databyte);
55int spi_nbyte_program(int addr, uint8_t *bytes, int len);
56int spi_nbyte_read(int addr, uint8_t *bytes, int len);
57int spi_read_chunked(struct flashchip *flash, uint8_t *buf, int start, int len, int chunksize);
58int spi_write_chunked(struct flashchip *flash, uint8_t *buf, int start, int len, int chunksize);
59int spi_aai_write(struct flashchip *flash, uint8_t *buf, int start, int len);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000060
Carl-Daniel Hailfinger7a3bd8f2011-05-19 00:06:06 +000061/* a25.c */
62int spi_prettyprint_status_register_amic_a25l05p(struct flashchip *flash);
63int spi_prettyprint_status_register_amic_a25l40p(struct flashchip *flash);
64int spi_prettyprint_status_register_amic_a25l032(struct flashchip *flash);
65int spi_prettyprint_status_register_amic_a25lq032(struct flashchip *flash);
66
67/* at25.c */
68int spi_prettyprint_status_register_at25df(struct flashchip *flash);
69int spi_prettyprint_status_register_at25df_sec(struct flashchip *flash);
70int spi_prettyprint_status_register_at25f(struct flashchip *flash);
71int spi_prettyprint_status_register_at25fs010(struct flashchip *flash);
72int spi_prettyprint_status_register_at25fs040(struct flashchip *flash);
73int spi_prettyprint_status_register_atmel_at26df081a(struct flashchip *flash);
74int spi_disable_blockprotect_at25df(struct flashchip *flash);
75int spi_disable_blockprotect_at25df_sec(struct flashchip *flash);
76int spi_disable_blockprotect_at25f(struct flashchip *flash);
77int spi_disable_blockprotect_at25fs010(struct flashchip *flash);
78int spi_disable_blockprotect_at25fs040(struct flashchip *flash);
79
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000080/* 82802ab.c */
Carl-Daniel Hailfingerb30a5ed2010-10-10 14:02:27 +000081uint8_t wait_82802ab(struct flashchip *flash);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000082int probe_82802ab(struct flashchip *flash);
Sean Nelson28accc22010-03-19 18:47:06 +000083int erase_block_82802ab(struct flashchip *flash, unsigned int page, unsigned int pagesize);
Stefan Tauner8c357452011-09-18 22:42:18 +000084int write_82802ab(struct flashchip *flash, uint8_t *buf, int start, int len);
Sean Nelson28accc22010-03-19 18:47:06 +000085void print_status_82802ab(uint8_t status);
Sean Nelson28accc22010-03-19 18:47:06 +000086int unlock_82802ab(struct flashchip *flash);
Sean Nelson88647102010-03-22 06:57:02 +000087int unlock_28f004s5(struct flashchip *flash);
Mattias Mattssonfca3b012011-08-25 22:44:11 +000088int unlock_lh28f008bjt(struct flashchip *flash);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000089
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000090/* jedec.c */
91uint8_t oddparity(uint8_t val);
92void toggle_ready_jedec(chipaddr dst);
93void data_polling_jedec(chipaddr dst, uint8_t data);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000094int write_byte_program_jedec(chipaddr bios, uint8_t *src,
95 chipaddr dst);
96int probe_jedec(struct flashchip *flash);
Stefan Tauner8c357452011-09-18 22:42:18 +000097int write_jedec(struct flashchip *flash, uint8_t *buf, int start, int len);
98int write_jedec_1(struct flashchip *flash, uint8_t *buf, int start, int len);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +000099int erase_sector_jedec(struct flashchip *flash, unsigned int page, unsigned int pagesize);
100int erase_block_jedec(struct flashchip *flash, unsigned int page, unsigned int blocksize);
Sean Nelson72a9a022009-12-22 22:15:33 +0000101int erase_chip_block_jedec(struct flashchip *flash, unsigned int page, unsigned int blocksize);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000102
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000103/* m29f400bt.c */
104int probe_m29f400bt(struct flashchip *flash);
Sean Nelson6b11ad22009-12-23 17:05:59 +0000105int block_erase_m29f400bt(struct flashchip *flash, unsigned int start, unsigned int len);
106int block_erase_chip_m29f400bt(struct flashchip *flash, unsigned int start, unsigned int len);
Stefan Tauner8c357452011-09-18 22:42:18 +0000107int write_m29f400bt(struct flashchip *flash, uint8_t *buf, int start, int len);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000108void protect_m29f400bt(chipaddr bios);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000109
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000110/* pm49fl00x.c */
Sean Nelson6e0b9122010-02-19 00:52:10 +0000111int unlock_49fl00x(struct flashchip *flash);
Sean Nelson36172342010-02-27 18:01:15 +0000112int lock_49fl00x(struct flashchip *flash);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000113
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000114/* sst28sf040.c */
Sean Nelson51c83fb2010-01-20 20:55:53 +0000115int erase_chip_28sf040(struct flashchip *flash, unsigned int addr, unsigned int blocklen);
116int erase_sector_28sf040(struct flashchip *flash, unsigned int address, unsigned int sector_size);
Stefan Tauner8c357452011-09-18 22:42:18 +0000117int write_28sf040(struct flashchip *flash, uint8_t *buf, int start, int len);
Carl-Daniel Hailfinger79e67572010-10-13 21:49:30 +0000118int unprotect_28sf040(struct flashchip *flash);
119int protect_28sf040(struct flashchip *flash);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000120
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000121/* sst49lfxxxc.c */
Sean Nelson51c83fb2010-01-20 20:55:53 +0000122int erase_sector_49lfxxxc(struct flashchip *flash, unsigned int address, unsigned int sector_size);
Sean Nelson6e0b9122010-02-19 00:52:10 +0000123int unlock_49lfxxxc(struct flashchip *flash);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000124
125/* sst_fwhub.c */
Carl-Daniel Hailfinger81449a22010-03-15 03:48:42 +0000126int printlock_sst_fwhub(struct flashchip *flash);
Sean Nelsonccf7a2a2010-03-16 03:09:10 +0000127int unlock_sst_fwhub(struct flashchip *flash);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000128
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000129/* w39.c */
Michael Karcher19e0aac2011-03-06 17:58:05 +0000130int printlock_w39l040(struct flashchip * flash);
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000131int printlock_w39v040a(struct flashchip *flash);
132int printlock_w39v040b(struct flashchip *flash);
Sean Nelson6e0b9122010-02-19 00:52:10 +0000133int printlock_w39v040c(struct flashchip *flash);
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000134int printlock_w39v040fa(struct flashchip *flash);
135int printlock_w39v040fb(struct flashchip *flash);
136int printlock_w39v040fc(struct flashchip *flash);
137int printlock_w39v080a(struct flashchip *flash);
138int printlock_w39v080fa(struct flashchip *flash);
139int printlock_w39v080fa_dual(struct flashchip *flash);
Idwer Volleringecc67072010-12-26 23:55:12 +0000140int unlock_w39v040fb(struct flashchip *flash);
Carl-Daniel Hailfinger91882402010-12-05 16:33:59 +0000141int unlock_w39v080fa(struct flashchip *flash);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000142
143/* w29ee011.c */
144int probe_w29ee011(struct flashchip *flash);
145
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000146/* stm50flw0x0x.c */
Sean Nelson56358aa2010-01-19 16:08:51 +0000147int erase_sector_stm50flw0x0x(struct flashchip *flash, unsigned int block, unsigned int blocksize);
Sean Nelson28accc22010-03-19 18:47:06 +0000148int unlock_stm50flw0x0x(struct flashchip *flash);
Carl-Daniel Hailfinger5d5c0722009-12-14 03:32:24 +0000149
150#endif /* !__CHIPDRIVERS_H__ */