diff options
| author | Svyatoslav Ryhel <[email protected]> | 2023-10-24 10:49:03 +0300 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-11-03 17:40:11 -0400 |
| commit | 7084f34d0fc0f9ca5fadc2e86d0c397fa859a832 (patch) | |
| tree | 8849cd6bf89637995877d37a8db9b620b51850ed /drivers/sysreset/Kconfig | |
| parent | c23fca8958c3d829a59c692bf5b06bcf23eb6662 (diff) | |
sysreset: tegra: create arch specific sysreset driver
Tegra uses built in Power Management Controller (PMC) to perform
CPU reset. Code to perform this was located in mach-tegra, so lest
create DM driver to handle this.
Signed-off-by: Svyatoslav Ryhel <[email protected]>
Diffstat (limited to 'drivers/sysreset/Kconfig')
| -rw-r--r-- | drivers/sysreset/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/sysreset/Kconfig b/drivers/sysreset/Kconfig index bdbe2a95364..eab556c3499 100644 --- a/drivers/sysreset/Kconfig +++ b/drivers/sysreset/Kconfig @@ -137,6 +137,12 @@ config SYSRESET_SOCFPGA_SOC64 This enables the system reset driver support for Intel SOCFPGA SoC64 SoCs. +config SYSRESET_TEGRA + bool "Tegra PMC system reset driver" + depends on ARCH_TEGRA + help + This enables the system reset ability of PMC used in Tegra SoCs. + config SYSRESET_TI_SCI bool "TI System Control Interface (TI SCI) system reset driver" depends on TI_SCI_PROTOCOL |
