214908fc558184149a666cf5d189c35ab16b9571
[linux-2.6-microblaze.git] / include / soc / tegra / fuse.h
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Copyright (c) 2012, NVIDIA CORPORATION.  All rights reserved.
4  */
5
6 #ifndef __SOC_TEGRA_FUSE_H__
7 #define __SOC_TEGRA_FUSE_H__
8
9 #define TEGRA20         0x20
10 #define TEGRA30         0x30
11 #define TEGRA114        0x35
12 #define TEGRA124        0x40
13 #define TEGRA132        0x13
14 #define TEGRA210        0x21
15 #define TEGRA186        0x18
16 #define TEGRA194        0x19
17
18 #define TEGRA_FUSE_SKU_CALIB_0  0xf0
19 #define TEGRA30_FUSE_SATA_CALIB 0x124
20 #define TEGRA_FUSE_USB_CALIB_EXT_0 0x250
21
22 #ifndef __ASSEMBLY__
23
24 u32 tegra_read_chipid(void);
25 u8 tegra_get_chip_id(void);
26 u8 tegra_get_platform(void);
27
28 enum tegra_revision {
29         TEGRA_REVISION_UNKNOWN = 0,
30         TEGRA_REVISION_A01,
31         TEGRA_REVISION_A02,
32         TEGRA_REVISION_A03,
33         TEGRA_REVISION_A03p,
34         TEGRA_REVISION_A04,
35         TEGRA_REVISION_MAX,
36 };
37
38 struct tegra_sku_info {
39         int sku_id;
40         int cpu_process_id;
41         int cpu_speedo_id;
42         int cpu_speedo_value;
43         int cpu_iddq_value;
44         int soc_process_id;
45         int soc_speedo_id;
46         int soc_speedo_value;
47         int gpu_process_id;
48         int gpu_speedo_id;
49         int gpu_speedo_value;
50         enum tegra_revision revision;
51 };
52
53 u32 tegra_read_straps(void);
54 u32 tegra_read_ram_code(void);
55 int tegra_fuse_readl(unsigned long offset, u32 *value);
56
57 extern struct tegra_sku_info tegra_sku_info;
58
59 struct device *tegra_soc_device_register(void);
60
61 #endif /* __ASSEMBLY__ */
62
63 #endif /* __SOC_TEGRA_FUSE_H__ */