source: rtems/c/src/lib/libbsp/powerpc/qemuppc/include/bsp.h @ 9cff822a

4.115
Last change on this file since 9cff822a was 9cff822a, checked in by Joel Sherrill <joel.sherrill@…>, on 07/16/15 at 15:40:05

Most bsp.h: Switch to LIBBSP_@CPU@_@BSP_FAMILY@_H for guard

This was done by the following script run from libbsp:

find * -name bsp.h | xargs -e grep -l "#ifndef.*_BSP_H" | while read b
do

echo $b
cpu=echo $b | cut -d'/' -f1 | tr '[:lower:]' '[:upper:]'
bsp=echo $b | cut -d'/' -f2 | tr '[:lower:]' '[:upper:]'
g="LIBBSP_${cpu}_${bsp}_BSP_H"
# echo $g
sed -e "s/ifndef _BSP_H/ifndef ${g}/" \

-e "s/define _BSP_H/define ${g}/" \

-i $b

done

  • Property mode set to 100644
File size: 978 bytes
Line 
1/*
2 *  This include file contains some definitions specific to the
3 *  qemu powerpc Prep simulator
4 */
5
6/*
7 *  COPYRIGHT (c) 1989-2014.
8 *  On-Line Applications Research Corporation (OAR).
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.rtems.org/license/LICENSE.
13 */
14
15#ifndef LIBBSP_POWERPC_QEMUPPC_BSP_H
16#define LIBBSP_POWERPC_QEMUPPC_BSP_H
17
18#ifndef ASM
19
20#include <bspopts.h>
21#include <bsp/default-initial-extension.h>
22
23#include <rtems.h>
24#include <rtems/iosupp.h>
25#include <rtems/console.h>
26#include <rtems/clockdrv.h>
27
28#ifdef __cplusplus
29extern "C" {
30#endif
31
32/*
33 *  Convert decrementer value to tenths of microseconds (used by shared timer
34 *  driver).
35 */
36#define BSP_Convert_decrementer( _value ) \
37  ((int) (((_value) * 10) / bsp_clicks_per_usec))
38
39/*
40 * Prototypes for methods that are referenced from .S
41 */
42void cmain(void);
43
44#ifdef __cplusplus
45}
46#endif
47
48#endif /* !ASM */
49
50#endif
Note: See TracBrowser for help on using the repository browser.