source: rtems/c/src/lib/libbsp/sparc/leon2/include/bsp.h @ 5d3d6d1a

4.104.114.84.95
Last change on this file since 5d3d6d1a was 5d3d6d1a, checked in by Joel Sherrill <joel.sherrill@…>, on 03/10/07 at 15:53:53

2007-03-10 Joel Sherrill <joel@…>

PR 1227/bsps

  • include/bsp.h: Remove MAX_LONG_TEST_DURATION and MAX_SHORT_TEST_DURATION. They are obsolete and unused.
  • Property mode set to 100644
File size: 2.7 KB
Line 
1/*  bsp.h
2 *
3 *  This include file contains all SPARC simulator definitions.
4 *
5 *  COPYRIGHT (c) 1989-1998.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.com/license/LICENSE.
11 *
12 *  Ported to ERC32 implementation of the SPARC by On-Line Applications
13 *  Research Corporation (OAR) under contract to the European Space
14 *  Agency (ESA).
15 *
16 *  ERC32 modifications of respective RTEMS file: COPYRIGHT (c) 1995.
17 *  European Space Agency.
18 *
19 *  $Id$
20 */
21
22#ifndef _BSP_H
23#define _BSP_H
24
25#ifdef __cplusplus
26extern "C" {
27#endif
28
29#include <bspopts.h>
30
31#include <rtems.h>
32#include <leon.h>
33#include <rtems/clockdrv.h>
34#include <rtems/console.h>
35 
36/*
37 *  confdefs.h overrides for this BSP:
38 *   - two termios serial ports
39 *   - Interrupt stack space is not minimum if defined.
40 */
41
42#define CONFIGURE_NUMBER_OF_TERMIOS_PORTS 2
43#define CONFIGURE_INTERRUPT_STACK_MEMORY  (16 * 1024)
44
45/*
46 * Network driver configuration
47 */
48
49struct rtems_bsdnet_ifconfig;
50extern int rtems_leon_open_eth_driver_attach (struct rtems_bsdnet_ifconfig *config);
51extern int rtems_smc91111_driver_attach_leon2(struct rtems_bsdnet_ifconfig *config);
52#define RTEMS_BSP_NETWORK_DRIVER_NAME   "open_eth1"
53#define RTEMS_BSP_NETWORK_DRIVER_ATTACH_OPENETH  rtems_leon_open_eth_driver_attach
54#define RTEMS_BSP_NETWORK_DRIVER_ATTACH_SMC91111 rtems_smc91111_driver_attach_leon2
55
56/*
57 *  The synchronous trap is an arbitrarily chosen software trap.
58 */
59
60/*
61 *  Simple spin delay in microsecond units for device drivers.
62 *  This is very dependent on the clock speed of the target.
63 */
64
65extern void Clock_delay(uint32_t microseconds);
66
67#define delay( microseconds ) Clock_delay(microseconds)
68
69/* Constants */
70
71/*
72 *  Information placed in the linkcmds file.
73 */
74
75extern int   RAM_START;
76extern int   RAM_END;
77extern int   RAM_SIZE;
78 
79extern int   PROM_START;
80extern int   PROM_END;
81extern int   PROM_SIZE;
82
83extern int   CLOCK_SPEED;
84 
85extern int   end;        /* last address in the program */
86
87/* miscellaneous stuff assumed to exist */
88
89void bsp_cleanup( void );
90
91void bsp_start( void );
92
93rtems_isr_entry set_vector(                     /* returns old vector */
94    rtems_isr_entry     handler,                /* isr routine        */
95    rtems_vector_number vector,                 /* vector number      */
96    int                 type                    /* RTEMS or RAW intr  */
97);
98
99void DEBUG_puts( char *string );
100
101void BSP_fatal_return( void );
102
103void bsp_spurious_initialize( void );
104
105extern rtems_configuration_table BSP_Configuration;     /* owned by BSP */
106
107extern rtems_cpu_table           Cpu_table;             /* owned by BSP */
108
109#ifdef __cplusplus
110}
111#endif
112
113#endif
Note: See TracBrowser for help on using the repository browser.