RTEMS 5.2
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
bsp.h
Go to the documentation of this file.
1
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
36#include <bspopts.h>
37
38#define BSP_FEATURE_IRQ_EXTENSION
39
40#define MPC55XX_PERIPHERAL_CLOCK \
41 (MPC55XX_SYSTEM_CLOCK / MPC55XX_SYSTEM_CLOCK_DIVIDER)
42
43#ifndef ASM
44
45#include <rtems.h>
46
48
49#include <bsp/tictac.h>
50#include <bsp/linker-symbols.h>
52
53#ifdef __cplusplus
54extern "C" {
55#endif /* __cplusplus */
56
58extern unsigned int bsp_clock_speed;
59
61extern uint32_t bsp_clicks_per_usec;
62
64#define BSP_Convert_decrementer( _value ) \
65 (((unsigned long long) (_value)) / ((unsigned long long)bsp_clicks_per_usec))
66
67rtems_status_code mpc55xx_sd_card_init( bool mount);
68
69/* Network driver configuration */
70
71struct rtems_bsdnet_ifconfig;
72
73int smsc9218i_attach_detach(
74 struct rtems_bsdnet_ifconfig *config,
75 int attaching
76);
77
78#define RTEMS_BSP_NETWORK_DRIVER_ATTACH smsc9218i_attach_detach
79
80#define RTEMS_BSP_NETWORK_DRIVER_NAME "eth0"
81
82rtems_status_code bsp_register_i2c(void);
83
84void bsp_restart(void *addr);
85
86void *bsp_idle_thread(uintptr_t arg);
87
88#define BSP_IDLE_TASK_BODY bsp_idle_thread
89
90LINKER_SYMBOL(bsp_section_dsram_begin)
91LINKER_SYMBOL(bsp_section_dsram_end)
92LINKER_SYMBOL(bsp_section_dsram_size)
93LINKER_SYMBOL(bsp_section_dsram_load_begin)
94LINKER_SYMBOL(bsp_section_dsram_load_end)
95
96#define BSP_DSRAM_SECTION __attribute__((section(".bsp_dsram")))
97
98LINKER_SYMBOL(bsp_section_sysram_begin)
99LINKER_SYMBOL(bsp_section_sysram_end)
100LINKER_SYMBOL(bsp_section_sysram_size)
101LINKER_SYMBOL(bsp_section_sysram_load_begin)
102LINKER_SYMBOL(bsp_section_sysram_load_end)
103
104#define BSP_SYSRAM_SECTION __attribute__((section(".bsp_sysram")))
105
106#ifdef __cplusplus
107}
108#endif /* __cplusplus */
109
110#endif /* ASM */
111
114#endif /* LIBBSP_POWERPC_MPC55XXEVB_BSP_H */
DEFAULT_INITIAL_EXTENSION Support.
rtems_status_code
Classic API Status.
Definition: status.h:43
int mount(const char *source, const char *target, const char *filesystemtype, rtems_filesystem_options_t options, const void *data)
Mounts a file system instance at the specified target path.
Definition: mount.c:178
void bsp_restart(const void *addr)
Restarts the bsp with "addr" address.
Definition: restart.c:25
void * bsp_idle_thread(uintptr_t ignored)
Optimized idle task.
Definition: bspidle.c:26
unsigned int bsp_clock_speed
System clock frequency.
Definition: bspstart.c:48
uint32_t bsp_clicks_per_usec
Time base clicks per micro second.
Definition: bspstart.c:99
General purpose assembler macros, linker command file support and some inline functions for direct re...
Definition: deflate.c:115
Header file for tic-tac code.