blob: a3f42faf0718af90b5a3e82557323c75cf6c2f71 [file] [log] [blame]
Ronald G. Minniche3dad012004-02-10 21:34:18 +00001/*
2 * pm49fl004.c: driver for Pm49FL004 flash models.
3 *
4 *
5 * Copyright 2004 Tyan Corporation
Yinghai Luad8ffd22004-10-20 05:07:16 +00006 * yhlu yhlu@tyan.com add exclude range
Ronald G. Minniche3dad012004-02-10 21:34:18 +00007 *
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., 675 Mass Ave, Cambridge, MA 02139, USA.
21 *
22 *
23 */
24
25#include <stdio.h>
26#include "flash.h"
27#include "jedec.h"
28#include "pm49fl004.h"
29
Ollie Lho761bf1b2004-03-20 16:46:10 +000030static __inline__ int erase_block_49fl004(volatile unsigned char *bios,
31 unsigned long address)
Ronald G. Minniche3dad012004-02-10 21:34:18 +000032{
Ollie Lho761bf1b2004-03-20 16:46:10 +000033 volatile unsigned char *Temp;
Ronald G. Minniche3dad012004-02-10 21:34:18 +000034
Ollie Lho761bf1b2004-03-20 16:46:10 +000035 Temp = bios + 0x5555; /* set up address to be C000:5555h */
36 *Temp = 0xAA; /* write data 0xAA to the address */
37 myusec_delay(10);
38 Temp = bios + 0x2AAA; /* set up address to be C000:2AAAh */
39 *Temp = 0x55; /* write data 0x55 to the address */
40 myusec_delay(10);
41 Temp = bios + 0x5555; /* set up address to be C000:5555h */
42 *Temp = 0x80; /* write data 0x80 to the address */
43 myusec_delay(10);
44 Temp = bios + 0x5555; /* set up address to be C000:5555h */
45 *Temp = 0xAA; /* write data 0xAA to the address */
46 myusec_delay(10);
47 Temp = bios + 0x2AAA; /* set up address to be C000:2AAAh */
48 *Temp = 0x55; /* write data 0x55 to the address */
49 myusec_delay(10);
50 Temp = bios + address; /* set up address to be C000:5555h */
51 *Temp = 0x50; /* write data 0x50 to the address */
Ronald G. Minniche3dad012004-02-10 21:34:18 +000052
53 /* wait for Toggle bit ready */
Ollie Lho761bf1b2004-03-20 16:46:10 +000054 toggle_ready_jedec(bios);
Ronald G. Minniche3dad012004-02-10 21:34:18 +000055
Ollie Lho761bf1b2004-03-20 16:46:10 +000056 return (0);
Ronald G. Minniche3dad012004-02-10 21:34:18 +000057}
Ollie Lho856943d2004-03-18 20:35:33 +000058
Yinghai Luad8ffd22004-10-20 05:07:16 +000059
60extern int exclude_start_page, exclude_end_page;
61
Ollie Lho761bf1b2004-03-20 16:46:10 +000062int write_49fl004(struct flashchip *flash, unsigned char *buf)
Ronald G. Minniche3dad012004-02-10 21:34:18 +000063{
64 int i;
Ollie Lho761bf1b2004-03-20 16:46:10 +000065 int total_size = flash->total_size * 1024, page_size =
66 flash->page_size;
67 volatile char *bios = flash->virt_addr;
Yinghai Luad8ffd22004-10-20 05:07:16 +000068
Ollie Lho761bf1b2004-03-20 16:46:10 +000069 printf("Programming Page: ");
70 for (i = 0; i < total_size / page_size; i++) {
Yinghai Luad8ffd22004-10-20 05:07:16 +000071 if( (i>=exclude_start_page) && (i<exclude_end_page))
72 continue;
73
Ronald G. Minniche3dad012004-02-10 21:34:18 +000074 /* erase the page before programming */
75 erase_block_49fl004(bios, i * page_size);
76
77 /* write to the sector */
Ollie Lho761bf1b2004-03-20 16:46:10 +000078 printf("%04d at address: 0x%08x", i, i * page_size);
Ollie Lho8b8897a2004-03-27 00:18:15 +000079 write_sector_jedec(bios, buf + i * page_size,
80 bios + i * page_size, page_size);
81 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");
Ollie Lho761bf1b2004-03-20 16:46:10 +000082 fflush(stdout);
Ronald G. Minniche3dad012004-02-10 21:34:18 +000083 }
84 printf("\n");
85
Ollie Lho761bf1b2004-03-20 16:46:10 +000086 return (0);
Ronald G. Minniche3dad012004-02-10 21:34:18 +000087}