]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/atmel/at91sam9261ek/partition.c
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / atmel / at91sam9261ek / partition.c
1 /*
2 * (C) Copyright 2008
3 * Ulf Samuelsson <ulf@atmel.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7 #include <common.h>
8 #include <config.h>
9 #include <asm/hardware.h>
10 #include <dataflash.h>
11
12 AT91S_DATAFLASH_INFO dataflash_info[CONFIG_SYS_MAX_DATAFLASH_BANKS];
13
14 struct dataflash_addr cs[CONFIG_SYS_MAX_DATAFLASH_BANKS] = {
15 {CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS0, 0}, /* Logical adress, CS */
16 {CONFIG_SYS_DATAFLASH_LOGIC_ADDR_CS3, 3}
17 };
18
19 /*define the area offsets*/
20 dataflash_protect_t area_list[NB_DATAFLASH_AREA] = {
21 {0x00000000, 0x000041FF, FLAG_PROTECT_SET, 0, "Bootstrap"},
22 {0x00004200, 0x000083FF, FLAG_PROTECT_CLEAR, 0, "Environment"},
23 {0x00008400, 0x00083FFF, FLAG_PROTECT_SET, 0, "U-Boot"},
24 {0x00084000, 0x00293FFF, FLAG_PROTECT_CLEAR, 0, "Kernel"},
25 {0x00294000, 0xFFFFFFFF, FLAG_PROTECT_CLEAR, 0, "FS"},
26 };