summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/powerpc/new-exceptions/raw_exception.c
blob: 866bf30f97ea06c024c049b7b73f1cd1e2daaf4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
/*
 * raw_exception.c  - This file contains implementation of C function to
 *          	      Instantiate 60x ppc primary exception entries.
 *	 	      More detailed information can be found on motorola
 *	    	      site and more precisely in the following book :
 *
 *		      MPC750
 *		      Risc Microporcessor User's Manual
 *		      Motorola REF : MPC750UM/AD 8/97
 *
 * Copyright (C) 1999  Eric Valette (valette@crf.canon.fr)
 *                     Canon Centre Recherche France.
 *
 * Enhanced by Jay Kulpinski <jskulpin@eng01.gdds.com>
 * to support 603, 603e, 604, 604e exceptions
 *
 * moved to "libcpu/powerpc/new-exceptions and consolidated
 * by Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
 * to be common for all PPCs with new excpetions
 *
 *  The license and distribution terms for this file may be
 *  found in found in the file LICENSE in this distribution or at
 *  http://www.rtems.com/license/LICENSE.
 *
 * $Id$
 */
#include <rtems.h>
#include <rtems/system.h>
#include <rtems/score/powerpc.h>
#include <rtems/score/isr.h>
#include <rtems/bspIo.h>
#include <libcpu/raw_exception.h>
#include <libcpu/cpuIdent.h>

#include <string.h>

/* DO NOT INTRODUCE #ifdef <cpu_flavor> in this file */

/* enum ppc_raw_exception_category should fit into this type;
 * we are setting up arrays of these for all known CPUs
 * hence the attempt to save a few bytes.
 */
typedef uint8_t cat_ini_t;

static rtems_raw_except_connect_data* 		raw_except_table;
static rtems_raw_except_connect_data  		default_raw_except_entry;
static rtems_raw_except_global_settings* 	local_settings;

void * codemove(void *, const void *, unsigned int, unsigned long);

boolean bsp_exceptions_in_RAM = TRUE;

/* DEPRECATED VARIABLE; we need this to support
 * libbsp/powerpc/shared/vectors/vectors.S;
 * new BSPs should NOT use this.
 */
uint32_t bsp_raw_vector_is_405_critical = 0;

uint32_t ppc_exc_vector_base = 0;

void* ppc_get_vector_addr(rtems_vector vector)
{
	unsigned vaddr;

	vaddr = ((unsigned)vector) << 8;

	switch(vector) {
		/*
		 * some vectors are located at odd addresses and only available
		 * on some CPU derivates. this construct will handle them
		 * if available
		 */
		/* Special case; altivec unavailable doesn't fit :-( */
		case ASM_60X_VEC_VECTOR:
#ifndef ASM_60X_VEC_VECTOR_OFFSET
#define ASM_60X_VEC_VECTOR_OFFSET 0xf20
#endif
			if ( ppc_cpu_has_altivec() )
				vaddr = ASM_60X_VEC_VECTOR_OFFSET;
			break;

		default:
			break;
	}

	if ( PPC_405 == current_ppc_cpu ) {
		switch ( vector ) {
			case ASM_BOOKE_FIT_VECTOR:
#ifndef ASM_PPC405_FIT_VECTOR_OFFSET
#define ASM_PPC405_FIT_VECTOR_OFFSET 0x1010
#endif
				vaddr = ASM_PPC405_FIT_VECTOR_OFFSET;
				break;
			case ASM_BOOKE_WDOG_VECTOR:
#ifndef ASM_PPC405_WDOG_VECTOR_OFFSET
#define ASM_PPC405_WDOG_VECTOR_OFFSET 0x1020
#endif
				vaddr = ASM_PPC405_WDOG_VECTOR_OFFSET;
				break;
			case ASM_TRACE_VECTOR:
#ifndef ASM_PPC405_TRACE_VECTOR_OFFSET
#define ASM_PPC405_TRACE_VECTOR_OFFSET	0x2000
#endif
				vaddr = ASM_PPC405_TRACE_VECTOR_OFFSET;
				break;
			case ASM_PPC405_APU_UNAVAIL_VECTOR:
				vaddr = ASM_60X_VEC_VECTOR_OFFSET;
			default:
				break;
		}
	}

	if (bsp_exceptions_in_RAM) {
		if (ppc_cpu_has_ivpr_and_ivor()) {
			return ((void*) ((vaddr >> 4) + ppc_exc_vector_base));
		} else {
			return ((void*) (vaddr + ppc_exc_vector_base));
		}
	}

	return ((void*)  (vaddr + 0xfff00000));
}

