This PR adds a misc driver for NXP S32 eMIOS peripheral. eMIOS provides multiple unified channels (UCs), there are several channels can be used as reference timebase (master bus) for other channels. At this time, the driver does initialize global configuration for eMIOS Signed-off-by: Dat Nguyen Duy <dat.nguyenduy@nxp.com>
22 lines
507 B
Text
22 lines
507 B
Text
# Copyright 2023 NXP
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config NXP_S32_EMIOS
|
|
bool "NXP S32 eMIOS drivers"
|
|
depends on DT_HAS_NXP_S32_EMIOS_ENABLED
|
|
help
|
|
Enable drivers for NXP S32 EMIOS
|
|
|
|
if NXP_S32_EMIOS
|
|
|
|
module = NXP_S32_EMIOS
|
|
module-str = NXP S32 eMIOS
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
config NXP_S32_EMIOS_INIT_PRIORITY
|
|
int "NXP S32 eMIOS initialization priority"
|
|
default KERNEL_INIT_PRIORITY_DEVICE
|
|
help
|
|
System initialization priority for NXP S32 eMIOS drivers.
|
|
|
|
endif
|