Skip to content

Commit a5ae536

Browse files
committed
[bsp][renesas] Add ra8p1-titan-board BSP.
1 parent 164ca29 commit a5ae536

File tree

342 files changed

+337582
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

342 files changed

+337582
-0
lines changed

bsp/renesas/libraries/HAL_Drivers/drv_common.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,12 @@ rt_weak void rt_hw_board_init()
170170
rt_hw_interrupt_init();
171171
#endif
172172

173+
#if defined(BSP_CFG_CPU_CORE) && (BSP_CFG_CPU_CORE == CPU0) && defined(SOC_SERIES_R7KA8P1) && defined(BSP_START_SECONDARY_CORE)
174+
#if !defined(BSP_USING_RPMSG_LITE_MCMGR)
175+
R_BSP_SecondaryCoreStart();
176+
#endif
177+
#endif
178+
173179
rt_hw_systick_init();
174180

175181
/* Heap initialization */

bsp/renesas/libraries/Kconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,12 @@ config SOC_SERIES_R7FA8M85
6161
select SOC_FAMILY_RENESAS_RA
6262
default n
6363

64+
config SOC_SERIES_R7KA8P1
65+
bool
66+
select ARCH_ARM_CORTEX_M85
67+
select SOC_FAMILY_RENESAS_RA
68+
default n
69+
6470
config SOC_SERIES_R9A07G0
6571
bool
6672
select ARCH_ARM_CORTEX_R52
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# ------ devices CI ------
2+
devices.adc:
3+
kconfig:
4+
- CONFIG_RT_USING_ADC=y
5+
- CONFIG_BSP_USING_ADC0=y
6+
devices.spi:
7+
kconfig:
8+
- CONFIG_BSP_USING_SPI=y
9+
- CONFIG_BSP_USING_SPI0=y
10+
devices.i2c:
11+
kconfig:
12+
- CONFIG_BSP_USING_HW_I2C=y
13+
- CONFIG_BSP_USING_HW_I2C2=y
14+
devices.sdhi:
15+
kconfig:
16+
- CONFIG_BSP_USING_SDHI=y
17+
- CONFIG_BSP_USING_SDHI0=y
18+
- CONFIG_SDHI_USING_1_BIT=y
19+
devices.timer:
20+
kconfig:
21+
- CONFIG_BSP_USING_TIM=y
22+
- CONFIG_BSP_USING_TIM0=y
23+
devices.pwm:
24+
kconfig:
25+
- CONFIG_BSP_USING_PWM=y
26+
- CONFIG_BSP_USING_PWM12=y
27+
devices.can:
28+
kconfig:
29+
- CONFIG_BSP_USING_CANFD=y
30+
- CONFIG_BSP_USING_CAN_RA=y
31+
- CONFIG_BSP_USING_CAN0=y
32+
devices.hyperram:
33+
kconfig:
34+
- CONFIG_BSP_USING_OSPI_RAM=y
35+
devices.ethernet:
36+
kconfig:
37+
- CONFIG_BSP_USING_ETH=y
38+
devices.rtc:
39+
kconfig:
40+
- CONFIG_BSP_USING_ONCHIP_RTC=y

0 commit comments

Comments
 (0)