Flashrom

Flashrom Svn Source Tree

Root/trunk/m29f400bt.c

  • Property svn:keywords set to Author Date Id Revision
  • Property svn:eol-style set to native
1/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2000 Silicon Integrated System Corporation
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; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include "flash.h"
22#include "chipdrivers.h"
23
24/* WARNING!
25 This chip uses the standard JEDEC Addresses in 16-bit mode as word
26 addresses. In byte mode, 0xAAA has to be used instead of 0x555 and
27 0x555 instead of 0x2AA. Do *not* blindly replace with standard JEDEC
28 functions. */
29
30/* chunksize is 1 */
31int write_m29f400bt(struct flashctx *flash, uint8_t *src, unsigned int start,
32 unsigned int len)
33{
34int i;
35chipaddr bios = flash->virtual_memory;
36chipaddr dst = flash->virtual_memory + start;
37
38for (i = 0; i < len; i++) {
39chip_writeb(flash, 0xAA, bios + 0xAAA);
40chip_writeb(flash, 0x55, bios + 0x555);
41chip_writeb(flash, 0xA0, bios + 0xAAA);
42
43/* transfer data from source to destination */
44chip_writeb(flash, *src, dst);
45toggle_ready_jedec(flash, dst);
46#if 0
47/* We only want to print something in the error case. */
48msg_cerr("Value in the flash at address 0x%lx = %#x, want %#x\n",
49 (dst - bios), chip_readb(flash, dst), *src);
50#endif
51dst++;
52src++;
53}
54
55/* FIXME: Ignore errors for now. */
56return 0;
57}
58
59int probe_m29f400bt(struct flashctx *flash)
60{
61chipaddr bios = flash->virtual_memory;
62uint8_t id1, id2;
63
64chip_writeb(flash, 0xAA, bios + 0xAAA);
65chip_writeb(flash, 0x55, bios + 0x555);
66chip_writeb(flash, 0x90, bios + 0xAAA);
67
68programmer_delay(10);
69
70id1 = chip_readb(flash, bios);
71/* The data sheet says id2 is at (bios + 0x01) and id2 listed in
72 * flash.h does not match. It should be possible to use JEDEC probe.
73 */
74id2 = chip_readb(flash, bios + 0x02);
75
76chip_writeb(flash, 0xAA, bios + 0xAAA);
77chip_writeb(flash, 0x55, bios + 0x555);
78chip_writeb(flash, 0xF0, bios + 0xAAA);
79
80programmer_delay(10);
81
82msg_cdbg("%s: id1 0x%02x, id2 0x%02x\n", __func__, id1, id2);
83
84if (id1 == flash->manufacture_id && id2 == flash->model_id)
85return 1;
86
87return 0;
88}
89
90int erase_m29f400bt(struct flashctx *flash)
91{
92chipaddr bios = flash->virtual_memory;
93
94chip_writeb(flash, 0xAA, bios + 0xAAA);
95chip_writeb(flash, 0x55, bios + 0x555);
96chip_writeb(flash, 0x80, bios + 0xAAA);
97
98chip_writeb(flash, 0xAA, bios + 0xAAA);
99chip_writeb(flash, 0x55, bios + 0x555);
100chip_writeb(flash, 0x10, bios + 0xAAA);
101
102programmer_delay(10);
103toggle_ready_jedec(flash, bios);
104
105/* FIXME: Check the status register for errors. */
106return 0;
107}
108
109int block_erase_m29f400bt(struct flashctx *flash, unsigned int start,
110 unsigned int len)
111{
112chipaddr bios = flash->virtual_memory;
113chipaddr dst = bios + start;
114
115chip_writeb(flash, 0xAA, bios + 0xAAA);
116chip_writeb(flash, 0x55, bios + 0x555);
117chip_writeb(flash, 0x80, bios + 0xAAA);
118
119chip_writeb(flash, 0xAA, bios + 0xAAA);
120chip_writeb(flash, 0x55, bios + 0x555);
121chip_writeb(flash, 0x30, dst);
122
123programmer_delay(10);
124toggle_ready_jedec(flash, bios);
125
126/* FIXME: Check the status register for errors. */
127return 0;
128}
129
130int block_erase_chip_m29f400bt(struct flashctx *flash, unsigned int address,
131 unsigned int blocklen)
132{
133if ((address != 0) || (blocklen != flash->total_size * 1024)) {
134msg_cerr("%s called with incorrect arguments\n",
135__func__);
136return -1;
137}
138return erase_m29f400bt(flash);
139}
140

Archive Download this file

Revision: HEAD