Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[components] [drivers ] [Kconfig] 整理 components/drivers 的 Kconfig #9054

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
969 changes: 31 additions & 938 deletions components/drivers/Kconfig

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions components/drivers/audio/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
config RT_USING_AUDIO
bool "Using Audio device drivers"
default n

if RT_USING_AUDIO
config RT_AUDIO_REPLAY_MP_BLOCK_SIZE
int "Replay memory pool block size"
default 4096

config RT_AUDIO_REPLAY_MP_BLOCK_COUNT
int "Replay memory pool block count"
default 2

config RT_AUDIO_RECORD_PIPE_SIZE
int "Record pipe size"
default 2048
endif
12 changes: 12 additions & 0 deletions components/drivers/can/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
config RT_USING_CAN
bool "Using CAN device drivers"
default n

if RT_USING_CAN
config RT_CAN_USING_HDR
bool "Enable CAN hardware filter"
default n
config RT_CAN_USING_CANFD
bool "Enable CANFD support"
default n
endif
11 changes: 11 additions & 0 deletions components/drivers/core/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
config RT_USING_DM
bool "Enable device driver model with device tree"
default n
help
Enable device driver model with device tree (FDT). It will use more memory
to parse and support device tree feature.

config RT_USING_DEV_BUS
bool "Using Device Bus device drivers"
default y if RT_USING_SMART
default n
34 changes: 34 additions & 0 deletions components/drivers/cputime/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
config RT_USING_CPUTIME
bool "Enable CPU time for high resolution clock counter"
default n
help
When enable this option, the BSP should provide a rt_clock_cputime_ops
for CPU time by:
const static struct rt_clock_cputime_ops _ops = {...};
clock_cpu_setops(&_ops);

Then user can use high resolution clock counter with:

ts1 = clock_cpu_gettime();
ts2 = clock_cpu_gettime();

/* and get the ms of delta tick with API: */
ms_tick = clock_cpu_millisecond(t2 - t1);
us_tick = clock_cpu_microsecond(t2 - t1);

if RT_USING_CPUTIME
config RT_USING_CPUTIME_CORTEXM
bool "Support Cortex-M CPU"
default y
depends on ARCH_ARM_CORTEX_M0 || ARCH_ARM_CORTEX_M3 || ARCH_ARM_CORTEX_M4 || ARCH_ARM_CORTEX_M7
select PKG_USING_PERF_COUNTER
config RT_USING_CPUTIME_RISCV
bool "Use rdtime instructions for CPU time"
default y
depends on ARCH_RISCV64
help
Some RISCV64 MCU Use rdtime instructions read CPU time.
config CPUTIME_TIMER_FREQ
int "CPUTIME timer freq"
default 0
endif
Empty file added components/drivers/fdt/Kconfig
Empty file.
3 changes: 3 additions & 0 deletions components/drivers/graphic/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
config RT_USING_LCD
bool "Using LCD graphic drivers"
default n
165 changes: 165 additions & 0 deletions components/drivers/hwcrypto/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,165 @@
menuconfig RT_USING_HWCRYPTO
bool "Using Hardware Crypto drivers"
default n

if RT_USING_HWCRYPTO
config RT_HWCRYPTO_DEFAULT_NAME
string "Hardware crypto device name"
default "hwcryto"

config RT_HWCRYPTO_IV_MAX_SIZE
int "IV max size"
default "16"

config RT_HWCRYPTO_KEYBIT_MAX_SIZE
int "Key max bit length"
default 256

config RT_HWCRYPTO_USING_GCM
bool "Using Hardware GCM"
default n

config RT_HWCRYPTO_USING_AES
bool "Using Hardware AES"
default n

if RT_HWCRYPTO_USING_AES
config RT_HWCRYPTO_USING_AES_ECB
bool "Using Hardware AES ECB mode"
default y

config RT_HWCRYPTO_USING_AES_CBC
bool "Using Hardware AES CBC mode"
default n

config RT_HWCRYPTO_USING_AES_CFB
bool "Using Hardware AES CFB mode"
default n

config RT_HWCRYPTO_USING_AES_CTR
bool "Using Hardware AES CTR mode"
default n

config RT_HWCRYPTO_USING_AES_OFB
bool "Using Hardware AES OFB mode"
default n
endif

config RT_HWCRYPTO_USING_DES
bool "Using Hardware DES"
default n

if RT_HWCRYPTO_USING_DES
config RT_HWCRYPTO_USING_DES_ECB
bool "Using Hardware DES ECB mode"
default y

config RT_HWCRYPTO_USING_DES_CBC
bool "Using Hardware DES CBC mode"
default n
endif

config RT_HWCRYPTO_USING_3DES
bool "Using Hardware 3DES"
default n

if RT_HWCRYPTO_USING_3DES
config RT_HWCRYPTO_USING_3DES_ECB
bool "Using Hardware 3DES ECB mode"
default y

config RT_HWCRYPTO_USING_3DES_CBC
bool "Using Hardware 3DES CBC mode"
default n
endif

config RT_HWCRYPTO_USING_RC4
bool "Using Hardware RC4"
default n

config RT_HWCRYPTO_USING_MD5
bool "Using Hardware MD5"
default n

config RT_HWCRYPTO_USING_SHA1
bool "Using Hardware SHA1"
default n

config RT_HWCRYPTO_USING_SHA2
bool "Using Hardware SHA2"
default n

if RT_HWCRYPTO_USING_SHA2
config RT_HWCRYPTO_USING_SHA2_224
bool "Using Hardware SHA2_224 mode"
default n

config RT_HWCRYPTO_USING_SHA2_256
bool "Using Hardware SHA2_256 mode"
default y

config RT_HWCRYPTO_USING_SHA2_384
bool "Using Hardware SHA2_384 mode"
default n

config RT_HWCRYPTO_USING_SHA2_512
bool "Using Hardware SHA2_512 mode"
default n
endif

config RT_HWCRYPTO_USING_RNG
bool "Using Hardware RNG"
default n

config RT_HWCRYPTO_USING_CRC
bool "Using Hardware CRC"
default n

if RT_HWCRYPTO_USING_CRC
config RT_HWCRYPTO_USING_CRC_07
bool "Using Hardware CRC-8 0x07 polynomial"
default n

config RT_HWCRYPTO_USING_CRC_8005
bool "Using Hardware CRC-16 0x8005 polynomial"
default n

config RT_HWCRYPTO_USING_CRC_1021
bool "Using Hardware CRC-16 0x1021 polynomial"
default n

config RT_HWCRYPTO_USING_CRC_3D65
bool "Using Hardware CRC-16 0x3D65 polynomial"
default n

config RT_HWCRYPTO_USING_CRC_04C11DB7
bool "Using Hardware CRC-32 0x04C11DB7 polynomial"
default n
endif

config RT_HWCRYPTO_USING_BIGNUM
bool "Using Hardware bignum"
default n

if RT_HWCRYPTO_USING_BIGNUM
config RT_HWCRYPTO_USING_BIGNUM_EXPTMOD
bool "Using Hardware bignum expt_mod operation"
default y

config RT_HWCRYPTO_USING_BIGNUM_MULMOD
bool "Using Hardware bignum mul_mod operation"
default y

config RT_HWCRYPTO_USING_BIGNUM_MUL
bool "Using Hardware bignum mul operation"
default n

config RT_HWCRYPTO_USING_BIGNUM_ADD
bool "Using Hardware bignum add operation"
default n

config RT_HWCRYPTO_USING_BIGNUM_SUB
bool "Using Hardware bignum sub operation"
default n
endif
endif
Loading
Loading