blob: 769e9440c54b0e7611cd2473e98c1d18322cb24d [file] [log] [blame]
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +00001/*
2 * mx29f002.c: driver for MXIC MX29F002 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 * MX29F002/002N data sheet
24 *
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000025 */
26
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000027#include <stdio.h>
Ollie Lho184a4042005-11-26 21:55:36 +000028#include <stdint.h>
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000029#include "flash.h"
30#include "jedec.h"
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +000031#include "mx29f002.h"
Ollie Lho184a4042005-11-26 21:55:36 +000032#include "debug.h"
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000033
Ollie Lho761bf1b2004-03-20 16:46:10 +000034int probe_29f002(struct flashchip *flash)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000035{
Ollie Lho184a4042005-11-26 21:55:36 +000036 volatile uint8_t *bios = flash->virt_addr;
37 uint8_t id1, id2;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000038
39 *(bios + 0x5555) = 0xAA;
40 *(bios + 0x2AAA) = 0x55;
41 *(bios + 0x5555) = 0x90;
Ollie Lho761bf1b2004-03-20 16:46:10 +000042
Ollie Lho184a4042005-11-26 21:55:36 +000043 id1 = *(volatile uint8_t *) bios;
44 id2 = *(volatile uint8_t *) (bios + 0x01);
Ollie Lho761bf1b2004-03-20 16:46:10 +000045
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000046 *bios = 0xF0;
47
Ronald G. Minnichef5779d2002-01-29 20:18:02 +000048 myusec_delay(10);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000049
Ollie Lho184a4042005-11-26 21:55:36 +000050 printf_debug("%s: id1 0x%x, id2 0x%x\n", __FUNCTION__, id1, id2);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000051 if (id1 == flash->manufacture_id && id2 == flash->model_id)
52 return 1;
53
54 return 0;
55}
56
Ollie Lho761bf1b2004-03-20 16:46:10 +000057int erase_29f002(struct flashchip *flash)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000058{
Ollie Lho184a4042005-11-26 21:55:36 +000059 volatile uint8_t *bios = flash->virt_addr;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000060
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000061 *(bios + 0x555) = 0xF0;
62 *(bios + 0x555) = 0xAA;
63 *(bios + 0x2AA) = 0x55;
64 *(bios + 0x555) = 0x80;
65 *(bios + 0x555) = 0xAA;
66 *(bios + 0x2AA) = 0x55;
67 *(bios + 0x555) = 0x10;
68
Ronald G. Minnichef5779d2002-01-29 20:18:02 +000069 myusec_delay(100);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000070 toggle_ready_jedec(bios);
71
72 // while ((*bios & 0x40) != 0x40)
73 //;
74
75#if 0
76 toggle_ready_jedec(bios);
77 *(bios + 0x0ffff) = 0x30;
78 *(bios + 0x1ffff) = 0x30;
79 *(bios + 0x2ffff) = 0x30;
80 *(bios + 0x37fff) = 0x30;
81 *(bios + 0x39fff) = 0x30;
82 *(bios + 0x3bfff) = 0x30;
83#endif
84
Ollie Lho761bf1b2004-03-20 16:46:10 +000085 return (0);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000086}
87
Ollie Lho184a4042005-11-26 21:55:36 +000088int write_29f002(struct flashchip *flash, uint8_t *buf)
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000089{
Ollie Lho761bf1b2004-03-20 16:46:10 +000090 int i;
91 int total_size = flash->total_size * 1024;
Ollie Lho184a4042005-11-26 21:55:36 +000092 volatile uint8_t *bios = flash->virt_addr;
93 volatile uint8_t *dst = bios;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000094
Ollie Lho761bf1b2004-03-20 16:46:10 +000095 *bios = 0xF0;
96 myusec_delay(10);
97 erase_29f002(flash);
98 //*bios = 0xF0;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +000099#if 1
Ollie Lho761bf1b2004-03-20 16:46:10 +0000100 printf("Programming Page: ");
101 for (i = 0; i < total_size; i++) {
102 /* write to the sector */
103 if ((i & 0xfff) == 0)
104 printf("address: 0x%08lx", (unsigned long) i);
105 *(bios + 0x5555) = 0xAA;
106 *(bios + 0x2AAA) = 0x55;
107 *(bios + 0x5555) = 0xA0;
108 *dst++ = *buf++;
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000109
Ollie Lho761bf1b2004-03-20 16:46:10 +0000110 /* wait for Toggle bit ready */
111 toggle_ready_jedec(dst);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000112
Ollie Lho761bf1b2004-03-20 16:46:10 +0000113 if ((i & 0xfff) == 0)
114 printf("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b");
115 }
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000116#endif
Ollie Lho761bf1b2004-03-20 16:46:10 +0000117 printf("\n");
Ronald G. Minnicheaab50b2003-09-12 22:41:53 +0000118
Ollie Lho761bf1b2004-03-20 16:46:10 +0000119 return (0);
Ronald G. Minnich5e5f75e2002-01-29 18:21:41 +0000120}