Skip to content

Commit b8d4c4a

Browse files
authored
[Bouffalolab] Refactor Bouffalolab SDK gn scripts (project-chip#24132)
* create bl_iot_sdk.gni * update bl_iot_sdk.gni * remove more 702 specific-name * update bl602 * update bl602 & bl702 * update toolchain path * fix issues for bl602 * fix parition table for bl702 * fix restyle
1 parent 0f3039f commit b8d4c4a

Some content is hidden

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

51 files changed

+1991
-1852
lines changed

build_overrides/bouffalolab_iot_sdk.gni

+1-5
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,7 @@
1313
# limitations under the License.
1414

1515
declare_args() {
16-
# Root directory for bl602 SDK build files.
17-
bl602_sdk_build_root = "//third_party/bouffalolab/bl602"
18-
19-
# Root directory for bl702 SDK build files.
20-
bl702_sdk_build_root = "//third_party/bouffalolab/bl702"
16+
bouffalolab_iot_sdk_build_root = "//third_party/bouffalolab/"
2117

2218
bouffalolab_sdk_root = "/opt/bouffalolab_sdk"
2319
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2020 Project CHIP Authors
1+
# Copyright (c) 2022 Project CHIP Authors
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -12,10 +12,8 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
import("bl702_board.gni")
15+
# Options from standalone-chip.mk that differ from configure defaults. These
16+
# options are used from examples/.
1617

17-
riscv_arch = "rv32imfc"
18-
riscv_abi = "ilp32f"
19-
# riscv_cpu = ""
20-
# riscv_float_abi = "hard"
21-
# riscv_fpu = ""
18+
custom_toolchain =
19+
"//third_party/connectedhomeip/config/bouffalolab/toolchain:riscv_gcc"

examples/build_overrides/bouffalolab_iot_sdk.gni

+2-7
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,8 @@
1313
# limitations under the License.
1414

1515
declare_args() {
16-
# Root directory for bl602 SDK build files.
17-
bl602_sdk_build_root =
18-
"//third_party/connectedhomeip/third_party/bouffalolab/bl602"
19-
20-
# Root directory for bl702 SDK build files.
21-
bl702_sdk_build_root =
22-
"//third_party/connectedhomeip/third_party/bouffalolab/bl702"
16+
bouffalolab_iot_sdk_build_root =
17+
"//third_party/connectedhomeip/third_party/bouffalolab"
2318

2419
bouffalolab_sdk_root = "/opt/bouffalolab_sdk"
2520
}

examples/lighting-app/bouffalolab/bl602/BUILD.gn

+8-4
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import("//build_overrides/bouffalolab_iot_sdk.gni")
1616
import("//build_overrides/build.gni")
1717
import("//build_overrides/chip.gni")
1818

19-
import("${bl602_sdk_build_root}/bl602_executable.gni")
20-
import("${bl602_sdk_build_root}/bl602_sdk.gni")
19+
import("${bouffalolab_iot_sdk_build_root}/bl602/bl_iot_sdk.gni")
20+
import("${bouffalolab_iot_sdk_build_root}/common/bouffalolab_executable.gni")
2121
import("${build_root}/config/defaults.gni")
2222
import("${chip_root}/examples/common/pigweed/pigweed_rpcs.gni")
2323
import("${chip_root}/src/platform/device.gni")
@@ -51,7 +51,7 @@ declare_args() {
5151
baudrate = 2000000
5252
}
5353

54-
bl602_sdk("sdk") {
54+
bl_iot_sdk("sdk") {
5555
include_dirs = [
5656
"${chip_root}/src/platform/bouffalolab/BL602",
5757
"${example_dir}",
@@ -66,6 +66,7 @@ bl602_sdk("sdk") {
6666
"CHIP_DEVICE_CONFIG_USE_TEST_SETUP_PIN_CODE=${setupPinCode}",
6767
"OTA_PERIODIC_QUERY_TIMEOUT=${ota_periodic_query_timeout}",
6868
"CHIP_UART_BAUDRATE=${baudrate}",
69+
"SYS_AOS_LOOP_ENABLE",
6970
]
7071

7172
if (chip_enable_pw_rpc) {
@@ -77,16 +78,18 @@ bl602_sdk("sdk") {
7778
}
7879
}
7980

80-
bl602_executable("lighting_app") {
81+
bouffalolab_executable("lighting_app") {
8182
output_name = "chip-bl602-lighting-example.out"
8283

8384
defines = [
8485
"APP_TASK_STACK_SIZE=2044",
8586
"CHIP_UART_BAUDRATE=${baudrate}",
8687
"BL602_ENABLE",
8788
"START_ENTRY=bfl_main",
89+
"SYS_AOS_LOOP_ENABLE",
8890
]
8991

92+
bl_plat_name = "bl602"
9093
sources = [
9194
"${examples_plat_dir}/route_hook/bl_route_hook.c",
9295
"${examples_plat_dir}/route_hook/bl_route_table.c",
@@ -195,6 +198,7 @@ bl602_executable("lighting_app") {
195198
sources += [ "${examples_plat_common_dir}/plat/OTAConfig.cpp" ]
196199
}
197200

201+
cflags_c = [ "-Wno-sign-compare" ]
198202
ldscript = "${examples_plat_dir}/ldscripts/flash_rom.ld"
199203

200204
ldflags = [ "-T" + rebase_path(ldscript, root_build_dir) ]

examples/lighting-app/bouffalolab/bl602/CHIPProjectConfig.h

+2
Original file line numberDiff line numberDiff line change
@@ -144,3 +144,5 @@
144144
#define CHIP_DEVICE_CONFIG_EVENT_LOGGING_DEBUG_BUFFER_SIZE (512)
145145

146146
#define CHIP_DEVICE_CONFIG_ENABLE_EXTENDED_DISCOVERY 1
147+
148+
#define CHIP_SYSTEM_CRYPTO_HEADER_RESERVE_SIZE 128

examples/lighting-app/bouffalolab/bl602/args.gni

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import("//build_overrides/pigweed.gni")
1717
import("${chip_root}/config/standalone/args.gni")
1818
import("${chip_root}/src/platform/bouffalolab/BL602/args.gni")
1919

20-
bl602_sdk_target = get_label_info(":sdk", "label_no_toolchain")
20+
bl_iot_sdk_target = get_label_info(":sdk", "label_no_toolchain")
2121

2222
pw_log_BACKEND = "${chip_root}/src/lib/support/pw_log_chip"
2323
pw_assert_BACKEND = "$dir_pw_assert_log"

examples/lighting-app/bouffalolab/bl702/BUILD.gn

+5-4
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import("//build_overrides/bouffalolab_iot_sdk.gni")
1616
import("//build_overrides/build.gni")
1717
import("//build_overrides/chip.gni")
1818

19-
import("${bl702_sdk_build_root}/bl702_executable.gni")
20-
import("${bl702_sdk_build_root}/bl702_sdk.gni")
19+
import("${bouffalolab_iot_sdk_build_root}/bl702/bl_iot_sdk.gni")
20+
import("${bouffalolab_iot_sdk_build_root}/common/bouffalolab_executable.gni")
2121
import("${build_root}/config/defaults.gni")
2222
import("${chip_root}/examples/common/pigweed/pigweed_rpcs.gni")
2323
import("${chip_root}/src/platform/device.gni")
@@ -54,7 +54,7 @@ declare_args() {
5454
baudrate = 2000000
5555
}
5656

57-
bl702_sdk("sdk") {
57+
bl_iot_sdk("sdk") {
5858
include_dirs = [
5959
"${example_dir}",
6060
"${example_common_dir}",
@@ -88,8 +88,9 @@ bl702_sdk("sdk") {
8888
}
8989
}
9090

91-
bl702_executable("lighting_app") {
91+
bouffalolab_executable("lighting_app") {
9292
output_name = "chip-bl702-lighting-example.out"
93+
bl_plat_name = "bl702"
9394

9495
defines = [
9596
"APP_TASK_STACK_SIZE=2044",

examples/lighting-app/bouffalolab/bl702/args.gni

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import("//build_overrides/pigweed.gni")
1717
import("${chip_root}/config/standalone/args.gni")
1818
import("${chip_root}/src/platform/bouffalolab/BL702/args.gni")
1919

20-
bl702_sdk_target = get_label_info(":sdk", "label_no_toolchain")
20+
bl_iot_sdk_target = get_label_info(":sdk", "label_no_toolchain")
2121

2222
pw_log_BACKEND = "${chip_root}/src/lib/support/pw_log_chip"
2323
pw_assert_BACKEND = "$dir_pw_assert_log"

examples/lighting-app/bouffalolab/common/AppTask.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,8 @@ void AppTask::ChipEventHandler(const ChipDeviceEvent * event, intptr_t arg)
417417
#if CHIP_DEVICE_CONFIG_ENABLE_WIFI
418418
case DeviceEventType::kWiFiConnectivityChange:
419419

420-
ChipLogProgress(NotSpecified, "Wi-Fi state changed\r\n", ConnectivityMgr().IsWiFiStationConnected());
420+
ChipLogProgress(NotSpecified, "Wi-Fi state changed to %s.\r\n",
421+
ConnectivityMgr().IsWiFiStationConnected() ? "connected" : "disconnected");
421422

422423
chip::app::DnssdServer::Instance().StartServer();
423424
NetworkCommissioning::BLWiFiDriver::GetInstance().SaveConfiguration();

examples/platform/bouffalolab/bl602/BUILD.gn

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
import("//build_overrides/bouffalolab_iot_sdk.gni")
1616
import("//build_overrides/chip.gni")
1717

18-
import("${bl602_sdk_build_root}/bl602_sdk.gni")
18+
import("${bouffalolab_iot_sdk_build_root}/bl602/bl_iot_sdk.gni")
1919

2020
config("chip_examples_project_config") {
2121
include_dirs = [ "project_include" ]

examples/platform/bouffalolab/bl602/FreeRTOSConfig.h

+85-103
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,8 @@
9797
1 tab == 4 spaces!
9898
*/
9999

100-
#pragma once
101-
102-
#ifdef __cplusplus
103-
extern "C" {
104-
#endif
100+
#ifndef FREERTOS_CONFIG_H
101+
#define FREERTOS_CONFIG_H
105102

106103
#include "platform.h"
107104
#include <stdio.h>
@@ -118,116 +115,101 @@ extern "C" {
118115
* See http://www.freertos.org/a00110.html.
119116
*----------------------------------------------------------*/
120117

121-
/* Tickless mode is not used. */
122-
123-
/* Some of the standard demo test tasks assume a tick rate of 1KHz, even
124-
though that is faster than would normally be warranted by a real
125-
application. */
126-
#define configTICK_RATE_HZ (1000)
127-
128-
/* The full demo always has tasks to run so the tick will never be turned
129-
off. The blinky demo will use the default tickless idle implementation to
130-
turn the tick off. */
131-
#define configUSE_TICKLESS_IDLE (0)
118+
#define configSUPPORT_STATIC_ALLOCATION 1
132119

133-
/* Hook function related definitions. */
134-
#define configUSE_TICK_HOOK (0)
135-
#define configCHECK_FOR_STACK_OVERFLOW (2)
136-
#define configUSE_MALLOC_FAILED_HOOK (1)
137-
#define configUSE_IDLE_HOOK (0)
138-
139-
#define configENERGY_MODE (sleepEM1)
140-
141-
/* Main functions*/
142-
/* Run time stats gathering related definitions. */
143-
#define configGENERATE_RUN_TIME_STATS (0)
144-
145-
/* Co-routine related definitions. */
146-
#define configUSE_CO_ROUTINES (0)
120+
#define configCLINT_BASE_ADDRESS CLINT_CTRL_ADDR
121+
#define configCLIC_TIMER_ENABLE_ADDRESS (0x02800407)
122+
#define configUSE_PREEMPTION 1
123+
#define configUSE_IDLE_HOOK 1
124+
#define configUSE_TICK_HOOK 0
125+
#ifndef configUSE_TICKLESS_IDLE
126+
// Maybe Compile flags is passed by command line
127+
#define configUSE_TICKLESS_IDLE 1
128+
#endif
129+
#define configCPU_CLOCK_HZ (10 * 1000 * 1000) /*QEMU*/
130+
#define configTICK_RATE_HZ ((TickType_t) 1000)
131+
#define configMAX_PRIORITIES (32)
132+
/* Creating idle task */
133+
/* -1 -> prvInitialiseNewTask: (subtract 1 to get top of stack) pxTopOfStack = &( pxNewTCB->pxStack[ ulStackDepth - ( uint32_t ) 1
134+
* ] ); */
135+
/* -1 -> prvInitialiseNewTask: (subtract 1 in case not matching 8 bytes alignment) pxTopOfStack = ( StackType_t * ) ( ( (
136+
* portPOINTER_SIZE_TYPE ) pxTopOfStack ) & ( ~( ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) ) ); */
137+
/* Running idle task */
138+
/* -12 -> prvIdleTask: addi sp, sp, -48 */
139+
/* -16 -> prvIdleTask.xTaskResumeAll: addi sp, sp, -64 */
140+
/* Here comes an interrupt after prvIdleTask.xTaskResumeAll.vTaskExitCritical */
141+
/* -30 -> freertos_risc_v_trap_handler: addi sp, sp, -portCONTEXT_SIZE */
142+
/* -34 -> portasmSAVE_ADDITIONAL_REGISTERS: addi sp, sp, -(portasmADDITIONAL_CONTEXT_SIZE * portWORD_SIZE) */
143+
/* Checking for stack overflow */
144+
/* 4 -> taskCHECK_FOR_STACK_OVERFLOW: if( ( pulStack[ 0 ] != ulCheckValue ) || ( pulStack[ 1 ] != ulCheckValue ) || ( pulStack[ 2
145+
* ] != ulCheckValue ) || ( pulStack[ 3 ] != ulCheckValue ) ) */
146+
#define configMINIMAL_STACK_SIZE ((unsigned short) 114) /* SIZE-1-1-12-16-30-34>=4 */
147+
#define configTOTAL_HEAP_SIZE ((size_t) 14100)
148+
#define configMAX_TASK_NAME_LEN (16)
149+
#define configUSE_TRACE_FACILITY 1
150+
#define configUSE_STATS_FORMATTING_FUNCTIONS 1
151+
#define configUSE_16_BIT_TICKS 0
152+
#define configIDLE_SHOULD_YIELD 1
153+
#define configUSE_MUTEXES 1
154+
#define configQUEUE_REGISTRY_SIZE 8
155+
#define configCHECK_FOR_STACK_OVERFLOW 2
156+
#define configUSE_RECURSIVE_MUTEXES 1
157+
#define configUSE_MALLOC_FAILED_HOOK 1
158+
#define configUSE_APPLICATION_TASK_TAG 0
159+
#define configUSE_COUNTING_SEMAPHORES 1
160+
#define configGENERATE_RUN_TIME_STATS 0
161+
#define configUSE_PORT_OPTIMISED_TASK_SELECTION 1
162+
163+
/* Co-routine definitions. */
164+
#define configUSE_CO_ROUTINES 0
147165
#define configMAX_CO_ROUTINE_PRIORITIES (2)
148166

149-
/* Software timer related definitions. */
150-
#define configUSE_TIMERS (1)
151-
#define configTIMER_TASK_PRIORITY (configMAX_PRIORITIES - 1) /* Highest priority */
152-
#define configTIMER_QUEUE_LENGTH (4)
167+
/* Software timer definitions. */
168+
#define configUSE_TIMERS 1
169+
#define configTIMER_TASK_PRIORITY (configMAX_PRIORITIES - 1)
170+
#define configTIMER_QUEUE_LENGTH 4
153171
#define configTIMER_TASK_STACK_DEPTH (400)
154172

155-
/* Cortex-M specific definitions. */
156-
#ifdef __NVIC_PRIO_BITS
157-
/* __BVIC_PRIO_BITS will be specified when CMSIS is being used. */
158-
#define configPRIO_BITS (__NVIC_PRIO_BITS)
159-
#else
160-
#define configPRIO_BITS 3 /* 7 priority levels */
173+
/* Task priorities. Allow these to be overridden. */
174+
#ifndef uartPRIMARY_PRIORITY
175+
#define uartPRIMARY_PRIORITY (configMAX_PRIORITIES - 3)
161176
#endif
162177

163-
/* The lowest interrupt priority that can be used in a call to a "set priority"
164-
function. */
165-
#define configLIBRARY_LOWEST_INTERRUPT_PRIORITY (0x07)
166-
167-
/* The highest interrupt priority that can be used by any interrupt service
168-
routine that makes calls to interrupt safe FreeRTOS API functions. DO NOT CALL
169-
INTERRUPT SAFE FREERTOS API FUNCTIONS FROM ANY INTERRUPT THAT HAS A HIGHER
170-
PRIORITY THAN THIS! (higher priorities are lower numeric values. */
171-
#define configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY (0x03)
172-
173-
/* Interrupt priorities used by the kernel port layer itself. These are generic
174-
to all Cortex-M ports, and do not rely on any particular library functions. */
175-
#define configKERNEL_INTERRUPT_PRIORITY (configLIBRARY_LOWEST_INTERRUPT_PRIORITY << (8 - configPRIO_BITS))
176-
/* !!!! configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to zero !!!!
177-
See http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html. */
178-
#define configMAX_SYSCALL_INTERRUPT_PRIORITY (configLIBRARY_MAX_SYSCALL_INTERRUPT_PRIORITY << (8 - configPRIO_BITS))
179-
180-
/* FreeRTOS MPU specific definitions. */
181-
#define configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS (0)
182-
183-
#define configCPU_CLOCK_HZ (10 * 1000 * 1000)
184-
#define configUSE_PREEMPTION (1)
185-
#define configUSE_TIME_SLICING (1)
186-
#define configUSE_PORT_OPTIMISED_TASK_SELECTION (1)
187-
#define configUSE_TICKLESS_IDLE_SIMPLE_DEBUG (1) /* See into vPortSuppressTicksAndSleep source code for explanation */
188-
#define configMAX_PRIORITIES (32)
189-
#define configMINIMAL_STACK_SIZE ((unsigned short) 112) /* Number of words to use for Idle and Timer stacks */
190-
#define configMAX_TASK_NAME_LEN (16)
191-
#define configUSE_16_BIT_TICKS (0)
192-
#define configIDLE_SHOULD_YIELD (1)
193-
#define configUSE_MUTEXES (1)
194-
#define configUSE_RECURSIVE_MUTEXES (1)
195-
#define configUSE_COUNTING_SEMAPHORES (1)
196-
#define configQUEUE_REGISTRY_SIZE (8)
197-
// #define configUSE_QUEUE_SETS (0)
198-
// #define configUSE_NEWLIB_REENTRANT (0)
199-
#define configENABLE_BACKWARD_COMPATIBILITY (1)
200-
#define configSUPPORT_STATIC_ALLOCATION (1)
201-
202178
/* Optional functions - most linkers will remove unused functions anyway. */
203-
#define INCLUDE_vTaskPrioritySet (1)
204-
#define INCLUDE_uxTaskPriorityGet (1)
205-
#define INCLUDE_vTaskDelete (1)
206-
#define INCLUDE_vTaskSuspend (1)
207-
// #define INCLUDE_xResumeFromISR (1)
208-
#define INCLUDE_vTaskDelayUntil (1)
209-
#define INCLUDE_vTaskDelay (1)
210-
#define INCLUDE_xTaskGetSchedulerState (0)
211-
#define INCLUDE_xTaskGetCurrentTaskHandle (0)
212-
#define INCLUDE_uxTaskGetStackHighWaterMark (1)
213-
#define INCLUDE_xTaskGetIdleTaskHandle (0)
214-
// #define INCLUDE_xTimerGetTimerDaemonTaskHandle (1)
215-
// #define INCLUDE_pcTaskGetTaskName (1)
216-
#define INCLUDE_eTaskGetState (1)
217-
// #define INCLUDE_xEventGroupSetBitFromISR (1)
218-
#define INCLUDE_xTimerPendFunctionCall (1)
219-
179+
#define INCLUDE_vTaskPrioritySet 1
180+
#define INCLUDE_uxTaskPriorityGet 1
181+
#define INCLUDE_vTaskDelete 1
182+
#define INCLUDE_vTaskCleanUpResources 1
183+
#define INCLUDE_vTaskSuspend 1
184+
#define INCLUDE_vTaskDelayUntil 1
185+
#define INCLUDE_vTaskDelay 1
186+
#define INCLUDE_eTaskGetState 1
187+
#define INCLUDE_xTimerPendFunctionCall 1
188+
#define INCLUDE_xTimerPendFunctionCall 1
189+
#define INCLUDE_uxTaskGetStackHighWaterMark 1
190+
191+
/* Overwrite some of the stack sizes allocated to various test and demo tasks.
192+
Like all task stack sizes, the value is the number of words, not bytes. */
193+
#define bktBLOCK_TIME_TASK_STACK_SIZE 100
194+
#define notifyNOTIFIED_TASK_STACK_SIZE 120
195+
#define priSUSPENDED_RX_TASK_STACK_SIZE 90
196+
#define tmrTIMER_TEST_TASK_STACK_SIZE 100
197+
#define ebRENDESVOUS_TEST_TASK_STACK_SIZE 100
198+
#define ebEVENT_GROUP_SET_BITS_TEST_TASK_STACK_SIZE 115
199+
#define genqMUTEX_TEST_TASK_STACK_SIZE 90
200+
#define genqGENERIC_QUEUE_TEST_TASK_STACK_SIZE 100
201+
#define recmuRECURSIVE_MUTEX_TEST_TASK_STACK_SIZE 90
202+
203+
extern void vAssertCalled(void);
220204
/* Stop if an assertion fails. */
221205
#define configASSERT(x) \
222206
if ((x) == 0) \
223207
vAssertCalled()
224208

225-
/* Definitions that map the FreeRTOS port interrupt handlers to their CMSIS
226-
standard names. */
227-
// #define vPortSVCHandler SVC_Handler
228-
// #define xPortPendSVHandler PendSV_Handler
229-
#define xPortSysTickHandler SysTick_Handler
209+
#if (configUSE_TICKLESS_IDLE != 0)
210+
#include "portmacro.h"
211+
extern void vApplicationSleep(TickType_t xExpectedIdleTime);
212+
#define portSUPPRESS_TICKS_AND_SLEEP(xExpectedIdleTime) vApplicationSleep(xExpectedIdleTime)
213+
#endif
230214

231-
#ifdef __cplusplus
232-
}
233215
#endif

0 commit comments

Comments
 (0)