Prashant Gaikwad | c7736ed | 2013-01-11 13:16:19 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved. |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify it |
| 5 | * under the terms and conditions of the GNU General Public License, |
| 6 | * version 2, as published by the Free Software Foundation. |
| 7 | * |
| 8 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 9 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 10 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 11 | * more details. |
| 12 | * |
| 13 | * You should have received a copy of the GNU General Public License |
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | */ |
| 16 | |
Thierry Reding | 306a7f9 | 2014-07-17 13:17:24 +0200 | [diff] [blame] | 17 | #ifndef __SOC_TEGRA_FUSE_H__ |
| 18 | #define __SOC_TEGRA_FUSE_H__ |
Prashant Gaikwad | c7736ed | 2013-01-11 13:16:19 +0530 | [diff] [blame] | 19 | |
Thierry Reding | 304664e | 2014-07-11 09:52:41 +0200 | [diff] [blame] | 20 | #define TEGRA20 0x20 |
| 21 | #define TEGRA30 0x30 |
| 22 | #define TEGRA114 0x35 |
| 23 | #define TEGRA124 0x40 |
Thierry Reding | 24ef574 | 2015-01-08 08:24:45 +0100 | [diff] [blame] | 24 | #define TEGRA132 0x13 |
Thierry Reding | 0dc5a0d | 2015-04-29 16:55:57 +0200 | [diff] [blame^] | 25 | #define TEGRA210 0x21 |
Thierry Reding | 304664e | 2014-07-11 09:52:41 +0200 | [diff] [blame] | 26 | |
Peter De Schrijver | 783c8f4 | 2014-06-12 18:36:37 +0300 | [diff] [blame] | 27 | #define TEGRA_FUSE_SKU_CALIB_0 0xf0 |
| 28 | #define TEGRA30_FUSE_SATA_CALIB 0x124 |
| 29 | |
Thierry Reding | 304664e | 2014-07-11 09:52:41 +0200 | [diff] [blame] | 30 | #ifndef __ASSEMBLY__ |
| 31 | |
Prashant Gaikwad | c7736ed | 2013-01-11 13:16:19 +0530 | [diff] [blame] | 32 | u32 tegra_read_chipid(void); |
Thierry Reding | 304664e | 2014-07-11 09:52:41 +0200 | [diff] [blame] | 33 | u8 tegra_get_chip_id(void); |
| 34 | |
Peter De Schrijver | 35874f3 | 2014-06-12 18:36:36 +0300 | [diff] [blame] | 35 | enum tegra_revision { |
| 36 | TEGRA_REVISION_UNKNOWN = 0, |
| 37 | TEGRA_REVISION_A01, |
| 38 | TEGRA_REVISION_A02, |
| 39 | TEGRA_REVISION_A03, |
| 40 | TEGRA_REVISION_A03p, |
| 41 | TEGRA_REVISION_A04, |
| 42 | TEGRA_REVISION_MAX, |
| 43 | }; |
| 44 | |
Peter De Schrijver | 783c8f4 | 2014-06-12 18:36:37 +0300 | [diff] [blame] | 45 | struct tegra_sku_info { |
| 46 | int sku_id; |
| 47 | int cpu_process_id; |
| 48 | int cpu_speedo_id; |
| 49 | int cpu_speedo_value; |
| 50 | int cpu_iddq_value; |
| 51 | int core_process_id; |
| 52 | int soc_speedo_id; |
Thierry Reding | 0dc5a0d | 2015-04-29 16:55:57 +0200 | [diff] [blame^] | 53 | int soc_speedo_value; |
Peter De Schrijver | 783c8f4 | 2014-06-12 18:36:37 +0300 | [diff] [blame] | 54 | int gpu_process_id; |
Thierry Reding | 0dc5a0d | 2015-04-29 16:55:57 +0200 | [diff] [blame^] | 55 | int gpu_speedo_id; |
Peter De Schrijver | 783c8f4 | 2014-06-12 18:36:37 +0300 | [diff] [blame] | 56 | int gpu_speedo_value; |
| 57 | enum tegra_revision revision; |
| 58 | }; |
| 59 | |
Peter De Schrijver | 35874f3 | 2014-06-12 18:36:36 +0300 | [diff] [blame] | 60 | u32 tegra_read_straps(void); |
Mikko Perttunen | 6ea2609 | 2015-03-12 15:47:55 +0100 | [diff] [blame] | 61 | u32 tegra_read_ram_code(void); |
Peter De Schrijver | 35874f3 | 2014-06-12 18:36:36 +0300 | [diff] [blame] | 62 | u32 tegra_read_chipid(void); |
Peter De Schrijver | 783c8f4 | 2014-06-12 18:36:37 +0300 | [diff] [blame] | 63 | int tegra_fuse_readl(unsigned long offset, u32 *value); |
Peter De Schrijver | 35874f3 | 2014-06-12 18:36:36 +0300 | [diff] [blame] | 64 | |
Peter De Schrijver | 783c8f4 | 2014-06-12 18:36:37 +0300 | [diff] [blame] | 65 | extern struct tegra_sku_info tegra_sku_info; |
Peter De Schrijver | 35874f3 | 2014-06-12 18:36:36 +0300 | [diff] [blame] | 66 | |
Thierry Reding | 304664e | 2014-07-11 09:52:41 +0200 | [diff] [blame] | 67 | #endif /* __ASSEMBLY__ */ |
Prashant Gaikwad | c7736ed | 2013-01-11 13:16:19 +0530 | [diff] [blame] | 68 | |
Thierry Reding | 306a7f9 | 2014-07-17 13:17:24 +0200 | [diff] [blame] | 69 | #endif /* __SOC_TEGRA_FUSE_H__ */ |