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

5
Last change on this file since c093f37 was a853c061, checked in by Joel Sherrill <joel@…>, on 03/25/16 at 15:47:14

powerpc/mpc55xxevb/include/bsp.h: Do not include <rtems/clockdrv.h>

  • Property mode set to 100644
File size: 2.4 KB
Line 
1/**
2 * @file
3 *
4 * @ingroup mpc55xx
5 *
6 * @brief Global BSP variables and functions
7 */
8
9/*
10 * Copyright (c) 2008-2012 embedded brains GmbH.  All rights reserved.
11 *
12 *  embedded brains GmbH
13 *  Obere Lagerstr. 30
14 *  82178 Puchheim
15 *  Germany
16 *  <rtems@embedded-brains.de>
17 *
18 * The license and distribution terms for this file may be
19 * found in the file LICENSE in this distribution or at
20 * http://www.rtems.org/license/LICENSE.
21 */
22
23#ifndef LIBBSP_POWERPC_MPC55XXEVB_BSP_H
24#define LIBBSP_POWERPC_MPC55XXEVB_BSP_H
25
26#include <bspopts.h>
27
28#define BSP_INTERRUPT_STACK_AT_WORK_AREA_BEGIN
29
30#define BSP_FEATURE_IRQ_EXTENSION
31
32#define MPC55XX_PERIPHERAL_CLOCK \
33  (MPC55XX_SYSTEM_CLOCK / MPC55XX_SYSTEM_CLOCK_DIVIDER)
34
35#ifndef ASM
36
37#include <rtems.h>
38#include <rtems/console.h>
39
40#include <libcpu/powerpc-utility.h>
41
42#include <bsp/tictac.h>
43#include <bsp/linker-symbols.h>
44#include <bsp/default-initial-extension.h>
45
46#ifdef __cplusplus
47extern "C" {
48#endif /* __cplusplus */
49
50/** @brief System clock frequency */
51extern unsigned int bsp_clock_speed;
52
53/** @brief Time base clicks per micro second */
54extern uint32_t bsp_clicks_per_usec;
55
56/** @brief Convert Decrementer ticks to microseconds */
57#define BSP_Convert_decrementer( _value ) \
58  (((unsigned long long) (_value)) / ((unsigned long long)bsp_clicks_per_usec))
59
60rtems_status_code mpc55xx_sd_card_init( bool mount);
61
62/* Network driver configuration */
63
64struct rtems_bsdnet_ifconfig;
65
66int smsc9218i_attach_detach(
67  struct rtems_bsdnet_ifconfig *config,
68  int attaching
69);
70
71#define RTEMS_BSP_NETWORK_DRIVER_ATTACH smsc9218i_attach_detach
72
73#define RTEMS_BSP_NETWORK_DRIVER_NAME "eth0"
74
75rtems_status_code bsp_register_i2c(void);
76
77void bsp_restart(void *addr);
78
79void *bsp_idle_thread(uintptr_t arg);
80
81#define BSP_IDLE_TASK_BODY bsp_idle_thread
82
83LINKER_SYMBOL(bsp_section_dsram_begin)
84LINKER_SYMBOL(bsp_section_dsram_end)
85LINKER_SYMBOL(bsp_section_dsram_size)
86LINKER_SYMBOL(bsp_section_dsram_load_begin)
87LINKER_SYMBOL(bsp_section_dsram_load_end)
88
89#define BSP_DSRAM_SECTION __attribute__((section(".bsp_dsram")))
90
91LINKER_SYMBOL(bsp_section_sysram_begin)
92LINKER_SYMBOL(bsp_section_sysram_end)
93LINKER_SYMBOL(bsp_section_sysram_size)
94LINKER_SYMBOL(bsp_section_sysram_load_begin)
95LINKER_SYMBOL(bsp_section_sysram_load_end)
96
97#define BSP_SYSRAM_SECTION __attribute__((section(".bsp_sysram")))
98
99#ifdef __cplusplus
100}
101#endif /* __cplusplus */
102
103#endif /* ASM */
104
105#endif /* LIBBSP_POWERPC_MPC55XXEVB_BSP_H */
Note: See TracBrowser for help on using the repository browser.