OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [lib/] [libcpu/] [powerpc/] [shared/] [cpu.h] - Blame information for rev 173

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*
2
 * cpu.h
3
 *
4
 *          This file contains some powerpc MSR and registers access definitions.
5
 *
6
 * It is a stripped down version of linux ppc processor.h file...
7
 *
8
 * Copyright (C) 1999  Eric Valette (valette@crf.canon.fr)
9
 *                     Canon Centre Recherche France.
10
 *
11
 *  The license and distribution terms for this file may be
12
 *  found in found in the file LICENSE in this distribution or at
13
 *  http://www.OARcorp.com/rtems/license.html.
14
 *
15
 *  $Id: cpu.h,v 1.2 2001-09-27 12:01:30 chris Exp $
16
 */
17
 
18
#ifndef __ASM_PPC_PROCESSOR_H
19
#define __ASM_PPC_PROCESSOR_H
20
 
21
#include <bsp/residual.h>
22
 
23
/* Bit encodings for Machine State Register (MSR) */
24
#define MSR_POW         (1<<18)         /* Enable Power Management */
25
#define MSR_TGPR        (1<<17)         /* TLB Update registers in use */
26
#define MSR_ILE         (1<<16)         /* Interrupt Little-Endian enable */
27
#define MSR_EE          (1<<15)         /* External Interrupt enable */
28
#define MSR_PR          (1<<14)         /* Supervisor/User privilege */
29
#define MSR_FP          (1<<13)         /* Floating Point enable */
30
#define MSR_ME          (1<<12)         /* Machine Check enable */
31
#define MSR_FE0         (1<<11)         /* Floating Exception mode 0 */
32
#define MSR_SE          (1<<10)         /* Single Step */
33
#define MSR_BE          (1<<9)          /* Branch Trace */
34
#define MSR_FE1         (1<<8)          /* Floating Exception mode 1 */
35
#define MSR_IP          (1<<6)          /* Exception prefix 0x000/0xFFF */
36
#define MSR_IR          (1<<5)          /* Instruction MMU enable */
37
#define MSR_DR          (1<<4)          /* Data MMU enable */
38
#define MSR_RI          (1<<1)          /* Recoverable Exception */
39
#define MSR_LE          (1<<0)          /* Little-Endian enable */
40
 
41
#define MSR_            MSR_ME|MSR_RI
42
#define MSR_KERNEL      MSR_|MSR_IR|MSR_DR
43
#define MSR_USER        MSR_KERNEL|MSR_PR|MSR_EE
44
 
45
/* Bit encodings for Hardware Implementation Register (HID0)
46
   on PowerPC 603, 604, etc. processors (not 601). */
47
#define HID0_EMCP       (1<<31)         /* Enable Machine Check pin */
48
#define HID0_EBA        (1<<29)         /* Enable Bus Address Parity */
49
#define HID0_EBD        (1<<28)         /* Enable Bus Data Parity */
50
#define HID0_SBCLK      (1<<27)
51
#define HID0_EICE       (1<<26)
52
#define HID0_ECLK       (1<<25)
53
#define HID0_PAR        (1<<24)
54
#define HID0_DOZE       (1<<23)
55
#define HID0_NAP        (1<<22)
56
#define HID0_SLEEP      (1<<21)
57
#define HID0_DPM        (1<<20)
58
#define HID0_ICE        (1<<15)         /* Instruction Cache Enable */
59
#define HID0_DCE        (1<<14)         /* Data Cache Enable */
60
#define HID0_ILOCK      (1<<13)         /* Instruction Cache Lock */
61
#define HID0_DLOCK      (1<<12)         /* Data Cache Lock */
62
#define HID0_ICFI       (1<<11)         /* Instruction Cache Flash Invalidate */
63
#define HID0_DCI        (1<<10)         /* Data Cache Invalidate */
64
#define HID0_SIED       (1<<7)          /* Serial Instruction Execution [Disable] */
65
#define HID0_BHTE       (1<<2)          /* Branch History Table Enable */
66
#define HID0_BTCD       (1<<1)          /* Branch target cache disable */
67
 
68
/* fpscr settings */
69
#define FPSCR_FX        (1<<31)
70
#define FPSCR_FEX       (1<<30)
71
 
72
#define _MACH_prep     1
73
#define _MACH_Pmac     2 /* pmac or pmac clone (non-chrp) */
74
#define _MACH_chrp     4 /* chrp machine */
75
#define _MACH_mbx      8 /* Motorola MBX board */
76
#define _MACH_apus    16 /* amiga with phase5 powerup */
77
#define _MACH_fads    32 /* Motorola FADS board */
78
 
79
/* see residual.h for these */
80
#define _PREP_Motorola 0x01  /* motorola prep */
81
#define _PREP_Firm     0x02  /* firmworks prep */
82
#define _PREP_IBM      0x00  /* ibm prep */
83
#define _PREP_Bull     0x03  /* bull prep */
84
 