static const cat_ini_t mpc_860_vector_categories[LAST_VALID_EXC + 1] = {
  [ ASM_RESET_VECTOR           ] = PPC_EXC_CLASSIC,
  [ ASM_MACH_VECTOR            ] = PPC_EXC_CLASSIC,
  [ ASM_PROT_VECTOR            ] = PPC_EXC_CLASSIC,
  [ ASM_ISI_VECTOR             ] = PPC_EXC_CLASSIC,
  [ ASM_EXT_VECTOR             ] = PPC_EXC_CLASSIC | PPC_EXC_ASYNC,
  [ ASM_ALIGN_VECTOR           ] = PPC_EXC_CLASSIC,
  [ ASM_PROG_VECTOR            ] = PPC_EXC_CLASSIC,
  [ ASM_FLOAT_VECTOR           ] = PPC_EXC_CLASSIC,
  [ ASM_DEC_VECTOR             ] = PPC_EXC_CLASSIC | PPC_EXC_ASYNC,
    
  [ ASM_SYS_VECTOR             ] = PPC_EXC_CLASSIC,
  [ ASM_TRACE_VECTOR           ] = PPC_EXC_CLASSIC,
  [ ASM_8XX_FLOATASSIST_VECTOR ] = PPC_EXC_CLASSIC,

  [ ASM_8XX_SOFTEMUL_VECTOR    ] = PPC_EXC_CLASSIC,
  [ ASM_8XX_ITLBMISS_VECTOR    ] = PPC_EXC_CLASSIC,
  [ ASM_8XX_DTLBMISS_VECTOR    ] = PPC_EXC_CLASSIC,
  [ ASM_8XX_ITLBERROR_VECTOR   ] = PPC_EXC_CLASSIC,
  [ ASM_8XX_DTLBERROR_VECTOR   ] = PPC_EXC_CLASSIC,

  [ ASM_8XX_DBREAK_VECTOR      ] = PPC_EXC_CLASSIC,
  [ ASM_8XX_IBREAK_VECTOR      ] = PPC_EXC_CLASSIC,
  [ ASM_8XX_PERIFBREAK_VECTOR  ] = PPC_EXC_CLASSIC,
  [ ASM_8XX_DEVPORT_VECTOR     ] = PPC_EXC_CLASSIC,
};


static const cat_ini_t mpc_5xx_vector_categories[LAST_VALID_EXC + 1] = {
  [ ASM_RESET_VECTOR           ] = PPC_EXC_CLASSIC,
  [ ASM_MACH_VECTOR            ] = PPC_EXC_CLASSIC,

  [ ASM_EXT_VECTOR             ] = PPC_EXC_CLASSIC | PPC_EXC_ASYNC,
  [ ASM_ALIGN_VECTOR           ] = PPC_EXC_CLASSIC,
  [ ASM_PROG_VECTOR            ] = PPC_EXC_CLASSIC,
  [ ASM_FLOAT_VECTOR           ] = PPC_EXC_CLASSIC,
  [ ASM_DEC_VECTOR             ] = PPC_EXC_CLASSIC | PPC_EXC_ASYNC,

  [ ASM_SYS_VECTOR             ] = PPC_EXC_CLASSIC,
  [ ASM_TRACE_VECTOR           ] = PPC_EXC_CLASSIC,
  [ ASM_5XX_FLOATASSIST_VECTOR ] = PPC_EXC_CLASSIC,

  [ ASM_5XX_SOFTEMUL_VECTOR    ] = PPC_EXC_CLASSIC,

  [ ASM_5XX_IPROT_VECTOR       ] = PPC_EXC_CLASSIC,
  [ ASM_5XX_DPROT_VECTOR       ] = PPC_EXC_CLASSIC,

  [ ASM_5XX_DBREAK_VECTOR      ] = PPC_EXC_CLASSIC,
  [ ASM_5XX_IBREAK_VECTOR      ] = PPC_EXC_CLASSIC,
  [ ASM_5XX_MEBREAK_VECTOR     ] = PPC_EXC_CLASSIC,
  [ ASM_5XX_NMEBREAK_VECTOR    ] = PPC_EXC_CLASSIC,
};

