blob: e8c498d03c2677f4df5f88f647a1e7f154b6db0c [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 Hailfinger5820f422009-05-16 21:22:56 +000025void write_lockbits_49fl00x(chipaddr bios, int size,
Uwe Hermann394131e2008-10-18 21:14:13 +000026 unsigned char bits, int block_size)
Nikolay Petukhov4784c472008-05-17 01:08:58 +000027{
28 int i, left = size;
29
30 for (i = 0; left >= block_size; i++, left -= block_size) {
Nikolay Petukhov4784c472008-05-17 01:08:58 +000031 /* pm49fl002 */
Uwe Hermann394131e2008-10-18 21:14:13 +000032 if (block_size == 16384 && i % 2)
Nikolay Petukhov4784c472008-05-17 01:08:58 +000033 continue;
34
Carl-Daniel Hailfinger0472f3d2009-03-06 22:26:00 +000035 chip_writeb(bits, bios + (i * block_size) + 2);
Nikolay Petukhov4784c472008-05-17 01:08:58 +000036 }
37}
38
Sean Nelson6e0b9122010-02-19 00:52:10 +000039int 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
Nikolay Petukhov4784c472008-05-17 01:08:58 +000045int erase_49fl00x(struct flashchip *flash)
46{
47 int i;
48 int total_size = flash->total_size * 1024;
49 int page_size = flash->page_size;
Nikolay Petukhov4784c472008-05-17 01:08:58 +000050
51 /* unprotected */
Uwe Hermann394131e2008-10-18 21:14:13 +000052 write_lockbits_49fl00x(flash->virtual_registers,
53 total_size, 0, page_size);
Nikolay Petukhov4784c472008-05-17 01:08:58 +000054
Uwe Hermann394131e2008-10-18 21:14:13 +000055 /*
56 * erase_chip_jedec() will not work... Datasheet says
57 * "Chip erase is available in A/A Mux Mode only".
58 */
Nikolay Petukhov4784c472008-05-17 01:08:58 +000059 printf("Erasing page: ");
60 for (i = 0; i < total_size / page_size; i++) {
Nikolay Petukhov4784c472008-05-17 01:08:58 +000061 /* erase the page */
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +000062 if (erase_block_jedec(flash, i * page_size, page_size)) {
63 fprintf(stderr, "ERASE FAILED!\n");
64 return -1;
65 }
Nikolay Petukhov4784c472008-05-17 01:08:58 +000066 printf("%04d at address: 0x%08x", i, i * page_size);
67 printf("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b");
68 fflush(stdout);
69 }
70 printf("\n");
71
72 /* protected */
Uwe Hermann394131e2008-10-18 21:14:13 +000073 write_lockbits_49fl00x(flash->virtual_registers,
74 total_size, 1, page_size);
Nikolay Petukhov4784c472008-05-17 01:08:58 +000075
76 return 0;
77}
78
79int write_49fl00x(struct flashchip *flash, uint8_t *buf)
80{
81 int i;
82 int total_size = flash->total_size * 1024;
83 int page_size = flash->page_size;
Carl-Daniel Hailfinger5820f422009-05-16 21:22:56 +000084 chipaddr bios = flash->virtual_memory;
Nikolay Petukhov4784c472008-05-17 01:08:58 +000085
86 /* unprotected */
Uwe Hermann394131e2008-10-18 21:14:13 +000087 write_lockbits_49fl00x(flash->virtual_registers, total_size, 0,
88 page_size);
Nikolay Petukhov4784c472008-05-17 01:08:58 +000089
90 printf("Programming page: ");
91 for (i = 0; i < total_size / page_size; i++) {
Nikolay Petukhov4784c472008-05-17 01:08:58 +000092 /* erase the page before programming */
Carl-Daniel Hailfinger30f7cb22009-06-15 17:23:36 +000093 if (erase_block_jedec(flash, i * page_size, page_size)) {
94 fprintf(stderr, "ERASE FAILED!\n");
95 return -1;
96 }
Nikolay Petukhov4784c472008-05-17 01:08:58 +000097
98 /* write to the sector */
99 printf("%04d at address: 0x%08x", i, i * page_size);
Sean Nelsonc57a9202010-01-04 17:15:23 +0000100 write_sector_jedec_common(flash, buf + i * page_size,
101 bios + i * page_size, page_size, 0xffff);
Nikolay Petukhov4784c472008-05-17 01:08:58 +0000102 printf("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b");
103 fflush(stdout);
104 }
105 printf("\n");
Uwe Hermann394131e2008-10-18 21:14:13 +0000106
Nikolay Petukhov4784c472008-05-17 01:08:58 +0000107 /* protected */
Uwe Hermann394131e2008-10-18 21:14:13 +0000108 write_lockbits_49fl00x(flash->virtual_registers, total_size, 1,
109 page_size);
Nikolay Petukhov4784c472008-05-17 01:08:58 +0000110
111 return 0;
112}