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

4.104.114.84.95
Last change on this file since 73cdeb6 was 73cdeb6, checked in by Thomas Doerfler <Thomas.Doerfler@…>, on 07/04/07 at 12:25:49

merged individual exception handler code to a common one.

  • Property mode set to 100644
File size: 2.3 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_405:               return "PPC405";
33    case PPC_601:               return "MPC601";
34    case PPC_5XX:               return "MPC5XX";
35    case PPC_603:               return "MPC603";
36    case PPC_603ev:             return "MPC603ev";
37    case PPC_604:               return "MPC604";
38    case PPC_750:               return "MPC750";
39    case PPC_7400:              return "MPC7400";
40    case PPC_7455:              return "MPC7455";
41    case PPC_7457:              return "MPC7457";
42    case PPC_603le:             return "MPC603le";
43    case PPC_604e:              return "MPC604e";
44    case PPC_604r:              return "MPC604r";
45    case PPC_620:               return "MPC620";
46    case PPC_860:               return "MPC860";
47    case PPC_8260:              return "MPC8260";
48    case PPC_8245:              return "MPC8245";
49        case PPC_PSIM:          return "PSIM";
50    default:
51      printk("Unknown CPU value of 0x%x. Please add it to "
52             "<libcpu/powerpc/shared/include/cpuIdent.c>\n", cpu );
53  }
54  return "UNKNOWN";
55}
56
57ppc_cpu_id_t get_ppc_cpu_type()
58{
59  unsigned int pvr = (_read_PVR() >> 16);
60  current_ppc_cpu = (ppc_cpu_id_t) pvr;
61  switch (pvr) {
62    case PPC_405:
63    case PPC_601:
64    case PPC_5XX:
65    case PPC_603:
66    case PPC_603ev:
67    case PPC_603le:
68    case PPC_604:
69    case PPC_604r:
70    case PPC_750:
71    case PPC_7400:
72    case PPC_7455:
73    case PPC_7457:
74    case PPC_604e:
75    case PPC_620:
76    case PPC_860:
77    case PPC_8260:
78    case PPC_8245:
79        case PPC_PSIM:
80      return current_ppc_cpu;
81    default:
82      printk("Unknown PVR value of 0x%x. Please add it to "
83             "<libcpu/powerpc/shared/include/cpuIdent.c>\n", pvr );
84    return PPC_UNKNOWN;
85  }
86}
87
88ppc_cpu_revision_t get_ppc_cpu_revision()
89{
90  ppc_cpu_revision_t rev = (ppc_cpu_revision_t) (_read_PVR() & 0xffff);
91  current_ppc_revision = rev;
92  return rev;
93}
Note: See TracBrowser for help on using the repository browser.