source: rtems/c/src/lib/libbsp/powerpc/mpc55xxevb/include/bsp.h @ 574fb67

4.104.114.95
Last change on this file since 574fb67 was 574fb67, checked in by Thomas Doerfler <Thomas.Doerfler@…>, on 07/14/08 at 16:15:28

updated gen83xx BSP
updated haleakala BSP
added MPC55xx BSP

  • Property mode set to 100644
File size: 956 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup mpc55xx
5 *
6 * @brief Global BSP variables and functions
7 */
8
9/*
10 * Copyright (c) 2008
11 * Embedded Brains GmbH
12 * Obere Lagerstr. 30
13 * D-82178 Puchheim
14 * Germany
15 * rtems@embedded-brains.de
16 *
17 * The license and distribution terms for this file may be found in the file
18 * LICENSE in this distribution or at http://www.rtems.com/license/LICENSE.
19 */
20
21#ifndef LIBBSP_POWERPC_BSP_H
22#define LIBBSP_POWERPC_BSP_H
23
24#include <stdint.h>
25
26#include <rtems.h>
27#include <rtems/console.h>
28#include <rtems/clockdrv.h>
29
30#include <bspopts.h>
31
32#include <bsp/tictac.h>
33
34#ifdef __cplusplus
35extern "C" {
36#endif /* __cplusplus */
37
38#ifndef ASM
39
40/** @brief System clock frequency */
41extern unsigned int bsp_clock_speed;
42
43/** @brief Time base clicks per micro second */
44extern uint32_t bsp_clicks_per_usec;
45
46rtems_status_code mpc55xx_sd_card_init();
47
48#endif /* ASM */
49
50#ifdef __cplusplus
51}
52#endif /* __cplusplus */
53
54#endif /* LIBBSP_POWERPC_BSP_H */
Note: See TracBrowser for help on using the repository browser.