Merge tag 'v3.10.55' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / arm / include / asm / cputype.h
CommitLineData
0ba8b9b2
RK
1#ifndef __ASM_ARM_CPUTYPE_H
2#define __ASM_ARM_CPUTYPE_H
3
4#include <linux/stringify.h>
e9569c15 5#include <linux/kernel.h>
0ba8b9b2
RK
6
7#define CPUID_ID 0
8#define CPUID_CACHETYPE 1
9#define CPUID_TCM 2
10#define CPUID_TLBTYPE 3
c9018aab 11#define CPUID_MPIDR 5
6fa3eb70 12#define CPUID_REVIDR 6
0ba8b9b2 13
faa7bc51
CM
14#define CPUID_EXT_PFR0 "c1, 0"
15#define CPUID_EXT_PFR1 "c1, 1"
16#define CPUID_EXT_DFR0 "c1, 2"
17#define CPUID_EXT_AFR0 "c1, 3"
18#define CPUID_EXT_MMFR0 "c1, 4"
19#define CPUID_EXT_MMFR1 "c1, 5"
20#define CPUID_EXT_MMFR2 "c1, 6"
21#define CPUID_EXT_MMFR3 "c1, 7"
22#define CPUID_EXT_ISAR0 "c2, 0"
23#define CPUID_EXT_ISAR1 "c2, 1"
24#define CPUID_EXT_ISAR2 "c2, 2"
25#define CPUID_EXT_ISAR3 "c2, 3"
26#define CPUID_EXT_ISAR4 "c2, 4"
27#define CPUID_EXT_ISAR5 "c2, 5"
28
dca463da
LP
29#define MPIDR_SMP_BITMASK (0x3 << 30)
30#define MPIDR_SMP_VALUE (0x2 << 30)
31
32#define MPIDR_MT_BITMASK (0x1 << 24)
33
34#define MPIDR_HWID_BITMASK 0xFFFFFF
35
18d7f152
LP
36#define MPIDR_INVALID (~MPIDR_HWID_BITMASK)
37
dca463da
LP
38#define MPIDR_LEVEL_BITS 8
39#define MPIDR_LEVEL_MASK ((1 << MPIDR_LEVEL_BITS) - 1)
40
41#define MPIDR_AFFINITY_LEVEL(mpidr, level) \
42 ((mpidr >> (MPIDR_LEVEL_BITS * level)) & MPIDR_LEVEL_MASK)
43
73a09d21
RK
44#define ARM_CPU_IMP_ARM 0x41
45#define ARM_CPU_IMP_INTEL 0x69
46
47#define ARM_CPU_PART_ARM1136 0xB360
48#define ARM_CPU_PART_ARM1156 0xB560
49#define ARM_CPU_PART_ARM1176 0xB760
50#define ARM_CPU_PART_ARM11MPCORE 0xB020
51#define ARM_CPU_PART_CORTEX_A8 0xC080
52#define ARM_CPU_PART_CORTEX_A9 0xC090
53#define ARM_CPU_PART_CORTEX_A5 0xC050
54#define ARM_CPU_PART_CORTEX_A15 0xC0F0
55#define ARM_CPU_PART_CORTEX_A7 0xC070
6fa3eb70
S
56#define ARM_CPU_PART_CORTEX_A12 0xC0D0
57#define ARM_CPU_PART_CORTEX_A17 0xC0E0
58#define ARM_CPU_PART_CORTEX_A53 0xD030
73a09d21
RK
59
60#define ARM_CPU_XSCALE_ARCH_MASK 0xe000
61#define ARM_CPU_XSCALE_ARCH_V1 0x2000
62#define ARM_CPU_XSCALE_ARCH_V2 0x4000
63#define ARM_CPU_XSCALE_ARCH_V3 0x6000
64
2bbd7e9b
RK
65extern unsigned int processor_id;
66
0ba8b9b2
RK
67#ifdef CONFIG_CPU_CP15
68#define read_cpuid(reg) \
69 ({ \
70 unsigned int __val; \
71 asm("mrc p15, 0, %0, c0, c0, " __stringify(reg) \
72 : "=r" (__val) \
73 : \
74 : "cc"); \
75 __val; \
76 })
6ebd4d03 77
faa7bc51
CM
78#define read_cpuid_ext(ext_reg) \
79 ({ \
80 unsigned int __val; \
81 asm("mrc p15, 0, %0, c0, " ext_reg \
82 : "=r" (__val) \
83 : \
84 : "cc"); \
85 __val; \
86 })
0ba8b9b2 87
6ebd4d03 88#else /* ifdef CONFIG_CPU_CP15 */
59530adc 89
6ebd4d03
UKK
90/*
91 * read_cpuid and read_cpuid_ext should only ever be called on machines that
92 * have cp15 so warn on other usages.
93 */
94#define read_cpuid(reg) \
95 ({ \
96 WARN_ON_ONCE(1); \
97 0; \
98 })
59530adc 99
6ebd4d03 100#define read_cpuid_ext(reg) read_cpuid(reg)
59530adc 101
6ebd4d03
UKK
102#endif /* ifdef CONFIG_CPU_CP15 / else */
103
104#ifdef CONFIG_CPU_CP15
0ba8b9b2
RK
105/*
106 * The CPU ID never changes at run time, so we might as well tell the
107 * compiler that it's constant. Use this function to read the CPU ID
108 * rather than directly reading processor_id or read_cpuid() directly.
109 */
110static inline unsigned int __attribute_const__ read_cpuid_id(void)
111{
112 return read_cpuid(CPUID_ID);
113}
114
6ebd4d03
UKK
115#else /* ifdef CONFIG_CPU_CP15 */
116
117static inline unsigned int __attribute_const__ read_cpuid_id(void)
118{
119 return processor_id;
120}
121
122#endif /* ifdef CONFIG_CPU_CP15 / else */
123
59530adc
CD
124static inline unsigned int __attribute_const__ read_cpuid_implementor(void)
125{
126 return (read_cpuid_id() & 0xFF000000) >> 24;
127}
128
129static inline unsigned int __attribute_const__ read_cpuid_part_number(void)
130{
131 return read_cpuid_id() & 0xFFF0;
132}
133
134static inline unsigned int __attribute_const__ xscale_cpu_arch_version(void)
135{
136 return read_cpuid_part_number() & ARM_CPU_XSCALE_ARCH_MASK;
137}
138
0ba8b9b2
RK
139static inline unsigned int __attribute_const__ read_cpuid_cachetype(void)
140{
141 return read_cpuid(CPUID_CACHETYPE);
142}
143
bc581770
LW
144static inline unsigned int __attribute_const__ read_cpuid_tcmstatus(void)
145{
146 return read_cpuid(CPUID_TCM);
147}
148
c9018aab
VG
149static inline unsigned int __attribute_const__ read_cpuid_mpidr(void)
150{
151 return read_cpuid(CPUID_MPIDR);
152}
153
0ba8b9b2
RK
154/*
155 * Intel's XScale3 core supports some v6 features (supersections, L2)
156 * but advertises itself as v5 as it does not support the v6 ISA. For
157 * this reason, we need a way to explicitly test for this type of CPU.
158 */
159#ifndef CONFIG_CPU_XSC3
160#define cpu_is_xsc3() 0
161#else
162static inline int cpu_is_xsc3(void)
163{
337c1db6
HZ
164 unsigned int id;
165 id = read_cpuid_id() & 0xffffe000;
166 /* It covers both Intel ID and Marvell ID */
167 if ((id == 0x69056000) || (id == 0x56056000))
0ba8b9b2
RK
168 return 1;
169
170 return 0;
171}
172#endif
173
174#if !defined(CONFIG_CPU_XSCALE) && !defined(CONFIG_CPU_XSC3)
175#define cpu_is_xscale() 0
176#else
177#define cpu_is_xscale() 1
178#endif
179
180#endif