blob: ff859644c36aa4c09f516458b648fcb3e22adcb3 [file] [log] [blame]
Stephen Warrend5ebc932012-05-15 06:45:28 +00001/*
2 * (C) Copyright 2010-2012
3 * NVIDIA Corporation <www.nvidia.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Stephen Warrend5ebc932012-05-15 06:45:28 +00006 */
7
8#ifndef __CONFIG_H
9#define __CONFIG_H
10
Alexey Brodkin1ace4022014-02-26 17:47:58 +040011#include <linux/sizes.h>
Allen Martin00a27492012-08-31 08:30:00 +000012#include "tegra20-common.h"
Stephen Warrend5ebc932012-05-15 06:45:28 +000013
Stephen Warrend5ebc932012-05-15 06:45:28 +000014/* High-level configuration options */
Tom Warren29f3e3f2012-09-04 17:00:24 -070015#define CONFIG_TEGRA_BOARD_STRING "NVIDIA Whistler"
Stephen Warrend5ebc932012-05-15 06:45:28 +000016
17/* Board-specific serial config */
Tom Warren29f3e3f2012-09-04 17:00:24 -070018#define CONFIG_TEGRA_ENABLE_UARTA
19#define CONFIG_TEGRA_UARTA_UAA_UAB
Stephen Warrend5ebc932012-05-15 06:45:28 +000020#define CONFIG_SYS_NS16550_COM1 NV_PA_APB_UARTA_BASE
21
22#define CONFIG_MACH_TYPE MACH_TYPE_WHISTLER
Stephen Warrend5ebc932012-05-15 06:45:28 +000023
Stephen Warrend5ebc932012-05-15 06:45:28 +000024/* I2C */
Simon Glass1f2ba722012-10-30 07:28:53 +000025#define CONFIG_SYS_I2C_TEGRA
Stephen Warrend5ebc932012-05-15 06:45:28 +000026#define CONFIG_CMD_I2C
27
28/* SD/MMC */
29#define CONFIG_MMC
30#define CONFIG_GENERIC_MMC
Tom Warren3f82d892012-05-22 11:44:48 +000031#define CONFIG_TEGRA_MMC
Stephen Warrend5ebc932012-05-15 06:45:28 +000032#define CONFIG_CMD_MMC
33
Stephen Warren61688702012-05-24 11:38:36 +000034/*
35 * Environment in eMMC, at the end of 2nd "boot sector". Note: This assumes
Stephen Warren91171092013-06-11 15:14:03 -060036 * the user plugged the standard 8GB MoviNAND card into J29/HSMMC/POP. If
Stephen Warren61688702012-05-24 11:38:36 +000037 * they didn't, the boot sector layout may be different. However, use of that
38 * particular card is standard practice as far as I know.
39 */
40#define CONFIG_ENV_IS_IN_MMC
Stephen Warren91171092013-06-11 15:14:03 -060041#define CONFIG_ENV_OFFSET (-CONFIG_ENV_SIZE)
Stephen Warren61688702012-05-24 11:38:36 +000042#define CONFIG_SYS_MMC_ENV_DEV 0
Stephen Warren573668a2012-07-30 10:55:45 +000043#define CONFIG_SYS_MMC_ENV_PART 2
Stephen Warrend5ebc932012-05-15 06:45:28 +000044
45/* USB Host support */
46#define CONFIG_USB_EHCI
47#define CONFIG_USB_EHCI_TEGRA
48#define CONFIG_USB_STORAGE
49#define CONFIG_CMD_USB
Stephen Warrendae2aea2012-05-16 06:36:11 +000050
51/* USB networking support */
Stephen Warrend5ebc932012-05-15 06:45:28 +000052#define CONFIG_USB_HOST_ETHER
Stephen Warrend5ebc932012-05-15 06:45:28 +000053#define CONFIG_USB_ETHER_ASIX
54
Stephen Warrendae2aea2012-05-16 06:36:11 +000055/* General networking support */
Stephen Warrend5ebc932012-05-15 06:45:28 +000056#define CONFIG_CMD_DHCP
57
Tom Warren29f3e3f2012-09-04 17:00:24 -070058#include "tegra-common-post.h"
Stephen Warrenbea26742012-05-16 06:21:00 +000059
Stephen Warrend5ebc932012-05-15 06:45:28 +000060#endif /* __CONFIG_H */