static const cat_ini_t ppc_405_vector_categories[LAST_VALID_EXC + 1] = {
  [ ASM_BOOKE_CRIT_VECTOR      ] = PPC_EXC_405_CRITICAL | PPC_EXC_ASYNC,
  [ ASM_MACH_VECTOR            ] = PPC_EXC_405_CRITICAL,
  [ ASM_PROT_VECTOR            ] = PPC_EXC_CLASSIC,
  [ ASM_ISI_VECTOR             ] = PPC_EXC_CLASSIC,
  [ ASM_EXT_VECTOR             ] = PPC_EXC_CLASSIC | PPC_EXC_ASYNC,
  [ ASM_ALIGN_VECTOR           ] = PPC_EXC_CLASSIC,
  [ ASM_PROG_VECTOR            ] = PPC_EXC_CLASSIC,
  [ ASM_FLOAT_VECTOR           ] = PPC_EXC_CLASSIC,

  [ ASM_PPC405_APU_UNAVAIL_VECTOR] = PPC_EXC_CLASSIC,

  [ ASM_SYS_VECTOR             ] = PPC_EXC_CLASSIC,



  [ ASM_BOOKE_DEC_VECTOR       ] = PPC_EXC_CLASSIC | PPC_EXC_ASYNC,		/* PIT */
  [ ASM_BOOKE_FIT_VECTOR       ] = PPC_EXC_CLASSIC | PPC_EXC_ASYNC,		/* FIT */
  [ ASM_BOOKE_WDOG_VECTOR      ] = PPC_EXC_405_CRITICAL | PPC_EXC_ASYNC,
  [ ASM_BOOKE_DTLBMISS_VECTOR  ] = PPC_EXC_CLASSIC,
  [ ASM_BOOKE_ITLBMISS_VECTOR  ] = PPC_EXC_CLASSIC,
  [ ASM_TRACE_VECTOR           ] = PPC_EXC_405_CRITICAL,
};


#define PPC_BASIC_VECS \
  [ ASM_RESET_VECTOR      ] = PPC_EXC_CLASSIC, \
  [ ASM_MACH_VECTOR       ] = PPC_EXC_CLASSIC, \
  [ ASM_PROT_VECTOR       ] = PPC_EXC_CLASSIC, \
  [ ASM_ISI_VECTOR        ] = PPC_EXC_CLASSIC, \
  [ ASM_EXT_VECTOR        ] = PPC_EXC_CLASSIC | PPC_EXC_ASYNC, \
  [ ASM_ALIGN_VECTOR      ] = PPC_EXC_CLASSIC, \
  [ ASM_PROG_VECTOR       ] = PPC_EXC_CLASSIC, \
  [ ASM_FLOAT_VECTOR      ] = PPC_EXC_CLASSIC, \
  [ ASM_DEC_VECTOR        ] = PPC_EXC_CLASSIC | PPC_EXC_ASYNC, \
  [ ASM_SYS_VECTOR        ] = PPC_EXC_CLASSIC, \
  [ ASM_TRACE_VECTOR      ] = PPC_EXC_CLASSIC

static ppc_raw_exception_category altivec_vector_is_valid(rtems_vector vector)
{
	if ( ppc_cpu_has_altivec() ) {
		switch(vector) {
			case ASM_60X_VEC_VECTOR:
			case ASM_60X_VEC_ASSIST_VECTOR:
				return PPC_EXC_CLASSIC;
			default:
				break;
		}
	}
  return PPC_EXC_INVALID;
}

static const cat_ini_t mpc_750_vector_categories[LAST_VALID_EXC + 1] = {
	PPC_BASIC_VECS,
  [ ASM_60X_SYSMGMT_VECTOR ] = PPC_EXC_CLASSIC | PPC_EXC_ASYNC,
  [ ASM_60X_ADDR_VECTOR    ] = PPC_EXC_CLASSIC,
  [ ASM_60X_ITM_VECTOR     ] = PPC_EXC_CLASSIC,
};

