Ronald G. Minnich | e3dad01 | 2004-02-10 21:34:18 +0000 | [diff] [blame] | 1 | /* |
| 2 | * pm49fl004.c: driver for Pm49FL004 flash models. |
| 3 | * |
| 4 | * |
| 5 | * Copyright 2004 Tyan Corporation |
Yinghai Lu | ad8ffd2 | 2004-10-20 05:07:16 +0000 | [diff] [blame^] | 6 | * yhlu yhlu@tyan.com add exclude range |
Ronald G. Minnich | e3dad01 | 2004-02-10 21:34:18 +0000 | [diff] [blame] | 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., 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 Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 30 | static __inline__ int erase_block_49fl004(volatile unsigned char *bios, |
| 31 | unsigned long address) |
Ronald G. Minnich | e3dad01 | 2004-02-10 21:34:18 +0000 | [diff] [blame] | 32 | { |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 33 | volatile unsigned char *Temp; |
Ronald G. Minnich | e3dad01 | 2004-02-10 21:34:18 +0000 | [diff] [blame] | 34 | |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 35 | 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. Minnich | e3dad01 | 2004-02-10 21:34:18 +0000 | [diff] [blame] | 52 | |
| 53 | /* wait for Toggle bit ready */ |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 54 | toggle_ready_jedec(bios); |
Ronald G. Minnich | e3dad01 | 2004-02-10 21:34:18 +0000 | [diff] [blame] | 55 | |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 56 | return (0); |
Ronald G. Minnich | e3dad01 | 2004-02-10 21:34:18 +0000 | [diff] [blame] | 57 | } |
Ollie Lho | 856943d | 2004-03-18 20:35:33 +0000 | [diff] [blame] | 58 | |
Yinghai Lu | ad8ffd2 | 2004-10-20 05:07:16 +0000 | [diff] [blame^] | 59 | |
| 60 | extern int exclude_start_page, exclude_end_page; |
| 61 | |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 62 | int write_49fl004(struct flashchip *flash, unsigned char *buf) |
Ronald G. Minnich | e3dad01 | 2004-02-10 21:34:18 +0000 | [diff] [blame] | 63 | { |
| 64 | int i; |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 65 | int total_size = flash->total_size * 1024, page_size = |
| 66 | flash->page_size; |
| 67 | volatile char *bios = flash->virt_addr; |
Yinghai Lu | ad8ffd2 | 2004-10-20 05:07:16 +0000 | [diff] [blame^] | 68 | |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 69 | printf("Programming Page: "); |
| 70 | for (i = 0; i < total_size / page_size; i++) { |
Yinghai Lu | ad8ffd2 | 2004-10-20 05:07:16 +0000 | [diff] [blame^] | 71 | if( (i>=exclude_start_page) && (i<exclude_end_page)) |
| 72 | continue; |
| 73 | |
Ronald G. Minnich | e3dad01 | 2004-02-10 21:34:18 +0000 | [diff] [blame] | 74 | /* erase the page before programming */ |
| 75 | erase_block_49fl004(bios, i * page_size); |
| 76 | |
| 77 | /* write to the sector */ |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 78 | printf("%04d at address: 0x%08x", i, i * page_size); |
Ollie Lho | 8b8897a | 2004-03-27 00:18:15 +0000 | [diff] [blame] | 79 | 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 Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 82 | fflush(stdout); |
Ronald G. Minnich | e3dad01 | 2004-02-10 21:34:18 +0000 | [diff] [blame] | 83 | } |
| 84 | printf("\n"); |
| 85 | |
Ollie Lho | 761bf1b | 2004-03-20 16:46:10 +0000 | [diff] [blame] | 86 | return (0); |
Ronald G. Minnich | e3dad01 | 2004-02-10 21:34:18 +0000 | [diff] [blame] | 87 | } |