source: rtems/c/src/lib/libcpu/powerpc/shared/include/cpuIdent.c @ 73b5bd5d

4.104.114.84.95
Last change on this file since 73b5bd5d was 9c4a30e2, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/08/04 at 15:40:40

2004-03-08 Ralf Corsepius <corsepiu@…>

PR 587/bsps

  • shared/include/cpuIdent.h, shared/include/cpuIdent.c: Add defines for MPC_5XX.
  • Property mode set to 100644
File size: 2.0 KB
Line 
1/*
2 *  cpuIdent.c -- Cpu identification code
3 *
4 *  Copyright (C) 1999 Eric Valette. valette@crf.canon.fr
5 *
6 *  Added MPC8260 Andy Dachs <a.dachs@sstl.co.uk>
7 *  Surrey Satellite Technology Limited
8 *
9 *  The license and distribution terms for this file may be
10 *  found in found in the file LICENSE in this distribution or at
11 *  http://www.rtems.com/license/LICENSE.
12 *
13 * $Id$
14 *
15 */
16
17#include <libcpu/cpuIdent.h>
18#include <libcpu/spr.h>
19#include <rtems/bspIo.h>
20
21/*
22 * Generate inline code to read Processor Version Register
23 */
24SPR_RO(PVR)
25
26ppc_cpu_id_t current_ppc_cpu = PPC_UNKNOWN;
27ppc_cpu_revision_t current_ppc_revision = 0xff;
28
29char *get_ppc_cpu_type_name(ppc_cpu_id_t cpu)
30{
31  switch (cpu) {
32    case PPC_601:               return "MPC601";
33    case PPC_5XX:               return "MPC5XX";
34    case PPC_603:               return "MPC603";
35    case PPC_603ev:             return "MPC603ev";
36    case PPC_604:               return "MPC604";
37    case PPC_750:               return "MPC750";
38    case PPC_7400:              return "MPC7400";
39    case PPC_604e:              return "MPC604e";
40    case PPC_604r:              return "MPC604r";
41    case PPC_620:               return "MPC620";
42    case PPC_860:               return "MPC860";
43    case PPC_8260:              return "MPC8260";
44    default:
45      printk("Unknown CPU value of 0x%x. Please add it to <libcpu/powerpc/shared/include/cpuIdent.c>\n", cpu );
46  }
47  return "UNKNOWN";
48}
49
50ppc_cpu_id_t get_ppc_cpu_type()
51{
52  unsigned int pvr = (_read_PVR() >> 16);
53  current_ppc_cpu = (ppc_cpu_id_t) pvr;
54  switch (pvr) {
55    case PPC_601:
56    case PPC_5XX:
57    case PPC_603:
58    case PPC_603ev:
59    case PPC_604:
60    case PPC_604r:
61    case PPC_750:
62    case PPC_7400:
63    case PPC_604e:
64    case PPC_620:
65    case PPC_860:
66    case PPC_8260:
67      return current_ppc_cpu;
68    default:
69      printk("Unknown PVR value of 0x%x. Please add it to <libcpu/powerpc/shared/include/cpuIdent.c>\n", pvr );
70    return PPC_UNKNOWN;
71  }
72}
73
74ppc_cpu_revision_t get_ppc_cpu_revision()
75{
76  ppc_cpu_revision_t rev = (ppc_cpu_revision_t) (_read_PVR() & 0xffff);
77  current_ppc_revision = rev;
78  return rev;
79}
Note: See TracBrowser for help on using the repository browser.