source: rtems/c/src/lib/libbsp/powerpc/psim/include/bsp.h @ 62f529f

4.104.114.84.95
Last change on this file since 62f529f was 62f529f, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/23/04 at 02:36:08

2004-04-22 Ralf Corsepius <ralf_corsepius@…>

  • include/bsp.h: Split out tmtest27 support.
  • include/tm27.h: New.
  • Property mode set to 100644
File size: 2.9 KB
Line 
1/*  bsp.h
2 *
3 *  This include file contains all Papyrus board IO definitions.
4 *
5 *  Author:     Andrew Bray <andy@i-cubed.co.uk>
6 *
7 *  COPYRIGHT (c) 1995 by i-cubed ltd.
8 *
9 *  To anyone who acknowledges that this file is provided "AS IS"
10 *  without any express or implied warranty:
11 *      permission to use, copy, modify, and distribute this file
12 *      for any purpose is hereby granted without fee, provided that
13 *      the above copyright notice and this notice appears in all
14 *      copies, and that the name of i-cubed limited not be used in
15 *      advertising or publicity pertaining to distribution of the
16 *      software without specific, written prior permission.
17 *      i-cubed limited makes no representations about the suitability
18 *      of this software for any purpose.
19 *
20 *  Derived from c/src/lib/libbsp/no_cpu/no_bsp/include/bsp.h
21 *
22 *  COPYRIGHT (c) 1989-1999.
23 *  On-Line Applications Research Corporation (OAR).
24 *
25 *  The license and distribution terms for this file may be
26 *  found in found in the file LICENSE in this distribution or at
27 *  http://www.rtems.com/license/LICENSE.
28 *
29 *  $Id$
30 */
31
32#ifndef __PAPYRUS_h
33#define __PAPYRUS_h
34
35#ifdef __cplusplus
36extern "C" {
37#endif
38
39#include <bspopts.h>
40
41/*
42 *  confdefs.h overrides for this BSP:
43 *   - termios serial ports (defaults to 1)
44 *   - Interrupt stack space is not minimum if defined.
45 */
46
47/* #define CONFIGURE_NUMBER_OF_TERMIOS_PORTS 2 */
48#define CONFIGURE_INTERRUPT_STACK_MEMORY  (12 * 1024)
49
50#ifdef ASM
51/* Definition of where to store registers in alignment handler */
52#define ALIGN_REGS 0x0140
53
54#else
55#include <rtems.h>
56#include <rtems/console.h>
57#include <rtems/clockdrv.h>
58#include <rtems/console.h>
59#include <rtems/iosupp.h>
60
61/* Constants */
62
63/*
64 *  Device Driver Table Entries
65 */
66
67/*
68 * NOTE: Use the standard Console driver entry
69 */
70
71/*
72 * NOTE: Use the standard Clock driver entry
73 */
74
75/*
76 *  Information placed in the linkcmds file.
77 */
78
79extern int   RAM_START;
80extern int   RAM_END;
81extern int   RAM_SIZE;
82
83extern int   PROM_START;
84extern int   PROM_END;
85extern int   PROM_SIZE;
86
87extern int   CLOCK_SPEED;
88
89extern int   end;        /* last address in the program */
90
91/* functions */
92
93void bsp_start( void );
94
95void bsp_cleanup( void );
96
97rtems_isr_entry set_vector(                    /* returns old vector */
98  rtems_isr_entry     handler,                  /* isr routine        */
99  rtems_vector_number vector,                   /* vector number      */
100  int                 type                      /* RTEMS or RAW intr  */
101);
102
103void DEBUG_puts( char *string );
104
105void BSP_fatal_return( void );
106
107void bsp_spurious_initialize( void );
108
109extern rtems_configuration_table BSP_Configuration;     /* owned by BSP */
110
111extern rtems_cpu_table           Cpu_table;             /* owned by BSP */
112
113extern uint32_t                  bsp_isr_level;
114
115#endif /* ASM */
116
117#ifdef __cplusplus
118}
119#endif
120
121#endif
122/* end of include file */
Note: See TracBrowser for help on using the repository browser.