diff options
| author | Jim Lin <jilin@nvidia.com> | 2013-06-21 19:05:47 +0800 | 
|---|---|---|
| committer | Tom Warren <twarren@nvidia.com> | 2013-07-11 14:15:15 -0700 | 
| commit | 7e44d9320ed4a9994b97eb1c9b2efd04491ff431 (patch) | |
| tree | 250c00ec3ff7e77775d6efde68510758dddd4581 /include | |
| parent | 56867d88c45f7345dc6bf7340ee70b69688e3e9a (diff) | |
| download | olio-uboot-2014.01-7e44d9320ed4a9994b97eb1c9b2efd04491ff431.tar.xz olio-uboot-2014.01-7e44d9320ed4a9994b97eb1c9b2efd04491ff431.zip | |
ARM: Tegra: USB: EHCI: Add support for Tegra30/Tegra114
Tegra30 and Tegra114 are compatible except PLL parameters.
Tested on Tegra30 Cardhu, and Tegra114 Dalmore
platforms. All works well.
Signed-off-by: Jim Lin <jilin@nvidia.com>
Signed-off-by: Tom Warren <twarren@nvidia.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/fdtdec.h | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/include/fdtdec.h b/include/fdtdec.h index bea326e97..818ddde36 100644 --- a/include/fdtdec.h +++ b/include/fdtdec.h @@ -64,6 +64,8 @@ struct fdt_memory {  enum fdt_compat_id {  	COMPAT_UNKNOWN,  	COMPAT_NVIDIA_TEGRA20_USB,	/* Tegra20 USB port */ +	COMPAT_NVIDIA_TEGRA30_USB,	/* Tegra30 USB port */ +	COMPAT_NVIDIA_TEGRA114_USB,	/* Tegra114 USB port */  	COMPAT_NVIDIA_TEGRA114_I2C,	/* Tegra114 I2C w/single clock source */  	COMPAT_NVIDIA_TEGRA20_I2C,	/* Tegra20 i2c */  	COMPAT_NVIDIA_TEGRA20_DVC,	/* Tegra20 dvc (really just i2c) */ |