stroese | 8d8f894 | 2004-12-16 18:24:06 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2001 |
| 3 | * Stefan Roese, esd gmbh germany, stefan.roese@esd-electronics.com |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame^] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
stroese | 8d8f894 | 2004-12-16 18:24:06 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
Stefan Roese | b36df56 | 2010-09-09 19:18:00 +0200 | [diff] [blame] | 9 | /*#include <asm/ppc4xx.h>*/ |
stroese | 8d8f894 | 2004-12-16 18:24:06 +0000 | [diff] [blame] | 10 | #include <asm/processor.h> |
| 11 | |
| 12 | /* |
| 13 | * include common flash code (for esd boards) |
| 14 | */ |
| 15 | #include "../common/flash.c" |
| 16 | |
| 17 | /*----------------------------------------------------------------------- |
| 18 | * Functions |
| 19 | */ |
| 20 | static ulong flash_get_size (vu_long * addr, flash_info_t * info); |
| 21 | static void flash_get_offsets (ulong base, flash_info_t * info); |
| 22 | |
| 23 | /*----------------------------------------------------------------------- |
| 24 | */ |
| 25 | |
| 26 | unsigned long flash_init (void) |
| 27 | { |
| 28 | unsigned long size_b0; |
| 29 | int i; |
| 30 | |
| 31 | /* Init: no FLASHes known */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 32 | for (i=0; i<CONFIG_SYS_MAX_FLASH_BANKS; ++i) { |
stroese | 8d8f894 | 2004-12-16 18:24:06 +0000 | [diff] [blame] | 33 | flash_info[i].flash_id = FLASH_UNKNOWN; |
| 34 | } |
| 35 | |
| 36 | /* Static FLASH Bank configuration here - FIXME XXX */ |
| 37 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 38 | size_b0 = flash_get_size((vu_long *)CONFIG_SYS_FLASH_BASE, &flash_info[0]); |
stroese | 8d8f894 | 2004-12-16 18:24:06 +0000 | [diff] [blame] | 39 | |
| 40 | if (flash_info[0].flash_id == FLASH_UNKNOWN) { |
| 41 | printf ("## Unknown FLASH on Bank 0 - Size = 0x%08lx = %ld MB\n", |
| 42 | size_b0, size_b0<<20); |
| 43 | } |
| 44 | |
| 45 | /* Setup offsets */ |
| 46 | flash_get_offsets (-size_b0, &flash_info[0]); |
| 47 | |
| 48 | /* test-only: todo: Re-do sizing to get full correct info */ |
| 49 | |
| 50 | /* Monitor protection ON by default */ |
| 51 | (void)flash_protect(FLAG_PROTECT_SET, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 52 | CONFIG_SYS_FLASH_BASE, |
| 53 | CONFIG_SYS_FLASH_BASE+CONFIG_SYS_MONITOR_LEN-1, |
stroese | 8d8f894 | 2004-12-16 18:24:06 +0000 | [diff] [blame] | 54 | &flash_info[0]); |
| 55 | |
| 56 | flash_info[0].size = size_b0; |
| 57 | |
| 58 | return (size_b0); |
| 59 | } |