source: rtems/c/src/lib/libbsp/hppa1.1/simhppa/include/bsp.h @ 14fb972

4.104.114.84.95
Last change on this file since 14fb972 was cf282090, checked in by Joel Sherrill <joel.sherrill@…>, on 09/28/01 at 13:28:11

2001-09-27 Joel Sherrill <joel@…>

  • include/bsp.h: Renamed delay() to rtems_bsp_delay().
  • Property mode set to 100644
File size: 2.8 KB
RevLine 
[ac7d5ef0]1/*  bsp.h
2 *
3 *  This include file contains all HP PA-RISC simulator definitions.
4 *
[08311cc3]5 *  COPYRIGHT (c) 1989-1999.
[ac7d5ef0]6 *  On-Line Applications Research Corporation (OAR).
7 *
[98e4ebf5]8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
[03f2154e]10 *  http://www.OARcorp.com/rtems/license.html.
[ac7d5ef0]11 *
12 *  $Id$
13 */
14
[11290355]15#ifndef __PXFL_BSP_h
16#define __PXFL_BSP_h
[ac7d5ef0]17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
[9f70652b]22#include <bspopts.h>
23
[ac7d5ef0]24#include <rtems.h>
[b06e68ef]25#include <clockdrv.h>
26#include <rtems/ttydrv.h>
[ac7d5ef0]27
[df49c60]28/*
29 *  confdefs.h overrides for this BSP:
30 *   - number of termios serial ports (defaults to 1)
31 *   - Interrupt stack space is not minimum if defined.
32 */
33
34/* #define CONFIGURE_NUMBER_OF_TERMIOS_PORTS 2 */
[edc61d4]35#define CONFIGURE_INTERRUPT_STACK_MEMORY  (4 * 1024)
[df49c60]36
[ac7d5ef0]37/*
38 *  Define the time limits for RTEMS Test Suite test durations.
39 *  Long test and short test duration limits are provided.  These
40 *  values are in seconds and need to be converted to ticks for the
41 *  application.
42 *
43 */
44
45#define MAX_LONG_TEST_DURATION       3   /* 3 seconds */
46#define MAX_SHORT_TEST_DURATION      3   /* 3 seconds */
47
48/*
49 *  Define the interrupt mechanism for Time Test 27
50 */
51
52#define MUST_WAIT_FOR_INTERRUPT 1
53
54#define Install_tm27_vector( handler ) \
55    ( void ) set_vector( handler, HPPA_INTERRUPT_EXTERNAL_INTERVAL_TIMER, 1 );
56
57#define Cause_tm27_intr() \
58  set_itimer( get_itimer() + 20 )
59
60#define Clear_tm27_intr()  \
61  set_eirr( 0x80000000 )
62
63#define Lower_tm27_intr() \
64  { \
65    register unsigned32 ignored; \
66    HPPA_ASM_SSM( HPPA_PSW_I, ignored ); \
67  }
68
69/*
70 *  Simple spin delay in microsecond units for device drivers.
71 *  This is very dependent on the clock speed of the target.
72 */
73
74extern void Clock_delay(rtems_unsigned32 microseconds);
[cf282090]75#define rtems_bsp_delay( microseconds ) \
[ac7d5ef0]76        Clock_delay(microseconds);
77
[c64e4ed4]78/*
79 * Todo: this should be put somewhere else
80 */
81
82#undef CLOCK_DRIVER_TABLE_ENTRY
83#define CLOCK_DRIVER_TABLE_ENTRY { Clock_initialize, NULL, NULL, NULL, NULL, Clock_control }
84rtems_device_driver Clock_control(
85  rtems_device_major_number major,
86  rtems_device_minor_number minor,
87  void *pargp
88);
89
[ac7d5ef0]90/*
91 * We printf() to a buffer if multiprocessing, *or* if this is set.
[c64e4ed4]92 * ref: src/lib/libbsp/hppa/pxfl/iosupp/consupp.c
[ac7d5ef0]93 */
94
95extern int use_print_buffer;
96
97#define HPPA_INTERRUPT_EXTERNAL_MPCI        HPPA_INTERRUPT_EXTERNAL_10
98
[b06e68ef]99rtems_isr_entry set_vector(rtems_isr_entry, rtems_vector_number, int);
100
[ac7d5ef0]101void bsp_start( void );
102void bsp_cleanup( void );
103
104/* miscellaneous stuff assumed to exist */
105
106extern rtems_configuration_table BSP_Configuration;     /* owned by BSP */
107extern rtems_cpu_table           Cpu_table;             /* owned by BSP */
108
109extern int cpu_number;         /* from 0; cpu number in a multi cpu system */
110
111#ifdef __cplusplus
112}
113#endif
114
115#endif
116/* end of include file */
Note: See TracBrowser for help on using the repository browser.