blob: de9a547cc07af19169f6c95380970b980dbadc3e [file] [log] [blame]
Markus Boasd2ac6fc2007-08-30 10:17:50 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2007 Markus Boas <ryven@ryven.de>
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
Jens Kuehnelb9f61742008-06-18 13:36:34 +000021#include <string.h>
Markus Boasd2ac6fc2007-08-30 10:17:50 +000022#include "flash.h"
23
24int probe_w29ee011(struct flashchip *flash)
25{
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +000026 chipaddr bios = flash->virtual_memory;
Markus Boasd2ac6fc2007-08-30 10:17:50 +000027 uint8_t id1, id2;
Jens Kuehnelb9f61742008-06-18 13:36:34 +000028 extern char *chip_to_probe;
29
Uwe Hermann394131e2008-10-18 21:14:13 +000030 if (!chip_to_probe || strcmp(chip_to_probe, "W29EE011")) {
Carl-Daniel Hailfinger414bd322009-07-23 01:33:43 +000031 printf_debug("Probing disabled for Winbond W29EE011 because "
32 "the probing sequence puts the AMIC A49LF040A in "
33 "a funky state. Use 'flashrom -c W29EE011' if you "
34 "have a board with this chip.\n");
Jens Kuehnelb9f61742008-06-18 13:36:34 +000035 return 0;
36 }
Markus Boasd2ac6fc2007-08-30 10:17:50 +000037
38 /* Issue JEDEC Product ID Entry command */
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000039 chip_writeb(0xAA, bios + 0x5555);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000040 programmer_delay(10);
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000041 chip_writeb(0x55, bios + 0x2AAA);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000042 programmer_delay(10);
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000043 chip_writeb(0x80, bios + 0x5555);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000044 programmer_delay(10);
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000045 chip_writeb(0xAA, bios + 0x5555);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000046 programmer_delay(10);
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000047 chip_writeb(0x55, bios + 0x2AAA);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000048 programmer_delay(10);
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000049 chip_writeb(0x60, bios + 0x5555);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000050 programmer_delay(10);
Markus Boasd2ac6fc2007-08-30 10:17:50 +000051
52 /* Read product ID */
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000053 id1 = chip_readb(bios);
54 id2 = chip_readb(bios + 0x01);
Markus Boasd2ac6fc2007-08-30 10:17:50 +000055
56 /* Issue JEDEC Product ID Exit command */
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000057 chip_writeb(0xAA, bios + 0x5555);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000058 programmer_delay(10);
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000059 chip_writeb(0x55, bios + 0x2AAA);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000060 programmer_delay(10);
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000061 chip_writeb(0xF0, bios + 0x5555);
Carl-Daniel Hailfingerca8bfc62009-06-05 17:48:08 +000062 programmer_delay(10);
Markus Boasd2ac6fc2007-08-30 10:17:50 +000063
Uwe Hermann04aa59a2009-09-02 22:09:00 +000064 printf_debug("%s: id1 0x%02x, id2 0x%02x\n", __func__, id1, id2);
Markus Boasd2ac6fc2007-08-30 10:17:50 +000065
66 if (id1 == flash->manufacture_id && id2 == flash->model_id)
67 return 1;
68
69 return 0;
70}