Merge git://git.denx.de/u-boot-arm
[J-u-boot.git] / include / configs / highbank.h
CommitLineData
37fc0ed2
RH
1/*
2 * Copyright 2010-2011 Calxeda, Inc.
3 *
1a459660 4 * SPDX-License-Identifier: GPL-2.0+
37fc0ed2
RH
5 */
6
7#ifndef __CONFIG_H
8#define __CONFIG_H
9
185a5bb0 10#define CONFIG_SYS_DCACHE_OFF
37fc0ed2 11#define CONFIG_L2_OFF
185a5bb0 12#define CONFIG_SYS_THUMB_BUILD
37fc0ed2
RH
13
14#define CONFIG_SYS_NO_FLASH
15#define CFG_HZ 1000
16#define CONFIG_SYS_HZ CFG_HZ
17
18#define CONFIG_OF_LIBFDT
76c3999d 19#define CONFIG_OF_BOARD_SETUP
37fc0ed2 20#define CONFIG_FIT
185a5bb0 21#define CONFIG_SUPPORT_RAW_INITRD
37fc0ed2
RH
22#define CONFIG_SYS_BOOTMAPSZ (16 << 20)
23
24/*
25 * Size of malloc() pool
26 */
27#define CONFIG_SYS_MALLOC_LEN (512 * 1024)
28
29#define CONFIG_PL011_SERIAL
30#define CONFIG_PL011_CLOCK 150000000
31#define CONFIG_PL01x_PORTS { (void *)(0xFFF36000) }
32#define CONFIG_CONS_INDEX 0
33
185a5bb0 34#define CONFIG_BAUDRATE 115200
37fc0ed2 35
877012df 36#define CONFIG_BOOTCOUNT_LIMIT
0044c42e
SR
37#define CONFIG_SYS_BOOTCOUNT_SINGLEWORD
38#define CONFIG_SYS_BOOTCOUNT_LE /* Use little-endian accessors */
877012df
RH
39#define CONFIG_SYS_BOOTCOUNT_ADDR 0xfff3cf0c
40
37fc0ed2
RH
41#define CONFIG_MISC_INIT_R
42#define CONFIG_SCSI_AHCI
43#define CONFIG_SCSI_AHCI_PLAT
44#define CONFIG_SYS_SCSI_MAX_SCSI_ID 5
45#define CONFIG_SYS_SCSI_MAX_LUN 1
46#define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
47 CONFIG_SYS_SCSI_MAX_LUN)
48
49#define CONFIG_DOS_PARTITION
185a5bb0 50#define CONFIG_EFI_PARTITION
37fc0ed2 51
9a420986
RH
52#define CONFIG_CALXEDA_XGMAC
53
54/* PXE support */
55#define CONFIG_BOOTP_PXE
56#define CONFIG_BOOTP_PXE_CLIENTARCH 0x100
57#define CONFIG_BOOTP_VCI_STRING "U-boot.armv7.highbank"
58
37fc0ed2
RH
59/*
60 * Command line configuration.
61 */
62#include <config_cmd_default.h>
37fc0ed2
RH
63
64#define CONFIG_CMD_BDI
185a5bb0 65#define CONFIG_CMD_BOOTZ
9a420986 66#define CONFIG_CMD_DHCP
37fc0ed2
RH
67#define CONFIG_CMD_ELF
68#define CONFIG_CMD_MEMORY
69#define CONFIG_CMD_LOADS
70#define CONFIG_CMD_SCSI
71#define CONFIG_CMD_EXT2
185a5bb0
RH
72#define CONFIG_CMD_EXT4
73#define CONFIG_CMD_FAT
9a420986
RH
74#define CONFIG_CMD_PXE
75#define CONFIG_MENU
37fc0ed2
RH
76
77#define CONFIG_BOOTDELAY 2
e1df283c
RH
78#define CONFIG_BOOT_RETRY_TIME -1
79#define CONFIG_RESET_TO_RETRY
76116f29
RH
80#define CONFIG_AUTOBOOT_KEYED
81#define CONFIG_AUTOBOOT_PROMPT "Autobooting in %d seconds...\nPress <s> to stop or <d> to delay\n", bootdelay
e1df283c 82
37fc0ed2
RH
83/*
84 * Miscellaneous configurable options
85 */
86#define CONFIG_CMDLINE_EDITING
87#define CONFIG_AUTO_COMPLETE
88#define CONFIG_SYS_LONGHELP /* undef to save memory */
185a5bb0 89#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
37fc0ed2
RH
90#define CONFIG_SYS_MAXARGS 16 /* max number of cmd args */
91#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
92#define CONFIG_SYS_PROMPT "Highbank #"
185a5bb0 93#define CONFIG_SYS_HUSH_PARSER
37fc0ed2
RH
94/* Print Buffer Size */
95#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
96 sizeof(CONFIG_SYS_PROMPT)+16)
97
98#define CONFIG_SYS_LOAD_ADDR 0x800000
185a5bb0
RH
99#define CONFIG_SYS_64BIT_LBA
100
37fc0ed2 101
37fc0ed2
RH
102/*-----------------------------------------------------------------------
103 * Physical Memory Map
104 */
105#define CONFIG_NR_DRAM_BANKS 1
106#define PHYS_SDRAM_1_SIZE (4089 << 20)
107#define CONFIG_SYS_MEMTEST_START 0x100000
108#define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_1_SIZE - 0x100000)
109
a34e8549
JH
110/* Environment data setup
111*/
112#define CONFIG_ENV_IS_IN_NVRAM
113#define CONFIG_SYS_NVRAM_BASE_ADDR 0xfff88000 /* NVRAM base address */
114#define CONFIG_SYS_NVRAM_SIZE 0x8000 /* NVRAM size */
115#define CONFIG_ENV_SIZE 0x2000 /* Size of Environ */
116#define CONFIG_ENV_ADDR CONFIG_SYS_NVRAM_BASE_ADDR
37fc0ed2
RH
117
118#define CONFIG_SYS_SDRAM_BASE 0x00000000
7b81649a 119#define CONFIG_SYS_TEXT_BASE 0x00008000
37fc0ed2
RH
120#define CONFIG_SYS_INIT_SP_ADDR 0x01000000
121#define CONFIG_SKIP_LOWLEVEL_INIT
122
123#endif
This page took 0.176931 seconds and 4 git commands to generate.