blob: 8fa008430ada3b14014292654575d190a621e9a5 [file] [log] [blame]
Stefan Roesea1831882006-10-07 11:35:25 +02001/*
2 * (C) Copyright 2006
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
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
26/*
27 * include common flash code (for esd boards)
28 */
29#include "../common/flash.c"
30
31/*
32 * Prototypes
33 */
34static ulong flash_get_size (vu_long * addr, flash_info_t * info);
35
36unsigned long flash_init(void)
37{
38 unsigned long size;
39 int i;
40
41 /* Init: no FLASHes known */
42 for (i=0; i<CFG_MAX_FLASH_BANKS; i++)
43 flash_info[i].flash_id = FLASH_UNKNOWN;
44
45 size = flash_get_size((vu_long *)FLASH_BASE0_PRELIM, &flash_info[0]);
46
47 if (flash_info[0].flash_id == FLASH_UNKNOWN)
48 printf ("## Unknown FLASH on Bank 0 - Size = 0x%08lx = %ld MB\n",
49 size, size<<20);
50
51 /* Monitor protection ON by default */
52 flash_protect(FLAG_PROTECT_SET, -CFG_MONITOR_LEN, 0xffffffff,
53 &flash_info[0]);
54
55 /* Environment protection ON by default */
56 flash_protect(FLAG_PROTECT_SET,
57 CFG_ENV_ADDR,
58 CFG_ENV_ADDR + CFG_ENV_SECT_SIZE - 1,
59 &flash_info[CFG_MAX_FLASH_BANKS - 1]);
60
61 /* Redundant environment protection ON by default */
62 flash_protect(FLAG_PROTECT_SET,
63 CFG_ENV_ADDR_REDUND,
64 CFG_ENV_ADDR_REDUND + CFG_ENV_SIZE_REDUND - 1,
65 &flash_info[CFG_MAX_FLASH_BANKS - 1]);
66
67 flash_info[0].size = size;
68
69 return size;
70}