]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/hawkboard.h
Merge branch 'karo-tx-uboot' into kc-merge
[karo-tx-uboot.git] / include / configs / hawkboard.h
1 /*
2  * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/
3  *
4  * Based on davinci_dvevm.h. Original Copyrights follow:
5  *
6  * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
7  *
8  * SPDX-License-Identifier:     GPL-2.0+
9  */
10
11 #ifndef __CONFIG_H
12 #define __CONFIG_H
13
14 /*
15  * Board
16  */
17 #define CONFIG_SYS_USE_NAND     1
18
19 /*
20  * SoC Configuration
21  */
22 #define CONFIG_MACH_DAVINCI_HAWK
23 #define CONFIG_SYS_EXCEPTION_VECTORS_HIGH
24 #define CONFIG_SYS_CLK_FREQ             clk_get(DAVINCI_ARM_CLKID)
25 #define CONFIG_SYS_OSCIN_FREQ           24000000
26 #define CONFIG_SYS_TIMERBASE            DAVINCI_TIMER0_BASE
27 #define CONFIG_SYS_HZ_CLOCK             clk_get(DAVINCI_AUXCLK_CLKID)
28 #define CONFIG_SKIP_LOWLEVEL_INIT
29 #define CONFIG_BOARD_EARLY_INIT_F
30 #define CONFIG_AIS_CONFIG_FILE          "board/$(BOARDDIR)/hawkboard-ais-nand.cfg"
31
32 #define CONFIG_SYS_DA850_SYSCFG_SUSPSRC (       \
33         DAVINCI_SYSCFG_SUSPSRC_EMAC |           \
34         DAVINCI_SYSCFG_SUSPSRC_I2C  |           \
35         DAVINCI_SYSCFG_SUSPSRC_SPI1 |           \
36         DAVINCI_SYSCFG_SUSPSRC_TIMER0 |         \
37         DAVINCI_SYSCFG_SUSPSRC_UART2)
38
39 #if defined(CONFIG_UART_U_BOOT)
40 #define CONFIG_SYS_TEXT_BASE            0xc1080000
41 #elif !defined(CONFIG_SPL_BUILD)
42 #define CONFIG_SYS_TEXT_BASE            0xc1180000
43 #endif
44
45 /* Spl */
46 #define CONFIG_SPL_FRAMEWORK
47 #define CONFIG_SPL_BOARD_INIT
48 #define CONFIG_SPL_NAND_SUPPORT
49 #define CONFIG_SPL_NAND_BASE
50 #define CONFIG_SPL_NAND_DRIVERS
51 #define CONFIG_SPL_NAND_ECC
52 #define CONFIG_SPL_NAND_SIMPLE
53 #define CONFIG_SPL_LIBGENERIC_SUPPORT   /* for udelay and __div64_32 for NAND */
54 #define CONFIG_SPL_SERIAL_SUPPORT
55 #define CONFIG_SPL_LDSCRIPT             "board/$(BOARDDIR)/u-boot-spl-hawk.lds"
56 #define CONFIG_SPL_TEXT_BASE            0xc1080000
57 #define CONFIG_SPL_STACK                CONFIG_SYS_INIT_SP_ADDR
58
59 /*
60  * Memory Info
61  */
62 #define CONFIG_SYS_MALLOC_LEN           (1*1024*1024) /* malloc() len */
63 #define PHYS_SDRAM_1                    DAVINCI_DDR_EMIF_DATA_BASE
64 #define PHYS_SDRAM_1_SIZE               (128 << 20) /* SDRAM size 128MB */
65 #define CONFIG_SYS_SDRAM_BASE           0xc0000000
66 #define CONFIG_MAX_RAM_BANK_SIZE        (512 << 20)
67 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_SDRAM_BASE + 0x1000 -\
68                                         GENERATED_GBL_DATA_SIZE)
69 #define CONFIG_SYS_MONITOR_LEN          0x60000
70
71 /* memtest start addr */
72 #define CONFIG_SYS_MEMTEST_START        (PHYS_SDRAM_1)
73
74 /* memtest will be run on 16MB */
75 #define CONFIG_SYS_MEMTEST_END          (PHYS_SDRAM_1 + 16*1024*1024)
76
77 #define CONFIG_NR_DRAM_BANKS            1 /* we have 1 bank of DRAM */
78
79 /*
80  * Serial Driver info
81  */
82 #define CONFIG_SYS_NS16550
83 #define CONFIG_SYS_NS16550_SERIAL
84 #define CONFIG_SYS_NS16550_REG_SIZE     -4
85 #define CONFIG_SYS_NS16550_COM1         DAVINCI_UART2_BASE
86 #define CONFIG_SYS_NS16550_CLK          clk_get(DAVINCI_UART2_CLKID)
87 #define CONFIG_CONS_INDEX               1
88 #define CONFIG_BAUDRATE                 115200
89
90 /*
91  * Network & Ethernet Configuration
92  */
93 #define CONFIG_DRIVER_TI_EMAC
94 #define CONFIG_MII
95 #define CONFIG_BOOTP_DNS
96 #define CONFIG_BOOTP_DNS2
97 #define CONFIG_BOOTP_SEND_HOSTNAME
98 #define CONFIG_NET_RETRY_COUNT          10
99
100 /*
101  * Nand Flash
102  */
103 #ifdef CONFIG_SYS_USE_NAND
104 #define CONFIG_SYS_NO_FLASH
105 #define CONFIG_ENV_IS_IN_NAND
106 #define CONFIG_ENV_SIZE                 (128 << 10)
107 #define CONFIG_SYS_NAND_BASE            DAVINCI_ASYNC_EMIF_DATA_CE3_BASE
108 #define CONFIG_CLE_MASK                 0x10
109 #define CONFIG_ALE_MASK                 0x8
110 #define CONFIG_SYS_NAND_USE_FLASH_BBT
111 #define CONFIG_NAND_DAVINCI
112 #define CONFIG_SYS_NAND_4BIT_HW_ECC_OOBFIRST
113 #define CONFIG_SYS_NAND_HW_ECC_OOBFIRST /* SPL nand driver configuration */
114 #define CFG_DAVINCI_STD_NAND_LAYOUT
115 #define CONFIG_SYS_NAND_CS              3
116 #define CONFIG_SYS_NAND_PAGE_2K
117 /* Max number of NAND devices */
118 #define CONFIG_SYS_MAX_NAND_DEVICE      1
119 #define CONFIG_SYS_NAND_BASE_LIST       { 0x62000000, }
120 /* Block 0--not used by bootcode */
121 #define CONFIG_ENV_OFFSET               0x0
122
123 #define CONFIG_SYS_NAND_PAGE_SIZE       (2 << 10)
124 #define CONFIG_SYS_NAND_BLOCK_SIZE      (128 << 10)
125 #define CONFIG_SYS_NAND_U_BOOT_OFFS     0xe0000
126 #define CONFIG_SYS_NAND_U_BOOT_DST      0xc1180000
127 #define CONFIG_SYS_NAND_U_BOOT_START    CONFIG_SYS_NAND_U_BOOT_DST
128 #define CONFIG_SYS_NAND_U_BOOT_RELOC_SP (CONFIG_SYS_NAND_U_BOOT_DST - \
129                                         CONFIG_SYS_NAND_U_BOOT_SIZE - \
130                                         CONFIG_SYS_MALLOC_LEN -       \
131                                         GENERATED_GBL_DATA_SIZE)
132 #define CONFIG_SYS_NAND_ECCPOS          {                               \
133                                 24, 25, 26, 27, 28,                     \
134                                 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, \
135                                 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, \
136                                 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, \
137                                 59, 60, 61, 62, 63 }
138 #define CONFIG_SYS_NAND_PAGE_COUNT      64
139 #define CONFIG_SYS_NAND_BAD_BLOCK_POS   0
140 #define CONFIG_SYS_NAND_ECCSIZE         512
141 #define CONFIG_SYS_NAND_ECCBYTES        10
142 #define CONFIG_SYS_NAND_OOBSIZE         64
143
144 #endif /* CONFIG_SYS_USE_NAND */
145
146 /* USB Configs */
147 #define CONFIG_SYS_USB_OHCI_CPU_INIT
148 #define CONFIG_USB_OHCI_NEW
149 #define CONFIG_USB_OHCI_DA8XX
150 #define CONFIG_USB_STORAGE
151 #define CONFIG_DOS_PARTITION
152 #define CONFIG_SYS_USB_OHCI_REGS_BASE           0x01E25000
153 #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS      15
154 #define CONFIG_SYS_USB_OHCI_SLOT_NAME           "hawkboard"
155
156 /*
157  * U-Boot general configuration
158  */
159 #define CONFIG_MISC_INIT_R
160 #define CONFIG_BOOTFILE         "uImage" /* Boot file name */
161 #define CONFIG_SYS_PROMPT       "hawkboard > " /* Command Prompt */
162 #define CONFIG_SYS_CBSIZE       1024 /* Console I/O Buffer Size */
163 #define CONFIG_SYS_PBSIZE       (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
164 #define CONFIG_SYS_MAXARGS      16 /* max number of command args */
165 #define CONFIG_SYS_BARGSIZE     CONFIG_SYS_CBSIZE /* Boot Args Buffer Size */
166 #define CONFIG_SYS_LOAD_ADDR    (PHYS_SDRAM_1 + 0x700000)
167 #define CONFIG_VERSION_VARIABLE
168 #define CONFIG_AUTO_COMPLETE
169 #define CONFIG_SYS_HUSH_PARSER
170 #define CONFIG_CMDLINE_EDITING
171 #define CONFIG_SYS_LONGHELP
172 #define CONFIG_CRC32_VERIFY
173 #define CONFIG_MX_CYCLIC
174
175 /*
176  * Linux Information
177  */
178 #define LINUX_BOOT_PARAM_ADDR   (CONFIG_SYS_MEMTEST_START + 0x100)
179 #define CONFIG_CMDLINE_TAG
180 #define CONFIG_SETUP_MEMORY_TAGS
181 #define CONFIG_BOOTARGS         \
182         "mem=128M console=ttyS2,115200n8 root=/dev/ram0 rw initrd=0xc1180000,"\
183                                         "4M ip=static"
184 #define CONFIG_BOOTDELAY        3
185
186 /*
187  * U-Boot commands
188  */
189 #include <config_cmd_default.h>
190 #define CONFIG_CMD_ENV
191 #define CONFIG_CMD_ASKENV
192 #define CONFIG_CMD_DHCP
193 #define CONFIG_CMD_DIAG
194 #define CONFIG_CMD_MII
195 #define CONFIG_CMD_PING
196 #define CONFIG_CMD_SAVES
197 #define CONFIG_CMD_MEMORY
198 #define CONFIG_CMD_USB
199 #define CONFIG_CMD_EXT2
200
201 #ifdef CONFIG_CMD_BDI
202 #define CONFIG_CLOCKS
203 #endif
204
205 #ifdef CONFIG_SYS_USE_NAND
206 #undef CONFIG_CMD_FLASH
207 #undef CONFIG_CMD_IMLS
208 #define CONFIG_CMD_NAND
209 #endif
210
211 #ifndef CONFIG_DRIVER_TI_EMAC
212 #undef CONFIG_CMD_NET
213 #undef CONFIG_CMD_DHCP
214 #undef CONFIG_CMD_MII
215 #undef CONFIG_CMD_PING
216 #endif
217
218 #endif /* __CONFIG_H */