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