fuse.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. #ifndef __SOC_TEGRA_FUSE_H__
  17. #define __SOC_TEGRA_FUSE_H__
  18. #define TEGRA20 0x20
  19. #define TEGRA30 0x30
  20. #define TEGRA114 0x35
  21. #define TEGRA124 0x40
  22. #define TEGRA132 0x13
  23. #define TEGRA210 0x21
  24. #define TEGRA_FUSE_SKU_CALIB_0 0xf0
  25. #define TEGRA30_FUSE_SATA_CALIB 0x124
  26. #ifndef __ASSEMBLY__
  27. u32 tegra_read_chipid(void);
  28. u8 tegra_get_chip_id(void);
  29. enum tegra_revision {
  30. TEGRA_REVISION_UNKNOWN = 0,
  31. TEGRA_REVISION_A01,
  32. TEGRA_REVISION_A02,
  33. TEGRA_REVISION_A03,
  34. TEGRA_REVISION_A03p,
  35. TEGRA_REVISION_A04,
  36. TEGRA_REVISION_MAX,
  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. u32 tegra_read_straps(void);
  53. u32 tegra_read_ram_code(void);
  54. u32 tegra_read_chipid(void);
  55. int tegra_fuse_readl(unsigned long offset, u32 *value);
  56. extern struct tegra_sku_info tegra_sku_info;
  57. #endif /* __ASSEMBLY__ */
  58. #endif /* __SOC_TEGRA_FUSE_H__ */