This commit is contained in:
刘可亮
2024-09-03 11:16:08 +08:00
parent cf270df8d6
commit 803cac77d5
2931 changed files with 614364 additions and 31222 deletions

View File

@@ -196,8 +196,11 @@ config AIC_USING_CAP2
default n
select AIC_CAP_DRV
source "bsp/artinchip/drv/cap/Kconfig"
endmenu
#---------------------------
# QEP device global option
#---------------------------
@@ -249,6 +252,10 @@ source "bsp/artinchip/drv/cir/Kconfig"
# usb device global option
#---------------------------
config AIC_USB_OTG_DRV
bool
default n
config AIC_USING_USB0
bool "Using Usb0"
default n
@@ -267,16 +274,10 @@ if AIC_USING_USB0
bool "OTG"
select AIC_USB_DEVICE_DRV
select AIC_USB_HOST_EHCI_DRV
select AIC_USB_OTG_DRV
endchoice
endif
if !AIC_USING_USB0_HOST
config AIC_USING_USB1_HOST
bool "Using Usb1 (Host)"
default n
select AIC_USB_HOST_EHCI_DRV
endif
config AIC_USING_USB1
bool "Using Usb1"
default n
@@ -647,6 +648,21 @@ config AIC_USING_AUDIO
source "bsp/artinchip/drv/audio/Kconfig"
#---------------------------
# TOUCH device global option
#---------------------------
if KERNEL_BAREMETAL
config AIC_USING_TOUCH
bool "Using Touch"
default n
select AIC_TOUCH_DRV
source "bsp/artinchip/drv_bare/touch/Kconfig"
endif
#---------------------------
# xxx device global option
#---------------------------
@@ -782,17 +798,42 @@ config AIC_USING_CLK_OUT0
bool "Enable CLK_OUT0"
default n
if AIC_USING_CLK_OUT0
config AIC_CLK_OUT0_FREQ
int "Clk CLK_OUT0 frequence"
default 25000000
endif
config AIC_USING_CLK_OUT1
bool "Enable CLK_OUT1"
default n
if AIC_USING_CLK_OUT1
config AIC_CLK_OUT1_FREQ
int "Clk CLK_OUT1 frequence"
default 24000000
endif
config AIC_USING_CLK_OUT2
bool "Enable CLK_OUT2"
default n
if AIC_USING_CLK_OUT2
config AIC_CLK_OUT2_FREQ
int "Clk CLK_OUT2 frequence"
default 25000000
endif
config AIC_USING_CLK_OUT3
bool "Enable CLK_OUT3"
default n
if AIC_USING_CLK_OUT3
config AIC_CLK_OUT2_FREQ
int "Clk CLK_OUT3 frequence"
default 25000000
endif
endmenu
#---------------------------