source: rtems/c/src/lib/libbsp/sh/shsim/include/bsp.h @ d34d8692

4.104.114.95
Last change on this file since d34d8692 was d34d8692, checked in by Joel Sherrill <joel.sherrill@…>, on 12/04/07 at 22:22:26

2007-12-04 Joel Sherrill <joel.sherrill@…>

  • include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field from CPU Table to Configuration Table. Eliminate CPU Table from all ports. Delete references to CPU Table in all forms.
  • Property mode set to 100644
File size: 2.1 KB
Line 
1/*
2 *  This include file contains all board IO definitions.
3 *
4 *  SH-gdb simulator BSP
5 *
6 *  Author: Ralf Corsepius (corsepiu@faw.uni-ulm.de)
7 *
8 *  COPYRIGHT (c) 2001, Ralf Corsepius, Ulm, Germany
9 *
10 *  This program is distributed in the hope that it will be useful,
11 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 *
14 *  COPYRIGHT (c) 2001.
15 *  On-Line Applications Research Corporation (OAR).
16 *
17 *  The license and distribution terms for this file may be
18 *  found in the file LICENSE in this distribution or at
19 *  http://www.rtems.com/license/LICENSE.
20 *
21 * $Id$
22 */
23
24#ifndef _BSP_H
25#define _BSP_H
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
31#include <rtems.h>
32#include <rtems/clockdrv.h>
33#include <rtems/console.h>
34
35#include <bspopts.h>
36
37/*
38 * FIXME: One of these would be enough.
39 */
40#include <gdbsci.h>
41#include <rtems/devnull.h>
42
43/* Constants */
44
45/*
46 *  Simple spin delay in microsecond units for device drivers.
47 *  This is very dependent on the clock speed of the target.
48 *
49 * FIXME: Not applicable with gdb's simulator
50 * Kept for sourcecode compatibility with other sh-BSPs
51 */
52#define rtems_bsp_delay( microseconds ) CPU_delay(microseconds)
53#define sh_delay( microseconds ) CPU_delay(microseconds)
54
55/*
56 * Defined in the linker script 'linkcmds'
57 */
58
59extern uint32_t         HeapStart ;
60extern uint32_t         HeapEnd ;
61extern uint32_t         WorkSpaceStart ;
62extern uint32_t         WorkSpaceEnd ;
63
64extern void *CPU_Interrupt_stack_low ;
65extern void *CPU_Interrupt_stack_high ;
66
67/* miscellaneous stuff assumed to exist */
68
69extern rtems_configuration_table BSP_Configuration;
70
71extern void bsp_cleanup( void );
72
73/*
74 *  Device Driver Table Entries
75 */
76
77/*
78 * Redefine CONSOLE_DRIVER_TABLE_ENTRY to redirect /dev/console
79 */
80#undef CONSOLE_DRIVER_TABLE_ENTRY
81#define CONSOLE_DRIVER_TABLE_ENTRY \
82  BSP_CONSOLE_DRIVER_TABLE_ENTRY, \
83  { console_initialize, console_open, console_close, \
84      console_read, console_write, console_control }
85
86/*
87 * NOTE: Use the standard Clock driver entry
88 */
89
90#ifdef __cplusplus
91}
92#endif
93
94#endif
Note: See TracBrowser for help on using the repository browser.