diff options
| author | Olof Johansson <olof@lixom.net> | 2020-09-26 22:39:35 +0300 |
|---|---|---|
| committer | Olof Johansson <olof@lixom.net> | 2020-09-26 22:39:36 +0300 |
| commit | e8c9d35ea6eaef3c9406536c2b7adb02835f0971 (patch) | |
| tree | 2c5db9f63fc0bc3aca5a061eb56fa0e9f7030373 /include | |
| parent | 5746b3b88627ffa1289dfe777ca5085e29b6c336 (diff) | |
| parent | 34e214a99689054e666cd4149500a37fa0c5ac98 (diff) | |
| download | linux-e8c9d35ea6eaef3c9406536c2b7adb02835f0971.tar.xz | |
Merge tag 'tegra-for-5.10-soc' of git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux into arm/drivers
soc/tegra: Changes for v5.10-rc1
These changes contain a bit of cleanup and chip support for the upcoming
Tegra234 SoC.
* tag 'tegra-for-5.10-soc' of git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux:
soc/tegra: pmc: Add Tegra234 support
soc/tegra: pmc: Reorder reset sources/levels definitions
soc/tegra: misc: Add Tegra234 support
soc/tegra: fuse: Add Tegra234 support
soc/tegra: fuse: Implement tegra_is_silicon()
soc/tegra: fuse: Extract tegra_get_platform()
Link: https://lore.kernel.org/r/20200918150303.3938852-2-thierry.reding@gmail.com
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'include')
| -rw-r--r-- | include/soc/tegra/fuse.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/soc/tegra/fuse.h b/include/soc/tegra/fuse.h index 1097feca41ed..c702bd2911bc 100644 --- a/include/soc/tegra/fuse.h +++ b/include/soc/tegra/fuse.h @@ -14,6 +14,7 @@ #define TEGRA210 0x21 #define TEGRA186 0x18 #define TEGRA194 0x19 +#define TEGRA234 0x23 #define TEGRA_FUSE_SKU_CALIB_0 0xf0 #define TEGRA30_FUSE_SATA_CALIB 0x124 @@ -23,6 +24,8 @@ u32 tegra_read_chipid(void); u8 tegra_get_chip_id(void); +u8 tegra_get_platform(void); +bool tegra_is_silicon(void); enum tegra_revision { TEGRA_REVISION_UNKNOWN = 0, |
