summaryrefslogtreecommitdiffstats
path: root/bsps/arm/raspberrypi/include/bsp.h
blob: b81d19cd76eda7d9a0553d3ce1b714f67bb75850 (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
68
69
70
71
72
73
74
75
76
/**
 * @file
 *
 * @ingroup RTEMSBSPsARMRaspberryPi
 *
 * @brief Global BSP definitions.
 */

/*
 * Copyright (c) 2015 Yang Qiao
 * Copyright (c) 2013 Alan Cudmore
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *
 *  http://www.rtems.org/license/LICENSE
 *
 */

#ifndef LIBBSP_ARM_RASPBERRYPI_BSP_H
#define LIBBSP_ARM_RASPBERRYPI_BSP_H

/**
 * @defgroup RTEMSBSPsARMRaspberryPi Raspberry Pi
 *
 * @ingroup RTEMSBSPsARM
 *
 * @brief Raspberry Pi Board Support Package.
 *
 */

#include <bspopts.h>
#include <bsp/default-initial-extension.h>

#include <rtems.h>
#include <bsp/raspberrypi.h>

#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */

#define BSP_FEATURE_IRQ_EXTENSION

#if BSP_START_COPY_FDT_FROM_U_BOOT
#define BSP_FDT_IS_SUPPORTED
#endif

#define RPI_L2_CACHE_ENABLE 1

#define BSP_GPIO_PIN_COUNT 32
#define BSP_GPIO_PINS_PER_BANK 32
#define BSP_GPIO_PINS_PER_SELECT_BANK 10

#define BSP_CONSOLE_UART0   0
#define BSP_CONSOLE_FB      1

void rpi_init_cmdline(void);
const char *rpi_cmdline_get_cached(void);
const char *rpi_cmdline_get_raw(void);
const char *rpi_cmdline_get_arg(const char* arg);

void  rpi_video_init(void);
void  rpi_fb_outch  (char);
int rpi_video_is_initialized(void);

void rpi_ipi_initialize(void);
void rpi_start_rtems_on_secondary_processor(void);

#ifdef __cplusplus
}
#endif /* __cplusplus */

/* @} */

#endif /* LIBBSP_ARM_RASPBERRYPI_BSP_H */