]> git.ipfire.org Git - thirdparty/u-boot.git/blame - include/configs/highbank.h
Convert CONFIG_SKIP_LOWLEVEL_INIT et al to Kconfig
[thirdparty/u-boot.git] / include / configs / highbank.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
37fc0ed2
RH
2/*
3 * Copyright 2010-2011 Calxeda, Inc.
37fc0ed2
RH
4 */
5
6#ifndef __CONFIG_H
7#define __CONFIG_H
8
37fc0ed2
RH
9#define CONFIG_SYS_BOOTMAPSZ (16 << 20)
10
9df1bd41
RH
11#define CONFIG_SYS_TIMER_RATE (150000000/256)
12#define CONFIG_SYS_TIMER_COUNTER (0xFFF34000 + 0x4)
13#define CONFIG_SYS_TIMER_COUNTS_DOWN
14
37fc0ed2
RH
15/*
16 * Size of malloc() pool
17 */
18#define CONFIG_SYS_MALLOC_LEN (512 * 1024)
19
37fc0ed2 20#define CONFIG_PL011_CLOCK 150000000
37fc0ed2 21
0044c42e 22#define CONFIG_SYS_BOOTCOUNT_LE /* Use little-endian accessors */
877012df 23
37fc0ed2
RH
24#define CONFIG_SCSI_AHCI_PLAT
25#define CONFIG_SYS_SCSI_MAX_SCSI_ID 5
26#define CONFIG_SYS_SCSI_MAX_LUN 1
27#define CONFIG_SYS_SCSI_MAX_DEVICE (CONFIG_SYS_SCSI_MAX_SCSI_ID * \
28 CONFIG_SYS_SCSI_MAX_LUN)
29
e1df283c
RH
30#define CONFIG_BOOT_RETRY_TIME -1
31#define CONFIG_RESET_TO_RETRY
d126e016 32
37fc0ed2
RH
33/*
34 * Miscellaneous configurable options
35 */
185a5bb0 36#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
37fc0ed2 37#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
37fc0ed2 38
185a5bb0
RH
39#define CONFIG_SYS_64BIT_LBA
40
a34e8549
JH
41/* Environment data setup
42*/
a34e8549
JH
43#define CONFIG_SYS_NVRAM_BASE_ADDR 0xfff88000 /* NVRAM base address */
44#define CONFIG_SYS_NVRAM_SIZE 0x8000 /* NVRAM size */
37fc0ed2
RH
45
46#define CONFIG_SYS_SDRAM_BASE 0x00000000
37fc0ed2 47#define CONFIG_SYS_INIT_SP_ADDR 0x01000000
37fc0ed2 48
84b2cd74
AP
49#define CONFIG_EXTRA_ENV_SETTINGS \
50 "fdt_high=0x20000000\0" \
51 "initrd_high=0x20000000\0"
52
37fc0ed2 53#endif