blob: bb892e6700b79fea3e7cbfa4982c01062c03cfbc [file] [log] [blame]
wdenk074cff02004-02-24 00:16:43 +00001/*
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>
25#include <asm/hardware.h>
26
27/*
28 * include common flash code (for esd boards)
29 */
30#include "../common/flash.c"
31
32/*-----------------------------------------------------------------------
33 * Functions
34 */
35static ulong flash_get_size (vu_long * addr, flash_info_t * info);
36static void flash_get_offsets (ulong base, flash_info_t * info);
37
38/*-----------------------------------------------------------------------
39 */
40
41unsigned long flash_init (void)
42{
43#ifdef __DEBUG_START_FROM_SRAM__
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020044 return CONFIG_SYS_DUMMY_FLASH_SIZE;
wdenk074cff02004-02-24 00:16:43 +000045#else
46 unsigned long size_b0;
47 int i;
wdenk074cff02004-02-24 00:16:43 +000048
49 /* Init: no FLASHes known */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020050 for (i=0; i<CONFIG_SYS_MAX_FLASH_BANKS; ++i) {
wdenk074cff02004-02-24 00:16:43 +000051 flash_info[i].flash_id = FLASH_UNKNOWN;
52 }
53
54 /* Static FLASH Bank configuration here - FIXME XXX */
55
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020056 size_b0 = flash_get_size((vu_long *)CONFIG_SYS_FLASH_BASE, &flash_info[0]);
wdenk074cff02004-02-24 00:16:43 +000057
58 if (flash_info[0].flash_id == FLASH_UNKNOWN) {
59 printf ("## Unknown FLASH on Bank 0 - Size = 0x%08lx = %ld MB\n",
60 size_b0, size_b0<<20);
61 }
62
63 /* Setup offsets */
64 flash_get_offsets (0, &flash_info[0]);
65
66 /* Monitor protection ON by default */
67 (void)flash_protect(FLAG_PROTECT_SET,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020068 -CONFIG_SYS_MONITOR_LEN,
wdenk074cff02004-02-24 00:16:43 +000069 0xffffffff,
70 &flash_info[0]);
71
72 flash_info[0].size = size_b0;
73
74 return (size_b0);
75#endif
76}