source: rtems/c/src/lib/libbsp/m68k/mcf5235/include/bsp.h @ 1fec9e0

4.115
Last change on this file since 1fec9e0 was 1fec9e0, checked in by Gedare Bloom <gedare@…>, on 04/16/12 at 02:22:36

m68k: replace m68k_isr with rtems_isr

  • Property mode set to 100644
File size: 1.7 KB
Line 
1/*
2 *  mcf5235 BSP header file
3 */
4
5#ifndef _BSP_H
6#define _BSP_H
7
8#ifdef __cplusplus
9extern "C" {
10#endif
11
12#include <bspopts.h>
13#include <rtems.h>
14#include <rtems/iosupp.h>
15#include <rtems/console.h>
16#include <rtems/clockdrv.h>
17#include <rtems/iosupp.h>
18#include <rtems/bspIo.h>
19
20/***************************************************************************/
21/**  Hardware data structure headers                                      **/
22#include <mcf5235/mcf5235.h>   /* internal MCF5235 modules */
23
24/***************************************************************************/
25/**  Network driver configuration                                         **/
26struct rtems_bsdnet_ifconfig;
27extern int rtems_fec_driver_attach (struct rtems_bsdnet_ifconfig *config, int attaching );
28#define RTEMS_BSP_NETWORK_DRIVER_NAME     "fec0"
29#define RTEMS_BSP_NETWORK_DRIVER_ATTACH   rtems_fec_driver_attach
30
31/***************************************************************************/
32/**  User Definable configuration                                         **/
33
34/* define which port the console should use - all other ports are then defined as general purpose */
35#define CONSOLE_PORT        0
36
37/* functions */
38
39uint32_t get_CPU_clock_speed(void);
40rtems_isr_entry set_vector(
41  rtems_isr_entry     handler,
42  rtems_vector_number vector,
43  int                 type
44);
45
46/*
47 * Interrupt assignments
48 *  Highest-priority listed first
49 */
50#define FEC_IRQ_LEVEL       4
51#define FEC_IRQ_RX_PRIORITY 7
52#define FEC_IRQ_TX_PRIORITY 6
53
54#define PIT3_IRQ_LEVEL      4
55#define PIT3_IRQ_PRIORITY   0
56
57#define UART0_IRQ_LEVEL     3
58#define UART0_IRQ_PRIORITY  7
59#define UART1_IRQ_LEVEL     3
60#define UART1_IRQ_PRIORITY  6
61#define UART2_IRQ_LEVEL     3
62#define UART2_IRQ_PRIORITY  5
63
64#ifdef __cplusplus
65}
66#endif
67
68#endif
Note: See TracBrowser for help on using the repository browser.