static const cat_ini_t psim_vector_categories[LAST_VALID_EXC + 1] = {
  [ ASM_RESET_VECTOR       ] = PPC_EXC_CLASSIC,
  [ ASM_MACH_VECTOR        ] = PPC_EXC_CLASSIC,
  [ ASM_PROT_VECTOR        ] = PPC_EXC_CLASSIC,
  [ ASM_ISI_VECTOR         ] = PPC_EXC_CLASSIC,
  [ ASM_EXT_VECTOR         ] = PPC_EXC_CLASSIC | PPC_EXC_ASYNC,
  [ ASM_ALIGN_VECTOR       ] = PPC_EXC_CLASSIC,
  [ ASM_PROG_VECTOR        ] = PPC_EXC_CLASSIC,
  [ ASM_FLOAT_VECTOR       ] = PPC_EXC_CLASSIC,
  [ ASM_DEC_VECTOR         ] = PPC_EXC_CLASSIC | PPC_EXC_ASYNC,
  [ ASM_SYS_VECTOR         ] = PPC_EXC_INVALID,
  [ ASM_TRACE_VECTOR       ] = PPC_EXC_CLASSIC,
  [ ASM_60X_PERFMON_VECTOR ] = PPC_EXC_INVALID,
  [ ASM_60X_SYSMGMT_VECTOR ] = PPC_EXC_CLASSIC | PPC_EXC_ASYNC,
  [ ASM_60X_IMISS_VECTOR   ] = PPC_EXC_CLASSIC,
  [ ASM_60X_DLMISS_VECTOR  ] = PPC_EXC_CLASSIC,
  [ ASM_60X_DSMISS_VECTOR  ] = PPC_EXC_CLASSIC,
  [ ASM_60X_ADDR_VECTOR    ] = PPC_EXC_CLASSIC,
  [ ASM_60X_ITM_VECTOR     ] = PPC_EXC_INVALID,
};

static const cat_ini_t mpc_603_vector_categories[LAST_VALID_EXC + 1] = {
	PPC_BASIC_VECS,
  [ ASM_60X_PERFMON_VECTOR ] = PPC_EXC_INVALID,
  [ ASM_60X_SYSMGMT_VECTOR ] = PPC_EXC_CLASSIC | PPC_EXC_ASYNC,
  [ ASM_60X_IMISS_VECTOR   ] = PPC_EXC_CLASSIC,
  [ ASM_60X_DLMISS_VECTOR  ] = PPC_EXC_CLASSIC,
  [ ASM_60X_DSMISS_VECTOR  ] = PPC_EXC_CLASSIC,
  [ ASM_60X_ADDR_VECTOR    ] = PPC_EXC_CLASSIC,
  [ ASM_60X_ITM_VECTOR     ] = PPC_EXC_INVALID,
};

static const cat_ini_t mpc_604_vector_categories[LAST_VALID_EXC + 1] = {
	PPC_BASIC_VECS,
  [ ASM_60X_PERFMON_VECTOR ] = PPC_EXC_CLASSIC,
  [ ASM_60X_IMISS_VECTOR   ] = PPC_EXC_INVALID,
  [ ASM_60X_DLMISS_VECTOR  ] = PPC_EXC_INVALID,
  [ ASM_60X_DSMISS_VECTOR  ] = PPC_EXC_INVALID,
  [ ASM_60X_SYSMGMT_VECTOR ] = PPC_EXC_CLASSIC | PPC_EXC_ASYNC,
  [ ASM_60X_ADDR_VECTOR    ] = PPC_EXC_CLASSIC,
  [ ASM_60X_ITM_VECTOR     ] = PPC_EXC_INVALID,
};

