Rename CONFIG_EHCI_IS_TDI to CONFIG_USB_EHCI_IS_TDI
[platform/kernel/u-boot.git] / include / configs / thunderx_88xx.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /**
3  * (C) Copyright 2014, Cavium Inc.
4 **/
5
6 #ifndef __THUNDERX_88XX_H__
7 #define __THUNDERX_88XX_H__
8
9 #define CONFIG_REMAKE_ELF
10
11 #define CONFIG_THUNDERX
12
13 #define CONFIG_SYS_64BIT
14
15 #define MEM_BASE                        0x00500000
16
17 #define CONFIG_SYS_LOWMEM_BASE          MEM_BASE
18
19 /* Link Definitions */
20 #define CONFIG_SYS_INIT_SP_ADDR         (CONFIG_SYS_SDRAM_BASE + 0x7fff0)
21
22 /* SMP Spin Table Definitions */
23 #define CPU_RELEASE_ADDR                (CONFIG_SYS_SDRAM_BASE + 0x7fff0)
24
25 /* Generic Timer Definitions */
26 #define COUNTER_FREQUENCY               (0x1800000)     /* 24MHz */
27
28 /* PL011 Serial Configuration */
29
30 #define CONFIG_PL011_CLOCK              24000000
31
32 /* Generic Interrupt Controller Definitions */
33 #define GICD_BASE                       (0x801000000000)
34 #define GICR_BASE                       (0x801000002000)
35 #define CONFIG_SYS_SERIAL0              0x87e024000000
36 #define CONFIG_SYS_SERIAL1              0x87e025000000
37
38 /* BOOTP options */
39 #define CONFIG_BOOTP_BOOTFILESIZE
40
41 /* Miscellaneous configurable options */
42
43 /* Physical Memory Map */
44 #define PHYS_SDRAM_1                    (MEM_BASE)        /* SDRAM Bank #1 */
45 #define PHYS_SDRAM_1_SIZE               (0x80000000-MEM_BASE)   /* 2048 MB */
46 #define CONFIG_SYS_SDRAM_BASE           PHYS_SDRAM_1
47
48 /* Initial environment variables */
49 #define UBOOT_IMG_HEAD_SIZE             0x40
50 /* C80000 - 0x40 */
51 #define CONFIG_EXTRA_ENV_SETTINGS       \
52                                         "kernel_addr=08007ffc0\0"       \
53                                         "fdt_addr=0x94C00000\0"         \
54                                         "fdt_high=0x9fffffff\0"
55
56 /* Do not preserve environment */
57
58 /* Monitor Command Prompt */
59 #define CONFIG_SYS_CBSIZE               512     /* Console I/O Buffer Size */
60 #define CONFIG_SYS_MAXARGS              64              /* max command args */
61 #define PLL_REF_CLK                     50000000        /* 50 MHz */
62 #define NS_PER_REF_CLK_TICK             (1000000000/PLL_REF_CLK)
63
64 #endif /* __THUNDERX_88XX_H__ */