blob: 0cd892ed73dcd4369edee2d8842eb8e521a50570 [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
27/* SD/MMC */
28#define CONFIG_MMC
29#define CONFIG_GENERIC_MMC
Tom Warren3f82d892012-05-22 11:44:48 +000030#define CONFIG_TEGRA_MMC
Stephen Warrend5ebc932012-05-15 06:45:28 +000031
Stephen Warren61688702012-05-24 11:38:36 +000032/*
33 * Environment in eMMC, at the end of 2nd "boot sector". Note: This assumes
Stephen Warren91171092013-06-11 15:14:03 -060034 * the user plugged the standard 8GB MoviNAND card into J29/HSMMC/POP. If
Stephen Warren61688702012-05-24 11:38:36 +000035 * they didn't, the boot sector layout may be different. However, use of that
36 * particular card is standard practice as far as I know.
37 */
38#define CONFIG_ENV_IS_IN_MMC
Stephen Warren91171092013-06-11 15:14:03 -060039#define CONFIG_ENV_OFFSET (-CONFIG_ENV_SIZE)
Stephen Warren61688702012-05-24 11:38:36 +000040#define CONFIG_SYS_MMC_ENV_DEV 0
Stephen Warren573668a2012-07-30 10:55:45 +000041#define CONFIG_SYS_MMC_ENV_PART 2
Stephen Warrend5ebc932012-05-15 06:45:28 +000042
43/* USB Host support */
44#define CONFIG_USB_EHCI
45#define CONFIG_USB_EHCI_TEGRA
Stephen Warrendae2aea2012-05-16 06:36:11 +000046
47/* USB networking support */
Stephen Warrend5ebc932012-05-15 06:45:28 +000048#define CONFIG_USB_HOST_ETHER
Stephen Warrend5ebc932012-05-15 06:45:28 +000049#define CONFIG_USB_ETHER_ASIX
50
Stephen Warrendae2aea2012-05-16 06:36:11 +000051/* General networking support */
Stephen Warrend5ebc932012-05-15 06:45:28 +000052
Tom Warren29f3e3f2012-09-04 17:00:24 -070053#include "tegra-common-post.h"
Stephen Warrenbea26742012-05-16 06:21:00 +000054
Stephen Warrend5ebc932012-05-15 06:45:28 +000055#endif /* __CONFIG_H */