static const cat_ini_t e200_vector_categories [LAST_VALID_EXC + 1] = {
	[ASM_MACH_VECTOR]                 = PPC_EXC_BOOKE_CRITICAL | PPC_EXC_ASYNC,
	[ASM_PROT_VECTOR]                 = PPC_EXC_CLASSIC,
	[ASM_ISI_VECTOR]                  = PPC_EXC_CLASSIC,
	[ASM_EXT_VECTOR]                  = PPC_EXC_CLASSIC | PPC_EXC_ASYNC,
	[ASM_ALIGN_VECTOR]                = PPC_EXC_CLASSIC,
	[ASM_PROG_VECTOR]                 = PPC_EXC_CLASSIC,
	[ASM_FLOAT_VECTOR]                = PPC_EXC_CLASSIC,
	[ASM_SYS_VECTOR]                  = PPC_EXC_CLASSIC,
	[ASM_BOOKE_DEC_VECTOR]            = PPC_EXC_CLASSIC | PPC_EXC_ASYNC,
	[ASM_BOOKE_FIT_VECTOR]            = PPC_EXC_CLASSIC | PPC_EXC_ASYNC,
	[ASM_BOOKE_WDOG_VECTOR]           = PPC_EXC_BOOKE_CRITICAL | PPC_EXC_ASYNC,
	[ASM_BOOKE_ITLBMISS_VECTOR]       = PPC_EXC_CLASSIC,
	[ASM_BOOKE_DTLBMISS_VECTOR]       = PPC_EXC_CLASSIC,

	/* FIXME: Depending on HDI0[DAPUEN] this is a critical or debug exception */
	[ASM_TRACE_VECTOR]                = PPC_EXC_CLASSIC | PPC_EXC_BOOKE_CRITICAL,

	[ASM_E200_SPE_UNAVAILABLE_VECTOR] = PPC_EXC_CLASSIC,
	[ASM_E200_SPE_DATA_VECTOR]        = PPC_EXC_CLASSIC,
	[ASM_E200_SPE_ROUND_VECTOR]       = PPC_EXC_CLASSIC,
};

static const cat_ini_t e300_vector_categories [LAST_VALID_EXC + 1] = {
	PPC_BASIC_VECS,
	[ASM_E300_CRIT_VECTOR]    = PPC_EXC_BOOKE_CRITICAL | PPC_EXC_ASYNC,
	[ASM_E300_PERFMON_VECTOR] = PPC_EXC_CLASSIC,
	[ASM_E300_IMISS_VECTOR]   = PPC_EXC_CLASSIC,
	[ASM_E300_DLMISS_VECTOR]  = PPC_EXC_CLASSIC,
	[ASM_E300_DSMISS_VECTOR]  = PPC_EXC_CLASSIC,
	[ASM_E300_ADDR_VECTOR]    = PPC_EXC_CLASSIC,
	[ASM_E300_SYSMGMT_VECTOR] = PPC_EXC_CLASSIC | PPC_EXC_ASYNC,
};

static const cat_ini_t e500_vector_categories[LAST_VALID_EXC + 1] = {
  [ ASM_MACH_VECTOR                 ] = PPC_EXC_E500_MACHCHK,

  [ ASM_BOOKE_CRIT_VECTOR           ] = PPC_EXC_BOOKE_CRITICAL | PPC_EXC_ASYNC,
  [ ASM_BOOKE_WDOG_VECTOR           ] = PPC_EXC_BOOKE_CRITICAL | PPC_EXC_ASYNC,
  [ ASM_TRACE_VECTOR                ] = PPC_EXC_BOOKE_CRITICAL,

  [ ASM_EXT_VECTOR                  ] = PPC_EXC_CLASSIC        | PPC_EXC_ASYNC,
  [ ASM_BOOKE_DEC_VECTOR            ] = PPC_EXC_CLASSIC        | PPC_EXC_ASYNC,
  [ ASM_BOOKE_FIT_VECTOR            ] = PPC_EXC_CLASSIC        | PPC_EXC_ASYNC,

  [ ASM_PROT_VECTOR                 ] = PPC_EXC_CLASSIC,
  [ ASM_ISI_VECTOR                  ] = PPC_EXC_CLASSIC,
  [ ASM_ALIGN_VECTOR                ] = PPC_EXC_CLASSIC,
  [ ASM_PROG_VECTOR                 ] = PPC_EXC_CLASSIC,
  [ ASM_FLOAT_VECTOR                ] = PPC_EXC_CLASSIC,
  [ ASM_SYS_VECTOR                  ] = PPC_EXC_CLASSIC,
  [ /* APU unavailable      */ 0x0b ] = PPC_EXC_CLASSIC,

  [ ASM_60X_DLMISS_VECTOR           ] = PPC_EXC_CLASSIC,
  [ ASM_60X_DSMISS_VECTOR           ] = PPC_EXC_CLASSIC,
  [ ASM_60X_VEC_VECTOR              ] = PPC_EXC_CLASSIC,
  [ ASM_60X_PERFMON_VECTOR          ] = PPC_EXC_CLASSIC,

  [ /* emb FP data          */ 0x15 ] = PPC_EXC_CLASSIC,
  [ /* emb FP round         */ 0x16 ] = PPC_EXC_CLASSIC,
};

