Tom Warren | 0abb702 | 2013-04-12 11:20:51 -0700 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2013, NVIDIA CORPORATION. All rights reserved. | ||||
3 | * | ||||
Tom Rini | e237880 | 2016-01-14 22:05:13 -0500 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0 |
Tom Warren | 0abb702 | 2013-04-12 11:20:51 -0700 | [diff] [blame] | 5 | */ |
6 | |||||
7 | #ifndef __CONFIG_H | ||||
8 | #define __CONFIG_H | ||||
9 | |||||
Alexey Brodkin | 267d8e2 | 2014-02-26 17:47:58 +0400 | [diff] [blame] | 10 | #include <linux/sizes.h> |
Tom Warren | 0abb702 | 2013-04-12 11:20:51 -0700 | [diff] [blame] | 11 | |
12 | #include "tegra30-common.h" | ||||
13 | |||||
Stephen Warren | ecc7538 | 2014-05-08 09:33:45 -0600 | [diff] [blame] | 14 | /* VDD core PMIC */ |
15 | #define CONFIG_TEGRA_VDD_CORE_TPS62366A_SET1 | ||||
16 | |||||
Tom Warren | 0abb702 | 2013-04-12 11:20:51 -0700 | [diff] [blame] | 17 | /* High-level configuration options */ |
Tom Warren | 0abb702 | 2013-04-12 11:20:51 -0700 | [diff] [blame] | 18 | #define CONFIG_TEGRA_BOARD_STRING "NVIDIA Beaver" |
19 | |||||
20 | /* Board-specific serial config */ | ||||
Tom Warren | 0abb702 | 2013-04-12 11:20:51 -0700 | [diff] [blame] | 21 | #define CONFIG_TEGRA_ENABLE_UARTA |
22 | #define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE | ||||
23 | |||||
Tom Warren | 0abb702 | 2013-04-12 11:20:51 -0700 | [diff] [blame] | 24 | #define CONFIG_MACH_TYPE MACH_TYPE_BEAVER |
25 | |||||
Tom Warren | 0abb702 | 2013-04-12 11:20:51 -0700 | [diff] [blame] | 26 | /* I2C */ |
Simon Glass | 026fefb | 2012-10-30 07:28:53 +0000 | [diff] [blame] | 27 | #define CONFIG_SYS_I2C_TEGRA |
Tom Warren | 0abb702 | 2013-04-12 11:20:51 -0700 | [diff] [blame] | 28 | |
Tom Warren | 0abb702 | 2013-04-12 11:20:51 -0700 | [diff] [blame] | 29 | /* Environment in eMMC, at the end of 2nd "boot sector" */ |
Stephen Warren | 46597a3 | 2013-06-11 15:14:03 -0600 | [diff] [blame] | 30 | #define CONFIG_ENV_OFFSET (-CONFIG_ENV_SIZE) |
Tom Warren | 0abb702 | 2013-04-12 11:20:51 -0700 | [diff] [blame] | 31 | #define CONFIG_SYS_MMC_ENV_DEV 0 |
32 | #define CONFIG_SYS_MMC_ENV_PART 2 | ||||
33 | |||||
34 | /* SPI */ | ||||
Tom Warren | 0abb702 | 2013-04-12 11:20:51 -0700 | [diff] [blame] | 35 | #define CONFIG_TEGRA_SLINK_CTRLS 6 |
Tom Warren | 0abb702 | 2013-04-12 11:20:51 -0700 | [diff] [blame] | 36 | #define CONFIG_SF_DEFAULT_MODE SPI_MODE_0 |
37 | #define CONFIG_SF_DEFAULT_SPEED 24000000 | ||||
Tom Warren | 0abb702 | 2013-04-12 11:20:51 -0700 | [diff] [blame] | 38 | #define CONFIG_SPI_FLASH_SIZE (4 << 20) |
39 | |||||
Jim Lin | 68c0c02c | 2013-06-21 19:05:48 +0800 | [diff] [blame] | 40 | /* USB Host support */ |
Jim Lin | 68c0c02c | 2013-06-21 19:05:48 +0800 | [diff] [blame] | 41 | #define CONFIG_USB_EHCI_TEGRA |
Jim Lin | 68c0c02c | 2013-06-21 19:05:48 +0800 | [diff] [blame] | 42 | |
43 | /* USB networking support */ | ||||
Jim Lin | 68c0c02c | 2013-06-21 19:05:48 +0800 | [diff] [blame] | 44 | |
Thierry Reding | 34677f7 | 2014-12-09 22:25:18 -0700 | [diff] [blame] | 45 | /* PCI host support */ |
Thierry Reding | 34677f7 | 2014-12-09 22:25:18 -0700 | [diff] [blame] | 46 | |
Jim Lin | 68c0c02c | 2013-06-21 19:05:48 +0800 | [diff] [blame] | 47 | /* General networking support */ |
Jim Lin | 68c0c02c | 2013-06-21 19:05:48 +0800 | [diff] [blame] | 48 | |
Stephen Warren | 79700d2 | 2014-07-25 17:16:54 -0600 | [diff] [blame] | 49 | #include "tegra-common-usb-gadget.h" |
Tom Warren | 0abb702 | 2013-04-12 11:20:51 -0700 | [diff] [blame] | 50 | #include "tegra-common-post.h" |
51 | |||||
52 | #endif /* __CONFIG_H */ |