Warning: This file is not a C or C++ file. It does not have highlighting.
| 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
|---|---|
| 2 | /* |
| 3 | * Copyright (C) 2001 Ben. Herrenschmidt (benh@kernel.crashing.org) |
| 4 | */ |
| 5 | |
| 6 | static struct cpu_spec cpu_specs[] __initdata = { |
| 7 | { /* 8xx */ |
| 8 | .pvr_mask = 0xffff0000, |
| 9 | .pvr_value = PVR_8xx, |
| 10 | .cpu_name = "8xx", |
| 11 | /* |
| 12 | * CPU_FTR_MAYBE_CAN_DOZE is possible, |
| 13 | * if the 8xx code is there.... |
| 14 | */ |
| 15 | .cpu_features = CPU_FTRS_8XX, |
| 16 | .cpu_user_features = PPC_FEATURE_32 | PPC_FEATURE_HAS_MMU, |
| 17 | .mmu_features = MMU_FTR_TYPE_8xx, |
| 18 | .icache_bsize = 16, |
| 19 | .dcache_bsize = 16, |
| 20 | .machine_check = machine_check_8xx, |
| 21 | .platform = "ppc823", |
| 22 | }, |
| 23 | }; |
| 24 |
Warning: This file is not a C or C++ file. It does not have highlighting.
