011b730b4c
Nuvoton NPCX chips have reset registers which allow to reset the peripheral hardware modules. This commit adds the support by implementing the reset driver. Note that only the reset_line_toggle API is supported because of the nature of the reset controller's design. Signed-off-by: Jun Lin <CHLin56@nuvoton.com>
12 lines
369 B
Plaintext
12 lines
369 B
Plaintext
# NPCX reset controller driver configuration options
|
|
|
|
# Copyright (c) 2024 Nuvoton Technology Corporation.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config RESET_NPCX
|
|
bool "Nuvoton NPCX embedded controller (EC) reset controller driver"
|
|
default y
|
|
depends on DT_HAS_NUVOTON_NPCX_RST_ENABLED
|
|
help
|
|
This option enables the reset controller driver for Nuvoton NPCX MCUs.
|