]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/highbank.h
ARM: highbank: avoid bss write in timer_init
[people/ms/u-boot.git] / include / configs / highbank.h
CommitLineData
37fc0ed2
RH
1/*
2 * Copyright 2010-2011 Calxeda, Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the Free
6 * Software Foundation; either version 2 of the License, or (at your option)
7 * any later version.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#ifndef __CONFIG_H
19#define __CONFIG_H
20
185a5bb0 21#define CONFIG_SYS_DCACHE_OFF
37fc0ed2 22#define CONFIG_L2_OFF
185a5bb0 23#define CONFIG_SYS_THUMB_BUILD
37fc0ed2
RH
24
25#define CONFIG_SYS_NO_FLASH
26#define CFG_HZ 1000
27#define CONFIG_SYS_HZ CFG_HZ
28
29#define CONFIG_OF_LIBFDT
30#define CONFIG_FIT
185a5bb0 31#define CONFIG_SUPPORT_RAW_INITRD
37fc0ed2
RH
32#define CONFIG_SYS_BOOTMAPSZ (16 << 20)
33
34/*
35 * Size of malloc() pool
36 */
37#define CONFIG_SYS_MALLOC_LEN (512 * 1024)
38
39#define CONFIG_PL011_SERIAL
40#define CONFIG_PL011_CLOCK 150000000
41#define CONFIG_PL01x_PORTS { (void *)(0xFFF36000) }
42#define CONFIG_CONS_INDEX 0
43
185a5bb0 44#define CONFIG_BAUDRATE 115200
37fc0ed2 45
877012df 46#define CONFIG_BOOTCOUNT_LIMIT
0044c42e
SR
47#define CONFIG_SYS_BOOTCOUNT_SINGLEWORD
48#define CONFIG_SYS_BOOTCOUNT_LE /* Use little-endian accessors */
877012df
RH
49#define CONFIG_SYS_BOOTCOUNT_ADDR 0xfff3cf0c
50
37fc0ed2
RH
51#define CONFIG_MISC_INIT_R
52#define CONFIG_SCSI_AHCI
53#define CONFIG_SCSI_AHCI_PLAT
54#define CONFIG_SYS_SCSI_MAX_SCSI_ID 5
55#define CONFIG_SYS_SCSI_MAX_LUN 1
56#define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
57 CONFIG_SYS_SCSI_MAX_LUN)
58
59#define CONFIG_DOS_PARTITION
185a5bb0 60#define CONFIG_EFI_PARTITION
37fc0ed2 61
9a420986
RH
62#define CONFIG_CALXEDA_XGMAC
63
64/* PXE support */
65#define CONFIG_BOOTP_PXE
66#define CONFIG_BOOTP_PXE_CLIENTARCH 0x100
67#define CONFIG_BOOTP_VCI_STRING "U-boot.armv7.highbank"
68
37fc0ed2
RH
69/*
70 * Command line configuration.
71 */
72#include <config_cmd_default.h>
37fc0ed2
RH
73
74#define CONFIG_CMD_BDI
185a5bb0 75#define CONFIG_CMD_BOOTZ
9a420986 76#define CONFIG_CMD_DHCP
37fc0ed2
RH
77#define CONFIG_CMD_ELF
78#define CONFIG_CMD_MEMORY
79#define CONFIG_CMD_LOADS
80#define CONFIG_CMD_SCSI
81#define CONFIG_CMD_EXT2
185a5bb0
RH
82#define CONFIG_CMD_EXT4
83#define CONFIG_CMD_FAT
9a420986
RH
84#define CONFIG_CMD_PXE
85#define CONFIG_MENU
37fc0ed2
RH
86
87#define CONFIG_BOOTDELAY 2
88/*
89 * Miscellaneous configurable options
90 */
91#define CONFIG_CMDLINE_EDITING
92#define CONFIG_AUTO_COMPLETE
93#define CONFIG_SYS_LONGHELP /* undef to save memory */
185a5bb0 94#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
37fc0ed2
RH
95#define CONFIG_SYS_MAXARGS 16 /* max number of cmd args */
96#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
97#define CONFIG_SYS_PROMPT "Highbank #"
185a5bb0 98#define CONFIG_SYS_HUSH_PARSER
37fc0ed2
RH
99/* Print Buffer Size */
100#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
101 sizeof(CONFIG_SYS_PROMPT)+16)
102
103#define CONFIG_SYS_LOAD_ADDR 0x800000
185a5bb0
RH
104#define CONFIG_SYS_64BIT_LBA
105
37fc0ed2 106
37fc0ed2
RH
107/*-----------------------------------------------------------------------
108 * Physical Memory Map
109 */
110#define CONFIG_NR_DRAM_BANKS 1
111#define PHYS_SDRAM_1_SIZE (4089 << 20)
112#define CONFIG_SYS_MEMTEST_START 0x100000
113#define CONFIG_SYS_MEMTEST_END (PHYS_SDRAM_1_SIZE - 0x100000)
114
a34e8549
JH
115/* Environment data setup
116*/
117#define CONFIG_ENV_IS_IN_NVRAM
118#define CONFIG_SYS_NVRAM_BASE_ADDR 0xfff88000 /* NVRAM base address */
119#define CONFIG_SYS_NVRAM_SIZE 0x8000 /* NVRAM size */
120#define CONFIG_ENV_SIZE 0x2000 /* Size of Environ */
121#define CONFIG_ENV_ADDR CONFIG_SYS_NVRAM_BASE_ADDR
37fc0ed2
RH
122
123#define CONFIG_SYS_SDRAM_BASE 0x00000000
7b81649a 124#define CONFIG_SYS_TEXT_BASE 0x00008000
37fc0ed2
RH
125#define CONFIG_SYS_INIT_SP_ADDR 0x01000000
126#define CONFIG_SKIP_LOWLEVEL_INIT
127
128#endif