]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/afeb9260/partition.c
Merge branch 'master' of git://git.denx.de/u-boot-arm into master
[karo-tx-uboot.git] / board / afeb9260 / partition.c
1 /*
2  * SPDX-License-Identifier:     GPL-2.0+
3  */
4 #include <common.h>
5 #include <config.h>
6 #include <asm/hardware.h>
7 #include <dataflash.h>
8
9 AT91S_DATAFLASH_INFO dataflash_info[CONFIG_SYS_MAX_DATAFLASH_BANKS];
10
11 struct dataflash_addr cs[CONFIG_SYS_MAX_DATAFLASH_BANKS] = {
12         {CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0, 0},       /* Logical adress, CS */
13         {CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS1, 1}
14 };
15
16 /*define the area offsets*/
17 dataflash_protect_t area_list[NB_DATAFLASH_AREA] = {
18         {0x00000000, 0x000041FF, FLAG_PROTECT_CLEAR, 0, "Bootstrap"},
19         {0x00004200, 0x000083FF, FLAG_PROTECT_CLEAR, 0, "Environment"},
20         {0x00008400, 0x00041FFF, FLAG_PROTECT_CLEAR, 0, "U-Boot"},
21 };