summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/gba/include/bsp.h
blob: f328d41aa2aac476dc89c91438326ad11a8aadf9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/**
 *  @file bsp.h
 *
 *  This include file contains definitions related to the GBA BSP.
 */
/*
 *  RTEMS GBA BSP
 *
 *  Copyright (c) 2004
 *      Markku Puro <markku.puro@kopteri.net>
 *
 *  The license and distribution terms for this file may be
 *  found in found in the file LICENSE in this distribution or at
 *  http://www.rtems.com/license/LICENSE.
 *
 *  $Id$
 */

#ifndef __BSP_H_
#define __BSP_H_

#ifdef __cplusplus
extern "C" {
#endif

#include <bspopts.h>

#include <rtems.h>
#include <rtems/iosupp.h>
#include <rtems/console.h>
#include <rtems/clockdrv.h>

#define CONFIGURE_NUMBER_OF_TERMIOS_PORTS 1

/** Define operation count for Tests */
#define OPERATION_COUNT 10

/**
 *  Simple spin delay in microsecond units for device drivers.
 *  This is very dependent on the clock speed of the target.
 */
#define rtems_bsp_delay( microseconds ) \
  { \
    uint32_t i; \
    for(i = 0; i<microseconds;) {i++;} \
    uint32_t  _cnt = _microseconds; \
    asm volatile ("0: nop; sub %0, %0, #1; cmp %0,#0; bne 0b" : "=c"(_cnt) : "0"(_cnt)); \
  }

/** Our copy of BSP configuration table from the application. */
extern rtems_configuration_table BSP_Configuration;

/** gba_zero_memory library function in start.S  */
extern void gba_zero_memory(int start, int stop);
/** gba_move_memory library function in start.S  */
extern void gba_move_memory(int from, int toStart, int toEnd);
/** gba_set_memory library function in start.S  */
extern void gba_set_memory(int start, int stop, int data);


#ifdef __cplusplus
}
#endif


#endif /* __BSP_H_ */