wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2001 |
| 3 | * Stefan Roese, esd gmbh germany, stefan.roese@esd-electronics.com |
| 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (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., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | */ |
| 23 | |
| 24 | #include <common.h> |
Stefan Roese | b36df56 | 2010-09-09 19:18:00 +0200 | [diff] [blame] | 25 | #include <asm/ppc4xx.h> |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 26 | #include <asm/processor.h> |
| 27 | |
| 28 | /* |
| 29 | * include common flash code (for esd boards) |
| 30 | */ |
| 31 | #include "../common/flash.c" |
| 32 | |
| 33 | /*----------------------------------------------------------------------- |
| 34 | * Functions |
| 35 | */ |
| 36 | static ulong flash_get_size (vu_long *addr, flash_info_t *info); |
| 37 | static void flash_get_offsets (ulong base, flash_info_t *info); |
| 38 | |
| 39 | |
| 40 | /*----------------------------------------------------------------------- |
| 41 | */ |
| 42 | |
| 43 | unsigned long flash_init (void) |
| 44 | { |
| 45 | unsigned long size_b0; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 46 | int i; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 47 | |
| 48 | /* Init: no FLASHes known */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 49 | for (i=0; i<CONFIG_SYS_MAX_FLASH_BANKS; ++i) { |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 50 | flash_info[i].flash_id = FLASH_UNKNOWN; |
| 51 | } |
| 52 | |
| 53 | /* Static FLASH Bank configuration here - FIXME XXX */ |
| 54 | |
| 55 | size_b0 = flash_get_size((vu_long *)FLASH_BASE0_PRELIM, &flash_info[0]); |
| 56 | |
| 57 | if (flash_info[0].flash_id == FLASH_UNKNOWN) { |
| 58 | printf ("## Unknown FLASH on Bank 0 - Size = 0x%08lx = %ld MB\n", |
| 59 | size_b0, size_b0<<20); |
| 60 | } |
| 61 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 62 | /* Setup offsets */ |
| 63 | flash_get_offsets (-size_b0, &flash_info[0]); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 64 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 65 | /* Monitor protection ON by default */ |
| 66 | (void)flash_protect(FLAG_PROTECT_SET, |
| 67 | -monitor_flash_len, |
| 68 | 0xffffffff, |
| 69 | &flash_info[0]); |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 70 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 71 | flash_info[0].size = size_b0; |
wdenk | affae2b | 2002-08-17 09:36:01 +0000 | [diff] [blame] | 72 | |
| 73 | return (size_b0); |
| 74 | } |