source: rtems/c/src/lib/libbsp/m68k/mcf5329/include/bsp.h @ ccceaf3

4.104.115
Last change on this file since ccceaf3 was ccceaf3, checked in by Joel Sherrill <joel.sherrill@…>, on 09/18/08 at 17:42:45

2008-09-18 Joel Sherrill <joel.sherrill@…>

  • include/bsp.h: Remove unnecessary boilerplate comments.
  • Property mode set to 100644
File size: 1.7 KB
Line 
1/*
2 *  mcf52235 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 <mcf532x/mcf532x.h>
23
24typedef volatile unsigned char vuint8;
25typedef volatile unsigned short vuint16;
26typedef volatile unsigned long vuint32;   
27   
28/***************************************************************************/
29/**  Network driver configuration                                         **/
30struct rtems_bsdnet_ifconfig;
31extern int rtems_fec_driver_attach (struct rtems_bsdnet_ifconfig *config, int attaching );
32#define RTEMS_BSP_NETWORK_DRIVER_NAME     "fec0"
33#define RTEMS_BSP_NETWORK_DRIVER_ATTACH   rtems_fec_driver_attach
34
35/***************************************************************************/
36/**  User Definable configuration                                         **/
37
38/* define which port the console should use - all other ports are then defined as general purpose */
39#define CONSOLE_PORT        0
40
41/* functions */
42
43uint32_t bsp_get_CPU_clock_speed(void);
44uint32_t bsp_get_BUS_clock_speed(void);
45
46m68k_isr_entry set_vector(
47  rtems_isr_entry     handler,
48  rtems_vector_number vector,
49  int                 type
50);
51
52/*
53 * Interrupt assignments
54 *  Highest-priority listed first
55 */
56#define FEC_IRQ_LEVEL       4
57
58#define PIT3_IRQ_LEVEL      4
59
60#define UART0_IRQ_LEVEL     3
61#define UART1_IRQ_LEVEL     3
62#define UART2_IRQ_LEVEL     3
63
64#ifdef __cplusplus
65}
66#endif
67
68#endif
Note: See TracBrowser for help on using the repository browser.