]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - include/configs/venice2.h
91808e9203881c91bc3fd8c341272df88e93c2b4
[karo-tx-uboot.git] / include / configs / venice2.h
1 /*
2  * (C) Copyright 2013-2014
3  * NVIDIA Corporation <www.nvidia.com>
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #ifndef __CONFIG_H
9 #define __CONFIG_H
10
11 #include <asm/sizes.h>
12
13 #include "tegra124-common.h"
14
15 /* Enable fdt support for Venice2. Flash the image in u-boot-dtb.bin */
16 #define CONFIG_DEFAULT_DEVICE_TREE      tegra124-venice2
17 #define CONFIG_OF_CONTROL
18 #define CONFIG_OF_SEPARATE
19
20 /* High-level configuration options */
21 #define V_PROMPT                        "Tegra124 (Venice2) # "
22 #define CONFIG_TEGRA_BOARD_STRING       "NVIDIA Venice2"
23
24 /* Board-specific serial config */
25 #define CONFIG_SERIAL_MULTI
26 #define CONFIG_TEGRA_ENABLE_UARTA
27 #define CONFIG_SYS_NS16550_COM1         NV_PA_APB_UARTA_BASE
28
29 #define CONFIG_BOARD_EARLY_INIT_F
30
31 /* I2C */
32 #define CONFIG_SYS_I2C_TEGRA
33 #define CONFIG_SYS_I2C_INIT_BOARD
34 #define CONFIG_I2C_MULTI_BUS
35 #define CONFIG_SYS_MAX_I2C_BUS          TEGRA_I2C_NUM_CONTROLLERS
36 #define CONFIG_SYS_I2C_SPEED            100000
37 #define CONFIG_CMD_I2C
38 #define CONFIG_SYS_I2C
39
40 /* SD/MMC */
41 #define CONFIG_MMC
42 #define CONFIG_GENERIC_MMC
43 #define CONFIG_TEGRA_MMC
44 #define CONFIG_CMD_MMC
45
46 /* Environment in eMMC, at the end of 2nd "boot sector" */
47 #define CONFIG_ENV_IS_IN_MMC
48 #define CONFIG_SYS_MMC_ENV_DEV          0
49 #define CONFIG_SYS_MMC_ENV_PART         2
50 #define CONFIG_ENV_OFFSET               (-CONFIG_ENV_SIZE)
51
52 /* SPI */
53 #define CONFIG_TEGRA114_SPI             /* Compatible w/ Tegra114 SPI */
54 #define CONFIG_TEGRA114_SPI_CTRLS       6
55 #define CONFIG_SPI_FLASH
56 #define CONFIG_SPI_FLASH_WINBOND
57 #define CONFIG_SF_DEFAULT_MODE         SPI_MODE_0
58 #define CONFIG_SF_DEFAULT_SPEED        24000000
59 #define CONFIG_CMD_SPI
60 #define CONFIG_CMD_SF
61 #define CONFIG_SPI_FLASH_SIZE          (4 << 20)
62
63 /* USB Host support */
64 #define CONFIG_USB_EHCI
65 #define CONFIG_USB_EHCI_TEGRA
66 #define CONFIG_USB_STORAGE
67 #define CONFIG_CMD_USB
68
69 /* USB networking support */
70 #define CONFIG_USB_HOST_ETHER
71 #define CONFIG_USB_ETHER_ASIX
72
73 /* General networking support */
74 #define CONFIG_CMD_NET
75 #define CONFIG_CMD_DHCP
76
77 #include "tegra-common-post.h"
78
79 #endif /* __CONFIG_H */