source: rtems/c/src/lib/libbsp/powerpc/virtex/include/bsp.h @ 78f96ab

4.104.114.84.95
Last change on this file since 78f96ab was 78f96ab, checked in by Thomas Doerfler <Thomas.Doerfler@…>, on 07/05/07 at 20:32:43

fixed some problems with shared PPC exception handling code

  • Property mode set to 100644
File size: 3.2 KB
RevLine 
[862c2317]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 _BSP_H
44#define _BSP_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#include <rtems/rtems_bsdnet.h>
[78f96ab]72#include <bsp/irq.h>
73#include <bsp/vectors.h>
[862c2317]74
75
76/* Constants */
77
78extern uint32_t _HeapSize;
79extern uint32_t _heap_start;
80extern uint32_t _heap_end;
81extern uint32_t _top_of_ram;
82
83/* miscellaneous stuff assumed to exist */
84
85extern rtems_configuration_table BSP_Configuration;     /* owned by BSP */
86extern rtems_cpu_table           Cpu_table;             /* owned by BSP */
87
88
89/* Network Defines */
90#if 1 /* EB/doe changes */
91#define RTEMS_BSP_NETWORK_DRIVER_NAME     "eth0"
92#else
93#include "xiltemac.h"
94#define RTEMS_BSP_NETWORK_DRIVER_NAME     XILTEMAC_DRIVER_PREFIX
95#endif
96extern xilTemac_driver_attach(struct rtems_bsdnet_ifconfig*, int );
97#define RTEMS_BSP_NETWORK_DRIVER_ATTACH xilTemac_driver_attach
98
99/*
100 *  Device Driver Table Entries
101 */
102
103/*
104 * NOTE: Use the standard Console driver entry
105 */
106
107/*
108 * NOTE: Use the standard Clock driver entry
109 */
110
111/* functions */
112
113rtems_isr_entry set_vector(                    /* returns old vector */
114  rtems_isr_entry     handler,                  /* isr routine        */
115  rtems_vector_number vector,                   /* vector number      */
116  int                 type                      /* RTEMS or RAW intr  */
117);
118#endif /* ASM */
119
120#ifdef __cplusplus
121}
122#endif
123
124#endif
Note: See TracBrowser for help on using the repository browser.