2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
ARM: tegra: Add p2371-2180 board
P2371-2180 is a P2180 CPU board married to a P2597 I/O board. The
combination contains SoC, DRAM, eMMC, SD card slot, HDMI, USB
micro-B port, Ethernet via USB3, USB3 host port, SATA, PCIe, and
two GPIO expansion headers.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>
2015-08-14 04:34:22 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2013-2015
|
|
|
|
* NVIDIA Corporation <www.nvidia.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _P2371_2180_H
|
|
|
|
#define _P2371_2180_H
|
|
|
|
|
|
|
|
#include <linux/sizes.h>
|
|
|
|
|
|
|
|
#include "tegra210-common.h"
|
|
|
|
|
|
|
|
/* High-level configuration options */
|
|
|
|
#define CONFIG_TEGRA_BOARD_STRING "NVIDIA P2371-2180"
|
|
|
|
|
|
|
|
/* 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"
|
|
|
|
|
2015-08-19 21:15:41 +00:00
|
|
|
/* Crystal is 38.4MHz. clk_m runs at half that rate */
|
|
|
|
#define COUNTER_FREQUENCY 19200000
|
ARM: tegra: Add p2371-2180 board
P2371-2180 is a P2180 CPU board married to a P2597 I/O board. The
combination contains SoC, DRAM, eMMC, SD card slot, HDMI, USB
micro-B port, Ethernet via USB3, USB3 host port, SATA, PCIe, and
two GPIO expansion headers.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>
2015-08-14 04:34:22 +00:00
|
|
|
|
|
|
|
#endif /* _P2371_2180_H */
|