2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
ARM: tegra: Add p2371-0000 board
P2371-0000 is a P2581 or P2530 CPU board married to a P2595 I/O
board. The combination contains SoC, DRAM, eMMC, SD card slot,
HDMI, USB micro-B port, Ethernet via USB3, USB3 host port, SATA,
a GPIO expansion header, and an analog audio jack.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Warren <twarren@nvidia.com>
2015-08-05 17:52:08 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2013-2015
|
|
|
|
* NVIDIA Corporation <www.nvidia.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _P2371_0000_H
|
|
|
|
#define _P2371_0000_H
|
|
|
|
|
|
|
|
#include <linux/sizes.h>
|
|
|
|
|
|
|
|
#include "tegra210-common.h"
|
|
|
|
|
|
|
|
/* High-level configuration options */
|
|
|
|
#define CONFIG_TEGRA_BOARD_STRING "NVIDIA P2371-0000"
|
|
|
|
|
|
|
|
/* Board-specific serial config */
|
|
|
|
#define CONFIG_TEGRA_ENABLE_UARTA
|
|
|
|
|
|
|
|
/* Environment in eMMC, at the end of 2nd "boot sector" */
|
|
|
|
|
|
|
|
/* SPI */
|
|
|
|
#define CONFIG_SPI_FLASH_SIZE (4 << 20)
|
|
|
|
|
|
|
|
#include "tegra-common-usb-gadget.h"
|
|
|
|
#include "tegra-common-post.h"
|
|
|
|
|
|
|
|
#endif /* _P2371_0000_H */
|