ppc_raw_exception_category ppc_vector_is_valid(rtems_vector vector)
{
ppc_raw_exception_category rval = PPC_EXC_INVALID;

	if ( vector > LAST_VALID_EXC )
		return PPC_EXC_INVALID;

     switch (current_ppc_cpu) {
	case PPC_7400:
            if ( ( rval = altivec_vector_is_valid(vector)) )
                return rval;
            /* else fall thru */
        case PPC_750:
			rval = mpc_750_vector_categories[vector];
            break;
        case PPC_7455:   /* Kate Feng */
        case PPC_7457: 
            if ( ( rval = altivec_vector_is_valid(vector) ) )
                return rval;
            /* else fall thru */
        case PPC_604:
        case PPC_604e:
        case PPC_604r:
			rval = mpc_604_vector_categories[vector];
            break;
        case PPC_603:
        case PPC_603e:
        case PPC_603le:
        case PPC_603ev:
        case PPC_8260:
        /* case PPC_8240: -- same value as 8260 */
        case PPC_8245:
			rval = mpc_603_vector_categories[vector];
            break;
        case PPC_e300c1:
        case PPC_e300c2:
        case PPC_e300c3:
			rval = e300_vector_categories[vector];
            break;
        case PPC_PSIM:
			rval = psim_vector_categories[vector];
            break;
	case PPC_8540:
			rval = e500_vector_categories[vector];
	    break;
	case PPC_e200z6:
			rval = e200_vector_categories[vector];
	    break;
        case PPC_5XX:
			rval = mpc_5xx_vector_categories[vector];
            break;
        case PPC_860:
			rval = mpc_860_vector_categories[vector];
            break;
        case PPC_405:
        case PPC_405GP:
        case PPC_405EX:
			rval = ppc_405_vector_categories[vector];
            break;
        default:
            printk("Please complete "
                   "libcpu/powerpc/new-exceptions/raw_exception.c\n"
                   "current_ppc_cpu = %x\n", current_ppc_cpu);
            return PPC_EXC_INVALID;
     }
     return rval;
}

int ppc_set_exception  (const rtems_raw_except_connect_data* except)
{
    rtems_interrupt_level k;

    if ( PPC_EXC_INVALID == ppc_vector_is_valid(except->hdl.vector) ) {
      printk("ppc_set_exception: vector %d is not valid\n",
              except->hdl.vector);
      return 0;
    }
    /*
     * Check if default handler is actually connected. If not issue an error.
     * You must first get the current handler via mpc60x_get_current_exception
     * and then disconnect it using mpc60x_delete_exception.
     * RATIONALE : to always have the same transition by forcing the user
     * to get the previous handler before accepting to disconnect.
     */

    if (memcmp(ppc_get_vector_addr(except->hdl.vector),
               (void*)default_raw_except_entry.hdl.raw_hdl,
               default_raw_except_entry.hdl.raw_hdl_size)) {
      printk("ppc_set_exception: raw vector not installed\n");
      return 0;
    }

    rtems_interrupt_disable(k);

    raw_except_table [except->exceptIndex] = *except;
    codemove(ppc_get_vector_addr(except->hdl.vector),
	     except->hdl.raw_hdl,
	     except->hdl.raw_hdl_size,
	     PPC_CACHE_ALIGNMENT);
	if (except->on)
    	except->on(except);

    rtems_interrupt_enable(k);
    return 1;
}

