tegra_platform.h 1.68 KB
Newer Older
1
/*
2
 * Copyright (c) 2017-2018, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
 */

7
8
#ifndef TEGRA_PLATFORM_H
#define TEGRA_PLATFORM_H
9

10
#include <cdefs.h>
11
#include <stdbool.h>
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <utils_def.h>

/*******************************************************************************
 * Tegra major, minor version helper macros
 ******************************************************************************/
#define MAJOR_VERSION_SHIFT		U(0x4)
#define MAJOR_VERSION_MASK		U(0xF)
#define MINOR_VERSION_SHIFT		U(0x10)
#define MINOR_VERSION_MASK		U(0xF)
#define CHIP_ID_SHIFT			U(8)
#define CHIP_ID_MASK			U(0xFF)
#define PRE_SI_PLATFORM_SHIFT		U(0x14)
#define PRE_SI_PLATFORM_MASK		U(0xF)
25

26
/*******************************************************************************
27
 * Tegra chip ID values
28
29
30
31
32
33
34
35
36
 ******************************************************************************/
#define TEGRA_CHIPID_TEGRA13		U(0x13)
#define TEGRA_CHIPID_TEGRA21		U(0x21)
#define TEGRA_CHIPID_TEGRA18		U(0x18)

#ifndef __ASSEMBLY__

/*
 * Tegra chip ID major/minor identifiers
37
38
39
40
 */
uint32_t tegra_get_chipid_major(void);
uint32_t tegra_get_chipid_minor(void);

41
/*
42
 * Tegra chip ID identifiers
43
 */
44
45
46
47
bool tegra_chipid_is_t132(void);
bool tegra_chipid_is_t186(void);
bool tegra_chipid_is_t210(void);
bool tegra_chipid_is_t210_b01(void);
48

49
50
51
/*
 * Tegra platform identifiers
 */
52
53
54
55
56
57
58
bool tegra_platform_is_silicon(void);
bool tegra_platform_is_qt(void);
bool tegra_platform_is_emulation(void);
bool tegra_platform_is_linsim(void);
bool tegra_platform_is_fpga(void);
bool tegra_platform_is_unit_fpga(void);
bool tegra_platform_is_virt_dev_kit(void);
59

60
61
#endif /* __ASSEMBLY__ */

62
#endif /* TEGRA_PLATFORM_H */