blob: dd76829e91a48481a1f909afcda27b1800d445ed [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Allen Martina6c7b462014-12-04 06:36:30 -07002/*
3 * (C) Copyright 2014
4 * NVIDIA Corporation <www.nvidia.com>
Allen Martina6c7b462014-12-04 06:36:30 -07005 */
6
7#ifndef __CONFIG_H
8#define __CONFIG_H
9
10#include <linux/sizes.h>
11
12#include "tegra124-common.h"
13
14/* High-level configuration options */
Allen Martina6c7b462014-12-04 06:36:30 -070015#define CONFIG_TEGRA_BOARD_STRING "Google/NVIDIA Nyan-big"
16
17/* Board-specific serial config */
Allen Martina6c7b462014-12-04 06:36:30 -070018#define CONFIG_TEGRA_ENABLE_UARTA
19#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
20
Allen Martina6c7b462014-12-04 06:36:30 -070021/* I2C */
22#define CONFIG_SYS_I2C_TEGRA
Allen Martina6c7b462014-12-04 06:36:30 -070023
Allen Martina6c7b462014-12-04 06:36:30 -070024/* Environment in eMMC, at the end of 2nd "boot sector" */
Allen Martina6c7b462014-12-04 06:36:30 -070025#define CONFIG_SYS_MMC_ENV_DEV 0
26#define CONFIG_SYS_MMC_ENV_PART 2
27#define CONFIG_ENV_OFFSET (-CONFIG_ENV_SIZE)
28
Simon Glass531eaed2015-04-14 21:03:43 -060029/* Align LCD to 1MB boundary */
30#define CONFIG_LCD_ALIGNMENT MMU_SECTION_SIZE
31
Allen Martina6c7b462014-12-04 06:36:30 -070032/* SPI */
Allen Martina6c7b462014-12-04 06:36:30 -070033#define CONFIG_SF_DEFAULT_MODE SPI_MODE_0
34#define CONFIG_SF_DEFAULT_SPEED 24000000
Allen Martina6c7b462014-12-04 06:36:30 -070035#define CONFIG_SPI_FLASH_SIZE (4 << 20)
36
37/* USB Host support */
Allen Martina6c7b462014-12-04 06:36:30 -070038#define CONFIG_USB_EHCI_TEGRA
Allen Martina6c7b462014-12-04 06:36:30 -070039
40/* USB networking support */
Allen Martina6c7b462014-12-04 06:36:30 -070041
42/* General networking support */
Allen Martina6c7b462014-12-04 06:36:30 -070043
Simon Glassb3b9d7c2015-06-05 14:39:34 -060044#define CONFIG_KEYBOARD
45
Simon Glassb7160fa2015-06-05 14:39:46 -060046#undef CONFIG_LOADADDR
47#define CONFIG_LOADADDR 0x82408000
48
Allen Martina6c7b462014-12-04 06:36:30 -070049#include "tegra-common-usb-gadget.h"
50#include "tegra-common-post.h"
51
52#endif /* __CONFIG_H */