85
/* these are arbitrary */
86
#define _CHRP_Motorola 0x04  /* motorola chrp, the cobra */
87
#define _CHRP_IBM     0x05   /* IBM chrp, the longtrail and longtrail 2 */
88
 
89
#define _GLOBAL(n)\
90
        .globl n;\
91
n:
92
 
93
#define TBRU    269     /* Time base Upper/Lower (Reading) */
94
#define TBRL    268
95
#define TBWU    284     /* Time base Upper/Lower (Writing) */
96
#define TBWL    285
97
#define XER     1
98
#define LR      8
99
#define CTR     9
100
#define HID0    1008    /* Hardware Implementation */
101
#define PVR     287     /* Processor Version */
102
#define IBAT0U  528     /* Instruction BAT #0 Upper/Lower */
103
#define IBAT0L  529
104
#define IBAT1U  530     /* Instruction BAT #1 Upper/Lower */
105
#define IBAT1L  531
106
#define IBAT2U  532     /* Instruction BAT #2 Upper/Lower */
107
#define IBAT2L  533
108
#define IBAT3U  534     /* Instruction BAT #3 Upper/Lower */
109
#define IBAT3L  535
110
#define DBAT0U  536     /* Data BAT #0 Upper/Lower */
111
#define DBAT0L  537
112
#define DBAT1U  538     /* Data BAT #1 Upper/Lower */
113
#define DBAT1L  539
114
#define DBAT2U  540     /* Data BAT #2 Upper/Lower */
115
#define DBAT2L  541
116
#define DBAT3U  542     /* Data BAT #3 Upper/Lower */
117
#define DBAT3L  543
118
#define DMISS   976     /* TLB Lookup/Refresh registers */
119
#define DCMP    977
120
#define HASH1   978
121
#define HASH2   979
122
#define IMISS   980
123
#define ICMP    981
124
#define RPA     982
125
#define SDR1    25      /* MMU hash base register */
126
#define DAR     19      /* Data Address Register */
127
#define SPR0    272     /* Supervisor Private Registers */
128
#define SPRG0   272
129
#define SPR1    273
130
#define SPRG1   273
131
#define SPR2    274
132
#define SPRG2   274
133
#define SPR3    275
134
#define SPRG3   275
135
#define DSISR   18
136
#define SRR0    26      /* Saved Registers (exception) */
137
#define SRR1    27
138
#define IABR    1010    /* Instruction Address Breakpoint */
139
#define DEC     22      /* Decrementer */
140
#define EAR     282     /* External Address Register */
141
#define L2CR    1017    /* PPC 750 L2 control register */
142
 
143
#define THRM1   1020
144
#define THRM2   1021
145
#define THRM3   1022
146
#define THRM1_TIN 0x1
147
#define THRM1_TIV 0x2
148
#define THRM1_THRES (0x7f<<2)
149
#define THRM1_TID (1<<29)
150
#define THRM1_TIE (1<<30)
151
#define THRM1_V   (1<<31)
152
#define THRM3_E   (1<<31)
153
 
154
/* Segment Registers */
155
#define SR0     0
156
#define SR1     1
157
#define SR2     2
158
#define SR3     3
159
#define SR4     4
160
#define SR5     5
161
#define SR6     6
162
#define SR7     7
163
#define SR8     8
164
#define SR9     9
165
#define SR10    10
166
#define SR11    11
167
#define SR12    12
168
#define SR13    13
169
#define SR14    14
170
#define SR15    15
171
 
172
#ifndef ASM
173
typedef enum {
174
  PPC_601       = 0x1,
175
  PPC_603       = 0x3,
176
  PPC_604       = 0x4,
177
  PPC_603e      = 0x6,
178
  PPC_603ev     = 0x7,
179
  PPC_750       = 0x8,
180
  PPC_604e      = 0x9,
181
  PPC_604r      = 0xA,
182
  PPC_620       = 0x16,
183
  PPC_860       = 0x50,
184
  PPC_821       = PPC_860,
185
  PPC_UNKNOWN   = 0xff
186
} ppc_cpu_id_t;
187
 
188
typedef unsigned short ppc_cpu_revision_t;
189
 
190
extern ppc_cpu_id_t get_ppc_cpu_type();
191
extern ppc_cpu_id_t current_ppc_cpu;
192
extern ppc_cpu_revision_t get_ppc_cpu_revision();
193
extern ppc_cpu_revision_t current_ppc_revision;
194
/*
195
 *  Routines to access the time base register
196
 */
197
 
198
static inline unsigned long long PPC_Get_timebase_register( void )
199
{
200
  unsigned long tbr_low;
201
  unsigned long tbr_high;
202
  unsigned long tbr_high_old;
203
  unsigned long long tbr;
204
 
205
  do {
206
    asm volatile( "mftbu %0" : "=r" (tbr_high_old));
207
    asm volatile( "mftb  %0" : "=r" (tbr_low));
208
    asm volatile( "mftbu %0" : "=r" (tbr_high));
209
  } while ( tbr_high_old != tbr_high );
210
 
211
  tbr = tbr_high;
212
  tbr <<= 32;
213
  tbr |= tbr_low;
214
  return tbr;
215
}
216
 
