1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
| /* SPDX-License-Identifier: GPL-2.0 */
| #ifndef __ASM_CPU_TYPE_H
| #define __ASM_CPU_TYPE_H
|
| /*
| * Sparc (general) CPU types
| */
| enum sparc_cpu {
| sun4m = 0x00,
| sun4d = 0x01,
| sun4e = 0x02,
| sun4u = 0x03, /* V8 ploos ploos */
| sun_unknown = 0x04,
| ap1000 = 0x05, /* almost a sun4m */
| sparc_leon = 0x06, /* Leon SoC */
| };
|
| #ifdef CONFIG_SPARC32
| extern enum sparc_cpu sparc_cpu_model;
|
| #define SUN4M_NCPUS 4 /* Architectural limit of sun4m. */
|
| #else
|
| #define sparc_cpu_model sun4u
|
| #endif
|
| #endif /* __ASM_CPU_TYPE_H */
|
|