blob: 28a94abaf8afbfa97eea399537e681c5648ce5ec [file] [log] [blame]
Andrew Ipf0126ce2002-10-16 06:58:05 +00001/*
2 * w49f002u.c: driver for Winbond 49F002U flash models
3 *
4 *
5 * Copyright 2000 Silicon Integrated System Corporation
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 *
21 *
22 * Reference:
23 * W49F002U data sheet
24 *
Ollie Lhocf29de82004-03-18 19:40:07 +000025 * ToDo: Consilidated to standard JEDEC code.
26 *
Ollie Lhocec28792004-03-17 23:03:37 +000027 * $Id$
Andrew Ipf0126ce2002-10-16 06:58:05 +000028 */
29
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000030#include <stdio.h>
Andrew Ipf0126ce2002-10-16 06:58:05 +000031#include "flash.h"
32#include "jedec.h"
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000033#include "w49f002u.h"
Andrew Ipf0126ce2002-10-16 06:58:05 +000034
35int probe_49f002 (struct flashchip * flash)
36{
37 volatile char * bios = flash->virt_addr;
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000038 unsigned char id1, id2;
Andrew Ipf0126ce2002-10-16 06:58:05 +000039
Ollie Lhocec28792004-03-17 23:03:37 +000040 *(volatile char *) (bios + 0x5555) = 0xAA;
41 *(volatile char *) (bios + 0x2AAA) = 0x55;
42 *(volatile char *) (bios + 0x5555) = 0x90;
Andrew Ipf0126ce2002-10-16 06:58:05 +000043
44 id1 = *(volatile unsigned char *) bios;
45 id2 = *(volatile unsigned char *) (bios + 0x01);
Ollie Lhocec28792004-03-17 23:03:37 +000046
47 *(volatile char *) (bios + 0x5555) = 0xAA;
48 *(volatile char *) (bios + 0x2AAA) = 0x55;
49 *(volatile char *) (bios + 0x5555) = 0xF0;
Andrew Ipf0126ce2002-10-16 06:58:05 +000050
51 myusec_delay(10);
52
Ronald G. Minnichd4228fd2003-02-28 17:21:38 +000053 printf("%s: id1 0x%x, id2 0x%x\n", __FUNCTION__, id1, id2);
54
Andrew Ipf0126ce2002-10-16 06:58:05 +000055 if (id1 == flash->manufacture_id && id2 == flash->model_id)
56 return 1;
57
58 return 0;
59}
60
61int erase_49f002 (struct flashchip * flash)
62{
63 volatile char * bios = flash->virt_addr;
64
Andrew Ipf0126ce2002-10-16 06:58:05 +000065 *(bios + 0x5555) = 0xAA;
66 *(bios + 0x2AAA) = 0x55;
67 *(bios + 0x5555) = 0x80;
68 *(bios + 0x5555) = 0xAA;
69 *(bios + 0x2AAA) = 0x55;
70 *(bios + 0x5555) = 0x10;
71
72 myusec_delay(100);
73 toggle_ready_jedec(bios);
74
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000075 return(0);
Andrew Ipf0126ce2002-10-16 06:58:05 +000076}
77
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000078int write_49f002 (struct flashchip * flash, unsigned char * buf)
Andrew Ipf0126ce2002-10-16 06:58:05 +000079{
Ollie Lhocec28792004-03-17 23:03:37 +000080 int i;
81 int total_size = flash->total_size * 1024;
82 volatile char * bios = flash->virt_addr;
83 volatile char * dst = bios;
Andrew Ipf0126ce2002-10-16 06:58:05 +000084
Ollie Lhocec28792004-03-17 23:03:37 +000085 erase_49f002(flash);
Andrew Ipf0126ce2002-10-16 06:58:05 +000086
Ollie Lhocec28792004-03-17 23:03:37 +000087 printf ("Programming Page: ");
88 for (i = 0; i < total_size; i++) {
89 /* write to the sector */
90 if ((i & 0xfff) == 0)
91 printf ("address: 0x%08lx", (unsigned long)i);
92 *(bios + 0x5555) = 0xAA;
93 *(bios + 0x2AAA) = 0x55;
94 *(bios + 0x5555) = 0xA0;
95 *dst++ = *buf++;
Andrew Ipf0126ce2002-10-16 06:58:05 +000096
Ollie Lhocec28792004-03-17 23:03:37 +000097 /* wait for Toggle bit ready */
98 toggle_ready_jedec(dst);
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000099
Ollie Lhocec28792004-03-17 23:03:37 +0000100 if ((i & 0xfff) == 0)
101 printf ("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b");
102 }
103 printf("\n");
104
105 return(0);
Andrew Ipf0126ce2002-10-16 06:58:05 +0000106}