project:cfg:BoardConfig_IPC: Added fastboot BoardConfig file and firmware post-scripts, distinguishing between the BoardConfigs for Luckfox Pico Pro and Luckfox Pico Max. project:app: Added fastboot_client and rk_smart_door for quick boot applications; updated rkipc app to adapt to the latest media library. media:samples: Added more usage examples. media:rockit: Fixed bugs; removed support for retrieving data frames from VPSS. media:isp: Updated rkaiq library and related tools to support connection to RKISP_Tuner. sysdrv:Makefile: Added support for compiling drv_ko on Luckfox Pico Ultra W using Ubuntu; added support for custom root filesystem. sysdrv:tools:board: Updated Buildroot optional mirror sources, updated some software versions, and stored device tree files and configuration files that undergo multiple modifications for U-Boot and kernel separately. sysdrv:source:mcu: Used RISC-V MCU SDK with RT-Thread system, mainly for initializing camera AE during quick boot. sysdrv:source:uboot: Added support for fastboot; added high baud rate DDR bin for serial firmware upgrades. sysdrv:source:kernel: Upgraded to version 5.10.160; increased NPU frequency for RV1106G3; added support for fastboot. Signed-off-by: luckfox-eng29 <eng29@luckfox.com>
73 lines
1.2 KiB
Plaintext
73 lines
1.2 KiB
Plaintext
source "$BSP_DIR/../common/drivers/Kconfig"
|
|
|
|
menu "RT-Thread rockchip rv1106 drivers"
|
|
|
|
config RT_USING_CRU
|
|
bool "Enable CRU"
|
|
default n
|
|
|
|
if RT_USING_I2C
|
|
menu "Enable I2C"
|
|
config RT_USING_I2C0
|
|
bool "Enable I2C0"
|
|
default n
|
|
|
|
config RT_USING_I2C1
|
|
bool "Enable I2C1"
|
|
default n
|
|
|
|
config RT_USING_I2C2
|
|
bool "Enable I2C2"
|
|
default n
|
|
|
|
config RT_USING_I2C3
|
|
bool "Enable I2C3"
|
|
default n
|
|
|
|
config RT_USING_I2C4
|
|
bool "Enable I2C4"
|
|
default n
|
|
|
|
config RT_USING_I2C5
|
|
bool "Enable I2C5"
|
|
default n
|
|
endmenu
|
|
endif
|
|
|
|
if RT_USING_PWM
|
|
config RT_USING_PWM0
|
|
bool "Enable PWM0"
|
|
default n
|
|
|
|
config RT_USING_PWM1
|
|
bool "Enable PWM1"
|
|
default n
|
|
|
|
config RT_USING_PWM2
|
|
bool "Enable PWM2"
|
|
default n
|
|
endif
|
|
|
|
config RT_USING_SARADC
|
|
bool "Enable SARADC"
|
|
default n
|
|
|
|
menu "Enable UART"
|
|
config RT_USING_UART
|
|
bool "Enable UART"
|
|
default y
|
|
|
|
if RT_USING_UART
|
|
config RT_USING_UART0
|
|
bool "Enable UART0"
|
|
default n
|
|
|
|
config RT_USING_UART2
|
|
bool "Enable UART2"
|
|
default y
|
|
endif
|
|
endmenu
|
|
|
|
endmenu
|
|
|