1 /* 2 * (C) Copyright 2010-2012 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 <linux/sizes.h> 12 #include "tegra20-common.h" 13 14 /* High-level configuration options */ 15 #define V_PROMPT "Tegra20 (TrimSlice) # " 16 #define CONFIG_TEGRA_BOARD_STRING "Compulab Trimslice" 17 18 /* Board-specific serial config */ 19 #define CONFIG_TEGRA_ENABLE_UARTA 20 #define CONFIG_TEGRA_UARTA_GPU 21 #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE 22 23 #define CONFIG_MACH_TYPE MACH_TYPE_TRIMSLICE 24 25 /* SPI */ 26 #define CONFIG_TEGRA20_SFLASH 27 #define CONFIG_SPI_FLASH_WINBOND 28 #define CONFIG_SF_DEFAULT_MODE SPI_MODE_0 29 #define CONFIG_CMD_SPI 30 #define CONFIG_CMD_SF 31 32 /* I2C */ 33 #define CONFIG_SYS_I2C_TEGRA 34 #define CONFIG_CMD_I2C 35 36 /* SD/MMC */ 37 #define CONFIG_MMC 38 #define CONFIG_GENERIC_MMC 39 #define CONFIG_TEGRA_MMC 40 #define CONFIG_CMD_MMC 41 42 /* Environment in SPI */ 43 #define CONFIG_ENV_IS_IN_SPI_FLASH 44 #define CONFIG_ENV_SPI_MAX_HZ 48000000 45 #define CONFIG_ENV_SPI_MODE SPI_MODE_0 46 #define CONFIG_ENV_SECT_SIZE CONFIG_ENV_SIZE 47 #define CONFIG_ENV_OFFSET (512 * 1024) 48 49 /* USB Host support */ 50 #define CONFIG_USB_MAX_CONTROLLER_COUNT 3 51 #define CONFIG_USB_EHCI 52 #define CONFIG_USB_EHCI_TEGRA 53 #define CONFIG_USB_STORAGE 54 #define CONFIG_CMD_USB 55 56 /* USB networking support */ 57 #define CONFIG_USB_HOST_ETHER 58 #define CONFIG_USB_ETHER_ASIX 59 60 /* PCI host support */ 61 #define CONFIG_PCI 62 #define CONFIG_PCI_TEGRA 63 #define CONFIG_PCI_PNP 64 #define CONFIG_CMD_PCI 65 #define CONFIG_CMD_PCI_ENUM 66 67 /* PCI networking support */ 68 #define CONFIG_RTL8169 69 70 /* General networking support */ 71 #define CONFIG_CMD_DHCP 72 73 #include "tegra-common-post.h" 74 75 #endif /* __CONFIG_H */ 76