source: rtems/c/src/lib/libbsp/powerpc/gen405/include/bsp.h @ 3344730a

4.104.114.84.95
Last change on this file since 3344730a was 3344730a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 04/21/04 at 16:21:25

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

PR 613/bsps

  • include/bsp.h: Remove MAX_LONG_TEST_DURATION.
  • Property mode set to 100644
File size: 3.1 KB
Line 
1/*  bsp.h
2 *
3 *  This include file contains all GEN405 board IO definitions.
4 *
5 * derived from helas403/include/bsp.h:
6 *  Id: bsp.h,v 1.4 2001/06/18 17:01:48 joel Exp
7 *  Author:     Thomas Doerfler <td@imd.m.isar.de>
8 *              IMD Ingenieurbuero fuer Microcomputertechnik
9 *
10 *  COPYRIGHT (c) 1998 by IMD
11 *
12 *  Changes from IMD are covered by the original distributions terms.
13 *  This file has been derived from the papyrus BSP.
14 *
15 *  Author:     Andrew Bray <andy@i-cubed.co.uk>
16 *
17 *  COPYRIGHT (c) 1995 by i-cubed ltd.
18 *
19 *  To anyone who acknowledges that this file is provided "AS IS"
20 *  without any express or implied warranty:
21 *      permission to use, copy, modify, and distribute this file
22 *      for any purpose is hereby granted without fee, provided that
23 *      the above copyright notice and this notice appears in all
24 *      copies, and that the name of i-cubed limited not be used in
25 *      advertising or publicity pertaining to distribution of the
26 *      software without specific, written prior permission.
27 *      i-cubed limited makes no representations about the suitability
28 *      of this software for any purpose.
29 *
30 *  Derived from c/src/lib/libbsp/no_cpu/no_bsp/include/bsp.h
31 *
32 *  COPYRIGHT (c) 1989-1999.
33 *  On-Line Applications Research Corporation (OAR).
34 *
35 *  The license and distribution terms for this file may be
36 *  found in the file LICENSE in this distribution or at
37 *  http://www.rtems.com/license/LICENSE.
38 *
39 *  $Id$
40 *
41 */
42
43#ifndef __GEN405_h
44#define __GEN405_h
45
46#ifdef __cplusplus
47extern "C" {
48#endif
49
50#include <bspopts.h>
51
52/*
53 *  confdefs.h overrides for this BSP:
54 *   - number of termios serial ports (defaults to 1)
55 *   - Interrupt stack space is not minimum if defined.
56 */
57
58/* #define CONFIGURE_NUMBER_OF_TERMIOS_PORTS 2 */
59#define CONFIGURE_INTERRUPT_STACK_MEMORY  (16 * 1024)
60
61#ifdef ASM
62/* Definition of where to store registers in alignment handler */
63#define ALIGN_REGS 0x0140
64
65#else
66#include <rtems.h>
67#include <rtems/console.h>
68#include <rtems/clockdrv.h>
69#include <rtems/console.h>
70#include <rtems/iosupp.h>
71
72/*
73 *  Stuff for Time Test 27
74 */
75
76#define MUST_WAIT_FOR_INTERRUPT 0
77
78#define Install_tm27_vector( handler ) set_vector( (handler), PPC_IRQ_SCALL, 1 )
79
80#define Cause_tm27_intr()  asm volatile ("sc")
81
82#define Clear_tm27_intr()
83
84#define Lower_tm27_intr()
85
86/* Constants */
87
88#define RAM_START 0
89#define RAM_END   0x00800000
90
91/* miscellaneous stuff assumed to exist */
92
93extern rtems_configuration_table BSP_Configuration;     /* owned by BSP */
94extern rtems_cpu_table           Cpu_table;             /* owned by BSP */
95
96/*
97 *  Device Driver Table Entries
98 */
99
100/*
101 * NOTE: Use the standard Console driver entry
102 */
103
104/*
105 * NOTE: Use the standard Clock driver entry
106 */
107
108/* functions */
109
110rtems_isr_entry set_vector(                    /* returns old vector */
111  rtems_isr_entry     handler,                  /* isr routine        */
112  rtems_vector_number vector,                   /* vector number      */
113  int                 type                      /* RTEMS or RAW intr  */
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.