blob: 9c194d5d397a20cd0add95633d410532ee75051d [file] [log] [blame]
Stephen Warren2791a0c2012-05-15 06:45:28 +00001/*
2 * (C) Copyright 2010-2012
3 * NVIDIA Corporation <www.nvidia.com>
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Stephen Warren2791a0c2012-05-15 06:45:28 +00006 */
7
8#ifndef __CONFIG_H
9#define __CONFIG_H
10
Alexey Brodkin267d8e22014-02-26 17:47:58 +040011#include <linux/sizes.h>
Allen Martin55d98a12012-08-31 08:30:00 +000012#include "tegra20-common.h"
Stephen Warren2791a0c2012-05-15 06:45:28 +000013
Stephen Warren2791a0c2012-05-15 06:45:28 +000014/* High-level configuration options */
Tom Warren22562a42012-09-04 17:00:24 -070015#define CONFIG_TEGRA_BOARD_STRING "NVIDIA Whistler"
Stephen Warren2791a0c2012-05-15 06:45:28 +000016
17/* Board-specific serial config */
Tom Warren22562a42012-09-04 17:00:24 -070018#define CONFIG_TEGRA_ENABLE_UARTA
19#define CONFIG_TEGRA_UARTA_UAA_UAB
Stephen Warren2791a0c2012-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 Warren2791a0c2012-05-15 06:45:28 +000023
Stephen Warren2791a0c2012-05-15 06:45:28 +000024/* I2C */
Simon Glass026fefb2012-10-30 07:28:53 +000025#define CONFIG_SYS_I2C_TEGRA
Stephen Warren2791a0c2012-05-15 06:45:28 +000026
27/* SD/MMC */
28#define CONFIG_MMC
29#define CONFIG_GENERIC_MMC
Tom Warren8c57e962012-05-22 11:44:48 +000030#define CONFIG_TEGRA_MMC
Stephen Warren2791a0c2012-05-15 06:45:28 +000031
Stephen Warrenc8e73f02012-05-24 11:38:36 +000032/*
33 * Environment in eMMC, at the end of 2nd "boot sector". Note: This assumes
Stephen Warren46597a32013-06-11 15:14:03 -060034 * the user plugged the standard 8GB MoviNAND card into J29/HSMMC/POP. If
Stephen Warrenc8e73f02012-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 Warren46597a32013-06-11 15:14:03 -060039#define CONFIG_ENV_OFFSET (-CONFIG_ENV_SIZE)
Stephen Warrenc8e73f02012-05-24 11:38:36 +000040#define CONFIG_SYS_MMC_ENV_DEV 0
Stephen Warren20da39b2012-07-30 10:55:45 +000041#define CONFIG_SYS_MMC_ENV_PART 2
Stephen Warren2791a0c2012-05-15 06:45:28 +000042
43/* USB Host support */
44#define CONFIG_USB_EHCI
45#define CONFIG_USB_EHCI_TEGRA
46#define CONFIG_USB_STORAGE
Stephen Warren7a3cfe72012-05-16 06:36:11 +000047
48/* USB networking support */
Stephen Warren2791a0c2012-05-15 06:45:28 +000049#define CONFIG_USB_HOST_ETHER
Stephen Warren2791a0c2012-05-15 06:45:28 +000050#define CONFIG_USB_ETHER_ASIX
51
Stephen Warren7a3cfe72012-05-16 06:36:11 +000052/* General networking support */
Stephen Warren2791a0c2012-05-15 06:45:28 +000053
Tom Warren22562a42012-09-04 17:00:24 -070054#include "tegra-common-post.h"
Stephen Warrende17c292012-05-16 06:21:00 +000055
Stephen Warren2791a0c2012-05-15 06:45:28 +000056#endif /* __CONFIG_H */