cpu_specs_8xx.h 596 B

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