217
static inline  void PPC_Set_timebase_register (unsigned long long tbr)
218
{
219
  unsigned long tbr_low;
220
  unsigned long tbr_high;
221
 
222
  tbr_low = (tbr & 0xffffffff) ;
223
  tbr_high = (tbr >> 32) & 0xffffffff;
224
  asm volatile( "mtspr 284, %0" : : "r" (tbr_low));
225
  asm volatile( "mtspr 285, %0" : : "r" (tbr_high));
226
 
227
}
228
#endif
229
 
230
#define _CPU_MSR_GET( _msr_value ) \
231
  do { \
232
    _msr_value = 0; \
233
    asm volatile ("mfmsr %0" : "=&r" ((_msr_value)) : "0" ((_msr_value))); \
234
  } while (0)
235
 
236
#define _CPU_MSR_SET( _msr_value ) \
237
{ asm volatile ("mtmsr %0" : "=&r" ((_msr_value)) : "0" ((_msr_value))); }
238
 
239
#define _CPU_ISR_Disable( _isr_cookie ) \
240
  { register unsigned int _disable_mask = MSR_EE; \
241
    _isr_cookie = 0; \
242
    asm volatile ( \
243
        "mfmsr %0; andc %1,%0,%1; mtmsr %1" : \
244
        "=&r" ((_isr_cookie)), "=&r" ((_disable_mask)) : \
245
        "0" ((_isr_cookie)), "1" ((_disable_mask)) \
246
        ); \
247
  }
248
 
249
 
250
#define _CPU_Data_Cache_Block_Flush( _address ) \
251
  do { register void *__address = (_address); \
252
       register unsigned32 _zero = 0; \
253
       asm volatile ( "dcbf %0,%1" : \
254
                      "=r" (_zero), "=r" (__address) : \
255
                      "0" (_zero), "1" (__address) \
256
       ); \
257
  } while (0)
258
 
259
 
260
/*
261
 *  Enable interrupts to the previous level (returned by _CPU_ISR_Disable).
262
 *  This indicates the end of an RTEMS critical section.  The parameter
263
 *  _isr_cookie is not modified.
264
 */
265
 
266
#define _CPU_ISR_Enable( _isr_cookie )  \
267
  { \
268
     asm volatile ( "mtmsr %0" : \
269
                   "=r" ((_isr_cookie)) : \
270
                   "0" ((_isr_cookie))); \
271
  }
272
 
273
/*
274
 *  This temporarily restores the interrupt to _isr_cookie before immediately
275
 *  disabling them again.  This is used to divide long RTEMS critical
276
 *  sections into two or more parts.  The parameter _isr_cookie is not
277
 *  modified.
278
 *
279
 *  NOTE:  The version being used is not very optimized but it does
280
 *         not trip a problem in gcc where the disable mask does not
281
 *         get loaded.  Check this for future (post 10/97 gcc versions.
282
 */
283
 
284
#define _CPU_ISR_Flash( _isr_cookie ) \
285
  { register unsigned int _disable_mask = MSR_EE; \
286
    asm volatile ( \
287
      "mtmsr %0; andc %1,%0,%1; mtmsr %1" : \
288
      "=r" ((_isr_cookie)), "=r" ((_disable_mask)) : \
289
      "0" ((_isr_cookie)), "1" ((_disable_mask)) \
290
    ); \
291
  }
292
 
293
 
294
/* end of ISR handler macros */
295
 
296
/*
297
 *  Simple spin delay in microsecond units for device drivers.
298
 *  This is very dependent on the clock speed of the target.
299
 */
300
 
301
#define CPU_Get_timebase_low( _value ) \
302
    asm volatile( "mftb  %0" : "=r" (_value) )
303
 
304
#define delay( _microseconds ) \
305
  do { \
306
    unsigned32 start, ticks, now; \
307
    CPU_Get_timebase_low( start ) ; \
308
    ticks = (_microseconds) * rtems_cpu_configuration_get_clicks_per_usec(); \
309
    do \
310
      CPU_Get_timebase_low( now ) ; \
311
    while (now - start < ticks); \
312
  } while (0)
313
 
314
#define delay_in_bus_cycles( _cycles ) \
315
  do { \
316
    unsigned32 start, now; \
317
    CPU_Get_timebase_low( start ); \
318
    do \
319
      CPU_Get_timebase_low( now ); \
320
    while (now - start < (_cycles)); \
321
  } while (0)
322
 
323
#define PPC_Set_decrementer( _clicks ) \
324
  do { \
325
    asm volatile( "mtdec %0" : "=r" ((_clicks)) : "r" ((_clicks)) ); \
326
  } while (0)
327
 
328
#endif /* __ASM_PPC_PROCESSOR_H */
329
 
330
 
331
 
332
 
333
 
334
 
335
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.