int ppc_get_current_exception (rtems_raw_except_connect_data* except)
{
	rtems_interrupt_level k;
	int i;

	if ( PPC_EXC_INVALID == ppc_vector_is_valid(except->hdl.vector) ) {
		return 0;
	}

	for (i=0; i < local_settings->exceptSize; i++) {
		if ( raw_except_table[i].hdl.vector == except->hdl.vector ) {
			rtems_interrupt_disable(k);
				if ( raw_except_table[i].hdl.vector == except->hdl.vector ) {
					*except = raw_except_table[i];	
					rtems_interrupt_enable(k);
					return 1;
				}
			rtems_interrupt_enable(k);
		}
	}

	return 0;
}

int ppc_delete_exception (const rtems_raw_except_connect_data* except)
{
  rtems_interrupt_level k;

  if ( PPC_EXC_INVALID == ppc_vector_is_valid(except->hdl.vector) ) {
    return 0;
  }
  /*
   * Check if handler passed is actually connected. If not issue an error.
   * You must first get the current handler via ppc_get_current_exception
   * and then disconnect it using ppc_delete_exception.
   * RATIONALE : to always have the same transition by forcing the user
   * to get the previous handler before accepting to disconnect.
   */
  if (memcmp(ppc_get_vector_addr(except->hdl.vector),
	     (void*)except->hdl.raw_hdl,
	     except->hdl.raw_hdl_size)) {
      return 0;
  }
  rtems_interrupt_disable(k);

  if (except->off)
	  except->off(except);
  codemove(ppc_get_vector_addr(except->hdl.vector),
	   default_raw_except_entry.hdl.raw_hdl,
	   default_raw_except_entry.hdl.raw_hdl_size,
	   PPC_CACHE_ALIGNMENT);


  raw_except_table[except->exceptIndex] = default_raw_except_entry;
  raw_except_table[except->exceptIndex].exceptIndex = except->exceptIndex;
  raw_except_table[except->exceptIndex].hdl.vector  = except->hdl.vector;

  rtems_interrupt_enable(k);

  return 1;
}

/*
 * Exception global init.
 */
int ppc_init_exceptions (rtems_raw_except_global_settings* config)
{
	rtems_interrupt_level k;
    int                   i;
	unsigned              c;

    /*
     * store various accelerators
     */
    raw_except_table 		= config->rawExceptHdlTbl;
    local_settings 		= config;
    default_raw_except_entry 	= config->defaultRawEntry;

    rtems_interrupt_disable(k);

	/* FIXME special case selection method */
	if (current_ppc_cpu == PPC_e200z6) {
		e200_setup_raw_exceptions();
	} else if ( (c = ppc_cpu_is_bookE()) && PPC_BOOKE_405 != c ) {
		e500_setup_raw_exceptions();
	}

	/* Need to support libbsp/powerpc/shared/vectors.S
	 * (hopefully this can go away some day)
	 * We also rely on LAST_VALID_EXC < 32
	 */
	for ( i=0; i <= LAST_VALID_EXC; i++ ) {
		if ( PPC_EXC_405_CRITICAL == (ppc_vector_is_valid( i ) & ~PPC_EXC_ASYNC) )
			bsp_raw_vector_is_405_critical |= (1<<i);
	}

	for (i=0; i < config->exceptSize; i++) {
		if ( PPC_EXC_INVALID == ppc_vector_is_valid(raw_except_table[i].hdl.vector) ) {
			continue;
		}
		codemove(ppc_get_vector_addr(raw_except_table[i].hdl.vector),
				raw_except_table[i].hdl.raw_hdl,
				raw_except_table[i].hdl.raw_hdl_size,
				PPC_CACHE_ALIGNMENT);
		if (raw_except_table[i].hdl.raw_hdl != default_raw_except_entry.hdl.raw_hdl) {
			if (raw_except_table[i].on)
				raw_except_table[i].on(&raw_except_table[i]);
		}
		else {
			if (raw_except_table[i].off)
				raw_except_table[i].off(&raw_except_table[i]);
		}
	}
    rtems_interrupt_enable(k);

    return 1;
}

int ppc_get_exception_config (rtems_raw_except_global_settings** config)
{
  *config = local_settings;
  return 1;
}