Nikolay Petukhov | 4784c47 | 2008-05-17 01:08:58 +0000 | [diff] [blame] | 1 | /* |
| 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 Petukhov | 4784c47 | 2008-05-17 01:08:58 +0000 | [diff] [blame] | 23 | #include "flash.h" |
| 24 | |
Carl-Daniel Hailfinger | ad3cc55 | 2010-07-03 11:02:10 +0000 | [diff] [blame] | 25 | static void write_lockbits_49fl00x(chipaddr bios, int size, |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 26 | unsigned char bits, int block_size) |
Nikolay Petukhov | 4784c47 | 2008-05-17 01:08:58 +0000 | [diff] [blame] | 27 | { |
| 28 | int i, left = size; |
| 29 | |
| 30 | for (i = 0; left >= block_size; i++, left -= block_size) { |
Nikolay Petukhov | 4784c47 | 2008-05-17 01:08:58 +0000 | [diff] [blame] | 31 | /* pm49fl002 */ |
Uwe Hermann | 394131e | 2008-10-18 21:14:13 +0000 | [diff] [blame] | 32 | if (block_size == 16384 && i % 2) |
Nikolay Petukhov | 4784c47 | 2008-05-17 01:08:58 +0000 | [diff] [blame] | 33 | continue; |
| 34 | |
Carl-Daniel Hailfinger | 0472f3d | 2009-03-06 22:26:00 +0000 | [diff] [blame] | 35 | chip_writeb(bits, bios + (i * block_size) + 2); |
Nikolay Petukhov | 4784c47 | 2008-05-17 01:08:58 +0000 | [diff] [blame] | 36 | } |
| 37 | } |
| 38 | |
Sean Nelson | 6e0b912 | 2010-02-19 00:52:10 +0000 | [diff] [blame] | 39 | int unlock_49fl00x(struct flashchip *flash) |
| 40 | { |
| 41 | write_lockbits_49fl00x(flash->virtual_registers, flash->total_size * 1024, 0, flash->page_size); |
| 42 | return 0; |
| 43 | } |
| 44 | |
Sean Nelson | 3617234 | 2010-02-27 18:01:15 +0000 | [diff] [blame] | 45 | int lock_49fl00x(struct flashchip *flash) |
| 46 | { |
| 47 | write_lockbits_49fl00x(flash->virtual_registers, flash->total_size * 1024, 1, flash->page_size); |
| 48 | return 0; |
| 49 | } |