mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
087c5c79c2
PD#SWPL-88872 Problem: modify select to depends on Solution: modify select to depends on Verify: SC2 Change-Id: I9e295d17f5c03a6c49b001c18129fc1bc0eaee69 Signed-off-by: wanwei.jiang <wanwei.jiang@amlogic.com>
30 lines
848 B
Plaintext
30 lines
848 B
Plaintext
# SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
|
|
if WATCHDOG
|
|
|
|
comment "Watchdog Device Drivers"
|
|
|
|
config AMLOGIC_MESON_GXBB_WATCHDOG
|
|
tristate "Amlogic Meson GXBB SoCs watchdog support"
|
|
depends on WATCHDOG_CORE
|
|
help
|
|
Say Y here to include support for the watchdog timer
|
|
in Amlogic Meson GXBB SoCs.
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called meson_gxbb_wdt.
|
|
|
|
config AMLOGIC_ARM_SMC_WATCHDOG
|
|
tristate "ARM Secure Monitor Call based watchdog support"
|
|
depends on ARM || ARM64
|
|
depends on OF
|
|
depends on HAVE_ARM_SMCCC
|
|
depends on WATCHDOG_CORE
|
|
help
|
|
Say Y here to include support for a watchdog timer
|
|
implemented by the EL3 Secure Monitor on ARM platforms.
|
|
Requires firmware support.
|
|
To compile this driver as a module, choose M here: the
|
|
module will be called arm_smc_wdt.
|
|
|
|
endif # WATCHDOG
|