blob: 7dfa4d089a19b5314ff96e18b1773a96516c4618 [file] [log] [blame]
Varun Wadekar28dcc212016-07-20 10:28:51 -07001/*
Antonio Nino Diaz4b32e622018-08-16 16:52:57 +01002 * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
Varun Wadekar3923f882020-05-12 14:04:10 -07003 * Copyright (c) 2020, NVIDIA Corporation. All rights reserved.
Varun Wadekar28dcc212016-07-20 10:28:51 -07004 *
dp-armfa3cf0b2017-05-03 09:38:09 +01005 * SPDX-License-Identifier: BSD-3-Clause
Varun Wadekar28dcc212016-07-20 10:28:51 -07006 */
7
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00008#ifndef TEGRA_PLATFORM_H
9#define TEGRA_PLATFORM_H
Varun Wadekar28dcc212016-07-20 10:28:51 -070010
Antonio Nino Diaz4b32e622018-08-16 16:52:57 +010011#include <cdefs.h>
Ambroise Vincentffbf32a2019-03-28 09:01:18 +000012#include <lib/utils_def.h>
Anthony Zhou70262ef2017-03-22 14:37:04 +080013#include <stdbool.h>
Marvin Hsu589a7e12017-04-12 20:40:27 +080014
15/*******************************************************************************
16 * Tegra major, minor version helper macros
17 ******************************************************************************/
18#define MAJOR_VERSION_SHIFT U(0x4)
19#define MAJOR_VERSION_MASK U(0xF)
20#define MINOR_VERSION_SHIFT U(0x10)
21#define MINOR_VERSION_MASK U(0xF)
22#define CHIP_ID_SHIFT U(8)
23#define CHIP_ID_MASK U(0xFF)
24#define PRE_SI_PLATFORM_SHIFT U(0x14)
25#define PRE_SI_PLATFORM_MASK U(0xF)
Varun Wadekar28dcc212016-07-20 10:28:51 -070026
Harvey Hsieh6dc0d762017-04-24 19:35:51 +080027/*******************************************************************************
Marvin Hsu589a7e12017-04-12 20:40:27 +080028 * Tegra chip ID values
Harvey Hsieh6dc0d762017-04-24 19:35:51 +080029 ******************************************************************************/
30#define TEGRA_CHIPID_TEGRA13 U(0x13)
31#define TEGRA_CHIPID_TEGRA21 U(0x21)
32#define TEGRA_CHIPID_TEGRA18 U(0x18)
33
Varun Wadekar3923f882020-05-12 14:04:10 -070034/*******************************************************************************
35 * JEDEC Standard Manufacturer's Identification Code and Bank ID
36 ******************************************************************************/
37#define JEDEC_NVIDIA_MFID U(0x6B)
38#define JEDEC_NVIDIA_BKID U(3)
39
Julius Werner53456fc2019-07-09 13:49:11 -070040#ifndef __ASSEMBLER__
Harvey Hsieh6dc0d762017-04-24 19:35:51 +080041
42/*
43 * Tegra chip ID major/minor identifiers
Varun Wadekarfc9b91e2017-03-10 09:53:37 -080044 */
45uint32_t tegra_get_chipid_major(void);
46uint32_t tegra_get_chipid_minor(void);
47
48/*
Marvin Hsu589a7e12017-04-12 20:40:27 +080049 * Tegra chip ID identifiers
Varun Wadekar28dcc212016-07-20 10:28:51 -070050 */
Marvin Hsu589a7e12017-04-12 20:40:27 +080051bool tegra_chipid_is_t132(void);
52bool tegra_chipid_is_t186(void);
53bool tegra_chipid_is_t210(void);
54bool tegra_chipid_is_t210_b01(void);
Varun Wadekarfdcdfe22017-04-13 14:12:49 -070055
Varun Wadekar28dcc212016-07-20 10:28:51 -070056/*
57 * Tegra platform identifiers
58 */
Anthony Zhou70262ef2017-03-22 14:37:04 +080059bool tegra_platform_is_silicon(void);
60bool tegra_platform_is_qt(void);
61bool tegra_platform_is_emulation(void);
62bool tegra_platform_is_linsim(void);
63bool tegra_platform_is_fpga(void);
64bool tegra_platform_is_unit_fpga(void);
65bool tegra_platform_is_virt_dev_kit(void);
Varun Wadekar28dcc212016-07-20 10:28:51 -070066
Julius Werner53456fc2019-07-09 13:49:11 -070067#endif /* __ASSEMBLER__ */
Harvey Hsieh6dc0d762017-04-24 19:35:51 +080068
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000069#endif /* TEGRA_PLATFORM_H */