source: rtems/c/src/lib/libbsp/powerpc/gen405/include/bsp.h @ 7dd6e8d

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

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

PR 614/bsps

  • include/bsp.h: Remove MAX_SHORT_TEST_DURATION (Unused).
  • Property mode set to 100644
File size: 3.4 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 *  Define the time limits for RTEMS Test Suite test durations.
74 *  Long test and short test duration limits are provided.  These
75 *  values are in seconds and need to be converted to ticks for the
76 *  application.
77 *
78 */
79
80#define MAX_LONG_TEST_DURATION       300 /* 5 minutes = 300 seconds */
81
82/*
83 *  Stuff for Time Test 27
84 */
85
86#define MUST_WAIT_FOR_INTERRUPT 0
87
88#define Install_tm27_vector( handler ) set_vector( (handler), PPC_IRQ_SCALL, 1 )
89
90#define Cause_tm27_intr()  asm volatile ("sc")
91
92#define Clear_tm27_intr()
93
94#define Lower_tm27_intr()
95
96/* Constants */
97
98#define RAM_START 0
99#define RAM_END   0x00800000
100
101/* miscellaneous stuff assumed to exist */
102
103extern rtems_configuration_table BSP_Configuration;     /* owned by BSP */
104extern rtems_cpu_table           Cpu_table;             /* owned by BSP */
105
106/*
107 *  Device Driver Table Entries
108 */
109
110/*
111 * NOTE: Use the standard Console driver entry
112 */
113
114/*
115 * NOTE: Use the standard Clock driver entry
116 */
117
118/* functions */
119
120rtems_isr_entry set_vector(                    /* returns old vector */
121  rtems_isr_entry     handler,                  /* isr routine        */
122  rtems_vector_number vector,                   /* vector number      */
123  int                 type                      /* RTEMS or RAW intr  */
124);
125#endif /* ASM */
126
127#ifdef __cplusplus
128}
129#endif
130
131#endif
132/* end of include file */
Note: See TracBrowser for help on using the repository browser.