]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/woodburn_sd.h
Merge branch 'buildman' of git://git.denx.de/u-boot-x86
[karo-tx-uboot.git] / include / configs / woodburn_sd.h
1 /*
2  * (C) Copyright 2011, Stefano Babic <sbabic@denx.de>
3  *
4  * (C) Copyright 2008-2010 Freescale Semiconductor, Inc.
5  *
6  * Configuration for the woodburn board.
7  *
8  * SPDX-License-Identifier:     GPL-2.0+
9  */
10
11 #ifndef __CONFIG_H
12 #define __CONFIG_H
13
14 #include <asm/arch/imx-regs.h>
15 #include "woodburn_common.h"
16
17 /* Set TEXT in RAM */
18 #define CONFIG_SYS_TEXT_BASE    0x82000000
19
20 #define CONFIG_BOOT_INTERNAL
21
22 /*
23  * SPL
24  */
25 #define CONFIG_SPL
26 #define CONFIG_SPL_FRAMEWORK
27 #define CONFIG_SPL_LDSCRIPT     "arch/arm/cpu/arm1136/u-boot-spl.lds"
28 #define CONFIG_SPL_LIBCOMMON_SUPPORT
29 #define CONFIG_SPL_LIBGENERIC_SUPPORT
30 #define CONFIG_SPL_LIBDISK_SUPPORT
31 #define CONFIG_SPL_SERIAL_SUPPORT
32 #define CONFIG_SPL_MMC_SUPPORT
33 #define CONFIG_SPL_BOARD_INIT
34 #define CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR 0x100 /* address 0x60000 */
35 #define CONFIG_SYS_U_BOOT_MAX_SIZE_SECTORS      0x400 /* 512 KB */
36 #define CONFIG_SPL_GPIO_SUPPORT
37
38 #define CONFIG_SPL_TEXT_BASE            0x10002300
39 #define CONFIG_SPL_MAX_SIZE             (64 * 1024)     /* 8 KB for stack */
40 #define CONFIG_SPL_STACK                LOW_LEVEL_SRAM_STACK
41
42 #define CONFIG_SYS_SPL_MALLOC_START     0x8f000000
43 #define CONFIG_SYS_SPL_MALLOC_SIZE      0x80000
44 #define CONFIG_SPL_BSS_START_ADDR       0x8f080000 /* end of RAM */
45 #define CONFIG_SPL_BSS_MAX_SIZE         0x80000
46
47 #endif                          /* __CONFIG_H */