blob: b1eb834bc0fcd00ba563ca8d60287d912a9fdc80 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * Copyright (C) 2001 Ben. Herrenschmidt (benh@kernel.crashing.org)
3 *
Stephen Rothwell49209602005-10-12 15:55:09 +10004 * Modifications for ppc64:
5 * Copyright (C) 2003 Dave Engebretsen <engebret@us.ibm.com>
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/string.h>
14#include <linux/sched.h>
15#include <linux/threads.h>
16#include <linux/init.h>
Kumar Gala400d2212005-09-27 15:13:12 -050017#include <linux/module.h>
18
19#include <asm/oprofile_impl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/cputable.h>
Benjamin Herrenschmidt42c4aaa2006-10-24 16:42:40 +100021#include <asm/prom.h> /* for PTRRELOC on ARCH=ppc */
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Kumar Gala400d2212005-09-27 15:13:12 -050023struct cpu_spec* cur_cpu_spec = NULL;
Stephen Rothwell49209602005-10-12 15:55:09 +100024EXPORT_SYMBOL(cur_cpu_spec);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Nathan Lynch9115d132008-07-16 09:58:51 +100026/* The platform string corresponding to the real PVR */
27const char *powerpc_base_platform;
28
Stephen Rothwell49209602005-10-12 15:55:09 +100029/* NOTE:
30 * Unlike ppc32, ppc64 will only call this once for the boot CPU, it's
31 * the responsibility of the appropriate CPU save/restore functions to
32 * eventually copy these settings over. Those save/restore aren't yet
33 * part of the cputable though. That has to be fixed for both ppc32
34 * and ppc64
35 */
Geoff Levandb26f1002006-05-19 14:24:18 +100036#ifdef CONFIG_PPC32
Valentine Barshak81127532007-09-22 00:46:57 +100037extern void __setup_cpu_440ep(unsigned long offset, struct cpu_spec* spec);
38extern void __setup_cpu_440epx(unsigned long offset, struct cpu_spec* spec);
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +110039extern void __setup_cpu_440gx(unsigned long offset, struct cpu_spec* spec);
Valentine Barshak340ffd22007-09-22 00:50:09 +100040extern void __setup_cpu_440grx(unsigned long offset, struct cpu_spec* spec);
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +110041extern void __setup_cpu_440spe(unsigned long offset, struct cpu_spec* spec);
Stefan Roese464076a2008-02-24 08:07:41 +110042extern void __setup_cpu_460ex(unsigned long offset, struct cpu_spec* spec);
Josh Boyer939e6222008-06-11 07:52:40 -040043extern void __setup_cpu_460gt(unsigned long offset, struct cpu_spec* spec);
Kumar Gala400d2212005-09-27 15:13:12 -050044extern void __setup_cpu_603(unsigned long offset, struct cpu_spec* spec);
45extern void __setup_cpu_604(unsigned long offset, struct cpu_spec* spec);
46extern void __setup_cpu_750(unsigned long offset, struct cpu_spec* spec);
47extern void __setup_cpu_750cx(unsigned long offset, struct cpu_spec* spec);
48extern void __setup_cpu_750fx(unsigned long offset, struct cpu_spec* spec);
49extern void __setup_cpu_7400(unsigned long offset, struct cpu_spec* spec);
50extern void __setup_cpu_7410(unsigned long offset, struct cpu_spec* spec);
51extern void __setup_cpu_745x(unsigned long offset, struct cpu_spec* spec);
Stephen Rothwell49209602005-10-12 15:55:09 +100052#endif /* CONFIG_PPC32 */
Olof Johanssonf39b7a52006-08-11 00:07:08 -050053#ifdef CONFIG_PPC64
Kumar Gala400d2212005-09-27 15:13:12 -050054extern void __setup_cpu_ppc970(unsigned long offset, struct cpu_spec* spec);
Olof Johansson5b43d202006-10-04 23:41:41 -050055extern void __setup_cpu_ppc970MP(unsigned long offset, struct cpu_spec* spec);
Olof Johansson11999192007-02-04 16:36:51 -060056extern void __setup_cpu_pa6t(unsigned long offset, struct cpu_spec* spec);
Stephen Rothwell40d244d2007-02-12 22:10:48 +110057extern void __restore_cpu_pa6t(void);
Olof Johanssonf39b7a52006-08-11 00:07:08 -050058extern void __restore_cpu_ppc970(void);
Michael Neulinge952e6c2008-06-18 10:47:26 +100059extern void __setup_cpu_power7(unsigned long offset, struct cpu_spec* spec);
60extern void __restore_cpu_power7(void);
Olof Johanssonf39b7a52006-08-11 00:07:08 -050061#endif /* CONFIG_PPC64 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Linus Torvalds1da177e2005-04-16 15:20:36 -070063/* This table only contains "desktop" CPUs, it need to be filled with embedded
64 * ones as well...
65 */
Stephen Rothwell49209602005-10-12 15:55:09 +100066#define COMMON_USER (PPC_FEATURE_32 | PPC_FEATURE_HAS_FPU | \
67 PPC_FEATURE_HAS_MMU)
68#define COMMON_USER_PPC64 (COMMON_USER | PPC_FEATURE_64)
Paul Mackerrasa7ddc5e2005-11-10 14:29:18 +110069#define COMMON_USER_POWER4 (COMMON_USER_PPC64 | PPC_FEATURE_POWER4)
Benjamin Herrenschmidtaa5cb022006-03-01 15:07:07 +110070#define COMMON_USER_POWER5 (COMMON_USER_PPC64 | PPC_FEATURE_POWER5 |\
71 PPC_FEATURE_SMT | PPC_FEATURE_ICACHE_SNOOP)
72#define COMMON_USER_POWER5_PLUS (COMMON_USER_PPC64 | PPC_FEATURE_POWER5_PLUS|\
73 PPC_FEATURE_SMT | PPC_FEATURE_ICACHE_SNOOP)
Anton Blanchard03054d52006-04-29 09:51:06 +100074#define COMMON_USER_POWER6 (COMMON_USER_PPC64 | PPC_FEATURE_ARCH_2_05 |\
Paul Mackerrasfab5db92006-06-07 16:14:40 +100075 PPC_FEATURE_SMT | PPC_FEATURE_ICACHE_SNOOP | \
Nathan Lynch0f473312008-07-10 01:06:57 +100076 PPC_FEATURE_TRUE_LE | \
77 PPC_FEATURE_PSERIES_PERFMON_COMPAT)
Michael Neulinge952e6c2008-06-18 10:47:26 +100078#define COMMON_USER_POWER7 (COMMON_USER_PPC64 | PPC_FEATURE_ARCH_2_06 |\
79 PPC_FEATURE_SMT | PPC_FEATURE_ICACHE_SNOOP | \
Nathan Lynch0f473312008-07-10 01:06:57 +100080 PPC_FEATURE_TRUE_LE | \
81 PPC_FEATURE_PSERIES_PERFMON_COMPAT)
Olof Johanssonb3ebd1d2006-09-06 14:35:57 -050082#define COMMON_USER_PA6T (COMMON_USER_PPC64 | PPC_FEATURE_PA6T |\
83 PPC_FEATURE_TRUE_LE | \
84 PPC_FEATURE_HAS_ALTIVEC_COMP)
Paul Mackerras80f15dc2006-01-14 10:11:39 +110085#define COMMON_USER_BOOKE (PPC_FEATURE_32 | PPC_FEATURE_HAS_MMU | \
86 PPC_FEATURE_BOOKE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Paul Mackerras87a72f92007-10-04 14:18:01 +100088static struct cpu_spec __initdata cpu_specs[] = {
Stephen Rothwell49209602005-10-12 15:55:09 +100089#ifdef CONFIG_PPC64
90 { /* Power3 */
91 .pvr_mask = 0xffff0000,
92 .pvr_value = 0x00400000,
93 .cpu_name = "POWER3 (630)",
94 .cpu_features = CPU_FTRS_POWER3,
Paul Mackerrasfab5db92006-06-07 16:14:40 +100095 .cpu_user_features = COMMON_USER_PPC64|PPC_FEATURE_PPC_LE,
Stephen Rothwell49209602005-10-12 15:55:09 +100096 .icache_bsize = 128,
97 .dcache_bsize = 128,
98 .num_pmcs = 8,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -060099 .pmc_type = PPC_PMC_IBM,
Stephen Rothwell49209602005-10-12 15:55:09 +1000100 .oprofile_cpu_type = "ppc64/power3",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000101 .oprofile_type = PPC_OPROFILE_RS64,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100102 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100103 .platform = "power3",
Stephen Rothwell49209602005-10-12 15:55:09 +1000104 },
105 { /* Power3+ */
106 .pvr_mask = 0xffff0000,
107 .pvr_value = 0x00410000,
108 .cpu_name = "POWER3 (630+)",
109 .cpu_features = CPU_FTRS_POWER3,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000110 .cpu_user_features = COMMON_USER_PPC64|PPC_FEATURE_PPC_LE,
Stephen Rothwell49209602005-10-12 15:55:09 +1000111 .icache_bsize = 128,
112 .dcache_bsize = 128,
113 .num_pmcs = 8,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600114 .pmc_type = PPC_PMC_IBM,
Stephen Rothwell49209602005-10-12 15:55:09 +1000115 .oprofile_cpu_type = "ppc64/power3",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000116 .oprofile_type = PPC_OPROFILE_RS64,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100117 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100118 .platform = "power3",
Stephen Rothwell49209602005-10-12 15:55:09 +1000119 },
120 { /* Northstar */
121 .pvr_mask = 0xffff0000,
122 .pvr_value = 0x00330000,
123 .cpu_name = "RS64-II (northstar)",
124 .cpu_features = CPU_FTRS_RS64,
125 .cpu_user_features = COMMON_USER_PPC64,
126 .icache_bsize = 128,
127 .dcache_bsize = 128,
128 .num_pmcs = 8,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600129 .pmc_type = PPC_PMC_IBM,
Stephen Rothwell49209602005-10-12 15:55:09 +1000130 .oprofile_cpu_type = "ppc64/rs64",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000131 .oprofile_type = PPC_OPROFILE_RS64,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100132 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100133 .platform = "rs64",
Stephen Rothwell49209602005-10-12 15:55:09 +1000134 },
135 { /* Pulsar */
136 .pvr_mask = 0xffff0000,
137 .pvr_value = 0x00340000,
138 .cpu_name = "RS64-III (pulsar)",
139 .cpu_features = CPU_FTRS_RS64,
140 .cpu_user_features = COMMON_USER_PPC64,
141 .icache_bsize = 128,
142 .dcache_bsize = 128,
143 .num_pmcs = 8,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600144 .pmc_type = PPC_PMC_IBM,
Stephen Rothwell49209602005-10-12 15:55:09 +1000145 .oprofile_cpu_type = "ppc64/rs64",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000146 .oprofile_type = PPC_OPROFILE_RS64,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100147 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100148 .platform = "rs64",
Stephen Rothwell49209602005-10-12 15:55:09 +1000149 },
150 { /* I-star */
151 .pvr_mask = 0xffff0000,
152 .pvr_value = 0x00360000,
153 .cpu_name = "RS64-III (icestar)",
154 .cpu_features = CPU_FTRS_RS64,
155 .cpu_user_features = COMMON_USER_PPC64,
156 .icache_bsize = 128,
157 .dcache_bsize = 128,
158 .num_pmcs = 8,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600159 .pmc_type = PPC_PMC_IBM,
Stephen Rothwell49209602005-10-12 15:55:09 +1000160 .oprofile_cpu_type = "ppc64/rs64",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000161 .oprofile_type = PPC_OPROFILE_RS64,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100162 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100163 .platform = "rs64",
Stephen Rothwell49209602005-10-12 15:55:09 +1000164 },
165 { /* S-star */
166 .pvr_mask = 0xffff0000,
167 .pvr_value = 0x00370000,
168 .cpu_name = "RS64-IV (sstar)",
169 .cpu_features = CPU_FTRS_RS64,
170 .cpu_user_features = COMMON_USER_PPC64,
171 .icache_bsize = 128,
172 .dcache_bsize = 128,
173 .num_pmcs = 8,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600174 .pmc_type = PPC_PMC_IBM,
Stephen Rothwell49209602005-10-12 15:55:09 +1000175 .oprofile_cpu_type = "ppc64/rs64",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000176 .oprofile_type = PPC_OPROFILE_RS64,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100177 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100178 .platform = "rs64",
Stephen Rothwell49209602005-10-12 15:55:09 +1000179 },
180 { /* Power4 */
181 .pvr_mask = 0xffff0000,
182 .pvr_value = 0x00350000,
183 .cpu_name = "POWER4 (gp)",
184 .cpu_features = CPU_FTRS_POWER4,
Paul Mackerrasa7ddc5e2005-11-10 14:29:18 +1100185 .cpu_user_features = COMMON_USER_POWER4,
Stephen Rothwell49209602005-10-12 15:55:09 +1000186 .icache_bsize = 128,
187 .dcache_bsize = 128,
188 .num_pmcs = 8,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600189 .pmc_type = PPC_PMC_IBM,
Stephen Rothwell49209602005-10-12 15:55:09 +1000190 .oprofile_cpu_type = "ppc64/power4",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000191 .oprofile_type = PPC_OPROFILE_POWER4,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100192 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100193 .platform = "power4",
Stephen Rothwell49209602005-10-12 15:55:09 +1000194 },
195 { /* Power4+ */
196 .pvr_mask = 0xffff0000,
197 .pvr_value = 0x00380000,
198 .cpu_name = "POWER4+ (gq)",
199 .cpu_features = CPU_FTRS_POWER4,
Paul Mackerrasa7ddc5e2005-11-10 14:29:18 +1100200 .cpu_user_features = COMMON_USER_POWER4,
Stephen Rothwell49209602005-10-12 15:55:09 +1000201 .icache_bsize = 128,
202 .dcache_bsize = 128,
203 .num_pmcs = 8,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600204 .pmc_type = PPC_PMC_IBM,
Stephen Rothwell49209602005-10-12 15:55:09 +1000205 .oprofile_cpu_type = "ppc64/power4",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000206 .oprofile_type = PPC_OPROFILE_POWER4,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100207 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100208 .platform = "power4",
Stephen Rothwell49209602005-10-12 15:55:09 +1000209 },
210 { /* PPC970 */
211 .pvr_mask = 0xffff0000,
212 .pvr_value = 0x00390000,
213 .cpu_name = "PPC970",
214 .cpu_features = CPU_FTRS_PPC970,
Paul Mackerrasa7ddc5e2005-11-10 14:29:18 +1100215 .cpu_user_features = COMMON_USER_POWER4 |
Stephen Rothwell49209602005-10-12 15:55:09 +1000216 PPC_FEATURE_HAS_ALTIVEC_COMP,
217 .icache_bsize = 128,
218 .dcache_bsize = 128,
219 .num_pmcs = 8,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600220 .pmc_type = PPC_PMC_IBM,
Stephen Rothwell49209602005-10-12 15:55:09 +1000221 .cpu_setup = __setup_cpu_ppc970,
Olof Johanssonf39b7a52006-08-11 00:07:08 -0500222 .cpu_restore = __restore_cpu_ppc970,
Stephen Rothwell49209602005-10-12 15:55:09 +1000223 .oprofile_cpu_type = "ppc64/970",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000224 .oprofile_type = PPC_OPROFILE_POWER4,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100225 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100226 .platform = "ppc970",
Stephen Rothwell49209602005-10-12 15:55:09 +1000227 },
Stephen Rothwell49209602005-10-12 15:55:09 +1000228 { /* PPC970FX */
229 .pvr_mask = 0xffff0000,
230 .pvr_value = 0x003c0000,
231 .cpu_name = "PPC970FX",
Stephen Rothwell49209602005-10-12 15:55:09 +1000232 .cpu_features = CPU_FTRS_PPC970,
Paul Mackerrasa7ddc5e2005-11-10 14:29:18 +1100233 .cpu_user_features = COMMON_USER_POWER4 |
Stephen Rothwell49209602005-10-12 15:55:09 +1000234 PPC_FEATURE_HAS_ALTIVEC_COMP,
235 .icache_bsize = 128,
236 .dcache_bsize = 128,
237 .num_pmcs = 8,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600238 .pmc_type = PPC_PMC_IBM,
Stephen Rothwell49209602005-10-12 15:55:09 +1000239 .cpu_setup = __setup_cpu_ppc970,
Olof Johanssonf39b7a52006-08-11 00:07:08 -0500240 .cpu_restore = __restore_cpu_ppc970,
Stephen Rothwell49209602005-10-12 15:55:09 +1000241 .oprofile_cpu_type = "ppc64/970",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000242 .oprofile_type = PPC_OPROFILE_POWER4,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100243 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100244 .platform = "ppc970",
Stephen Rothwell49209602005-10-12 15:55:09 +1000245 },
Olof Johansson3546e812007-02-26 00:35:14 -0600246 { /* PPC970MP DD1.0 - no DEEPNAP, use regular 970 init */
247 .pvr_mask = 0xffffffff,
248 .pvr_value = 0x00440100,
249 .cpu_name = "PPC970MP",
250 .cpu_features = CPU_FTRS_PPC970,
251 .cpu_user_features = COMMON_USER_POWER4 |
252 PPC_FEATURE_HAS_ALTIVEC_COMP,
253 .icache_bsize = 128,
254 .dcache_bsize = 128,
255 .num_pmcs = 8,
Anton Blanchard2fae4982007-05-19 15:22:41 +1000256 .pmc_type = PPC_PMC_IBM,
Olof Johansson3546e812007-02-26 00:35:14 -0600257 .cpu_setup = __setup_cpu_ppc970,
258 .cpu_restore = __restore_cpu_ppc970,
259 .oprofile_cpu_type = "ppc64/970MP",
260 .oprofile_type = PPC_OPROFILE_POWER4,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100261 .machine_check = machine_check_generic,
Olof Johansson3546e812007-02-26 00:35:14 -0600262 .platform = "ppc970",
263 },
Stephen Rothwell49209602005-10-12 15:55:09 +1000264 { /* PPC970MP */
265 .pvr_mask = 0xffff0000,
266 .pvr_value = 0x00440000,
267 .cpu_name = "PPC970MP",
268 .cpu_features = CPU_FTRS_PPC970,
Paul Mackerrasa7ddc5e2005-11-10 14:29:18 +1100269 .cpu_user_features = COMMON_USER_POWER4 |
Stephen Rothwell49209602005-10-12 15:55:09 +1000270 PPC_FEATURE_HAS_ALTIVEC_COMP,
271 .icache_bsize = 128,
272 .dcache_bsize = 128,
Anton Blanchard87af41b2006-05-05 05:44:26 +1000273 .num_pmcs = 8,
Anton Blanchard2fae4982007-05-19 15:22:41 +1000274 .pmc_type = PPC_PMC_IBM,
Olof Johansson5b43d202006-10-04 23:41:41 -0500275 .cpu_setup = __setup_cpu_ppc970MP,
Olof Johanssonf39b7a52006-08-11 00:07:08 -0500276 .cpu_restore = __restore_cpu_ppc970,
Mike Wolffecb3522006-11-21 14:41:54 -0600277 .oprofile_cpu_type = "ppc64/970MP",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000278 .oprofile_type = PPC_OPROFILE_POWER4,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100279 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100280 .platform = "ppc970",
Stephen Rothwell49209602005-10-12 15:55:09 +1000281 },
Jake Moilanen362ff7b2006-10-18 10:47:22 -0500282 { /* PPC970GX */
283 .pvr_mask = 0xffff0000,
284 .pvr_value = 0x00450000,
285 .cpu_name = "PPC970GX",
286 .cpu_features = CPU_FTRS_PPC970,
287 .cpu_user_features = COMMON_USER_POWER4 |
288 PPC_FEATURE_HAS_ALTIVEC_COMP,
289 .icache_bsize = 128,
290 .dcache_bsize = 128,
291 .num_pmcs = 8,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600292 .pmc_type = PPC_PMC_IBM,
Jake Moilanen362ff7b2006-10-18 10:47:22 -0500293 .cpu_setup = __setup_cpu_ppc970,
294 .oprofile_cpu_type = "ppc64/970",
295 .oprofile_type = PPC_OPROFILE_POWER4,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100296 .machine_check = machine_check_generic,
Jake Moilanen362ff7b2006-10-18 10:47:22 -0500297 .platform = "ppc970",
298 },
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100299 { /* Power5 GR */
Stephen Rothwell49209602005-10-12 15:55:09 +1000300 .pvr_mask = 0xffff0000,
301 .pvr_value = 0x003a0000,
302 .cpu_name = "POWER5 (gr)",
303 .cpu_features = CPU_FTRS_POWER5,
Paul Mackerrasa7ddc5e2005-11-10 14:29:18 +1100304 .cpu_user_features = COMMON_USER_POWER5,
Stephen Rothwell49209602005-10-12 15:55:09 +1000305 .icache_bsize = 128,
306 .dcache_bsize = 128,
307 .num_pmcs = 6,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600308 .pmc_type = PPC_PMC_IBM,
Stephen Rothwell49209602005-10-12 15:55:09 +1000309 .oprofile_cpu_type = "ppc64/power5",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000310 .oprofile_type = PPC_OPROFILE_POWER4,
Michael Neulinge78dbc82006-06-08 14:42:34 +1000311 /* SIHV / SIPR bits are implemented on POWER4+ (GQ)
312 * and above but only works on POWER5 and above
313 */
314 .oprofile_mmcra_sihv = MMCRA_SIHV,
315 .oprofile_mmcra_sipr = MMCRA_SIPR,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100316 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100317 .platform = "power5",
Stephen Rothwell49209602005-10-12 15:55:09 +1000318 },
Mike Wolf31a12ce2007-07-10 13:13:47 -0500319 { /* Power5++ */
320 .pvr_mask = 0xffffff00,
321 .pvr_value = 0x003b0300,
322 .cpu_name = "POWER5+ (gs)",
323 .cpu_features = CPU_FTRS_POWER5,
324 .cpu_user_features = COMMON_USER_POWER5_PLUS,
325 .icache_bsize = 128,
326 .dcache_bsize = 128,
327 .num_pmcs = 6,
328 .oprofile_cpu_type = "ppc64/power5++",
329 .oprofile_type = PPC_OPROFILE_POWER4,
330 .oprofile_mmcra_sihv = MMCRA_SIHV,
331 .oprofile_mmcra_sipr = MMCRA_SIPR,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100332 .machine_check = machine_check_generic,
Mike Wolf31a12ce2007-07-10 13:13:47 -0500333 .platform = "power5+",
334 },
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100335 { /* Power5 GS */
Stephen Rothwell49209602005-10-12 15:55:09 +1000336 .pvr_mask = 0xffff0000,
337 .pvr_value = 0x003b0000,
Anton Blanchard834608f2006-01-09 15:42:30 +1100338 .cpu_name = "POWER5+ (gs)",
Stephen Rothwell49209602005-10-12 15:55:09 +1000339 .cpu_features = CPU_FTRS_POWER5,
Paul Mackerrasa7ddc5e2005-11-10 14:29:18 +1100340 .cpu_user_features = COMMON_USER_POWER5_PLUS,
Stephen Rothwell49209602005-10-12 15:55:09 +1000341 .icache_bsize = 128,
342 .dcache_bsize = 128,
343 .num_pmcs = 6,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600344 .pmc_type = PPC_PMC_IBM,
Anton Blanchard834608f2006-01-09 15:42:30 +1100345 .oprofile_cpu_type = "ppc64/power5+",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000346 .oprofile_type = PPC_OPROFILE_POWER4,
Michael Neulinge78dbc82006-06-08 14:42:34 +1000347 .oprofile_mmcra_sihv = MMCRA_SIHV,
348 .oprofile_mmcra_sipr = MMCRA_SIPR,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100349 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100350 .platform = "power5+",
Stephen Rothwell49209602005-10-12 15:55:09 +1000351 },
Paul Mackerras974a76f2006-11-10 20:38:53 +1100352 { /* POWER6 in P5+ mode; 2.04-compliant processor */
353 .pvr_mask = 0xffffffff,
354 .pvr_value = 0x0f000001,
355 .cpu_name = "POWER5+",
356 .cpu_features = CPU_FTRS_POWER5,
357 .cpu_user_features = COMMON_USER_POWER5_PLUS,
358 .icache_bsize = 128,
359 .dcache_bsize = 128,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100360 .machine_check = machine_check_generic,
Torez Smith79e25ba2008-07-18 06:42:07 +1000361 .oprofile_cpu_type = "ppc64/compat-power5+",
Paul Mackerras974a76f2006-11-10 20:38:53 +1100362 .platform = "power5+",
363 },
Anton Blanchard03054d52006-04-29 09:51:06 +1000364 { /* Power6 */
365 .pvr_mask = 0xffff0000,
366 .pvr_value = 0x003e0000,
Paul Mackerras974a76f2006-11-10 20:38:53 +1100367 .cpu_name = "POWER6 (raw)",
368 .cpu_features = CPU_FTRS_POWER6,
369 .cpu_user_features = COMMON_USER_POWER6 |
370 PPC_FEATURE_POWER6_EXT,
371 .icache_bsize = 128,
372 .dcache_bsize = 128,
373 .num_pmcs = 6,
Anton Blanchard2fae4982007-05-19 15:22:41 +1000374 .pmc_type = PPC_PMC_IBM,
Paul Mackerras974a76f2006-11-10 20:38:53 +1100375 .oprofile_cpu_type = "ppc64/power6",
376 .oprofile_type = PPC_OPROFILE_POWER4,
377 .oprofile_mmcra_sihv = POWER6_MMCRA_SIHV,
378 .oprofile_mmcra_sipr = POWER6_MMCRA_SIPR,
379 .oprofile_mmcra_clear = POWER6_MMCRA_THRM |
380 POWER6_MMCRA_OTHER,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100381 .machine_check = machine_check_generic,
Paul Mackerras974a76f2006-11-10 20:38:53 +1100382 .platform = "power6x",
383 },
384 { /* 2.05-compliant processor, i.e. Power6 "architected" mode */
385 .pvr_mask = 0xffffffff,
386 .pvr_value = 0x0f000002,
387 .cpu_name = "POWER6 (architected)",
Anton Blanchard03054d52006-04-29 09:51:06 +1000388 .cpu_features = CPU_FTRS_POWER6,
389 .cpu_user_features = COMMON_USER_POWER6,
390 .icache_bsize = 128,
391 .dcache_bsize = 128,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100392 .machine_check = machine_check_generic,
Torez Smith79e25ba2008-07-18 06:42:07 +1000393 .oprofile_cpu_type = "ppc64/compat-power6",
Anton Blanchard03054d52006-04-29 09:51:06 +1000394 .platform = "power6",
395 },
Joel Schopp635f5a62008-06-19 06:18:21 +1000396 { /* 2.06-compliant processor, i.e. Power7 "architected" mode */
397 .pvr_mask = 0xffffffff,
398 .pvr_value = 0x0f000003,
399 .cpu_name = "POWER7 (architected)",
400 .cpu_features = CPU_FTRS_POWER7,
401 .cpu_user_features = COMMON_USER_POWER7,
402 .icache_bsize = 128,
403 .dcache_bsize = 128,
404 .machine_check = machine_check_generic,
Torez Smith79e25ba2008-07-18 06:42:07 +1000405 .oprofile_cpu_type = "ppc64/compat-power7",
Joel Schopp635f5a62008-06-19 06:18:21 +1000406 .platform = "power7",
407 },
Michael Neulinge952e6c2008-06-18 10:47:26 +1000408 { /* Power7 */
409 .pvr_mask = 0xffff0000,
410 .pvr_value = 0x003f0000,
Joel Schopp635f5a62008-06-19 06:18:21 +1000411 .cpu_name = "POWER7 (raw)",
Michael Neulinge952e6c2008-06-18 10:47:26 +1000412 .cpu_features = CPU_FTRS_POWER7,
413 .cpu_user_features = COMMON_USER_POWER7,
414 .icache_bsize = 128,
415 .dcache_bsize = 128,
416 .num_pmcs = 6,
417 .pmc_type = PPC_PMC_IBM,
418 .cpu_setup = __setup_cpu_power7,
419 .cpu_restore = __restore_cpu_power7,
420 .oprofile_cpu_type = "ppc64/power7",
421 .oprofile_type = PPC_OPROFILE_POWER4,
422 .oprofile_mmcra_sihv = POWER6_MMCRA_SIHV,
423 .oprofile_mmcra_sipr = POWER6_MMCRA_SIPR,
424 .oprofile_mmcra_clear = POWER6_MMCRA_THRM |
425 POWER6_MMCRA_OTHER,
426 .platform = "power7",
427 },
Arnd Bergmannc902be72006-01-04 19:55:53 +0000428 { /* Cell Broadband Engine */
Stephen Rothwell49209602005-10-12 15:55:09 +1000429 .pvr_mask = 0xffff0000,
430 .pvr_value = 0x00700000,
431 .cpu_name = "Cell Broadband Engine",
432 .cpu_features = CPU_FTRS_CELL,
433 .cpu_user_features = COMMON_USER_PPC64 |
Benjamin Herrenschmidtaa5cb022006-03-01 15:07:07 +1100434 PPC_FEATURE_CELL | PPC_FEATURE_HAS_ALTIVEC_COMP |
435 PPC_FEATURE_SMT,
Stephen Rothwell49209602005-10-12 15:55:09 +1000436 .icache_bsize = 128,
437 .dcache_bsize = 128,
Maynard Johnson18f21902006-11-20 18:45:16 +0100438 .num_pmcs = 4,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600439 .pmc_type = PPC_PMC_IBM,
Maynard Johnson18f21902006-11-20 18:45:16 +0100440 .oprofile_cpu_type = "ppc64/cell-be",
441 .oprofile_type = PPC_OPROFILE_CELL,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100442 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100443 .platform = "ppc-cell-be",
Stephen Rothwell49209602005-10-12 15:55:09 +1000444 },
Olof Johanssonb3ebd1d2006-09-06 14:35:57 -0500445 { /* PA Semi PA6T */
446 .pvr_mask = 0x7fff0000,
447 .pvr_value = 0x00900000,
448 .cpu_name = "PA6T",
449 .cpu_features = CPU_FTRS_PA6T,
450 .cpu_user_features = COMMON_USER_PA6T,
451 .icache_bsize = 64,
452 .dcache_bsize = 64,
453 .num_pmcs = 6,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600454 .pmc_type = PPC_PMC_PA6T,
Olof Johansson11999192007-02-04 16:36:51 -0600455 .cpu_setup = __setup_cpu_pa6t,
456 .cpu_restore = __restore_cpu_pa6t,
Olof Johansson25fc5302007-04-18 16:38:21 +1000457 .oprofile_cpu_type = "ppc64/pa6t",
458 .oprofile_type = PPC_OPROFILE_PA6T,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100459 .machine_check = machine_check_generic,
Olof Johanssonb3ebd1d2006-09-06 14:35:57 -0500460 .platform = "pa6t",
461 },
Stephen Rothwell49209602005-10-12 15:55:09 +1000462 { /* default match */
463 .pvr_mask = 0x00000000,
464 .pvr_value = 0x00000000,
465 .cpu_name = "POWER4 (compatible)",
466 .cpu_features = CPU_FTRS_COMPATIBLE,
467 .cpu_user_features = COMMON_USER_PPC64,
468 .icache_bsize = 128,
469 .dcache_bsize = 128,
470 .num_pmcs = 6,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600471 .pmc_type = PPC_PMC_IBM,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100472 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100473 .platform = "power4",
Stephen Rothwell49209602005-10-12 15:55:09 +1000474 }
475#endif /* CONFIG_PPC64 */
476#ifdef CONFIG_PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477#if CLASSIC_PPC
Stephen Rothwell49209602005-10-12 15:55:09 +1000478 { /* 601 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 .pvr_mask = 0xffff0000,
480 .pvr_value = 0x00010000,
481 .cpu_name = "601",
Kumar Gala10b35d92005-09-23 14:08:58 -0500482 .cpu_features = CPU_FTRS_PPC601,
Stephen Rothwell49209602005-10-12 15:55:09 +1000483 .cpu_user_features = COMMON_USER | PPC_FEATURE_601_INSTR |
Paul Mackerras98599012005-10-22 16:51:34 +1000484 PPC_FEATURE_UNIFIED_CACHE | PPC_FEATURE_NO_TB,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 .icache_bsize = 32,
486 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100487 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100488 .platform = "ppc601",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 },
490 { /* 603 */
491 .pvr_mask = 0xffff0000,
492 .pvr_value = 0x00030000,
493 .cpu_name = "603",
Kumar Gala10b35d92005-09-23 14:08:58 -0500494 .cpu_features = CPU_FTRS_603,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000495 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 .icache_bsize = 32,
497 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100498 .cpu_setup = __setup_cpu_603,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100499 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100500 .platform = "ppc603",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 },
502 { /* 603e */
503 .pvr_mask = 0xffff0000,
504 .pvr_value = 0x00060000,
505 .cpu_name = "603e",
Kumar Gala10b35d92005-09-23 14:08:58 -0500506 .cpu_features = CPU_FTRS_603,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000507 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 .icache_bsize = 32,
509 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100510 .cpu_setup = __setup_cpu_603,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100511 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100512 .platform = "ppc603",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 },
514 { /* 603ev */
515 .pvr_mask = 0xffff0000,
516 .pvr_value = 0x00070000,
517 .cpu_name = "603ev",
Kumar Gala10b35d92005-09-23 14:08:58 -0500518 .cpu_features = CPU_FTRS_603,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000519 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 .icache_bsize = 32,
521 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100522 .cpu_setup = __setup_cpu_603,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100523 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100524 .platform = "ppc603",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 },
526 { /* 604 */
527 .pvr_mask = 0xffff0000,
528 .pvr_value = 0x00040000,
529 .cpu_name = "604",
Kumar Gala10b35d92005-09-23 14:08:58 -0500530 .cpu_features = CPU_FTRS_604,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000531 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 .icache_bsize = 32,
533 .dcache_bsize = 32,
534 .num_pmcs = 2,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100535 .cpu_setup = __setup_cpu_604,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100536 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100537 .platform = "ppc604",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 },
539 { /* 604e */
540 .pvr_mask = 0xfffff000,
541 .pvr_value = 0x00090000,
542 .cpu_name = "604e",
Kumar Gala10b35d92005-09-23 14:08:58 -0500543 .cpu_features = CPU_FTRS_604,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000544 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 .icache_bsize = 32,
546 .dcache_bsize = 32,
547 .num_pmcs = 4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100548 .cpu_setup = __setup_cpu_604,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100549 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100550 .platform = "ppc604",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 },
552 { /* 604r */
553 .pvr_mask = 0xffff0000,
554 .pvr_value = 0x00090000,
555 .cpu_name = "604r",
Kumar Gala10b35d92005-09-23 14:08:58 -0500556 .cpu_features = CPU_FTRS_604,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000557 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 .icache_bsize = 32,
559 .dcache_bsize = 32,
560 .num_pmcs = 4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100561 .cpu_setup = __setup_cpu_604,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100562 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100563 .platform = "ppc604",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 },
565 { /* 604ev */
566 .pvr_mask = 0xffff0000,
567 .pvr_value = 0x000a0000,
568 .cpu_name = "604ev",
Kumar Gala10b35d92005-09-23 14:08:58 -0500569 .cpu_features = CPU_FTRS_604,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000570 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 .icache_bsize = 32,
572 .dcache_bsize = 32,
573 .num_pmcs = 4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100574 .cpu_setup = __setup_cpu_604,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100575 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100576 .platform = "ppc604",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 },
578 { /* 740/750 (0x4202, don't support TAU ?) */
579 .pvr_mask = 0xffffffff,
580 .pvr_value = 0x00084202,
581 .cpu_name = "740/750",
Kumar Gala10b35d92005-09-23 14:08:58 -0500582 .cpu_features = CPU_FTRS_740_NOTAU,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000583 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 .icache_bsize = 32,
585 .dcache_bsize = 32,
586 .num_pmcs = 4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100587 .cpu_setup = __setup_cpu_750,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100588 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100589 .platform = "ppc750",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 { /* 750CX (80100 and 8010x?) */
592 .pvr_mask = 0xfffffff0,
593 .pvr_value = 0x00080100,
594 .cpu_name = "750CX",
Kumar Gala10b35d92005-09-23 14:08:58 -0500595 .cpu_features = CPU_FTRS_750,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000596 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 .icache_bsize = 32,
598 .dcache_bsize = 32,
599 .num_pmcs = 4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100600 .cpu_setup = __setup_cpu_750cx,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100601 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100602 .platform = "ppc750",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 },
604 { /* 750CX (82201 and 82202) */
605 .pvr_mask = 0xfffffff0,
606 .pvr_value = 0x00082200,
607 .cpu_name = "750CX",
Kumar Gala10b35d92005-09-23 14:08:58 -0500608 .cpu_features = CPU_FTRS_750,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000609 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 .icache_bsize = 32,
611 .dcache_bsize = 32,
612 .num_pmcs = 4,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000613 .pmc_type = PPC_PMC_IBM,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100614 .cpu_setup = __setup_cpu_750cx,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100615 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100616 .platform = "ppc750",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 },
618 { /* 750CXe (82214) */
619 .pvr_mask = 0xfffffff0,
620 .pvr_value = 0x00082210,
621 .cpu_name = "750CXe",
Kumar Gala10b35d92005-09-23 14:08:58 -0500622 .cpu_features = CPU_FTRS_750,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000623 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 .icache_bsize = 32,
625 .dcache_bsize = 32,
626 .num_pmcs = 4,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000627 .pmc_type = PPC_PMC_IBM,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100628 .cpu_setup = __setup_cpu_750cx,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100629 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100630 .platform = "ppc750",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 },
Arthur Othieno7c316252005-09-03 15:55:52 -0700632 { /* 750CXe "Gekko" (83214) */
633 .pvr_mask = 0xffffffff,
634 .pvr_value = 0x00083214,
635 .cpu_name = "750CXe",
Kumar Gala10b35d92005-09-23 14:08:58 -0500636 .cpu_features = CPU_FTRS_750,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000637 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Arthur Othieno7c316252005-09-03 15:55:52 -0700638 .icache_bsize = 32,
639 .dcache_bsize = 32,
640 .num_pmcs = 4,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000641 .pmc_type = PPC_PMC_IBM,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100642 .cpu_setup = __setup_cpu_750cx,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100643 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100644 .platform = "ppc750",
Arthur Othieno7c316252005-09-03 15:55:52 -0700645 },
Jake Moilanencfbff8a2006-10-03 14:29:34 -0500646 { /* 750CL */
647 .pvr_mask = 0xfffff0f0,
648 .pvr_value = 0x00087010,
649 .cpu_name = "750CL",
Josh Boyera14c4502007-04-13 04:33:25 +1000650 .cpu_features = CPU_FTRS_750CL,
Jake Moilanencfbff8a2006-10-03 14:29:34 -0500651 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
652 .icache_bsize = 32,
653 .dcache_bsize = 32,
654 .num_pmcs = 4,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000655 .pmc_type = PPC_PMC_IBM,
Josh Boyera14c4502007-04-13 04:33:25 +1000656 .cpu_setup = __setup_cpu_750,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100657 .machine_check = machine_check_generic,
Jake Moilanencfbff8a2006-10-03 14:29:34 -0500658 .platform = "ppc750",
659 },
Arthur Othienoac1ff042005-09-03 15:55:51 -0700660 { /* 745/755 */
661 .pvr_mask = 0xfffff000,
662 .pvr_value = 0x00083000,
663 .cpu_name = "745/755",
Kumar Gala10b35d92005-09-23 14:08:58 -0500664 .cpu_features = CPU_FTRS_750,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000665 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Arthur Othienoac1ff042005-09-03 15:55:51 -0700666 .icache_bsize = 32,
667 .dcache_bsize = 32,
668 .num_pmcs = 4,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000669 .pmc_type = PPC_PMC_IBM,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100670 .cpu_setup = __setup_cpu_750,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100671 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100672 .platform = "ppc750",
Arthur Othienoac1ff042005-09-03 15:55:51 -0700673 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 { /* 750FX rev 1.x */
675 .pvr_mask = 0xffffff00,
676 .pvr_value = 0x70000100,
677 .cpu_name = "750FX",
Kumar Gala10b35d92005-09-23 14:08:58 -0500678 .cpu_features = CPU_FTRS_750FX1,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000679 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 .icache_bsize = 32,
681 .dcache_bsize = 32,
682 .num_pmcs = 4,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000683 .pmc_type = PPC_PMC_IBM,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100684 .cpu_setup = __setup_cpu_750,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100685 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100686 .platform = "ppc750",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 },
688 { /* 750FX rev 2.0 must disable HID0[DPM] */
689 .pvr_mask = 0xffffffff,
690 .pvr_value = 0x70000200,
691 .cpu_name = "750FX",
Kumar Gala10b35d92005-09-23 14:08:58 -0500692 .cpu_features = CPU_FTRS_750FX2,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000693 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 .icache_bsize = 32,
695 .dcache_bsize = 32,
696 .num_pmcs = 4,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000697 .pmc_type = PPC_PMC_IBM,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100698 .cpu_setup = __setup_cpu_750,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100699 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100700 .platform = "ppc750",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 },
702 { /* 750FX (All revs except 2.0) */
703 .pvr_mask = 0xffff0000,
704 .pvr_value = 0x70000000,
705 .cpu_name = "750FX",
Kumar Gala10b35d92005-09-23 14:08:58 -0500706 .cpu_features = CPU_FTRS_750FX,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000707 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 .icache_bsize = 32,
709 .dcache_bsize = 32,
710 .num_pmcs = 4,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000711 .pmc_type = PPC_PMC_IBM,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100712 .cpu_setup = __setup_cpu_750fx,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100713 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100714 .platform = "ppc750",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 },
716 { /* 750GX */
717 .pvr_mask = 0xffff0000,
718 .pvr_value = 0x70020000,
719 .cpu_name = "750GX",
Kumar Gala10b35d92005-09-23 14:08:58 -0500720 .cpu_features = CPU_FTRS_750GX,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000721 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 .icache_bsize = 32,
723 .dcache_bsize = 32,
724 .num_pmcs = 4,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000725 .pmc_type = PPC_PMC_IBM,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100726 .cpu_setup = __setup_cpu_750fx,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100727 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100728 .platform = "ppc750",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 },
730 { /* 740/750 (L2CR bit need fixup for 740) */
731 .pvr_mask = 0xffff0000,
732 .pvr_value = 0x00080000,
733 .cpu_name = "740/750",
Kumar Gala10b35d92005-09-23 14:08:58 -0500734 .cpu_features = CPU_FTRS_740,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000735 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 .icache_bsize = 32,
737 .dcache_bsize = 32,
738 .num_pmcs = 4,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000739 .pmc_type = PPC_PMC_IBM,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100740 .cpu_setup = __setup_cpu_750,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100741 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100742 .platform = "ppc750",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 },
744 { /* 7400 rev 1.1 ? (no TAU) */
745 .pvr_mask = 0xffffffff,
746 .pvr_value = 0x000c1101,
747 .cpu_name = "7400 (1.1)",
Kumar Gala10b35d92005-09-23 14:08:58 -0500748 .cpu_features = CPU_FTRS_7400_NOTAU,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000749 .cpu_user_features = COMMON_USER |
750 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 .icache_bsize = 32,
752 .dcache_bsize = 32,
753 .num_pmcs = 4,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000754 .pmc_type = PPC_PMC_G4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100755 .cpu_setup = __setup_cpu_7400,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100756 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100757 .platform = "ppc7400",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 },
759 { /* 7400 */
760 .pvr_mask = 0xffff0000,
761 .pvr_value = 0x000c0000,
762 .cpu_name = "7400",
Kumar Gala10b35d92005-09-23 14:08:58 -0500763 .cpu_features = CPU_FTRS_7400,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000764 .cpu_user_features = COMMON_USER |
765 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 .icache_bsize = 32,
767 .dcache_bsize = 32,
768 .num_pmcs = 4,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000769 .pmc_type = PPC_PMC_G4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100770 .cpu_setup = __setup_cpu_7400,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100771 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100772 .platform = "ppc7400",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 },
774 { /* 7410 */
775 .pvr_mask = 0xffff0000,
776 .pvr_value = 0x800c0000,
777 .cpu_name = "7410",
Kumar Gala10b35d92005-09-23 14:08:58 -0500778 .cpu_features = CPU_FTRS_7400,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000779 .cpu_user_features = COMMON_USER |
780 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 .icache_bsize = 32,
782 .dcache_bsize = 32,
783 .num_pmcs = 4,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000784 .pmc_type = PPC_PMC_G4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100785 .cpu_setup = __setup_cpu_7410,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100786 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100787 .platform = "ppc7400",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 },
789 { /* 7450 2.0 - no doze/nap */
790 .pvr_mask = 0xffffffff,
791 .pvr_value = 0x80000200,
792 .cpu_name = "7450",
Kumar Gala10b35d92005-09-23 14:08:58 -0500793 .cpu_features = CPU_FTRS_7450_20,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000794 .cpu_user_features = COMMON_USER |
795 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 .icache_bsize = 32,
797 .dcache_bsize = 32,
798 .num_pmcs = 6,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000799 .pmc_type = PPC_PMC_G4,
Andy Fleming555d97a2005-12-15 20:02:04 -0600800 .cpu_setup = __setup_cpu_745x,
Andy Fleming555d97a2005-12-15 20:02:04 -0600801 .oprofile_cpu_type = "ppc/7450",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000802 .oprofile_type = PPC_OPROFILE_G4,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100803 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100804 .platform = "ppc7450",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 },
806 { /* 7450 2.1 */
807 .pvr_mask = 0xffffffff,
808 .pvr_value = 0x80000201,
809 .cpu_name = "7450",
Kumar Gala10b35d92005-09-23 14:08:58 -0500810 .cpu_features = CPU_FTRS_7450_21,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000811 .cpu_user_features = COMMON_USER |
812 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 .icache_bsize = 32,
814 .dcache_bsize = 32,
815 .num_pmcs = 6,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000816 .pmc_type = PPC_PMC_G4,
Andy Fleming555d97a2005-12-15 20:02:04 -0600817 .cpu_setup = __setup_cpu_745x,
Andy Fleming555d97a2005-12-15 20:02:04 -0600818 .oprofile_cpu_type = "ppc/7450",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000819 .oprofile_type = PPC_OPROFILE_G4,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100820 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100821 .platform = "ppc7450",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 },
823 { /* 7450 2.3 and newer */
824 .pvr_mask = 0xffff0000,
825 .pvr_value = 0x80000000,
826 .cpu_name = "7450",
Kumar Gala10b35d92005-09-23 14:08:58 -0500827 .cpu_features = CPU_FTRS_7450_23,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000828 .cpu_user_features = COMMON_USER |
829 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 .icache_bsize = 32,
831 .dcache_bsize = 32,
832 .num_pmcs = 6,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000833 .pmc_type = PPC_PMC_G4,
Andy Fleming555d97a2005-12-15 20:02:04 -0600834 .cpu_setup = __setup_cpu_745x,
Andy Fleming555d97a2005-12-15 20:02:04 -0600835 .oprofile_cpu_type = "ppc/7450",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000836 .oprofile_type = PPC_OPROFILE_G4,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100837 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100838 .platform = "ppc7450",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 },
840 { /* 7455 rev 1.x */
841 .pvr_mask = 0xffffff00,
842 .pvr_value = 0x80010100,
843 .cpu_name = "7455",
Kumar Gala10b35d92005-09-23 14:08:58 -0500844 .cpu_features = CPU_FTRS_7455_1,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000845 .cpu_user_features = COMMON_USER |
846 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 .icache_bsize = 32,
848 .dcache_bsize = 32,
849 .num_pmcs = 6,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000850 .pmc_type = PPC_PMC_G4,
Andy Fleming555d97a2005-12-15 20:02:04 -0600851 .cpu_setup = __setup_cpu_745x,
Andy Fleming555d97a2005-12-15 20:02:04 -0600852 .oprofile_cpu_type = "ppc/7450",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000853 .oprofile_type = PPC_OPROFILE_G4,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100854 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100855 .platform = "ppc7450",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 },
857 { /* 7455 rev 2.0 */
858 .pvr_mask = 0xffffffff,
859 .pvr_value = 0x80010200,
860 .cpu_name = "7455",
Kumar Gala10b35d92005-09-23 14:08:58 -0500861 .cpu_features = CPU_FTRS_7455_20,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000862 .cpu_user_features = COMMON_USER |
863 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 .icache_bsize = 32,
865 .dcache_bsize = 32,
866 .num_pmcs = 6,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000867 .pmc_type = PPC_PMC_G4,
Andy Fleming555d97a2005-12-15 20:02:04 -0600868 .cpu_setup = __setup_cpu_745x,
Andy Fleming555d97a2005-12-15 20:02:04 -0600869 .oprofile_cpu_type = "ppc/7450",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000870 .oprofile_type = PPC_OPROFILE_G4,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100871 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100872 .platform = "ppc7450",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 },
874 { /* 7455 others */
875 .pvr_mask = 0xffff0000,
876 .pvr_value = 0x80010000,
877 .cpu_name = "7455",
Kumar Gala10b35d92005-09-23 14:08:58 -0500878 .cpu_features = CPU_FTRS_7455,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000879 .cpu_user_features = COMMON_USER |
880 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 .icache_bsize = 32,
882 .dcache_bsize = 32,
883 .num_pmcs = 6,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000884 .pmc_type = PPC_PMC_G4,
Andy Fleming555d97a2005-12-15 20:02:04 -0600885 .cpu_setup = __setup_cpu_745x,
Andy Fleming555d97a2005-12-15 20:02:04 -0600886 .oprofile_cpu_type = "ppc/7450",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000887 .oprofile_type = PPC_OPROFILE_G4,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100888 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100889 .platform = "ppc7450",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 },
891 { /* 7447/7457 Rev 1.0 */
892 .pvr_mask = 0xffffffff,
893 .pvr_value = 0x80020100,
894 .cpu_name = "7447/7457",
Kumar Gala10b35d92005-09-23 14:08:58 -0500895 .cpu_features = CPU_FTRS_7447_10,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000896 .cpu_user_features = COMMON_USER |
897 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 .icache_bsize = 32,
899 .dcache_bsize = 32,
900 .num_pmcs = 6,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000901 .pmc_type = PPC_PMC_G4,
Andy Fleming555d97a2005-12-15 20:02:04 -0600902 .cpu_setup = __setup_cpu_745x,
Andy Fleming555d97a2005-12-15 20:02:04 -0600903 .oprofile_cpu_type = "ppc/7450",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000904 .oprofile_type = PPC_OPROFILE_G4,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100905 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100906 .platform = "ppc7450",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 },
908 { /* 7447/7457 Rev 1.1 */
909 .pvr_mask = 0xffffffff,
910 .pvr_value = 0x80020101,
911 .cpu_name = "7447/7457",
Kumar Gala10b35d92005-09-23 14:08:58 -0500912 .cpu_features = CPU_FTRS_7447_10,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000913 .cpu_user_features = COMMON_USER |
914 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 .icache_bsize = 32,
916 .dcache_bsize = 32,
917 .num_pmcs = 6,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000918 .pmc_type = PPC_PMC_G4,
Andy Fleming555d97a2005-12-15 20:02:04 -0600919 .cpu_setup = __setup_cpu_745x,
Andy Fleming555d97a2005-12-15 20:02:04 -0600920 .oprofile_cpu_type = "ppc/7450",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000921 .oprofile_type = PPC_OPROFILE_G4,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100922 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100923 .platform = "ppc7450",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 },
925 { /* 7447/7457 Rev 1.2 and later */
926 .pvr_mask = 0xffff0000,
927 .pvr_value = 0x80020000,
928 .cpu_name = "7447/7457",
Kumar Gala10b35d92005-09-23 14:08:58 -0500929 .cpu_features = CPU_FTRS_7447,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000930 .cpu_user_features = COMMON_USER | PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 .icache_bsize = 32,
932 .dcache_bsize = 32,
933 .num_pmcs = 6,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000934 .pmc_type = PPC_PMC_G4,
Andy Fleming555d97a2005-12-15 20:02:04 -0600935 .cpu_setup = __setup_cpu_745x,
Andy Fleming555d97a2005-12-15 20:02:04 -0600936 .oprofile_cpu_type = "ppc/7450",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000937 .oprofile_type = PPC_OPROFILE_G4,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100938 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100939 .platform = "ppc7450",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 },
941 { /* 7447A */
942 .pvr_mask = 0xffff0000,
943 .pvr_value = 0x80030000,
944 .cpu_name = "7447A",
Kumar Gala10b35d92005-09-23 14:08:58 -0500945 .cpu_features = CPU_FTRS_7447A,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000946 .cpu_user_features = COMMON_USER |
947 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 .icache_bsize = 32,
949 .dcache_bsize = 32,
950 .num_pmcs = 6,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000951 .pmc_type = PPC_PMC_G4,
Andy Fleming555d97a2005-12-15 20:02:04 -0600952 .cpu_setup = __setup_cpu_745x,
Andy Fleming555d97a2005-12-15 20:02:04 -0600953 .oprofile_cpu_type = "ppc/7450",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000954 .oprofile_type = PPC_OPROFILE_G4,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100955 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100956 .platform = "ppc7450",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 },
Kumar Galabbde6302005-09-03 15:55:55 -0700958 { /* 7448 */
959 .pvr_mask = 0xffff0000,
960 .pvr_value = 0x80040000,
961 .cpu_name = "7448",
James.Yang3d372542007-05-02 16:34:43 -0500962 .cpu_features = CPU_FTRS_7448,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000963 .cpu_user_features = COMMON_USER |
964 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Kumar Galabbde6302005-09-03 15:55:55 -0700965 .icache_bsize = 32,
966 .dcache_bsize = 32,
967 .num_pmcs = 6,
Benjamin Herrenschmidtb950bdd2008-08-18 14:23:51 +1000968 .pmc_type = PPC_PMC_G4,
Andy Fleming555d97a2005-12-15 20:02:04 -0600969 .cpu_setup = __setup_cpu_745x,
Andy Fleming555d97a2005-12-15 20:02:04 -0600970 .oprofile_cpu_type = "ppc/7450",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000971 .oprofile_type = PPC_OPROFILE_G4,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100972 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100973 .platform = "ppc7450",
Kumar Galabbde6302005-09-03 15:55:55 -0700974 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 { /* 82xx (8240, 8245, 8260 are all 603e cores) */
976 .pvr_mask = 0x7fff0000,
977 .pvr_value = 0x00810000,
978 .cpu_name = "82xx",
Kumar Gala10b35d92005-09-23 14:08:58 -0500979 .cpu_features = CPU_FTRS_82XX,
Stephen Rothwell49209602005-10-12 15:55:09 +1000980 .cpu_user_features = COMMON_USER,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 .icache_bsize = 32,
982 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100983 .cpu_setup = __setup_cpu_603,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100984 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100985 .platform = "ppc603",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 },
987 { /* All G2_LE (603e core, plus some) have the same pvr */
988 .pvr_mask = 0x7fff0000,
989 .pvr_value = 0x00820000,
990 .cpu_name = "G2_LE",
Kumar Gala10b35d92005-09-23 14:08:58 -0500991 .cpu_features = CPU_FTRS_G2_LE,
Stephen Rothwell49209602005-10-12 15:55:09 +1000992 .cpu_user_features = COMMON_USER,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 .icache_bsize = 32,
994 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100995 .cpu_setup = __setup_cpu_603,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100996 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100997 .platform = "ppc603",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 },
Kim Phillips6c4a2502006-10-02 20:10:24 -0500999 { /* e300c1 (a 603e core, plus some) on 83xx */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 .pvr_mask = 0x7fff0000,
1001 .pvr_value = 0x00830000,
Kim Phillips6c4a2502006-10-02 20:10:24 -05001002 .cpu_name = "e300c1",
Kumar Gala10b35d92005-09-23 14:08:58 -05001003 .cpu_features = CPU_FTRS_E300,
Stephen Rothwell49209602005-10-12 15:55:09 +10001004 .cpu_user_features = COMMON_USER,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 .icache_bsize = 32,
1006 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001007 .cpu_setup = __setup_cpu_603,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001008 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001009 .platform = "ppc603",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 },
Kim Phillips6c4a2502006-10-02 20:10:24 -05001011 { /* e300c2 (an e300c1 core, plus some, minus FPU) on 83xx */
1012 .pvr_mask = 0x7fff0000,
1013 .pvr_value = 0x00840000,
1014 .cpu_name = "e300c2",
Kim Phillipsaa42c692006-12-08 02:43:30 -06001015 .cpu_features = CPU_FTRS_E300C2,
Kim Phillips6c4a2502006-10-02 20:10:24 -05001016 .cpu_user_features = PPC_FEATURE_32 | PPC_FEATURE_HAS_MMU,
1017 .icache_bsize = 32,
1018 .dcache_bsize = 32,
1019 .cpu_setup = __setup_cpu_603,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001020 .machine_check = machine_check_generic,
Kim Phillips6c4a2502006-10-02 20:10:24 -05001021 .platform = "ppc603",
1022 },
Li Yanga58d5242007-10-19 19:38:42 +08001023 { /* e300c3 (e300c1, plus one IU, half cache size) on 83xx */
Scott Wood57933f82006-12-01 12:57:05 -06001024 .pvr_mask = 0x7fff0000,
1025 .pvr_value = 0x00850000,
1026 .cpu_name = "e300c3",
1027 .cpu_features = CPU_FTRS_E300,
1028 .cpu_user_features = COMMON_USER,
1029 .icache_bsize = 32,
1030 .dcache_bsize = 32,
1031 .cpu_setup = __setup_cpu_603,
Andy Fleming1347a2c12008-02-04 18:28:07 -06001032 .num_pmcs = 4,
1033 .oprofile_cpu_type = "ppc/e300",
1034 .oprofile_type = PPC_OPROFILE_FSL_EMB,
Scott Wood57933f82006-12-01 12:57:05 -06001035 .platform = "ppc603",
1036 },
Li Yanga58d5242007-10-19 19:38:42 +08001037 { /* e300c4 (e300c1, plus one IU) */
1038 .pvr_mask = 0x7fff0000,
1039 .pvr_value = 0x00860000,
1040 .cpu_name = "e300c4",
1041 .cpu_features = CPU_FTRS_E300,
1042 .cpu_user_features = COMMON_USER,
1043 .icache_bsize = 32,
1044 .dcache_bsize = 32,
1045 .cpu_setup = __setup_cpu_603,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001046 .machine_check = machine_check_generic,
Andy Fleming1347a2c12008-02-04 18:28:07 -06001047 .num_pmcs = 4,
1048 .oprofile_cpu_type = "ppc/e300",
1049 .oprofile_type = PPC_OPROFILE_FSL_EMB,
Li Yanga58d5242007-10-19 19:38:42 +08001050 .platform = "ppc603",
1051 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 { /* default match, we assume split I/D cache & TB (non-601)... */
1053 .pvr_mask = 0x00000000,
1054 .pvr_value = 0x00000000,
1055 .cpu_name = "(generic PPC)",
Kumar Gala10b35d92005-09-23 14:08:58 -05001056 .cpu_features = CPU_FTRS_CLASSIC32,
Stephen Rothwell49209602005-10-12 15:55:09 +10001057 .cpu_user_features = COMMON_USER,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 .icache_bsize = 32,
1059 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001060 .machine_check = machine_check_generic,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001061 .platform = "ppc603",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 },
1063#endif /* CLASSIC_PPC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064#ifdef CONFIG_8xx
1065 { /* 8xx */
1066 .pvr_mask = 0xffff0000,
1067 .pvr_value = 0x00500000,
1068 .cpu_name = "8xx",
1069 /* CPU_FTR_MAYBE_CAN_DOZE is possible,
1070 * if the 8xx code is there.... */
Kumar Gala10b35d92005-09-23 14:08:58 -05001071 .cpu_features = CPU_FTRS_8XX,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 .cpu_user_features = PPC_FEATURE_32 | PPC_FEATURE_HAS_MMU,
1073 .icache_bsize = 16,
1074 .dcache_bsize = 16,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001075 .platform = "ppc823",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 },
1077#endif /* CONFIG_8xx */
1078#ifdef CONFIG_40x
1079 { /* 403GC */
1080 .pvr_mask = 0xffffff00,
1081 .pvr_value = 0x00200200,
1082 .cpu_name = "403GC",
Kumar Gala10b35d92005-09-23 14:08:58 -05001083 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 .cpu_user_features = PPC_FEATURE_32 | PPC_FEATURE_HAS_MMU,
1085 .icache_bsize = 16,
1086 .dcache_bsize = 16,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001087 .machine_check = machine_check_4xx,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001088 .platform = "ppc403",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 },
1090 { /* 403GCX */
1091 .pvr_mask = 0xffffff00,
1092 .pvr_value = 0x00201400,
1093 .cpu_name = "403GCX",
Kumar Gala10b35d92005-09-23 14:08:58 -05001094 .cpu_features = CPU_FTRS_40X,
Paul Mackerras98599012005-10-22 16:51:34 +10001095 .cpu_user_features = PPC_FEATURE_32 |
1096 PPC_FEATURE_HAS_MMU | PPC_FEATURE_NO_TB,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 .icache_bsize = 16,
1098 .dcache_bsize = 16,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001099 .machine_check = machine_check_4xx,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001100 .platform = "ppc403",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 },
1102 { /* 403G ?? */
1103 .pvr_mask = 0xffff0000,
1104 .pvr_value = 0x00200000,
1105 .cpu_name = "403G ??",
Kumar Gala10b35d92005-09-23 14:08:58 -05001106 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 .cpu_user_features = PPC_FEATURE_32 | PPC_FEATURE_HAS_MMU,
1108 .icache_bsize = 16,
1109 .dcache_bsize = 16,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001110 .machine_check = machine_check_4xx,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001111 .platform = "ppc403",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 },
1113 { /* 405GP */
1114 .pvr_mask = 0xffff0000,
1115 .pvr_value = 0x40110000,
1116 .cpu_name = "405GP",
Kumar Gala10b35d92005-09-23 14:08:58 -05001117 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 .cpu_user_features = PPC_FEATURE_32 |
1119 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
1120 .icache_bsize = 32,
1121 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001122 .machine_check = machine_check_4xx,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001123 .platform = "ppc405",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 },
1125 { /* STB 03xxx */
1126 .pvr_mask = 0xffff0000,
1127 .pvr_value = 0x40130000,
1128 .cpu_name = "STB03xxx",
Kumar Gala10b35d92005-09-23 14:08:58 -05001129 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 .cpu_user_features = PPC_FEATURE_32 |
1131 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
1132 .icache_bsize = 32,
1133 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001134 .machine_check = machine_check_4xx,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001135 .platform = "ppc405",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 },
1137 { /* STB 04xxx */
1138 .pvr_mask = 0xffff0000,
1139 .pvr_value = 0x41810000,
1140 .cpu_name = "STB04xxx",
Kumar Gala10b35d92005-09-23 14:08:58 -05001141 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 .cpu_user_features = PPC_FEATURE_32 |
1143 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
1144 .icache_bsize = 32,
1145 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001146 .machine_check = machine_check_4xx,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001147 .platform = "ppc405",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 },
1149 { /* NP405L */
1150 .pvr_mask = 0xffff0000,
1151 .pvr_value = 0x41610000,
1152 .cpu_name = "NP405L",
Kumar Gala10b35d92005-09-23 14:08:58 -05001153 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 .cpu_user_features = PPC_FEATURE_32 |
1155 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
1156 .icache_bsize = 32,
1157 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001158 .machine_check = machine_check_4xx,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001159 .platform = "ppc405",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 },
1161 { /* NP4GS3 */
1162 .pvr_mask = 0xffff0000,
1163 .pvr_value = 0x40B10000,
1164 .cpu_name = "NP4GS3",
Kumar Gala10b35d92005-09-23 14:08:58 -05001165 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 .cpu_user_features = PPC_FEATURE_32 |
1167 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
1168 .icache_bsize = 32,
1169 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001170 .machine_check = machine_check_4xx,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001171 .platform = "ppc405",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 },
1173 { /* NP405H */
1174 .pvr_mask = 0xffff0000,
1175 .pvr_value = 0x41410000,
1176 .cpu_name = "NP405H",
Kumar Gala10b35d92005-09-23 14:08:58 -05001177 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 .cpu_user_features = PPC_FEATURE_32 |
1179 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
1180 .icache_bsize = 32,
1181 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001182 .machine_check = machine_check_4xx,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001183 .platform = "ppc405",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 },
1185 { /* 405GPr */
1186 .pvr_mask = 0xffff0000,
1187 .pvr_value = 0x50910000,
1188 .cpu_name = "405GPr",
Kumar Gala10b35d92005-09-23 14:08:58 -05001189 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 .cpu_user_features = PPC_FEATURE_32 |
1191 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
1192 .icache_bsize = 32,
1193 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001194 .machine_check = machine_check_4xx,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001195 .platform = "ppc405",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 },
1197 { /* STBx25xx */
1198 .pvr_mask = 0xffff0000,
1199 .pvr_value = 0x51510000,
1200 .cpu_name = "STBx25xx",
Kumar Gala10b35d92005-09-23 14:08:58 -05001201 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 .cpu_user_features = PPC_FEATURE_32 |
1203 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
1204 .icache_bsize = 32,
1205 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001206 .machine_check = machine_check_4xx,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001207 .platform = "ppc405",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 },
1209 { /* 405LP */
1210 .pvr_mask = 0xffff0000,
1211 .pvr_value = 0x41F10000,
1212 .cpu_name = "405LP",
Kumar Gala10b35d92005-09-23 14:08:58 -05001213 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 .cpu_user_features = PPC_FEATURE_32 | PPC_FEATURE_HAS_MMU,
1215 .icache_bsize = 32,
1216 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001217 .machine_check = machine_check_4xx,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001218 .platform = "ppc405",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 },
1220 { /* Xilinx Virtex-II Pro */
Grant C. Likely72646c72006-01-19 01:13:20 -07001221 .pvr_mask = 0xfffff000,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 .pvr_value = 0x20010000,
1223 .cpu_name = "Virtex-II Pro",
Kumar Gala10b35d92005-09-23 14:08:58 -05001224 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 .cpu_user_features = PPC_FEATURE_32 |
1226 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
1227 .icache_bsize = 32,
1228 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001229 .machine_check = machine_check_4xx,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001230 .platform = "ppc405",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 },
Grant C. Likely72646c72006-01-19 01:13:20 -07001232 { /* Xilinx Virtex-4 FX */
1233 .pvr_mask = 0xfffff000,
1234 .pvr_value = 0x20011000,
1235 .cpu_name = "Virtex-4 FX",
1236 .cpu_features = CPU_FTRS_40X,
1237 .cpu_user_features = PPC_FEATURE_32 |
1238 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
1239 .icache_bsize = 32,
1240 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001241 .machine_check = machine_check_4xx,
Peter Bergner838fdb42006-09-14 14:18:38 -05001242 .platform = "ppc405",
Grant C. Likely72646c72006-01-19 01:13:20 -07001243 },
Eugene Suroveginad95d602005-06-07 13:22:09 -07001244 { /* 405EP */
1245 .pvr_mask = 0xffff0000,
1246 .pvr_value = 0x51210000,
1247 .cpu_name = "405EP",
Kumar Gala10b35d92005-09-23 14:08:58 -05001248 .cpu_features = CPU_FTRS_40X,
Eugene Suroveginad95d602005-06-07 13:22:09 -07001249 .cpu_user_features = PPC_FEATURE_32 |
1250 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
1251 .icache_bsize = 32,
1252 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001253 .machine_check = machine_check_4xx,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001254 .platform = "ppc405",
Eugene Suroveginad95d602005-06-07 13:22:09 -07001255 },
Stefan Roese5d8476c2007-10-11 22:08:14 +10001256 { /* 405EX */
Stefan Roeseb676d842008-01-15 18:09:15 +11001257 .pvr_mask = 0xffff0004,
1258 .pvr_value = 0x12910004,
Stefan Roese5d8476c2007-10-11 22:08:14 +10001259 .cpu_name = "405EX",
1260 .cpu_features = CPU_FTRS_40X,
1261 .cpu_user_features = PPC_FEATURE_32 |
1262 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
1263 .icache_bsize = 32,
1264 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001265 .machine_check = machine_check_4xx,
Stefan Roese5d8476c2007-10-11 22:08:14 +10001266 .platform = "ppc405",
1267 },
Stefan Roeseb676d842008-01-15 18:09:15 +11001268 { /* 405EXr */
1269 .pvr_mask = 0xffff0004,
1270 .pvr_value = 0x12910000,
1271 .cpu_name = "405EXr",
1272 .cpu_features = CPU_FTRS_40X,
1273 .cpu_user_features = PPC_FEATURE_32 |
1274 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
1275 .icache_bsize = 32,
1276 .dcache_bsize = 32,
1277 .machine_check = machine_check_4xx,
1278 .platform = "ppc405",
1279 },
Josh Boyerdf8f71f2008-10-09 08:56:38 -04001280 {
1281 /* 405EZ */
1282 .pvr_mask = 0xffff0000,
1283 .pvr_value = 0x41510000,
1284 .cpu_name = "405EZ",
1285 .cpu_features = CPU_FTRS_40X,
1286 .cpu_user_features = PPC_FEATURE_32 |
1287 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
1288 .icache_bsize = 32,
1289 .dcache_bsize = 32,
1290 .machine_check = machine_check_4xx,
1291 .platform = "ppc405",
1292 },
Benjamin Herrenschmidt76bc080e2008-05-05 15:22:27 +10001293 { /* default match */
1294 .pvr_mask = 0x00000000,
1295 .pvr_value = 0x00000000,
1296 .cpu_name = "(generic 40x PPC)",
1297 .cpu_features = CPU_FTRS_40X,
1298 .cpu_user_features = PPC_FEATURE_32 |
1299 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
1300 .icache_bsize = 32,
1301 .dcache_bsize = 32,
1302 .machine_check = machine_check_4xx,
1303 .platform = "ppc405",
1304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
1306#endif /* CONFIG_40x */
1307#ifdef CONFIG_44x
Matt Porterc9cf73a2005-07-31 22:34:52 -07001308 {
1309 .pvr_mask = 0xf0000fff,
1310 .pvr_value = 0x40000850,
Valentine Barshakd1dfc352007-10-26 04:16:40 +10001311 .cpu_name = "440GR Rev. A",
1312 .cpu_features = CPU_FTRS_44X,
1313 .cpu_user_features = COMMON_USER_BOOKE,
1314 .icache_bsize = 32,
1315 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001316 .machine_check = machine_check_4xx,
Valentine Barshakd1dfc352007-10-26 04:16:40 +10001317 .platform = "ppc440",
1318 },
1319 { /* Use logical PVR for 440EP (logical pvr = pvr | 0x8) */
1320 .pvr_mask = 0xf0000fff,
1321 .pvr_value = 0x40000858,
Matt Porterc9cf73a2005-07-31 22:34:52 -07001322 .cpu_name = "440EP Rev. A",
Kumar Gala10b35d92005-09-23 14:08:58 -05001323 .cpu_features = CPU_FTRS_44X,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001324 .cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU,
Matt Porterc9cf73a2005-07-31 22:34:52 -07001325 .icache_bsize = 32,
1326 .dcache_bsize = 32,
Valentine Barshak81127532007-09-22 00:46:57 +10001327 .cpu_setup = __setup_cpu_440ep,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001328 .machine_check = machine_check_4xx,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001329 .platform = "ppc440",
Matt Porterc9cf73a2005-07-31 22:34:52 -07001330 },
1331 {
1332 .pvr_mask = 0xf0000fff,
1333 .pvr_value = 0x400008d3,
Valentine Barshakd1dfc352007-10-26 04:16:40 +10001334 .cpu_name = "440GR Rev. B",
1335 .cpu_features = CPU_FTRS_44X,
1336 .cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU,
1337 .icache_bsize = 32,
1338 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001339 .machine_check = machine_check_4xx,
Valentine Barshakd1dfc352007-10-26 04:16:40 +10001340 .platform = "ppc440",
1341 },
Sean MacLennan3f8fc3e2008-01-10 07:25:58 +11001342 { /* Matches both physical and logical PVR for 440EP (logical pvr = pvr | 0x8) */
1343 .pvr_mask = 0xf0000ff7,
1344 .pvr_value = 0x400008d4,
1345 .cpu_name = "440EP Rev. C",
1346 .cpu_features = CPU_FTRS_44X,
1347 .cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU,
1348 .icache_bsize = 32,
1349 .dcache_bsize = 32,
1350 .cpu_setup = __setup_cpu_440ep,
1351 .machine_check = machine_check_4xx,
1352 .platform = "ppc440",
1353 },
Valentine Barshakd1dfc352007-10-26 04:16:40 +10001354 { /* Use logical PVR for 440EP (logical pvr = pvr | 0x8) */
1355 .pvr_mask = 0xf0000fff,
1356 .pvr_value = 0x400008db,
Matt Porterc9cf73a2005-07-31 22:34:52 -07001357 .cpu_name = "440EP Rev. B",
Kumar Gala10b35d92005-09-23 14:08:58 -05001358 .cpu_features = CPU_FTRS_44X,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001359 .cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU,
Matt Porterc9cf73a2005-07-31 22:34:52 -07001360 .icache_bsize = 32,
1361 .dcache_bsize = 32,
Valentine Barshak81127532007-09-22 00:46:57 +10001362 .cpu_setup = __setup_cpu_440ep,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001363 .machine_check = machine_check_4xx,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001364 .platform = "ppc440",
Matt Porterc9cf73a2005-07-31 22:34:52 -07001365 },
Valentine Barshak15fc9932007-08-29 17:40:30 +04001366 { /* 440GRX */
1367 .pvr_mask = 0xf0000ffb,
Valentine Barshakd1dfc352007-10-26 04:16:40 +10001368 .pvr_value = 0x200008D0,
Valentine Barshak15fc9932007-08-29 17:40:30 +04001369 .cpu_name = "440GRX",
1370 .cpu_features = CPU_FTRS_44X,
1371 .cpu_user_features = COMMON_USER_BOOKE,
1372 .icache_bsize = 32,
1373 .dcache_bsize = 32,
Valentine Barshak340ffd22007-09-22 00:50:09 +10001374 .cpu_setup = __setup_cpu_440grx,
Valentine Barshakb2be3b12007-12-22 03:22:23 +11001375 .machine_check = machine_check_440A,
Valentine Barshak340ffd22007-09-22 00:50:09 +10001376 .platform = "ppc440",
Valentine Barshak15fc9932007-08-29 17:40:30 +04001377 },
Valentine Barshakd1dfc352007-10-26 04:16:40 +10001378 { /* Use logical PVR for 440EPx (logical pvr = pvr | 0x8) */
1379 .pvr_mask = 0xf0000ffb,
1380 .pvr_value = 0x200008D8,
1381 .cpu_name = "440EPX",
1382 .cpu_features = CPU_FTRS_44X,
1383 .cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU,
1384 .icache_bsize = 32,
1385 .dcache_bsize = 32,
1386 .cpu_setup = __setup_cpu_440epx,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001387 .machine_check = machine_check_440A,
Valentine Barshakd1dfc352007-10-26 04:16:40 +10001388 .platform = "ppc440",
1389 },
Stephen Rothwell49209602005-10-12 15:55:09 +10001390 { /* 440GP Rev. B */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 .pvr_mask = 0xf0000fff,
1392 .pvr_value = 0x40000440,
1393 .cpu_name = "440GP Rev. B",
Kumar Gala10b35d92005-09-23 14:08:58 -05001394 .cpu_features = CPU_FTRS_44X,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001395 .cpu_user_features = COMMON_USER_BOOKE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 .icache_bsize = 32,
1397 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001398 .machine_check = machine_check_4xx,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001399 .platform = "ppc440gp",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 },
Stephen Rothwell49209602005-10-12 15:55:09 +10001401 { /* 440GP Rev. C */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 .pvr_mask = 0xf0000fff,
1403 .pvr_value = 0x40000481,
1404 .cpu_name = "440GP Rev. C",
Kumar Gala10b35d92005-09-23 14:08:58 -05001405 .cpu_features = CPU_FTRS_44X,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001406 .cpu_user_features = COMMON_USER_BOOKE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 .icache_bsize = 32,
1408 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001409 .machine_check = machine_check_4xx,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001410 .platform = "ppc440gp",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 },
1412 { /* 440GX Rev. A */
1413 .pvr_mask = 0xf0000fff,
1414 .pvr_value = 0x50000850,
1415 .cpu_name = "440GX Rev. A",
Kumar Gala10b35d92005-09-23 14:08:58 -05001416 .cpu_features = CPU_FTRS_44X,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001417 .cpu_user_features = COMMON_USER_BOOKE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 .icache_bsize = 32,
1419 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001420 .cpu_setup = __setup_cpu_440gx,
1421 .machine_check = machine_check_440A,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001422 .platform = "ppc440",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 },
1424 { /* 440GX Rev. B */
1425 .pvr_mask = 0xf0000fff,
1426 .pvr_value = 0x50000851,
1427 .cpu_name = "440GX Rev. B",
Kumar Gala10b35d92005-09-23 14:08:58 -05001428 .cpu_features = CPU_FTRS_44X,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001429 .cpu_user_features = COMMON_USER_BOOKE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 .icache_bsize = 32,
1431 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001432 .cpu_setup = __setup_cpu_440gx,
1433 .machine_check = machine_check_440A,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001434 .platform = "ppc440",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 },
1436 { /* 440GX Rev. C */
1437 .pvr_mask = 0xf0000fff,
1438 .pvr_value = 0x50000892,
1439 .cpu_name = "440GX Rev. C",
Kumar Gala10b35d92005-09-23 14:08:58 -05001440 .cpu_features = CPU_FTRS_44X,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001441 .cpu_user_features = COMMON_USER_BOOKE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 .icache_bsize = 32,
1443 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001444 .cpu_setup = __setup_cpu_440gx,
1445 .machine_check = machine_check_440A,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001446 .platform = "ppc440",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 },
Eugene Surovegin9149fb32005-09-03 15:55:40 -07001448 { /* 440GX Rev. F */
1449 .pvr_mask = 0xf0000fff,
1450 .pvr_value = 0x50000894,
1451 .cpu_name = "440GX Rev. F",
Kumar Gala10b35d92005-09-23 14:08:58 -05001452 .cpu_features = CPU_FTRS_44X,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001453 .cpu_user_features = COMMON_USER_BOOKE,
Eugene Surovegin9149fb32005-09-03 15:55:40 -07001454 .icache_bsize = 32,
1455 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001456 .cpu_setup = __setup_cpu_440gx,
1457 .machine_check = machine_check_440A,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001458 .platform = "ppc440",
Eugene Surovegin9149fb32005-09-03 15:55:40 -07001459 },
Matt Porter656de7e2005-09-03 15:55:42 -07001460 { /* 440SP Rev. A */
Roland Dreier333e6152007-06-16 05:36:32 +10001461 .pvr_mask = 0xfff00fff,
1462 .pvr_value = 0x53200891,
Matt Porter656de7e2005-09-03 15:55:42 -07001463 .cpu_name = "440SP Rev. A",
Kumar Gala10b35d92005-09-23 14:08:58 -05001464 .cpu_features = CPU_FTRS_44X,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001465 .cpu_user_features = COMMON_USER_BOOKE,
Matt Porter656de7e2005-09-03 15:55:42 -07001466 .icache_bsize = 32,
1467 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001468 .machine_check = machine_check_4xx,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001469 .platform = "ppc440",
Matt Porter656de7e2005-09-03 15:55:42 -07001470 },
Roland Dreierb0f7b8b2005-11-07 00:58:13 -08001471 { /* 440SPe Rev. A */
Roland Dreier333e6152007-06-16 05:36:32 +10001472 .pvr_mask = 0xfff00fff,
1473 .pvr_value = 0x53400890,
1474 .cpu_name = "440SPe Rev. A",
1475 .cpu_features = CPU_FTRS_44X,
1476 .cpu_user_features = COMMON_USER_BOOKE,
1477 .icache_bsize = 32,
1478 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001479 .cpu_setup = __setup_cpu_440spe,
1480 .machine_check = machine_check_440A,
Roland Dreier333e6152007-06-16 05:36:32 +10001481 .platform = "ppc440",
1482 },
1483 { /* 440SPe Rev. B */
1484 .pvr_mask = 0xfff00fff,
1485 .pvr_value = 0x53400891,
1486 .cpu_name = "440SPe Rev. B",
Kumar Galaa147c582006-12-08 02:34:38 -06001487 .cpu_features = CPU_FTRS_44X,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001488 .cpu_user_features = COMMON_USER_BOOKE,
Roland Dreierb0f7b8b2005-11-07 00:58:13 -08001489 .icache_bsize = 32,
1490 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001491 .cpu_setup = __setup_cpu_440spe,
1492 .machine_check = machine_check_440A,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001493 .platform = "ppc440",
Roland Dreierb0f7b8b2005-11-07 00:58:13 -08001494 },
John Linn23e72372008-07-01 09:42:07 -07001495 { /* 440 in Xilinx Virtex-5 FXT */
1496 .pvr_mask = 0xfffffff0,
1497 .pvr_value = 0x7ff21910,
1498 .cpu_name = "440 in Virtex-5 FXT",
1499 .cpu_features = CPU_FTRS_44X,
1500 .cpu_user_features = COMMON_USER_BOOKE,
1501 .icache_bsize = 32,
1502 .dcache_bsize = 32,
1503 .platform = "ppc440",
1504 },
Stefan Roese464076a2008-02-24 08:07:41 +11001505 { /* 460EX */
1506 .pvr_mask = 0xffff0002,
1507 .pvr_value = 0x13020002,
1508 .cpu_name = "460EX",
1509 .cpu_features = CPU_FTRS_44X,
1510 .cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU,
1511 .icache_bsize = 32,
1512 .dcache_bsize = 32,
1513 .cpu_setup = __setup_cpu_460ex,
1514 .machine_check = machine_check_440A,
1515 .platform = "ppc440",
1516 },
1517 { /* 460GT */
1518 .pvr_mask = 0xffff0002,
1519 .pvr_value = 0x13020000,
1520 .cpu_name = "460GT",
1521 .cpu_features = CPU_FTRS_44X,
Josh Boyer939e6222008-06-11 07:52:40 -04001522 .cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU,
Stefan Roese464076a2008-02-24 08:07:41 +11001523 .icache_bsize = 32,
1524 .dcache_bsize = 32,
Josh Boyer939e6222008-06-11 07:52:40 -04001525 .cpu_setup = __setup_cpu_460gt,
Stefan Roese464076a2008-02-24 08:07:41 +11001526 .machine_check = machine_check_440A,
1527 .platform = "ppc440",
1528 },
Benjamin Herrenschmidt76bc080e2008-05-05 15:22:27 +10001529 { /* default match */
1530 .pvr_mask = 0x00000000,
1531 .pvr_value = 0x00000000,
1532 .cpu_name = "(generic 44x PPC)",
1533 .cpu_features = CPU_FTRS_44X,
1534 .cpu_user_features = COMMON_USER_BOOKE,
1535 .icache_bsize = 32,
1536 .dcache_bsize = 32,
1537 .machine_check = machine_check_4xx,
1538 .platform = "ppc440",
1539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540#endif /* CONFIG_44x */
Josh Boyere3e414b2007-12-24 08:44:47 -06001541#ifdef CONFIG_E200
Stephen Rothwell49209602005-10-12 15:55:09 +10001542 { /* e200z5 */
Kumar Gala33d9e9b2005-06-25 14:54:37 -07001543 .pvr_mask = 0xfff00000,
1544 .pvr_value = 0x81000000,
1545 .cpu_name = "e200z5",
1546 /* xxx - galak: add CPU_FTR_MAYBE_CAN_DOZE */
Kumar Gala10b35d92005-09-23 14:08:58 -05001547 .cpu_features = CPU_FTRS_E200,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001548 .cpu_user_features = COMMON_USER_BOOKE |
1549 PPC_FEATURE_HAS_EFP_SINGLE |
Kumar Gala33d9e9b2005-06-25 14:54:37 -07001550 PPC_FEATURE_UNIFIED_CACHE,
1551 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001552 .machine_check = machine_check_e200,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001553 .platform = "ppc5554",
Kumar Gala33d9e9b2005-06-25 14:54:37 -07001554 },
Stephen Rothwell49209602005-10-12 15:55:09 +10001555 { /* e200z6 */
Kumar Gala33d9e9b2005-06-25 14:54:37 -07001556 .pvr_mask = 0xfff00000,
1557 .pvr_value = 0x81100000,
1558 .cpu_name = "e200z6",
1559 /* xxx - galak: add CPU_FTR_MAYBE_CAN_DOZE */
Kumar Gala10b35d92005-09-23 14:08:58 -05001560 .cpu_features = CPU_FTRS_E200,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001561 .cpu_user_features = COMMON_USER_BOOKE |
Kumar Gala5e14d212007-09-13 01:44:20 -05001562 PPC_FEATURE_HAS_SPE_COMP |
1563 PPC_FEATURE_HAS_EFP_SINGLE_COMP |
Kumar Gala33d9e9b2005-06-25 14:54:37 -07001564 PPC_FEATURE_UNIFIED_CACHE,
1565 .dcache_bsize = 32,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001566 .machine_check = machine_check_e200,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001567 .platform = "ppc5554",
Kumar Gala33d9e9b2005-06-25 14:54:37 -07001568 },
Benjamin Herrenschmidt76bc080e2008-05-05 15:22:27 +10001569 { /* default match */
1570 .pvr_mask = 0x00000000,
1571 .pvr_value = 0x00000000,
1572 .cpu_name = "(generic E200 PPC)",
1573 .cpu_features = CPU_FTRS_E200,
1574 .cpu_user_features = COMMON_USER_BOOKE |
1575 PPC_FEATURE_HAS_EFP_SINGLE |
1576 PPC_FEATURE_UNIFIED_CACHE,
1577 .dcache_bsize = 32,
1578 .machine_check = machine_check_e200,
1579 .platform = "ppc5554",
Paul Mackerras516c8be2008-05-12 14:20:35 +10001580 }
Benjamin Herrenschmidt76bc080e2008-05-05 15:22:27 +10001581#endif /* CONFIG_E200 */
1582#ifdef CONFIG_E500
Stephen Rothwell49209602005-10-12 15:55:09 +10001583 { /* e500 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 .pvr_mask = 0xffff0000,
1585 .pvr_value = 0x80200000,
1586 .cpu_name = "e500",
Kumar Gala10b35d92005-09-23 14:08:58 -05001587 .cpu_features = CPU_FTRS_E500,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001588 .cpu_user_features = COMMON_USER_BOOKE |
Kumar Gala5e14d212007-09-13 01:44:20 -05001589 PPC_FEATURE_HAS_SPE_COMP |
1590 PPC_FEATURE_HAS_EFP_SINGLE_COMP,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 .icache_bsize = 32,
1592 .dcache_bsize = 32,
1593 .num_pmcs = 4,
Andy Fleming555d97a2005-12-15 20:02:04 -06001594 .oprofile_cpu_type = "ppc/e500",
Andy Fleming39aef682008-02-04 18:27:55 -06001595 .oprofile_type = PPC_OPROFILE_FSL_EMB,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001596 .machine_check = machine_check_e500,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001597 .platform = "ppc8540",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 },
Stephen Rothwell49209602005-10-12 15:55:09 +10001599 { /* e500v2 */
Kumar Gala5b37b702005-06-21 17:15:18 -07001600 .pvr_mask = 0xffff0000,
1601 .pvr_value = 0x80210000,
1602 .cpu_name = "e500v2",
Kumar Gala10b35d92005-09-23 14:08:58 -05001603 .cpu_features = CPU_FTRS_E500_2,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001604 .cpu_user_features = COMMON_USER_BOOKE |
Kumar Gala5e14d212007-09-13 01:44:20 -05001605 PPC_FEATURE_HAS_SPE_COMP |
1606 PPC_FEATURE_HAS_EFP_SINGLE_COMP |
1607 PPC_FEATURE_HAS_EFP_DOUBLE_COMP,
Kumar Gala5b37b702005-06-21 17:15:18 -07001608 .icache_bsize = 32,
1609 .dcache_bsize = 32,
1610 .num_pmcs = 4,
Andy Fleming555d97a2005-12-15 20:02:04 -06001611 .oprofile_cpu_type = "ppc/e500",
Andy Fleming39aef682008-02-04 18:27:55 -06001612 .oprofile_type = PPC_OPROFILE_FSL_EMB,
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +11001613 .machine_check = machine_check_e500,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001614 .platform = "ppc8548",
Kumar Gala5b37b702005-06-21 17:15:18 -07001615 },
Kumar Gala3dfa8772008-06-16 09:41:32 -05001616 { /* e500mc */
1617 .pvr_mask = 0xffff0000,
1618 .pvr_value = 0x80230000,
1619 .cpu_name = "e500mc",
Kumar Gala3dfa8772008-06-16 09:41:32 -05001620 .cpu_features = CPU_FTRS_E500MC,
1621 .cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU,
1622 .icache_bsize = 64,
1623 .dcache_bsize = 64,
1624 .num_pmcs = 4,
1625 .oprofile_cpu_type = "ppc/e500", /* xxx - galak, e500mc? */
1626 .oprofile_type = PPC_OPROFILE_FSL_EMB,
1627 .machine_check = machine_check_e500,
1628 .platform = "ppce500mc",
1629 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 { /* default match */
1631 .pvr_mask = 0x00000000,
1632 .pvr_value = 0x00000000,
Benjamin Herrenschmidt76bc080e2008-05-05 15:22:27 +10001633 .cpu_name = "(generic E500 PPC)",
1634 .cpu_features = CPU_FTRS_E500,
1635 .cpu_user_features = COMMON_USER_BOOKE |
1636 PPC_FEATURE_HAS_SPE_COMP |
1637 PPC_FEATURE_HAS_EFP_SINGLE_COMP,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 .icache_bsize = 32,
1639 .dcache_bsize = 32,
Benjamin Herrenschmidt76bc080e2008-05-05 15:22:27 +10001640 .machine_check = machine_check_e500,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001641 .platform = "powerpc",
Paul Mackerras516c8be2008-05-12 14:20:35 +10001642 }
Benjamin Herrenschmidt76bc080e2008-05-05 15:22:27 +10001643#endif /* CONFIG_E500 */
Stephen Rothwell49209602005-10-12 15:55:09 +10001644#endif /* CONFIG_PPC32 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645};
Benjamin Herrenschmidt42c4aaa2006-10-24 16:42:40 +10001646
Paul Mackerras87a72f92007-10-04 14:18:01 +10001647static struct cpu_spec the_cpu_spec;
1648
1649struct cpu_spec * __init identify_cpu(unsigned long offset, unsigned int pvr)
Benjamin Herrenschmidt42c4aaa2006-10-24 16:42:40 +10001650{
1651 struct cpu_spec *s = cpu_specs;
Paul Mackerras87a72f92007-10-04 14:18:01 +10001652 struct cpu_spec *t = &the_cpu_spec;
Benjamin Herrenschmidt42c4aaa2006-10-24 16:42:40 +10001653 int i;
1654
1655 s = PTRRELOC(s);
Paul Mackerras87a72f92007-10-04 14:18:01 +10001656 t = PTRRELOC(t);
Benjamin Herrenschmidt42c4aaa2006-10-24 16:42:40 +10001657
Benjamin Herrenschmidt42c4aaa2006-10-24 16:42:40 +10001658 for (i = 0; i < ARRAY_SIZE(cpu_specs); i++,s++)
1659 if ((pvr & s->pvr_mask) == s->pvr_value) {
Paul Mackerras87a72f92007-10-04 14:18:01 +10001660 /*
1661 * If we are overriding a previous value derived
1662 * from the real PVR with a new value obtained
1663 * using a logical PVR value, don't modify the
1664 * performance monitor fields.
1665 */
1666 if (t->num_pmcs && !s->num_pmcs) {
1667 t->cpu_name = s->cpu_name;
1668 t->cpu_features = s->cpu_features;
1669 t->cpu_user_features = s->cpu_user_features;
1670 t->icache_bsize = s->icache_bsize;
1671 t->dcache_bsize = s->dcache_bsize;
1672 t->cpu_setup = s->cpu_setup;
1673 t->cpu_restore = s->cpu_restore;
1674 t->platform = s->platform;
Torez Smith79e25ba2008-07-18 06:42:07 +10001675 /*
1676 * If we have passed through this logic once
1677 * before and have pulled the default case
1678 * because the real PVR was not found inside
1679 * cpu_specs[], then we are possibly running in
1680 * compatibility mode. In that case, let the
1681 * oprofiler know which set of compatibility
1682 * counters to pull from by making sure the
1683 * oprofile_cpu_type string is set to that of
1684 * compatibility mode. If the oprofile_cpu_type
1685 * already has a value, then we are possibly
1686 * overriding a real PVR with a logical one, and,
1687 * in that case, keep the current value for
1688 * oprofile_cpu_type.
1689 */
1690 if (t->oprofile_cpu_type == NULL)
1691 t->oprofile_cpu_type = s->oprofile_cpu_type;
Paul Mackerras87a72f92007-10-04 14:18:01 +10001692 } else
1693 *t = *s;
1694 *PTRRELOC(&cur_cpu_spec) = &the_cpu_spec;
Nathan Lynch9115d132008-07-16 09:58:51 +10001695
1696 /*
1697 * Set the base platform string once; assumes
1698 * we're called with real pvr first.
1699 */
Nathan Lynchfc532f82008-07-25 17:50:30 -05001700 if (*PTRRELOC(&powerpc_base_platform) == NULL)
1701 *PTRRELOC(&powerpc_base_platform) = t->platform;
Nathan Lynch9115d132008-07-16 09:58:51 +10001702
Valentine Barshak84e3ad52007-09-22 00:44:38 +10001703#if defined(CONFIG_PPC64) || defined(CONFIG_BOOKE)
Stefan Roese464076a2008-02-24 08:07:41 +11001704 /* ppc64 and booke expect identify_cpu to also call
Valentine Barshak84e3ad52007-09-22 00:44:38 +10001705 * setup_cpu for that processor. I will consolidate
1706 * that at a later time, for now, just use #ifdef.
Benjamin Herrenschmidt42c4aaa2006-10-24 16:42:40 +10001707 * we also don't need to PTRRELOC the function pointer
Valentine Barshak84e3ad52007-09-22 00:44:38 +10001708 * on ppc64 and booke as we are running at 0 in real
1709 * mode on ppc64 and reloc_offset is always 0 on booke.
Benjamin Herrenschmidt42c4aaa2006-10-24 16:42:40 +10001710 */
1711 if (s->cpu_setup) {
1712 s->cpu_setup(offset, s);
1713 }
Valentine Barshak84e3ad52007-09-22 00:44:38 +10001714#endif /* CONFIG_PPC64 || CONFIG_BOOKE */
Benjamin Herrenschmidt42c4aaa2006-10-24 16:42:40 +10001715 return s;
1716 }
1717 BUG();
1718 return NULL;
1719}