blob: e4006dc087ca3133b02639ea01b299d540bf56a3 [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
Stephen Rothwell49209602005-10-12 15:55:09 +100026/* NOTE:
27 * Unlike ppc32, ppc64 will only call this once for the boot CPU, it's
28 * the responsibility of the appropriate CPU save/restore functions to
29 * eventually copy these settings over. Those save/restore aren't yet
30 * part of the cputable though. That has to be fixed for both ppc32
31 * and ppc64
32 */
Geoff Levandb26f1002006-05-19 14:24:18 +100033#ifdef CONFIG_PPC32
Kumar Gala400d2212005-09-27 15:13:12 -050034extern void __setup_cpu_603(unsigned long offset, struct cpu_spec* spec);
35extern void __setup_cpu_604(unsigned long offset, struct cpu_spec* spec);
36extern void __setup_cpu_750(unsigned long offset, struct cpu_spec* spec);
37extern void __setup_cpu_750cx(unsigned long offset, struct cpu_spec* spec);
38extern void __setup_cpu_750fx(unsigned long offset, struct cpu_spec* spec);
39extern void __setup_cpu_7400(unsigned long offset, struct cpu_spec* spec);
40extern void __setup_cpu_7410(unsigned long offset, struct cpu_spec* spec);
41extern void __setup_cpu_745x(unsigned long offset, struct cpu_spec* spec);
Stephen Rothwell49209602005-10-12 15:55:09 +100042#endif /* CONFIG_PPC32 */
Olof Johanssonf39b7a52006-08-11 00:07:08 -050043#ifdef CONFIG_PPC64
Kumar Gala400d2212005-09-27 15:13:12 -050044extern void __setup_cpu_ppc970(unsigned long offset, struct cpu_spec* spec);
Olof Johansson5b43d202006-10-04 23:41:41 -050045extern void __setup_cpu_ppc970MP(unsigned long offset, struct cpu_spec* spec);
Olof Johansson11999192007-02-04 16:36:51 -060046extern void __setup_cpu_pa6t(unsigned long offset, struct cpu_spec* spec);
Stephen Rothwell40d244d2007-02-12 22:10:48 +110047extern void __restore_cpu_pa6t(void);
Olof Johanssonf39b7a52006-08-11 00:07:08 -050048extern void __restore_cpu_ppc970(void);
49#endif /* CONFIG_PPC64 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051/* This table only contains "desktop" CPUs, it need to be filled with embedded
52 * ones as well...
53 */
Stephen Rothwell49209602005-10-12 15:55:09 +100054#define COMMON_USER (PPC_FEATURE_32 | PPC_FEATURE_HAS_FPU | \
55 PPC_FEATURE_HAS_MMU)
56#define COMMON_USER_PPC64 (COMMON_USER | PPC_FEATURE_64)
Paul Mackerrasa7ddc5e2005-11-10 14:29:18 +110057#define COMMON_USER_POWER4 (COMMON_USER_PPC64 | PPC_FEATURE_POWER4)
Benjamin Herrenschmidtaa5cb022006-03-01 15:07:07 +110058#define COMMON_USER_POWER5 (COMMON_USER_PPC64 | PPC_FEATURE_POWER5 |\
59 PPC_FEATURE_SMT | PPC_FEATURE_ICACHE_SNOOP)
60#define COMMON_USER_POWER5_PLUS (COMMON_USER_PPC64 | PPC_FEATURE_POWER5_PLUS|\
61 PPC_FEATURE_SMT | PPC_FEATURE_ICACHE_SNOOP)
Anton Blanchard03054d52006-04-29 09:51:06 +100062#define COMMON_USER_POWER6 (COMMON_USER_PPC64 | PPC_FEATURE_ARCH_2_05 |\
Paul Mackerrasfab5db92006-06-07 16:14:40 +100063 PPC_FEATURE_SMT | PPC_FEATURE_ICACHE_SNOOP | \
64 PPC_FEATURE_TRUE_LE)
Olof Johanssonb3ebd1d2006-09-06 14:35:57 -050065#define COMMON_USER_PA6T (COMMON_USER_PPC64 | PPC_FEATURE_PA6T |\
66 PPC_FEATURE_TRUE_LE | \
67 PPC_FEATURE_HAS_ALTIVEC_COMP)
Paul Mackerras80f15dc2006-01-14 10:11:39 +110068#define COMMON_USER_BOOKE (PPC_FEATURE_32 | PPC_FEATURE_HAS_MMU | \
69 PPC_FEATURE_BOOKE)
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Linus Torvalds1da177e2005-04-16 15:20:36 -070071/* We only set the spe features if the kernel was compiled with
72 * spe support
73 */
74#ifdef CONFIG_SPE
Stephen Rothwell49209602005-10-12 15:55:09 +100075#define PPC_FEATURE_SPE_COMP PPC_FEATURE_HAS_SPE
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#else
Stephen Rothwell49209602005-10-12 15:55:09 +100077#define PPC_FEATURE_SPE_COMP 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#endif
79
Benjamin Herrenschmidt42c4aaa2006-10-24 16:42:40 +100080static struct cpu_spec cpu_specs[] = {
Stephen Rothwell49209602005-10-12 15:55:09 +100081#ifdef CONFIG_PPC64
82 { /* Power3 */
83 .pvr_mask = 0xffff0000,
84 .pvr_value = 0x00400000,
85 .cpu_name = "POWER3 (630)",
86 .cpu_features = CPU_FTRS_POWER3,
Paul Mackerrasfab5db92006-06-07 16:14:40 +100087 .cpu_user_features = COMMON_USER_PPC64|PPC_FEATURE_PPC_LE,
Stephen Rothwell49209602005-10-12 15:55:09 +100088 .icache_bsize = 128,
89 .dcache_bsize = 128,
90 .num_pmcs = 8,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -060091 .pmc_type = PPC_PMC_IBM,
Stephen Rothwell49209602005-10-12 15:55:09 +100092 .oprofile_cpu_type = "ppc64/power3",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +000093 .oprofile_type = PPC_OPROFILE_RS64,
Paul Mackerras80f15dc2006-01-14 10:11:39 +110094 .platform = "power3",
Stephen Rothwell49209602005-10-12 15:55:09 +100095 },
96 { /* Power3+ */
97 .pvr_mask = 0xffff0000,
98 .pvr_value = 0x00410000,
99 .cpu_name = "POWER3 (630+)",
100 .cpu_features = CPU_FTRS_POWER3,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000101 .cpu_user_features = COMMON_USER_PPC64|PPC_FEATURE_PPC_LE,
Stephen Rothwell49209602005-10-12 15:55:09 +1000102 .icache_bsize = 128,
103 .dcache_bsize = 128,
104 .num_pmcs = 8,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600105 .pmc_type = PPC_PMC_IBM,
Stephen Rothwell49209602005-10-12 15:55:09 +1000106 .oprofile_cpu_type = "ppc64/power3",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000107 .oprofile_type = PPC_OPROFILE_RS64,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100108 .platform = "power3",
Stephen Rothwell49209602005-10-12 15:55:09 +1000109 },
110 { /* Northstar */
111 .pvr_mask = 0xffff0000,
112 .pvr_value = 0x00330000,
113 .cpu_name = "RS64-II (northstar)",
114 .cpu_features = CPU_FTRS_RS64,
115 .cpu_user_features = COMMON_USER_PPC64,
116 .icache_bsize = 128,
117 .dcache_bsize = 128,
118 .num_pmcs = 8,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600119 .pmc_type = PPC_PMC_IBM,
Stephen Rothwell49209602005-10-12 15:55:09 +1000120 .oprofile_cpu_type = "ppc64/rs64",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000121 .oprofile_type = PPC_OPROFILE_RS64,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100122 .platform = "rs64",
Stephen Rothwell49209602005-10-12 15:55:09 +1000123 },
124 { /* Pulsar */
125 .pvr_mask = 0xffff0000,
126 .pvr_value = 0x00340000,
127 .cpu_name = "RS64-III (pulsar)",
128 .cpu_features = CPU_FTRS_RS64,
129 .cpu_user_features = COMMON_USER_PPC64,
130 .icache_bsize = 128,
131 .dcache_bsize = 128,
132 .num_pmcs = 8,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600133 .pmc_type = PPC_PMC_IBM,
Stephen Rothwell49209602005-10-12 15:55:09 +1000134 .oprofile_cpu_type = "ppc64/rs64",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000135 .oprofile_type = PPC_OPROFILE_RS64,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100136 .platform = "rs64",
Stephen Rothwell49209602005-10-12 15:55:09 +1000137 },
138 { /* I-star */
139 .pvr_mask = 0xffff0000,
140 .pvr_value = 0x00360000,
141 .cpu_name = "RS64-III (icestar)",
142 .cpu_features = CPU_FTRS_RS64,
143 .cpu_user_features = COMMON_USER_PPC64,
144 .icache_bsize = 128,
145 .dcache_bsize = 128,
146 .num_pmcs = 8,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600147 .pmc_type = PPC_PMC_IBM,
Stephen Rothwell49209602005-10-12 15:55:09 +1000148 .oprofile_cpu_type = "ppc64/rs64",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000149 .oprofile_type = PPC_OPROFILE_RS64,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100150 .platform = "rs64",
Stephen Rothwell49209602005-10-12 15:55:09 +1000151 },
152 { /* S-star */
153 .pvr_mask = 0xffff0000,
154 .pvr_value = 0x00370000,
155 .cpu_name = "RS64-IV (sstar)",
156 .cpu_features = CPU_FTRS_RS64,
157 .cpu_user_features = COMMON_USER_PPC64,
158 .icache_bsize = 128,
159 .dcache_bsize = 128,
160 .num_pmcs = 8,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600161 .pmc_type = PPC_PMC_IBM,
Stephen Rothwell49209602005-10-12 15:55:09 +1000162 .oprofile_cpu_type = "ppc64/rs64",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000163 .oprofile_type = PPC_OPROFILE_RS64,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100164 .platform = "rs64",
Stephen Rothwell49209602005-10-12 15:55:09 +1000165 },
166 { /* Power4 */
167 .pvr_mask = 0xffff0000,
168 .pvr_value = 0x00350000,
169 .cpu_name = "POWER4 (gp)",
170 .cpu_features = CPU_FTRS_POWER4,
Paul Mackerrasa7ddc5e2005-11-10 14:29:18 +1100171 .cpu_user_features = COMMON_USER_POWER4,
Stephen Rothwell49209602005-10-12 15:55:09 +1000172 .icache_bsize = 128,
173 .dcache_bsize = 128,
174 .num_pmcs = 8,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600175 .pmc_type = PPC_PMC_IBM,
Stephen Rothwell49209602005-10-12 15:55:09 +1000176 .oprofile_cpu_type = "ppc64/power4",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000177 .oprofile_type = PPC_OPROFILE_POWER4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100178 .platform = "power4",
Stephen Rothwell49209602005-10-12 15:55:09 +1000179 },
180 { /* Power4+ */
181 .pvr_mask = 0xffff0000,
182 .pvr_value = 0x00380000,
183 .cpu_name = "POWER4+ (gq)",
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,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100192 .platform = "power4",
Stephen Rothwell49209602005-10-12 15:55:09 +1000193 },
194 { /* PPC970 */
195 .pvr_mask = 0xffff0000,
196 .pvr_value = 0x00390000,
197 .cpu_name = "PPC970",
198 .cpu_features = CPU_FTRS_PPC970,
Paul Mackerrasa7ddc5e2005-11-10 14:29:18 +1100199 .cpu_user_features = COMMON_USER_POWER4 |
Stephen Rothwell49209602005-10-12 15:55:09 +1000200 PPC_FEATURE_HAS_ALTIVEC_COMP,
201 .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 .cpu_setup = __setup_cpu_ppc970,
Olof Johanssonf39b7a52006-08-11 00:07:08 -0500206 .cpu_restore = __restore_cpu_ppc970,
Stephen Rothwell49209602005-10-12 15:55:09 +1000207 .oprofile_cpu_type = "ppc64/970",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000208 .oprofile_type = PPC_OPROFILE_POWER4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100209 .platform = "ppc970",
Stephen Rothwell49209602005-10-12 15:55:09 +1000210 },
Stephen Rothwell49209602005-10-12 15:55:09 +1000211 { /* PPC970FX */
212 .pvr_mask = 0xffff0000,
213 .pvr_value = 0x003c0000,
214 .cpu_name = "PPC970FX",
Stephen Rothwell49209602005-10-12 15:55:09 +1000215 .cpu_features = CPU_FTRS_PPC970,
Paul Mackerrasa7ddc5e2005-11-10 14:29:18 +1100216 .cpu_user_features = COMMON_USER_POWER4 |
Stephen Rothwell49209602005-10-12 15:55:09 +1000217 PPC_FEATURE_HAS_ALTIVEC_COMP,
218 .icache_bsize = 128,
219 .dcache_bsize = 128,
220 .num_pmcs = 8,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600221 .pmc_type = PPC_PMC_IBM,
Stephen Rothwell49209602005-10-12 15:55:09 +1000222 .cpu_setup = __setup_cpu_ppc970,
Olof Johanssonf39b7a52006-08-11 00:07:08 -0500223 .cpu_restore = __restore_cpu_ppc970,
Stephen Rothwell49209602005-10-12 15:55:09 +1000224 .oprofile_cpu_type = "ppc64/970",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000225 .oprofile_type = PPC_OPROFILE_POWER4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100226 .platform = "ppc970",
Stephen Rothwell49209602005-10-12 15:55:09 +1000227 },
Olof Johansson3546e812007-02-26 00:35:14 -0600228 { /* PPC970MP DD1.0 - no DEEPNAP, use regular 970 init */
229 .pvr_mask = 0xffffffff,
230 .pvr_value = 0x00440100,
231 .cpu_name = "PPC970MP",
232 .cpu_features = CPU_FTRS_PPC970,
233 .cpu_user_features = COMMON_USER_POWER4 |
234 PPC_FEATURE_HAS_ALTIVEC_COMP,
235 .icache_bsize = 128,
236 .dcache_bsize = 128,
237 .num_pmcs = 8,
238 .cpu_setup = __setup_cpu_ppc970,
239 .cpu_restore = __restore_cpu_ppc970,
240 .oprofile_cpu_type = "ppc64/970MP",
241 .oprofile_type = PPC_OPROFILE_POWER4,
242 .platform = "ppc970",
243 },
Stephen Rothwell49209602005-10-12 15:55:09 +1000244 { /* PPC970MP */
245 .pvr_mask = 0xffff0000,
246 .pvr_value = 0x00440000,
247 .cpu_name = "PPC970MP",
248 .cpu_features = CPU_FTRS_PPC970,
Paul Mackerrasa7ddc5e2005-11-10 14:29:18 +1100249 .cpu_user_features = COMMON_USER_POWER4 |
Stephen Rothwell49209602005-10-12 15:55:09 +1000250 PPC_FEATURE_HAS_ALTIVEC_COMP,
251 .icache_bsize = 128,
252 .dcache_bsize = 128,
Anton Blanchard87af41b2006-05-05 05:44:26 +1000253 .num_pmcs = 8,
Olof Johansson5b43d202006-10-04 23:41:41 -0500254 .cpu_setup = __setup_cpu_ppc970MP,
Olof Johanssonf39b7a52006-08-11 00:07:08 -0500255 .cpu_restore = __restore_cpu_ppc970,
Mike Wolffecb3522006-11-21 14:41:54 -0600256 .oprofile_cpu_type = "ppc64/970MP",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000257 .oprofile_type = PPC_OPROFILE_POWER4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100258 .platform = "ppc970",
Stephen Rothwell49209602005-10-12 15:55:09 +1000259 },
Jake Moilanen362ff7b2006-10-18 10:47:22 -0500260 { /* PPC970GX */
261 .pvr_mask = 0xffff0000,
262 .pvr_value = 0x00450000,
263 .cpu_name = "PPC970GX",
264 .cpu_features = CPU_FTRS_PPC970,
265 .cpu_user_features = COMMON_USER_POWER4 |
266 PPC_FEATURE_HAS_ALTIVEC_COMP,
267 .icache_bsize = 128,
268 .dcache_bsize = 128,
269 .num_pmcs = 8,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600270 .pmc_type = PPC_PMC_IBM,
Jake Moilanen362ff7b2006-10-18 10:47:22 -0500271 .cpu_setup = __setup_cpu_ppc970,
272 .oprofile_cpu_type = "ppc64/970",
273 .oprofile_type = PPC_OPROFILE_POWER4,
274 .platform = "ppc970",
275 },
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100276 { /* Power5 GR */
Stephen Rothwell49209602005-10-12 15:55:09 +1000277 .pvr_mask = 0xffff0000,
278 .pvr_value = 0x003a0000,
279 .cpu_name = "POWER5 (gr)",
280 .cpu_features = CPU_FTRS_POWER5,
Paul Mackerrasa7ddc5e2005-11-10 14:29:18 +1100281 .cpu_user_features = COMMON_USER_POWER5,
Stephen Rothwell49209602005-10-12 15:55:09 +1000282 .icache_bsize = 128,
283 .dcache_bsize = 128,
284 .num_pmcs = 6,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600285 .pmc_type = PPC_PMC_IBM,
Stephen Rothwell49209602005-10-12 15:55:09 +1000286 .oprofile_cpu_type = "ppc64/power5",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000287 .oprofile_type = PPC_OPROFILE_POWER4,
Michael Neulinge78dbc82006-06-08 14:42:34 +1000288 /* SIHV / SIPR bits are implemented on POWER4+ (GQ)
289 * and above but only works on POWER5 and above
290 */
291 .oprofile_mmcra_sihv = MMCRA_SIHV,
292 .oprofile_mmcra_sipr = MMCRA_SIPR,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100293 .platform = "power5",
Stephen Rothwell49209602005-10-12 15:55:09 +1000294 },
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100295 { /* Power5 GS */
Stephen Rothwell49209602005-10-12 15:55:09 +1000296 .pvr_mask = 0xffff0000,
297 .pvr_value = 0x003b0000,
Anton Blanchard834608f2006-01-09 15:42:30 +1100298 .cpu_name = "POWER5+ (gs)",
Stephen Rothwell49209602005-10-12 15:55:09 +1000299 .cpu_features = CPU_FTRS_POWER5,
Paul Mackerrasa7ddc5e2005-11-10 14:29:18 +1100300 .cpu_user_features = COMMON_USER_POWER5_PLUS,
Stephen Rothwell49209602005-10-12 15:55:09 +1000301 .icache_bsize = 128,
302 .dcache_bsize = 128,
303 .num_pmcs = 6,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600304 .pmc_type = PPC_PMC_IBM,
Anton Blanchard834608f2006-01-09 15:42:30 +1100305 .oprofile_cpu_type = "ppc64/power5+",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000306 .oprofile_type = PPC_OPROFILE_POWER4,
Michael Neulinge78dbc82006-06-08 14:42:34 +1000307 .oprofile_mmcra_sihv = MMCRA_SIHV,
308 .oprofile_mmcra_sipr = MMCRA_SIPR,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100309 .platform = "power5+",
Stephen Rothwell49209602005-10-12 15:55:09 +1000310 },
Paul Mackerras974a76f2006-11-10 20:38:53 +1100311 { /* POWER6 in P5+ mode; 2.04-compliant processor */
312 .pvr_mask = 0xffffffff,
313 .pvr_value = 0x0f000001,
314 .cpu_name = "POWER5+",
315 .cpu_features = CPU_FTRS_POWER5,
316 .cpu_user_features = COMMON_USER_POWER5_PLUS,
317 .icache_bsize = 128,
318 .dcache_bsize = 128,
319 .num_pmcs = 6,
320 .oprofile_cpu_type = "ppc64/power6",
321 .oprofile_type = PPC_OPROFILE_POWER4,
322 .oprofile_mmcra_sihv = POWER6_MMCRA_SIHV,
323 .oprofile_mmcra_sipr = POWER6_MMCRA_SIPR,
324 .oprofile_mmcra_clear = POWER6_MMCRA_THRM |
325 POWER6_MMCRA_OTHER,
326 .platform = "power5+",
327 },
Anton Blanchard03054d52006-04-29 09:51:06 +1000328 { /* Power6 */
329 .pvr_mask = 0xffff0000,
330 .pvr_value = 0x003e0000,
Paul Mackerras974a76f2006-11-10 20:38:53 +1100331 .cpu_name = "POWER6 (raw)",
332 .cpu_features = CPU_FTRS_POWER6,
333 .cpu_user_features = COMMON_USER_POWER6 |
334 PPC_FEATURE_POWER6_EXT,
335 .icache_bsize = 128,
336 .dcache_bsize = 128,
337 .num_pmcs = 6,
338 .oprofile_cpu_type = "ppc64/power6",
339 .oprofile_type = PPC_OPROFILE_POWER4,
340 .oprofile_mmcra_sihv = POWER6_MMCRA_SIHV,
341 .oprofile_mmcra_sipr = POWER6_MMCRA_SIPR,
342 .oprofile_mmcra_clear = POWER6_MMCRA_THRM |
343 POWER6_MMCRA_OTHER,
344 .platform = "power6x",
345 },
346 { /* 2.05-compliant processor, i.e. Power6 "architected" mode */
347 .pvr_mask = 0xffffffff,
348 .pvr_value = 0x0f000002,
349 .cpu_name = "POWER6 (architected)",
Anton Blanchard03054d52006-04-29 09:51:06 +1000350 .cpu_features = CPU_FTRS_POWER6,
351 .cpu_user_features = COMMON_USER_POWER6,
352 .icache_bsize = 128,
353 .dcache_bsize = 128,
Anton Blanchard99f48612006-10-13 12:13:12 +1000354 .num_pmcs = 6,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600355 .pmc_type = PPC_PMC_IBM,
Anton Blanchard03054d52006-04-29 09:51:06 +1000356 .oprofile_cpu_type = "ppc64/power6",
357 .oprofile_type = PPC_OPROFILE_POWER4,
Michael Neulinge78dbc82006-06-08 14:42:34 +1000358 .oprofile_mmcra_sihv = POWER6_MMCRA_SIHV,
359 .oprofile_mmcra_sipr = POWER6_MMCRA_SIPR,
360 .oprofile_mmcra_clear = POWER6_MMCRA_THRM |
361 POWER6_MMCRA_OTHER,
Anton Blanchard03054d52006-04-29 09:51:06 +1000362 .platform = "power6",
363 },
Arnd Bergmannc902be72006-01-04 19:55:53 +0000364 { /* Cell Broadband Engine */
Stephen Rothwell49209602005-10-12 15:55:09 +1000365 .pvr_mask = 0xffff0000,
366 .pvr_value = 0x00700000,
367 .cpu_name = "Cell Broadband Engine",
368 .cpu_features = CPU_FTRS_CELL,
369 .cpu_user_features = COMMON_USER_PPC64 |
Benjamin Herrenschmidtaa5cb022006-03-01 15:07:07 +1100370 PPC_FEATURE_CELL | PPC_FEATURE_HAS_ALTIVEC_COMP |
371 PPC_FEATURE_SMT,
Stephen Rothwell49209602005-10-12 15:55:09 +1000372 .icache_bsize = 128,
373 .dcache_bsize = 128,
Maynard Johnson18f21902006-11-20 18:45:16 +0100374 .num_pmcs = 4,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600375 .pmc_type = PPC_PMC_IBM,
Maynard Johnson18f21902006-11-20 18:45:16 +0100376 .oprofile_cpu_type = "ppc64/cell-be",
377 .oprofile_type = PPC_OPROFILE_CELL,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100378 .platform = "ppc-cell-be",
Stephen Rothwell49209602005-10-12 15:55:09 +1000379 },
Olof Johanssonb3ebd1d2006-09-06 14:35:57 -0500380 { /* PA Semi PA6T */
381 .pvr_mask = 0x7fff0000,
382 .pvr_value = 0x00900000,
383 .cpu_name = "PA6T",
384 .cpu_features = CPU_FTRS_PA6T,
385 .cpu_user_features = COMMON_USER_PA6T,
386 .icache_bsize = 64,
387 .dcache_bsize = 64,
388 .num_pmcs = 6,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600389 .pmc_type = PPC_PMC_PA6T,
Olof Johansson11999192007-02-04 16:36:51 -0600390 .cpu_setup = __setup_cpu_pa6t,
391 .cpu_restore = __restore_cpu_pa6t,
Olof Johanssonb3ebd1d2006-09-06 14:35:57 -0500392 .platform = "pa6t",
393 },
Stephen Rothwell49209602005-10-12 15:55:09 +1000394 { /* default match */
395 .pvr_mask = 0x00000000,
396 .pvr_value = 0x00000000,
397 .cpu_name = "POWER4 (compatible)",
398 .cpu_features = CPU_FTRS_COMPATIBLE,
399 .cpu_user_features = COMMON_USER_PPC64,
400 .icache_bsize = 128,
401 .dcache_bsize = 128,
402 .num_pmcs = 6,
Olof Johansson1bd2e5a2007-01-28 21:23:54 -0600403 .pmc_type = PPC_PMC_IBM,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100404 .platform = "power4",
Stephen Rothwell49209602005-10-12 15:55:09 +1000405 }
406#endif /* CONFIG_PPC64 */
407#ifdef CONFIG_PPC32
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408#if CLASSIC_PPC
Stephen Rothwell49209602005-10-12 15:55:09 +1000409 { /* 601 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 .pvr_mask = 0xffff0000,
411 .pvr_value = 0x00010000,
412 .cpu_name = "601",
Kumar Gala10b35d92005-09-23 14:08:58 -0500413 .cpu_features = CPU_FTRS_PPC601,
Stephen Rothwell49209602005-10-12 15:55:09 +1000414 .cpu_user_features = COMMON_USER | PPC_FEATURE_601_INSTR |
Paul Mackerras98599012005-10-22 16:51:34 +1000415 PPC_FEATURE_UNIFIED_CACHE | PPC_FEATURE_NO_TB,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 .icache_bsize = 32,
417 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100418 .platform = "ppc601",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 },
420 { /* 603 */
421 .pvr_mask = 0xffff0000,
422 .pvr_value = 0x00030000,
423 .cpu_name = "603",
Kumar Gala10b35d92005-09-23 14:08:58 -0500424 .cpu_features = CPU_FTRS_603,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000425 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 .icache_bsize = 32,
427 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100428 .cpu_setup = __setup_cpu_603,
429 .platform = "ppc603",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 },
431 { /* 603e */
432 .pvr_mask = 0xffff0000,
433 .pvr_value = 0x00060000,
434 .cpu_name = "603e",
Kumar Gala10b35d92005-09-23 14:08:58 -0500435 .cpu_features = CPU_FTRS_603,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000436 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 .icache_bsize = 32,
438 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100439 .cpu_setup = __setup_cpu_603,
440 .platform = "ppc603",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 },
442 { /* 603ev */
443 .pvr_mask = 0xffff0000,
444 .pvr_value = 0x00070000,
445 .cpu_name = "603ev",
Kumar Gala10b35d92005-09-23 14:08:58 -0500446 .cpu_features = CPU_FTRS_603,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000447 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 .icache_bsize = 32,
449 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100450 .cpu_setup = __setup_cpu_603,
451 .platform = "ppc603",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 },
453 { /* 604 */
454 .pvr_mask = 0xffff0000,
455 .pvr_value = 0x00040000,
456 .cpu_name = "604",
Kumar Gala10b35d92005-09-23 14:08:58 -0500457 .cpu_features = CPU_FTRS_604,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000458 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 .icache_bsize = 32,
460 .dcache_bsize = 32,
461 .num_pmcs = 2,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100462 .cpu_setup = __setup_cpu_604,
463 .platform = "ppc604",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 },
465 { /* 604e */
466 .pvr_mask = 0xfffff000,
467 .pvr_value = 0x00090000,
468 .cpu_name = "604e",
Kumar Gala10b35d92005-09-23 14:08:58 -0500469 .cpu_features = CPU_FTRS_604,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000470 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 .icache_bsize = 32,
472 .dcache_bsize = 32,
473 .num_pmcs = 4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100474 .cpu_setup = __setup_cpu_604,
475 .platform = "ppc604",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 },
477 { /* 604r */
478 .pvr_mask = 0xffff0000,
479 .pvr_value = 0x00090000,
480 .cpu_name = "604r",
Kumar Gala10b35d92005-09-23 14:08:58 -0500481 .cpu_features = CPU_FTRS_604,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000482 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 .icache_bsize = 32,
484 .dcache_bsize = 32,
485 .num_pmcs = 4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100486 .cpu_setup = __setup_cpu_604,
487 .platform = "ppc604",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 },
489 { /* 604ev */
490 .pvr_mask = 0xffff0000,
491 .pvr_value = 0x000a0000,
492 .cpu_name = "604ev",
Kumar Gala10b35d92005-09-23 14:08:58 -0500493 .cpu_features = CPU_FTRS_604,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000494 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 .icache_bsize = 32,
496 .dcache_bsize = 32,
497 .num_pmcs = 4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100498 .cpu_setup = __setup_cpu_604,
499 .platform = "ppc604",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 },
501 { /* 740/750 (0x4202, don't support TAU ?) */
502 .pvr_mask = 0xffffffff,
503 .pvr_value = 0x00084202,
504 .cpu_name = "740/750",
Kumar Gala10b35d92005-09-23 14:08:58 -0500505 .cpu_features = CPU_FTRS_740_NOTAU,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000506 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 .icache_bsize = 32,
508 .dcache_bsize = 32,
509 .num_pmcs = 4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100510 .cpu_setup = __setup_cpu_750,
511 .platform = "ppc750",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 { /* 750CX (80100 and 8010x?) */
514 .pvr_mask = 0xfffffff0,
515 .pvr_value = 0x00080100,
516 .cpu_name = "750CX",
Kumar Gala10b35d92005-09-23 14:08:58 -0500517 .cpu_features = CPU_FTRS_750,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000518 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 .icache_bsize = 32,
520 .dcache_bsize = 32,
521 .num_pmcs = 4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100522 .cpu_setup = __setup_cpu_750cx,
523 .platform = "ppc750",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 },
525 { /* 750CX (82201 and 82202) */
526 .pvr_mask = 0xfffffff0,
527 .pvr_value = 0x00082200,
528 .cpu_name = "750CX",
Kumar Gala10b35d92005-09-23 14:08:58 -0500529 .cpu_features = CPU_FTRS_750,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000530 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 .icache_bsize = 32,
532 .dcache_bsize = 32,
533 .num_pmcs = 4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100534 .cpu_setup = __setup_cpu_750cx,
535 .platform = "ppc750",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 },
537 { /* 750CXe (82214) */
538 .pvr_mask = 0xfffffff0,
539 .pvr_value = 0x00082210,
540 .cpu_name = "750CXe",
Kumar Gala10b35d92005-09-23 14:08:58 -0500541 .cpu_features = CPU_FTRS_750,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000542 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 .icache_bsize = 32,
544 .dcache_bsize = 32,
545 .num_pmcs = 4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100546 .cpu_setup = __setup_cpu_750cx,
547 .platform = "ppc750",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 },
Arthur Othieno7c316252005-09-03 15:55:52 -0700549 { /* 750CXe "Gekko" (83214) */
550 .pvr_mask = 0xffffffff,
551 .pvr_value = 0x00083214,
552 .cpu_name = "750CXe",
Kumar Gala10b35d92005-09-23 14:08:58 -0500553 .cpu_features = CPU_FTRS_750,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000554 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Arthur Othieno7c316252005-09-03 15:55:52 -0700555 .icache_bsize = 32,
556 .dcache_bsize = 32,
557 .num_pmcs = 4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100558 .cpu_setup = __setup_cpu_750cx,
559 .platform = "ppc750",
Arthur Othieno7c316252005-09-03 15:55:52 -0700560 },
Arthur Othienoac1ff042005-09-03 15:55:51 -0700561 { /* 745/755 */
562 .pvr_mask = 0xfffff000,
563 .pvr_value = 0x00083000,
564 .cpu_name = "745/755",
Kumar Gala10b35d92005-09-23 14:08:58 -0500565 .cpu_features = CPU_FTRS_750,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000566 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Arthur Othienoac1ff042005-09-03 15:55:51 -0700567 .icache_bsize = 32,
568 .dcache_bsize = 32,
569 .num_pmcs = 4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100570 .cpu_setup = __setup_cpu_750,
571 .platform = "ppc750",
Arthur Othienoac1ff042005-09-03 15:55:51 -0700572 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 { /* 750FX rev 1.x */
574 .pvr_mask = 0xffffff00,
575 .pvr_value = 0x70000100,
576 .cpu_name = "750FX",
Kumar Gala10b35d92005-09-23 14:08:58 -0500577 .cpu_features = CPU_FTRS_750FX1,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000578 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 .icache_bsize = 32,
580 .dcache_bsize = 32,
581 .num_pmcs = 4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100582 .cpu_setup = __setup_cpu_750,
583 .platform = "ppc750",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 },
585 { /* 750FX rev 2.0 must disable HID0[DPM] */
586 .pvr_mask = 0xffffffff,
587 .pvr_value = 0x70000200,
588 .cpu_name = "750FX",
Kumar Gala10b35d92005-09-23 14:08:58 -0500589 .cpu_features = CPU_FTRS_750FX2,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000590 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 .icache_bsize = 32,
592 .dcache_bsize = 32,
593 .num_pmcs = 4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100594 .cpu_setup = __setup_cpu_750,
595 .platform = "ppc750",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 },
597 { /* 750FX (All revs except 2.0) */
598 .pvr_mask = 0xffff0000,
599 .pvr_value = 0x70000000,
600 .cpu_name = "750FX",
Kumar Gala10b35d92005-09-23 14:08:58 -0500601 .cpu_features = CPU_FTRS_750FX,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000602 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 .icache_bsize = 32,
604 .dcache_bsize = 32,
605 .num_pmcs = 4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100606 .cpu_setup = __setup_cpu_750fx,
607 .platform = "ppc750",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 },
609 { /* 750GX */
610 .pvr_mask = 0xffff0000,
611 .pvr_value = 0x70020000,
612 .cpu_name = "750GX",
Kumar Gala10b35d92005-09-23 14:08:58 -0500613 .cpu_features = CPU_FTRS_750GX,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000614 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 .icache_bsize = 32,
616 .dcache_bsize = 32,
617 .num_pmcs = 4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100618 .cpu_setup = __setup_cpu_750fx,
619 .platform = "ppc750",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 },
621 { /* 740/750 (L2CR bit need fixup for 740) */
622 .pvr_mask = 0xffff0000,
623 .pvr_value = 0x00080000,
624 .cpu_name = "740/750",
Kumar Gala10b35d92005-09-23 14:08:58 -0500625 .cpu_features = CPU_FTRS_740,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000626 .cpu_user_features = COMMON_USER | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 .icache_bsize = 32,
628 .dcache_bsize = 32,
629 .num_pmcs = 4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100630 .cpu_setup = __setup_cpu_750,
631 .platform = "ppc750",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 },
633 { /* 7400 rev 1.1 ? (no TAU) */
634 .pvr_mask = 0xffffffff,
635 .pvr_value = 0x000c1101,
636 .cpu_name = "7400 (1.1)",
Kumar Gala10b35d92005-09-23 14:08:58 -0500637 .cpu_features = CPU_FTRS_7400_NOTAU,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000638 .cpu_user_features = COMMON_USER |
639 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 .icache_bsize = 32,
641 .dcache_bsize = 32,
642 .num_pmcs = 4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100643 .cpu_setup = __setup_cpu_7400,
644 .platform = "ppc7400",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 },
646 { /* 7400 */
647 .pvr_mask = 0xffff0000,
648 .pvr_value = 0x000c0000,
649 .cpu_name = "7400",
Kumar Gala10b35d92005-09-23 14:08:58 -0500650 .cpu_features = CPU_FTRS_7400,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000651 .cpu_user_features = COMMON_USER |
652 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 .icache_bsize = 32,
654 .dcache_bsize = 32,
655 .num_pmcs = 4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100656 .cpu_setup = __setup_cpu_7400,
657 .platform = "ppc7400",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 },
659 { /* 7410 */
660 .pvr_mask = 0xffff0000,
661 .pvr_value = 0x800c0000,
662 .cpu_name = "7410",
Kumar Gala10b35d92005-09-23 14:08:58 -0500663 .cpu_features = CPU_FTRS_7400,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000664 .cpu_user_features = COMMON_USER |
665 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 .icache_bsize = 32,
667 .dcache_bsize = 32,
668 .num_pmcs = 4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100669 .cpu_setup = __setup_cpu_7410,
670 .platform = "ppc7400",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 },
672 { /* 7450 2.0 - no doze/nap */
673 .pvr_mask = 0xffffffff,
674 .pvr_value = 0x80000200,
675 .cpu_name = "7450",
Kumar Gala10b35d92005-09-23 14:08:58 -0500676 .cpu_features = CPU_FTRS_7450_20,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000677 .cpu_user_features = COMMON_USER |
678 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 .icache_bsize = 32,
680 .dcache_bsize = 32,
681 .num_pmcs = 6,
Andy Fleming555d97a2005-12-15 20:02:04 -0600682 .cpu_setup = __setup_cpu_745x,
Andy Fleming555d97a2005-12-15 20:02:04 -0600683 .oprofile_cpu_type = "ppc/7450",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000684 .oprofile_type = PPC_OPROFILE_G4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100685 .platform = "ppc7450",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 },
687 { /* 7450 2.1 */
688 .pvr_mask = 0xffffffff,
689 .pvr_value = 0x80000201,
690 .cpu_name = "7450",
Kumar Gala10b35d92005-09-23 14:08:58 -0500691 .cpu_features = CPU_FTRS_7450_21,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000692 .cpu_user_features = COMMON_USER |
693 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 .icache_bsize = 32,
695 .dcache_bsize = 32,
696 .num_pmcs = 6,
Andy Fleming555d97a2005-12-15 20:02:04 -0600697 .cpu_setup = __setup_cpu_745x,
Andy Fleming555d97a2005-12-15 20:02:04 -0600698 .oprofile_cpu_type = "ppc/7450",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000699 .oprofile_type = PPC_OPROFILE_G4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100700 .platform = "ppc7450",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 },
702 { /* 7450 2.3 and newer */
703 .pvr_mask = 0xffff0000,
704 .pvr_value = 0x80000000,
705 .cpu_name = "7450",
Kumar Gala10b35d92005-09-23 14:08:58 -0500706 .cpu_features = CPU_FTRS_7450_23,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000707 .cpu_user_features = COMMON_USER |
708 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 .icache_bsize = 32,
710 .dcache_bsize = 32,
711 .num_pmcs = 6,
Andy Fleming555d97a2005-12-15 20:02:04 -0600712 .cpu_setup = __setup_cpu_745x,
Andy Fleming555d97a2005-12-15 20:02:04 -0600713 .oprofile_cpu_type = "ppc/7450",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000714 .oprofile_type = PPC_OPROFILE_G4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100715 .platform = "ppc7450",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 },
717 { /* 7455 rev 1.x */
718 .pvr_mask = 0xffffff00,
719 .pvr_value = 0x80010100,
720 .cpu_name = "7455",
Kumar Gala10b35d92005-09-23 14:08:58 -0500721 .cpu_features = CPU_FTRS_7455_1,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000722 .cpu_user_features = COMMON_USER |
723 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 .icache_bsize = 32,
725 .dcache_bsize = 32,
726 .num_pmcs = 6,
Andy Fleming555d97a2005-12-15 20:02:04 -0600727 .cpu_setup = __setup_cpu_745x,
Andy Fleming555d97a2005-12-15 20:02:04 -0600728 .oprofile_cpu_type = "ppc/7450",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000729 .oprofile_type = PPC_OPROFILE_G4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100730 .platform = "ppc7450",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 },
732 { /* 7455 rev 2.0 */
733 .pvr_mask = 0xffffffff,
734 .pvr_value = 0x80010200,
735 .cpu_name = "7455",
Kumar Gala10b35d92005-09-23 14:08:58 -0500736 .cpu_features = CPU_FTRS_7455_20,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000737 .cpu_user_features = COMMON_USER |
738 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 .icache_bsize = 32,
740 .dcache_bsize = 32,
741 .num_pmcs = 6,
Andy Fleming555d97a2005-12-15 20:02:04 -0600742 .cpu_setup = __setup_cpu_745x,
Andy Fleming555d97a2005-12-15 20:02:04 -0600743 .oprofile_cpu_type = "ppc/7450",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000744 .oprofile_type = PPC_OPROFILE_G4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100745 .platform = "ppc7450",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 },
747 { /* 7455 others */
748 .pvr_mask = 0xffff0000,
749 .pvr_value = 0x80010000,
750 .cpu_name = "7455",
Kumar Gala10b35d92005-09-23 14:08:58 -0500751 .cpu_features = CPU_FTRS_7455,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000752 .cpu_user_features = COMMON_USER |
753 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 .icache_bsize = 32,
755 .dcache_bsize = 32,
756 .num_pmcs = 6,
Andy Fleming555d97a2005-12-15 20:02:04 -0600757 .cpu_setup = __setup_cpu_745x,
Andy Fleming555d97a2005-12-15 20:02:04 -0600758 .oprofile_cpu_type = "ppc/7450",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000759 .oprofile_type = PPC_OPROFILE_G4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100760 .platform = "ppc7450",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 },
762 { /* 7447/7457 Rev 1.0 */
763 .pvr_mask = 0xffffffff,
764 .pvr_value = 0x80020100,
765 .cpu_name = "7447/7457",
Kumar Gala10b35d92005-09-23 14:08:58 -0500766 .cpu_features = CPU_FTRS_7447_10,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000767 .cpu_user_features = COMMON_USER |
768 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 .icache_bsize = 32,
770 .dcache_bsize = 32,
771 .num_pmcs = 6,
Andy Fleming555d97a2005-12-15 20:02:04 -0600772 .cpu_setup = __setup_cpu_745x,
Andy Fleming555d97a2005-12-15 20:02:04 -0600773 .oprofile_cpu_type = "ppc/7450",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000774 .oprofile_type = PPC_OPROFILE_G4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100775 .platform = "ppc7450",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 },
777 { /* 7447/7457 Rev 1.1 */
778 .pvr_mask = 0xffffffff,
779 .pvr_value = 0x80020101,
780 .cpu_name = "7447/7457",
Kumar Gala10b35d92005-09-23 14:08:58 -0500781 .cpu_features = CPU_FTRS_7447_10,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000782 .cpu_user_features = COMMON_USER |
783 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 .icache_bsize = 32,
785 .dcache_bsize = 32,
786 .num_pmcs = 6,
Andy Fleming555d97a2005-12-15 20:02:04 -0600787 .cpu_setup = __setup_cpu_745x,
Andy Fleming555d97a2005-12-15 20:02:04 -0600788 .oprofile_cpu_type = "ppc/7450",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000789 .oprofile_type = PPC_OPROFILE_G4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100790 .platform = "ppc7450",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 },
792 { /* 7447/7457 Rev 1.2 and later */
793 .pvr_mask = 0xffff0000,
794 .pvr_value = 0x80020000,
795 .cpu_name = "7447/7457",
Kumar Gala10b35d92005-09-23 14:08:58 -0500796 .cpu_features = CPU_FTRS_7447,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000797 .cpu_user_features = COMMON_USER | PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 .icache_bsize = 32,
799 .dcache_bsize = 32,
800 .num_pmcs = 6,
Andy Fleming555d97a2005-12-15 20:02:04 -0600801 .cpu_setup = __setup_cpu_745x,
Andy Fleming555d97a2005-12-15 20:02:04 -0600802 .oprofile_cpu_type = "ppc/7450",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000803 .oprofile_type = PPC_OPROFILE_G4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100804 .platform = "ppc7450",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 },
806 { /* 7447A */
807 .pvr_mask = 0xffff0000,
808 .pvr_value = 0x80030000,
809 .cpu_name = "7447A",
Kumar Gala10b35d92005-09-23 14:08:58 -0500810 .cpu_features = CPU_FTRS_7447A,
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,
Andy Fleming555d97a2005-12-15 20:02:04 -0600816 .cpu_setup = __setup_cpu_745x,
Andy Fleming555d97a2005-12-15 20:02:04 -0600817 .oprofile_cpu_type = "ppc/7450",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000818 .oprofile_type = PPC_OPROFILE_G4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100819 .platform = "ppc7450",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 },
Kumar Galabbde6302005-09-03 15:55:55 -0700821 { /* 7448 */
822 .pvr_mask = 0xffff0000,
823 .pvr_value = 0x80040000,
824 .cpu_name = "7448",
Kumar Gala10b35d92005-09-23 14:08:58 -0500825 .cpu_features = CPU_FTRS_7447A,
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000826 .cpu_user_features = COMMON_USER |
827 PPC_FEATURE_HAS_ALTIVEC_COMP | PPC_FEATURE_PPC_LE,
Kumar Galabbde6302005-09-03 15:55:55 -0700828 .icache_bsize = 32,
829 .dcache_bsize = 32,
830 .num_pmcs = 6,
Andy Fleming555d97a2005-12-15 20:02:04 -0600831 .cpu_setup = __setup_cpu_745x,
Andy Fleming555d97a2005-12-15 20:02:04 -0600832 .oprofile_cpu_type = "ppc/7450",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +0000833 .oprofile_type = PPC_OPROFILE_G4,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100834 .platform = "ppc7450",
Kumar Galabbde6302005-09-03 15:55:55 -0700835 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 { /* 82xx (8240, 8245, 8260 are all 603e cores) */
837 .pvr_mask = 0x7fff0000,
838 .pvr_value = 0x00810000,
839 .cpu_name = "82xx",
Kumar Gala10b35d92005-09-23 14:08:58 -0500840 .cpu_features = CPU_FTRS_82XX,
Stephen Rothwell49209602005-10-12 15:55:09 +1000841 .cpu_user_features = COMMON_USER,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 .icache_bsize = 32,
843 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100844 .cpu_setup = __setup_cpu_603,
845 .platform = "ppc603",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 },
847 { /* All G2_LE (603e core, plus some) have the same pvr */
848 .pvr_mask = 0x7fff0000,
849 .pvr_value = 0x00820000,
850 .cpu_name = "G2_LE",
Kumar Gala10b35d92005-09-23 14:08:58 -0500851 .cpu_features = CPU_FTRS_G2_LE,
Stephen Rothwell49209602005-10-12 15:55:09 +1000852 .cpu_user_features = COMMON_USER,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 .icache_bsize = 32,
854 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100855 .cpu_setup = __setup_cpu_603,
856 .platform = "ppc603",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 },
Kim Phillips6c4a2502006-10-02 20:10:24 -0500858 { /* e300c1 (a 603e core, plus some) on 83xx */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 .pvr_mask = 0x7fff0000,
860 .pvr_value = 0x00830000,
Kim Phillips6c4a2502006-10-02 20:10:24 -0500861 .cpu_name = "e300c1",
Kumar Gala10b35d92005-09-23 14:08:58 -0500862 .cpu_features = CPU_FTRS_E300,
Stephen Rothwell49209602005-10-12 15:55:09 +1000863 .cpu_user_features = COMMON_USER,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 .icache_bsize = 32,
865 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100866 .cpu_setup = __setup_cpu_603,
867 .platform = "ppc603",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 },
Kim Phillips6c4a2502006-10-02 20:10:24 -0500869 { /* e300c2 (an e300c1 core, plus some, minus FPU) on 83xx */
870 .pvr_mask = 0x7fff0000,
871 .pvr_value = 0x00840000,
872 .cpu_name = "e300c2",
Kim Phillipsaa42c692006-12-08 02:43:30 -0600873 .cpu_features = CPU_FTRS_E300C2,
Kim Phillips6c4a2502006-10-02 20:10:24 -0500874 .cpu_user_features = PPC_FEATURE_32 | PPC_FEATURE_HAS_MMU,
875 .icache_bsize = 32,
876 .dcache_bsize = 32,
877 .cpu_setup = __setup_cpu_603,
878 .platform = "ppc603",
879 },
Scott Wood57933f82006-12-01 12:57:05 -0600880 { /* e300c3 on 83xx */
881 .pvr_mask = 0x7fff0000,
882 .pvr_value = 0x00850000,
883 .cpu_name = "e300c3",
884 .cpu_features = CPU_FTRS_E300,
885 .cpu_user_features = COMMON_USER,
886 .icache_bsize = 32,
887 .dcache_bsize = 32,
888 .cpu_setup = __setup_cpu_603,
889 .platform = "ppc603",
890 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 { /* default match, we assume split I/D cache & TB (non-601)... */
892 .pvr_mask = 0x00000000,
893 .pvr_value = 0x00000000,
894 .cpu_name = "(generic PPC)",
Kumar Gala10b35d92005-09-23 14:08:58 -0500895 .cpu_features = CPU_FTRS_CLASSIC32,
Stephen Rothwell49209602005-10-12 15:55:09 +1000896 .cpu_user_features = COMMON_USER,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 .icache_bsize = 32,
898 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100899 .platform = "ppc603",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 },
901#endif /* CLASSIC_PPC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902#ifdef CONFIG_8xx
903 { /* 8xx */
904 .pvr_mask = 0xffff0000,
905 .pvr_value = 0x00500000,
906 .cpu_name = "8xx",
907 /* CPU_FTR_MAYBE_CAN_DOZE is possible,
908 * if the 8xx code is there.... */
Kumar Gala10b35d92005-09-23 14:08:58 -0500909 .cpu_features = CPU_FTRS_8XX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 .cpu_user_features = PPC_FEATURE_32 | PPC_FEATURE_HAS_MMU,
911 .icache_bsize = 16,
912 .dcache_bsize = 16,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100913 .platform = "ppc823",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 },
915#endif /* CONFIG_8xx */
916#ifdef CONFIG_40x
917 { /* 403GC */
918 .pvr_mask = 0xffffff00,
919 .pvr_value = 0x00200200,
920 .cpu_name = "403GC",
Kumar Gala10b35d92005-09-23 14:08:58 -0500921 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 .cpu_user_features = PPC_FEATURE_32 | PPC_FEATURE_HAS_MMU,
923 .icache_bsize = 16,
924 .dcache_bsize = 16,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100925 .platform = "ppc403",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 },
927 { /* 403GCX */
928 .pvr_mask = 0xffffff00,
929 .pvr_value = 0x00201400,
930 .cpu_name = "403GCX",
Kumar Gala10b35d92005-09-23 14:08:58 -0500931 .cpu_features = CPU_FTRS_40X,
Paul Mackerras98599012005-10-22 16:51:34 +1000932 .cpu_user_features = PPC_FEATURE_32 |
933 PPC_FEATURE_HAS_MMU | PPC_FEATURE_NO_TB,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 .icache_bsize = 16,
935 .dcache_bsize = 16,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100936 .platform = "ppc403",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 },
938 { /* 403G ?? */
939 .pvr_mask = 0xffff0000,
940 .pvr_value = 0x00200000,
941 .cpu_name = "403G ??",
Kumar Gala10b35d92005-09-23 14:08:58 -0500942 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 .cpu_user_features = PPC_FEATURE_32 | PPC_FEATURE_HAS_MMU,
944 .icache_bsize = 16,
945 .dcache_bsize = 16,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100946 .platform = "ppc403",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 },
948 { /* 405GP */
949 .pvr_mask = 0xffff0000,
950 .pvr_value = 0x40110000,
951 .cpu_name = "405GP",
Kumar Gala10b35d92005-09-23 14:08:58 -0500952 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 .cpu_user_features = PPC_FEATURE_32 |
954 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
955 .icache_bsize = 32,
956 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100957 .platform = "ppc405",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 },
959 { /* STB 03xxx */
960 .pvr_mask = 0xffff0000,
961 .pvr_value = 0x40130000,
962 .cpu_name = "STB03xxx",
Kumar Gala10b35d92005-09-23 14:08:58 -0500963 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 .cpu_user_features = PPC_FEATURE_32 |
965 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
966 .icache_bsize = 32,
967 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100968 .platform = "ppc405",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 },
970 { /* STB 04xxx */
971 .pvr_mask = 0xffff0000,
972 .pvr_value = 0x41810000,
973 .cpu_name = "STB04xxx",
Kumar Gala10b35d92005-09-23 14:08:58 -0500974 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 .cpu_user_features = PPC_FEATURE_32 |
976 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
977 .icache_bsize = 32,
978 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100979 .platform = "ppc405",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 },
981 { /* NP405L */
982 .pvr_mask = 0xffff0000,
983 .pvr_value = 0x41610000,
984 .cpu_name = "NP405L",
Kumar Gala10b35d92005-09-23 14:08:58 -0500985 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 .cpu_user_features = PPC_FEATURE_32 |
987 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
988 .icache_bsize = 32,
989 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +1100990 .platform = "ppc405",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 },
992 { /* NP4GS3 */
993 .pvr_mask = 0xffff0000,
994 .pvr_value = 0x40B10000,
995 .cpu_name = "NP4GS3",
Kumar Gala10b35d92005-09-23 14:08:58 -0500996 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 .cpu_user_features = PPC_FEATURE_32 |
998 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
999 .icache_bsize = 32,
1000 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001001 .platform = "ppc405",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 },
1003 { /* NP405H */
1004 .pvr_mask = 0xffff0000,
1005 .pvr_value = 0x41410000,
1006 .cpu_name = "NP405H",
Kumar Gala10b35d92005-09-23 14:08:58 -05001007 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 .cpu_user_features = PPC_FEATURE_32 |
1009 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
1010 .icache_bsize = 32,
1011 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001012 .platform = "ppc405",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 },
1014 { /* 405GPr */
1015 .pvr_mask = 0xffff0000,
1016 .pvr_value = 0x50910000,
1017 .cpu_name = "405GPr",
Kumar Gala10b35d92005-09-23 14:08:58 -05001018 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 .cpu_user_features = PPC_FEATURE_32 |
1020 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
1021 .icache_bsize = 32,
1022 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001023 .platform = "ppc405",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 },
1025 { /* STBx25xx */
1026 .pvr_mask = 0xffff0000,
1027 .pvr_value = 0x51510000,
1028 .cpu_name = "STBx25xx",
Kumar Gala10b35d92005-09-23 14:08:58 -05001029 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 .cpu_user_features = PPC_FEATURE_32 |
1031 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
1032 .icache_bsize = 32,
1033 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001034 .platform = "ppc405",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 },
1036 { /* 405LP */
1037 .pvr_mask = 0xffff0000,
1038 .pvr_value = 0x41F10000,
1039 .cpu_name = "405LP",
Kumar Gala10b35d92005-09-23 14:08:58 -05001040 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 .cpu_user_features = PPC_FEATURE_32 | PPC_FEATURE_HAS_MMU,
1042 .icache_bsize = 32,
1043 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001044 .platform = "ppc405",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 },
1046 { /* Xilinx Virtex-II Pro */
Grant C. Likely72646c72006-01-19 01:13:20 -07001047 .pvr_mask = 0xfffff000,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 .pvr_value = 0x20010000,
1049 .cpu_name = "Virtex-II Pro",
Kumar Gala10b35d92005-09-23 14:08:58 -05001050 .cpu_features = CPU_FTRS_40X,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 .cpu_user_features = PPC_FEATURE_32 |
1052 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
1053 .icache_bsize = 32,
1054 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001055 .platform = "ppc405",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 },
Grant C. Likely72646c72006-01-19 01:13:20 -07001057 { /* Xilinx Virtex-4 FX */
1058 .pvr_mask = 0xfffff000,
1059 .pvr_value = 0x20011000,
1060 .cpu_name = "Virtex-4 FX",
1061 .cpu_features = CPU_FTRS_40X,
1062 .cpu_user_features = PPC_FEATURE_32 |
1063 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
1064 .icache_bsize = 32,
1065 .dcache_bsize = 32,
Peter Bergner838fdb42006-09-14 14:18:38 -05001066 .platform = "ppc405",
Grant C. Likely72646c72006-01-19 01:13:20 -07001067 },
Eugene Suroveginad95d602005-06-07 13:22:09 -07001068 { /* 405EP */
1069 .pvr_mask = 0xffff0000,
1070 .pvr_value = 0x51210000,
1071 .cpu_name = "405EP",
Kumar Gala10b35d92005-09-23 14:08:58 -05001072 .cpu_features = CPU_FTRS_40X,
Eugene Suroveginad95d602005-06-07 13:22:09 -07001073 .cpu_user_features = PPC_FEATURE_32 |
1074 PPC_FEATURE_HAS_MMU | PPC_FEATURE_HAS_4xxMAC,
1075 .icache_bsize = 32,
1076 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001077 .platform = "ppc405",
Eugene Suroveginad95d602005-06-07 13:22:09 -07001078 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
1080#endif /* CONFIG_40x */
1081#ifdef CONFIG_44x
Matt Porterc9cf73a2005-07-31 22:34:52 -07001082 {
1083 .pvr_mask = 0xf0000fff,
1084 .pvr_value = 0x40000850,
1085 .cpu_name = "440EP Rev. A",
Kumar Gala10b35d92005-09-23 14:08:58 -05001086 .cpu_features = CPU_FTRS_44X,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001087 .cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU,
Matt Porterc9cf73a2005-07-31 22:34:52 -07001088 .icache_bsize = 32,
1089 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001090 .platform = "ppc440",
Matt Porterc9cf73a2005-07-31 22:34:52 -07001091 },
1092 {
1093 .pvr_mask = 0xf0000fff,
1094 .pvr_value = 0x400008d3,
1095 .cpu_name = "440EP Rev. B",
Kumar Gala10b35d92005-09-23 14:08:58 -05001096 .cpu_features = CPU_FTRS_44X,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001097 .cpu_user_features = COMMON_USER_BOOKE | PPC_FEATURE_HAS_FPU,
Matt Porterc9cf73a2005-07-31 22:34:52 -07001098 .icache_bsize = 32,
1099 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001100 .platform = "ppc440",
Matt Porterc9cf73a2005-07-31 22:34:52 -07001101 },
Stephen Rothwell49209602005-10-12 15:55:09 +10001102 { /* 440GP Rev. B */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 .pvr_mask = 0xf0000fff,
1104 .pvr_value = 0x40000440,
1105 .cpu_name = "440GP Rev. B",
Kumar Gala10b35d92005-09-23 14:08:58 -05001106 .cpu_features = CPU_FTRS_44X,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001107 .cpu_user_features = COMMON_USER_BOOKE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 .icache_bsize = 32,
1109 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001110 .platform = "ppc440gp",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 },
Stephen Rothwell49209602005-10-12 15:55:09 +10001112 { /* 440GP Rev. C */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 .pvr_mask = 0xf0000fff,
1114 .pvr_value = 0x40000481,
1115 .cpu_name = "440GP Rev. C",
Kumar Gala10b35d92005-09-23 14:08:58 -05001116 .cpu_features = CPU_FTRS_44X,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001117 .cpu_user_features = COMMON_USER_BOOKE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 .icache_bsize = 32,
1119 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001120 .platform = "ppc440gp",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 },
1122 { /* 440GX Rev. A */
1123 .pvr_mask = 0xf0000fff,
1124 .pvr_value = 0x50000850,
1125 .cpu_name = "440GX Rev. A",
Kumar Gala10b35d92005-09-23 14:08:58 -05001126 .cpu_features = CPU_FTRS_44X,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001127 .cpu_user_features = COMMON_USER_BOOKE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 .icache_bsize = 32,
1129 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001130 .platform = "ppc440",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 },
1132 { /* 440GX Rev. B */
1133 .pvr_mask = 0xf0000fff,
1134 .pvr_value = 0x50000851,
1135 .cpu_name = "440GX Rev. B",
Kumar Gala10b35d92005-09-23 14:08:58 -05001136 .cpu_features = CPU_FTRS_44X,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001137 .cpu_user_features = COMMON_USER_BOOKE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 .icache_bsize = 32,
1139 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001140 .platform = "ppc440",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 },
1142 { /* 440GX Rev. C */
1143 .pvr_mask = 0xf0000fff,
1144 .pvr_value = 0x50000892,
1145 .cpu_name = "440GX Rev. C",
Kumar Gala10b35d92005-09-23 14:08:58 -05001146 .cpu_features = CPU_FTRS_44X,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001147 .cpu_user_features = COMMON_USER_BOOKE,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 .icache_bsize = 32,
1149 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001150 .platform = "ppc440",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 },
Eugene Surovegin9149fb32005-09-03 15:55:40 -07001152 { /* 440GX Rev. F */
1153 .pvr_mask = 0xf0000fff,
1154 .pvr_value = 0x50000894,
1155 .cpu_name = "440GX Rev. F",
Kumar Gala10b35d92005-09-23 14:08:58 -05001156 .cpu_features = CPU_FTRS_44X,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001157 .cpu_user_features = COMMON_USER_BOOKE,
Eugene Surovegin9149fb32005-09-03 15:55:40 -07001158 .icache_bsize = 32,
1159 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001160 .platform = "ppc440",
Eugene Surovegin9149fb32005-09-03 15:55:40 -07001161 },
Matt Porter656de7e2005-09-03 15:55:42 -07001162 { /* 440SP Rev. A */
1163 .pvr_mask = 0xff000fff,
1164 .pvr_value = 0x53000891,
1165 .cpu_name = "440SP Rev. A",
Kumar Gala10b35d92005-09-23 14:08:58 -05001166 .cpu_features = CPU_FTRS_44X,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001167 .cpu_user_features = COMMON_USER_BOOKE,
Matt Porter656de7e2005-09-03 15:55:42 -07001168 .icache_bsize = 32,
1169 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001170 .platform = "ppc440",
Matt Porter656de7e2005-09-03 15:55:42 -07001171 },
Roland Dreierb0f7b8b2005-11-07 00:58:13 -08001172 { /* 440SPe Rev. A */
1173 .pvr_mask = 0xff000fff,
1174 .pvr_value = 0x53000890,
1175 .cpu_name = "440SPe Rev. A",
Kumar Galaa147c582006-12-08 02:34:38 -06001176 .cpu_features = CPU_FTRS_44X,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001177 .cpu_user_features = COMMON_USER_BOOKE,
Roland Dreierb0f7b8b2005-11-07 00:58:13 -08001178 .icache_bsize = 32,
1179 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001180 .platform = "ppc440",
Roland Dreierb0f7b8b2005-11-07 00:58:13 -08001181 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182#endif /* CONFIG_44x */
Kumar Gala33d9e9b2005-06-25 14:54:37 -07001183#ifdef CONFIG_FSL_BOOKE
Stephen Rothwell49209602005-10-12 15:55:09 +10001184 { /* e200z5 */
Kumar Gala33d9e9b2005-06-25 14:54:37 -07001185 .pvr_mask = 0xfff00000,
1186 .pvr_value = 0x81000000,
1187 .cpu_name = "e200z5",
1188 /* xxx - galak: add CPU_FTR_MAYBE_CAN_DOZE */
Kumar Gala10b35d92005-09-23 14:08:58 -05001189 .cpu_features = CPU_FTRS_E200,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001190 .cpu_user_features = COMMON_USER_BOOKE |
1191 PPC_FEATURE_HAS_EFP_SINGLE |
Kumar Gala33d9e9b2005-06-25 14:54:37 -07001192 PPC_FEATURE_UNIFIED_CACHE,
1193 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001194 .platform = "ppc5554",
Kumar Gala33d9e9b2005-06-25 14:54:37 -07001195 },
Stephen Rothwell49209602005-10-12 15:55:09 +10001196 { /* e200z6 */
Kumar Gala33d9e9b2005-06-25 14:54:37 -07001197 .pvr_mask = 0xfff00000,
1198 .pvr_value = 0x81100000,
1199 .cpu_name = "e200z6",
1200 /* xxx - galak: add CPU_FTR_MAYBE_CAN_DOZE */
Kumar Gala10b35d92005-09-23 14:08:58 -05001201 .cpu_features = CPU_FTRS_E200,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001202 .cpu_user_features = COMMON_USER_BOOKE |
1203 PPC_FEATURE_SPE_COMP |
Kumar Gala33d9e9b2005-06-25 14:54:37 -07001204 PPC_FEATURE_HAS_EFP_SINGLE |
1205 PPC_FEATURE_UNIFIED_CACHE,
1206 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001207 .platform = "ppc5554",
Kumar Gala33d9e9b2005-06-25 14:54:37 -07001208 },
Stephen Rothwell49209602005-10-12 15:55:09 +10001209 { /* e500 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 .pvr_mask = 0xffff0000,
1211 .pvr_value = 0x80200000,
1212 .cpu_name = "e500",
1213 /* xxx - galak: add CPU_FTR_MAYBE_CAN_DOZE */
Kumar Gala10b35d92005-09-23 14:08:58 -05001214 .cpu_features = CPU_FTRS_E500,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001215 .cpu_user_features = COMMON_USER_BOOKE |
1216 PPC_FEATURE_SPE_COMP |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 PPC_FEATURE_HAS_EFP_SINGLE,
1218 .icache_bsize = 32,
1219 .dcache_bsize = 32,
1220 .num_pmcs = 4,
Andy Fleming555d97a2005-12-15 20:02:04 -06001221 .oprofile_cpu_type = "ppc/e500",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +00001222 .oprofile_type = PPC_OPROFILE_BOOKE,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001223 .platform = "ppc8540",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 },
Stephen Rothwell49209602005-10-12 15:55:09 +10001225 { /* e500v2 */
Kumar Gala5b37b702005-06-21 17:15:18 -07001226 .pvr_mask = 0xffff0000,
1227 .pvr_value = 0x80210000,
1228 .cpu_name = "e500v2",
1229 /* xxx - galak: add CPU_FTR_MAYBE_CAN_DOZE */
Kumar Gala10b35d92005-09-23 14:08:58 -05001230 .cpu_features = CPU_FTRS_E500_2,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001231 .cpu_user_features = COMMON_USER_BOOKE |
1232 PPC_FEATURE_SPE_COMP |
1233 PPC_FEATURE_HAS_EFP_SINGLE |
1234 PPC_FEATURE_HAS_EFP_DOUBLE,
Kumar Gala5b37b702005-06-21 17:15:18 -07001235 .icache_bsize = 32,
1236 .dcache_bsize = 32,
1237 .num_pmcs = 4,
Andy Fleming555d97a2005-12-15 20:02:04 -06001238 .oprofile_cpu_type = "ppc/e500",
Andy Whitcroft7a45fb12006-01-13 12:35:49 +00001239 .oprofile_type = PPC_OPROFILE_BOOKE,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001240 .platform = "ppc8548",
Kumar Gala5b37b702005-06-21 17:15:18 -07001241 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242#endif
1243#if !CLASSIC_PPC
1244 { /* default match */
1245 .pvr_mask = 0x00000000,
1246 .pvr_value = 0x00000000,
1247 .cpu_name = "(generic PPC)",
Kumar Gala10b35d92005-09-23 14:08:58 -05001248 .cpu_features = CPU_FTRS_GENERIC_32,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 .cpu_user_features = PPC_FEATURE_32,
1250 .icache_bsize = 32,
1251 .dcache_bsize = 32,
Paul Mackerras80f15dc2006-01-14 10:11:39 +11001252 .platform = "powerpc",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 }
1254#endif /* !CLASSIC_PPC */
Stephen Rothwell49209602005-10-12 15:55:09 +10001255#endif /* CONFIG_PPC32 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256};
Benjamin Herrenschmidt42c4aaa2006-10-24 16:42:40 +10001257
Paul Mackerras974a76f2006-11-10 20:38:53 +11001258struct cpu_spec *identify_cpu(unsigned long offset, unsigned int pvr)
Benjamin Herrenschmidt42c4aaa2006-10-24 16:42:40 +10001259{
1260 struct cpu_spec *s = cpu_specs;
1261 struct cpu_spec **cur = &cur_cpu_spec;
Benjamin Herrenschmidt42c4aaa2006-10-24 16:42:40 +10001262 int i;
1263
1264 s = PTRRELOC(s);
1265 cur = PTRRELOC(cur);
1266
Benjamin Herrenschmidt42c4aaa2006-10-24 16:42:40 +10001267 for (i = 0; i < ARRAY_SIZE(cpu_specs); i++,s++)
1268 if ((pvr & s->pvr_mask) == s->pvr_value) {
1269 *cur = cpu_specs + i;
1270#ifdef CONFIG_PPC64
1271 /* ppc64 expects identify_cpu to also call setup_cpu
1272 * for that processor. I will consolidate that at a
1273 * later time, for now, just use our friend #ifdef.
1274 * we also don't need to PTRRELOC the function pointer
1275 * on ppc64 as we are running at 0 in real mode.
1276 */
1277 if (s->cpu_setup) {
1278 s->cpu_setup(offset, s);
1279 }
1280#endif /* CONFIG_PPC64 */
1281 return s;
1282 }
1283 BUG();
1284 return NULL;
1285}
1286
Benjamin Herrenschmidt0909c8c2006-10-20 11:47:18 +10001287void do_feature_fixups(unsigned long value, void *fixup_start, void *fixup_end)
Benjamin Herrenschmidt42c4aaa2006-10-24 16:42:40 +10001288{
1289 struct fixup_entry {
1290 unsigned long mask;
1291 unsigned long value;
Benjamin Herrenschmidt0909c8c2006-10-20 11:47:18 +10001292 long start_off;
1293 long end_off;
Benjamin Herrenschmidt42c4aaa2006-10-24 16:42:40 +10001294 } *fcur, *fend;
1295
1296 fcur = fixup_start;
1297 fend = fixup_end;
1298
1299 for (; fcur < fend; fcur++) {
1300 unsigned int *pstart, *pend, *p;
1301
1302 if ((value & fcur->mask) == fcur->value)
1303 continue;
1304
1305 /* These PTRRELOCs will disappear once the new scheme for
1306 * modules and vdso is implemented
1307 */
Benjamin Herrenschmidt0909c8c2006-10-20 11:47:18 +10001308 pstart = ((unsigned int *)fcur) + (fcur->start_off / 4);
1309 pend = ((unsigned int *)fcur) + (fcur->end_off / 4);
Benjamin Herrenschmidt42c4aaa2006-10-24 16:42:40 +10001310
1311 for (p = pstart; p < pend; p++) {
1312 *p = 0x60000000u;
1313 asm volatile ("dcbst 0, %0" : : "r" (p));
1314 }
1315 asm volatile ("sync" : : : "memory");
1316 for (p = pstart; p < pend; p++)
1317 asm volatile ("icbi 0,%0" : : "r" (p));
1318 asm volatile ("sync; isync" : : : "memory");
1319 }
1320}