blob: 3d5b20d22380ae34be033966408ff07f59980121 [file] [log] [blame]
wdenk12f34242003-09-02 22:48:03 +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>
Stefan Roeseb36df562010-09-09 19:18:00 +020025#include <asm/ppc4xx.h>
wdenk12f34242003-09-02 22:48:03 +000026#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 */
36static ulong flash_get_size (vu_long * addr, flash_info_t * info);
37static void flash_get_offsets (ulong base, flash_info_t * info);
38
39/*-----------------------------------------------------------------------
40 */
41
42unsigned long flash_init (void)
43{
44#ifdef __DEBUG_START_FROM_SRAM__
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020045 return CONFIG_SYS_DUMMY_FLASH_SIZE;
wdenk12f34242003-09-02 22:48:03 +000046#else
wdenk46a414d2004-06-17 18:50:45 +000047 unsigned long size;
wdenk12f34242003-09-02 22:48:03 +000048 int i;
wdenk42d1f032003-10-15 23:53:47 +000049 uint pbcr;
wdenk46a414d2004-06-17 18:50:45 +000050 unsigned long base;
wdenk12f34242003-09-02 22:48:03 +000051 int size_val = 0;
52
wdenke55ca7e2004-07-01 21:40:08 +000053 debug("[%s, %d] Entering ...\n", __FUNCTION__, __LINE__);
Marek Vasut2e59cb62011-10-21 14:17:29 +000054 debug("[%s, %d] flash_info = 0x%p ...\n", __func__, __LINE__,
55 flash_info);
wdenke55ca7e2004-07-01 21:40:08 +000056
wdenk12f34242003-09-02 22:48:03 +000057 /* Init: no FLASHes known */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020058 for (i=0; i<CONFIG_SYS_MAX_FLASH_BANKS; ++i) {
wdenk12f34242003-09-02 22:48:03 +000059 flash_info[i].flash_id = FLASH_UNKNOWN;
60 }
61
62 /* Static FLASH Bank configuration here - FIXME XXX */
63
wdenke55ca7e2004-07-01 21:40:08 +000064 debug("[%s, %d] Calling flash_get_size ...\n", __FUNCTION__, __LINE__);
wdenk46a414d2004-06-17 18:50:45 +000065 size = flash_get_size((vu_long *)FLASH_BASE0_PRELIM, &flash_info[0]);
wdenk12f34242003-09-02 22:48:03 +000066
67 if (flash_info[0].flash_id == FLASH_UNKNOWN) {
68 printf ("## Unknown FLASH on Bank 0 - Size = 0x%08lx = %ld MB\n",
wdenk46a414d2004-06-17 18:50:45 +000069 size, size<<20);
wdenk12f34242003-09-02 22:48:03 +000070 }
71
wdenke55ca7e2004-07-01 21:40:08 +000072 debug("[%s, %d] Test point ...\n", __FUNCTION__, __LINE__);
73
wdenk42d1f032003-10-15 23:53:47 +000074 /* Setup offsets */
wdenk46a414d2004-06-17 18:50:45 +000075 flash_get_offsets (-size, &flash_info[0]);
wdenke55ca7e2004-07-01 21:40:08 +000076 debug("[%s, %d] Test point ...\n", __FUNCTION__, __LINE__);
wdenk12f34242003-09-02 22:48:03 +000077
wdenk42d1f032003-10-15 23:53:47 +000078 /* Re-do sizing to get full correct info */
Stefan Roesed1c3b272009-09-09 16:25:29 +020079 mtdcr(EBC0_CFGADDR, PB0CR);
80 pbcr = mfdcr(EBC0_CFGDATA);
81 mtdcr(EBC0_CFGADDR, PB0CR);
wdenk46a414d2004-06-17 18:50:45 +000082 base = -size;
83 switch (size) {
wdenk12f34242003-09-02 22:48:03 +000084 case 1 << 20:
85 size_val = 0;
86 break;
87 case 2 << 20:
88 size_val = 1;
89 break;
90 case 4 << 20:
91 size_val = 2;
92 break;
93 case 8 << 20:
94 size_val = 3;
95 break;
96 case 16 << 20:
97 size_val = 4;
98 break;
99 }
wdenk46a414d2004-06-17 18:50:45 +0000100 pbcr = (pbcr & 0x0001ffff) | base | (size_val << 17);
Stefan Roesed1c3b272009-09-09 16:25:29 +0200101 mtdcr(EBC0_CFGDATA, pbcr);
wdenke55ca7e2004-07-01 21:40:08 +0000102 debug("[%s, %d] Test point ...\n", __FUNCTION__, __LINE__);
wdenk12f34242003-09-02 22:48:03 +0000103
wdenk42d1f032003-10-15 23:53:47 +0000104 /* Monitor protection ON by default */
105 (void)flash_protect(FLAG_PROTECT_SET,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200106 -CONFIG_SYS_MONITOR_LEN,
wdenk42d1f032003-10-15 23:53:47 +0000107 0xffffffff,
108 &flash_info[0]);
wdenk12f34242003-09-02 22:48:03 +0000109
wdenke55ca7e2004-07-01 21:40:08 +0000110 debug("[%s, %d] Test point ...\n", __FUNCTION__, __LINE__);
wdenk46a414d2004-06-17 18:50:45 +0000111 flash_info[0].size = size;
wdenk12f34242003-09-02 22:48:03 +0000112
wdenk46a414d2004-06-17 18:50:45 +0000113 return (size);
wdenk12f34242003-09-02 22:48:03 +0000114#endif
115}