blob: fe28d2b8eac62d3c3bb949f7f9b5a0680996430e [file] [log] [blame]
Nikolay Petukhov4784c472008-05-17 01:08:58 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2004 Tyan Corporation
5 * Copyright (C) 2007 Nikolay Petukhov <nikolay.petukhov@gmail.com>
6 * Copyright (C) 2007 Reinder E.N. de Haan <lb_reha@mveas.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22
Nikolay Petukhov4784c472008-05-17 01:08:58 +000023#include "flash.h"
24
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000025static void write_lockbits_49fl00x(const struct flashctx *flash,
26 unsigned int size, unsigned char bits,
27 unsigned int block_size)
Nikolay Petukhov4784c472008-05-17 01:08:58 +000028{
Stefan Taunerc69c9c82011-11-23 09:13:48 +000029 unsigned int i, left = size;
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000030 chipaddr bios = flash->virtual_registers;
Nikolay Petukhov4784c472008-05-17 01:08:58 +000031
32 for (i = 0; left >= block_size; i++, left -= block_size) {
Nikolay Petukhov4784c472008-05-17 01:08:58 +000033 /* pm49fl002 */
Uwe Hermann394131e2008-10-18 21:14:13 +000034 if (block_size == 16384 && i % 2)
Nikolay Petukhov4784c472008-05-17 01:08:58 +000035 continue;
36
Carl-Daniel Hailfinger8a3c60c2011-12-18 15:01:24 +000037 chip_writeb(flash, bits, bios + (i * block_size) + 2);
Nikolay Petukhov4784c472008-05-17 01:08:58 +000038 }
39}
40
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +000041int unlock_49fl00x(struct flashctx *flash)
Sean Nelson6e0b9122010-02-19 00:52:10 +000042{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +000043 write_lockbits_49fl00x(flash, flash->chip->total_size * 1024, 0,
44 flash->chip->page_size);
Sean Nelson6e0b9122010-02-19 00:52:10 +000045 return 0;
46}
47
Carl-Daniel Hailfinger63fd9022011-12-14 22:25:15 +000048int lock_49fl00x(struct flashctx *flash)
Sean Nelson36172342010-02-27 18:01:15 +000049{
Carl-Daniel Hailfinger5a7cb842012-08-25 01:17:58 +000050 write_lockbits_49fl00x(flash, flash->chip->total_size * 1024, 1,
51 flash->chip->page_size);
Sean Nelson36172342010-02-27 18:01:15 +000052 return 0;
53}