blob: 66fc0d3d819780fff4a9cd5dc7120e80553794c1 [file] [log] [blame]
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +00001/*
Uwe Hermannd1107642007-08-29 17:52:32 +00002 * This file is part of the flashrom project.
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +00003 *
4 * Copyright 2000 Silicon Integrated System Corporation
5 *
Uwe Hermannd1107642007-08-29 17:52:32 +00006 * 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.
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000010 *
Uwe Hermannd1107642007-08-29 17:52:32 +000011 * 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.
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000015 *
Uwe Hermannd1107642007-08-29 17:52:32 +000016 * 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
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000019 */
20
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000021#include <stdio.h>
Ollie Lho184a4042005-11-26 21:55:36 +000022#include <stdint.h>
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000023#include "flash.h"
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000024
Ollie Lho184a4042005-11-26 21:55:36 +000025static __inline__ int erase_sector_29f040b(volatile uint8_t *bios,
Ollie Lho761bf1b2004-03-20 16:46:10 +000026 unsigned long address)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000027{
Ollie Lho761bf1b2004-03-20 16:46:10 +000028 *(bios + 0x555) = 0xAA;
29 *(bios + 0x2AA) = 0x55;
30 *(bios + 0x555) = 0x80;
31 *(bios + 0x555) = 0xAA;
32 *(bios + 0x2AA) = 0x55;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000033 *(bios + address) = 0x30;
34
35 sleep(2);
36
37 /* wait for Toggle bit ready */
38 toggle_ready_jedec(bios + address);
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000039
Uwe Hermannffec5f32007-08-23 16:08:21 +000040 return 0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000041}
42
Ollie Lho184a4042005-11-26 21:55:36 +000043static __inline__ int write_sector_29f040b(volatile uint8_t *bios,
44 uint8_t *src,
45 volatile uint8_t *dst,
Ollie Lho761bf1b2004-03-20 16:46:10 +000046 unsigned int page_size)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000047{
48 int i;
49
50 for (i = 0; i < page_size; i++) {
Uwe Hermann0b7afe62007-04-01 19:44:21 +000051 if ((i & 0xfff) == 0xfff)
52 printf("0x%08lx", (unsigned long)dst -
53 (unsigned long)bios);
Ollie Lho761bf1b2004-03-20 16:46:10 +000054
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000055 *(bios + 0x555) = 0xAA;
56 *(bios + 0x2AA) = 0x55;
57 *(bios + 0x555) = 0xA0;
58 *dst++ = *src++;
59
60 /* wait for Toggle bit ready */
61 toggle_ready_jedec(bios);
62
Uwe Hermann0b7afe62007-04-01 19:44:21 +000063 if ((i & 0xfff) == 0xfff)
Stefan Reinauer99349a52006-03-16 16:46:19 +000064 printf("\b\b\b\b\b\b\b\b\b\b");
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000065 }
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000066
Uwe Hermannffec5f32007-08-23 16:08:21 +000067 return 0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000068}
69
Ollie Lho761bf1b2004-03-20 16:46:10 +000070int probe_29f040b(struct flashchip *flash)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000071{
Stefan Reinauerce532972007-05-23 17:20:56 +000072 volatile uint8_t *bios = flash->virtual_memory;
Ollie Lho184a4042005-11-26 21:55:36 +000073 uint8_t id1, id2;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000074
75 *(bios + 0x555) = 0xAA;
76 *(bios + 0x2AA) = 0x55;
77 *(bios + 0x555) = 0x90;
Ollie Lho761bf1b2004-03-20 16:46:10 +000078
79 id1 = *bios;
80 id2 = *(bios + 0x01);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000081
82 *bios = 0xF0;
83
Ronald G. Minnichef5779d2002-01-29 20:18:02 +000084 myusec_delay(10);
Ollie Lho761bf1b2004-03-20 16:46:10 +000085
Ollie Lho184a4042005-11-26 21:55:36 +000086 printf_debug("%s: id1 0x%x, id2 0x%x\n", __FUNCTION__, id1, id2);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000087 if (id1 == flash->manufacture_id && id2 == flash->model_id)
88 return 1;
89
90 return 0;
91}
92
Ollie Lho761bf1b2004-03-20 16:46:10 +000093int erase_29f040b(struct flashchip *flash)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000094{
Stefan Reinauerce532972007-05-23 17:20:56 +000095 volatile uint8_t *bios = flash->virtual_memory;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000096
97 *(bios + 0x555) = 0xAA;
98 *(bios + 0x2AA) = 0x55;
99 *(bios + 0x555) = 0x80;
100 *(bios + 0x555) = 0xAA;
101 *(bios + 0x2AA) = 0x55;
102 *(bios + 0x555) = 0x10;
103
Ronald G. Minnichef5779d2002-01-29 20:18:02 +0000104 myusec_delay(10);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000105 toggle_ready_jedec(bios);
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000106
Uwe Hermannffec5f32007-08-23 16:08:21 +0000107 return 0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000108}
109
Ollie Lho184a4042005-11-26 21:55:36 +0000110int write_29f040b(struct flashchip *flash, uint8_t *buf)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000111{
112 int i;
Uwe Hermann0b7afe62007-04-01 19:44:21 +0000113 int total_size = flash->total_size * 1024;
114 int page_size = flash->page_size;
Stefan Reinauerce532972007-05-23 17:20:56 +0000115 volatile uint8_t *bios = flash->virtual_memory;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000116
Stefan Reinauer99349a52006-03-16 16:46:19 +0000117 printf("Programming page ");
Ollie Lho761bf1b2004-03-20 16:46:10 +0000118 for (i = 0; i < total_size / page_size; i++) {
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000119 /* erase the page before programming */
120 erase_sector_29f040b(bios, i * page_size);
121
122 /* write to the sector */
Ollie Lho761bf1b2004-03-20 16:46:10 +0000123 printf("%04d at address: ", i);
124 write_sector_29f040b(bios, buf + i * page_size,
125 bios + i * page_size, page_size);
126 printf("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b");
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000127 }
128 printf("\n");
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000129
Uwe Hermannffec5f32007-08-23 16:08:21 +0000130 return 0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000131}