upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
637 B
24 lines
637 B
/*
|
|
* (C) Copyright 2010-2012
|
|
* NVIDIA Corporation <www.nvidia.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _TEGRA_GP_PADCTRL_H_
|
|
#define _TEGRA_GP_PADCTRL_H_
|
|
|
|
#define GP_HIDREV 0x804
|
|
|
|
/* bit fields definitions for APB_MISC_GP_HIDREV register */
|
|
#define HIDREV_CHIPID_SHIFT 8
|
|
#define HIDREV_CHIPID_MASK (0xff << HIDREV_CHIPID_SHIFT)
|
|
#define HIDREV_MAJORPREV_SHIFT 4
|
|
#define HIDREV_MAJORPREV_MASK (0xf << HIDREV_MAJORPREV_SHIFT)
|
|
|
|
/* CHIPID field returned from APB_MISC_GP_HIDREV register */
|
|
#define CHIPID_TEGRA20 0x20
|
|
#define CHIPID_TEGRA30 0x30
|
|
#define CHIPID_TEGRA114 0x35
|
|
|
|
#endif /* _TEGRA_GP_PADCTRL_H_ */
|
|
|