source: rtems/c/src/lib/libbsp/sparc/leon2/include/bsp.h @ 39aa75e7

4.115
Last change on this file since 39aa75e7 was 39aa75e7, checked in by Sebastian Huber <sebastian.huber@…>, on 11/23/12 at 21:40:09

bsps: Use RTEMS_BSP_CLEANUP_OPTIONS

  • Property mode set to 100644
File size: 4.9 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
20#ifndef _BSP_H
21#define _BSP_H
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27#include <bspopts.h>
28#include <bsp/default-initial-extension.h>
29
30#include <rtems.h>
31#include <leon.h>
32#include <rtems/clockdrv.h>
33#include <rtems/console.h>
34#include <rtems/irq-extension.h>
35
36/* SPARC CPU variant: LEON2 */
37#define LEON2 1
38
39/*
40 *  BSP provides its own Idle thread body
41 */
42void *bsp_idle_thread( uintptr_t ignored );
43#define BSP_IDLE_TASK_BODY bsp_idle_thread
44
45/*
46 * Network driver configuration
47 */
48struct rtems_bsdnet_ifconfig;
49extern int rtems_leon_open_eth_driver_attach(
50  struct rtems_bsdnet_ifconfig *config
51);
52extern int rtems_smc91111_driver_attach_leon2(
53  struct rtems_bsdnet_ifconfig *config
54);
55#define RTEMS_BSP_NETWORK_DRIVER_NAME   "open_eth1"
56#define RTEMS_BSP_NETWORK_DRIVER_ATTACH_OPENETH \
57          rtems_leon_open_eth_driver_attach
58#define RTEMS_BSP_NETWORK_DRIVER_ATTACH_SMC91111 \
59          rtems_smc91111_driver_attach_leon2
60
61#define HAS_SMC91111
62
63/* Configure GRETH driver */
64#define GRETH_SUPPORTED
65#define GRETH_MEM_LOAD(addr) leon_r32_no_cache(addr)
66
67/*
68 *  The synchronous trap is an arbitrarily chosen software trap.
69 */
70
71extern int   CPU_SPARC_HAS_SNOOPING;
72
73/* Constants */
74
75/*
76 *  Information placed in the linkcmds file.
77 */
78
79extern int   RAM_START;
80extern int   RAM_END;
81extern int   RAM_SIZE;
82
83extern int   PROM_START;
84extern int   PROM_END;
85extern int   PROM_SIZE;
86
87extern int   CLOCK_SPEED;
88
89extern int   end;        /* last address in the program */
90
91/* miscellaneous stuff assumed to exist */
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 BSP_fatal_return( void );
100
101void bsp_spurious_initialize( void );
102
103/* Allocate 8-byte aligned non-freeable pre-malloc() memory. The function
104 * can be called at any time. The work-area will shrink when called before
105 * bsp_work_area_initialize(). malloc() is called to get memory when this function
106 * is called after bsp_work_area_initialize().
107 */
108void *bsp_early_malloc(int size);
109
110/* Interrupt Service Routine (ISR) pointer */
111typedef void (*bsp_shared_isr)(void *arg);
112
113/* Initializes the Shared System Interrupt service */
114extern void BSP_shared_interrupt_init(void);
115
116/* Registers a shared IRQ handler, and enable it at IRQ controller. Multiple
117 * interrupt handlers may use the same IRQ number, all ISRs will be called
118 * when an interrupt on that line is fired.
119 *
120 * Arguments
121 *  irq       System IRQ number
122 *  info      Optional Name of IRQ source
123 *  isr       Function pointer to the ISR
124 *  arg       Second argument to function isr
125 */
126static __inline__ int BSP_shared_interrupt_register
127       (
128       int irq,
129       const char *info,
130       bsp_shared_isr isr,
131       void *arg
132       )
133{
134       return rtems_interrupt_handler_install(irq, info,
135                                       RTEMS_INTERRUPT_SHARED, isr, arg);
136}
137
138/* Unregister previously registered shared IRQ handler.
139 *
140 * Arguments
141 *  irq       System IRQ number
142 *  isr       Function pointer to the ISR
143 *  arg       Second argument to function isr
144 */
145static __inline__ int BSP_shared_interrupt_unregister
146       (
147       int irq,
148       bsp_shared_isr isr,
149       void *arg
150       )
151{
152       return rtems_interrupt_handler_remove(irq, isr, arg);
153}
154
155/* Clear interrupt pending on IRQ controller, this is typically done on a
156 * level triggered interrupt source such as PCI to avoid taking double IRQs.
157 * In such a case the interrupt source must be cleared first on LEON, before
158 * acknowledging the IRQ with this function.
159 *
160 * Arguments
161 *  irq       System IRQ number
162 */
163extern void BSP_shared_interrupt_clear(int irq);
164
165/* Enable Interrupt. This function will unmask the IRQ at the interrupt
166 * controller. This is normally done by _register(). Note that this will
167 * affect all ISRs on this IRQ.
168 *
169 * Arguments
170 *  irq       System IRQ number
171 */
172extern void BSP_shared_interrupt_unmask(int irq);
173
174/* Disable Interrupt. This function will mask one IRQ at the interrupt
175 * controller. This is normally done by _unregister().  Note that this will
176 * affect all ISRs on this IRQ.
177 *
178 * Arguments
179 *  irq         System IRQ number
180 */
181extern void BSP_shared_interrupt_mask(int irq);
182
183#ifdef __cplusplus
184}
185#endif
186
187#endif
Note: See TracBrowser for help on using the repository browser.