189c1e2daSStephen Warrenmenu "Reset Controller Support" 289c1e2daSStephen Warren 389c1e2daSStephen Warrenconfig DM_RESET 489c1e2daSStephen Warren bool "Enable reset controllers using Driver Model" 589c1e2daSStephen Warren depends on DM && OF_CONTROL 689c1e2daSStephen Warren help 789c1e2daSStephen Warren Enable support for the reset controller driver class. Many hardware 889c1e2daSStephen Warren modules are equipped with a reset signal, typically driven by some 989c1e2daSStephen Warren reset controller hardware module within the chip. In U-Boot, reset 1089c1e2daSStephen Warren controller drivers allow control over these reset signals. In some 1189c1e2daSStephen Warren cases this API is applicable to chips outside the CPU as well, 1289c1e2daSStephen Warren although driving such reset isgnals using GPIOs may be more 1389c1e2daSStephen Warren appropriate in this case. 1489c1e2daSStephen Warren 154581b717SStephen Warrenconfig SANDBOX_RESET 164581b717SStephen Warren bool "Enable the sandbox reset test driver" 174581b717SStephen Warren depends on DM_MAILBOX && SANDBOX 184581b717SStephen Warren help 194581b717SStephen Warren Enable support for a test reset controller implementation, which 204581b717SStephen Warren simply accepts requests to reset various HW modules without actually 214581b717SStephen Warren doing anything beyond a little error checking. 224581b717SStephen Warren 23584861ffSPatrice Chotardconfig STI_RESET 24584861ffSPatrice Chotard bool "Enable the STi reset" 25584861ffSPatrice Chotard depends on ARCH_STI 26584861ffSPatrice Chotard help 27584861ffSPatrice Chotard Support for reset controllers on STMicroelectronics STiH407 family SoCs. 28584861ffSPatrice Chotard Say Y if you want to control reset signals provided by system config 29584861ffSPatrice Chotard block. 30584861ffSPatrice Chotard 31*23a06416SPatrice Chotardconfig STM32_RESET 32*23a06416SPatrice Chotard bool "Enable the STM32 reset" 33*23a06416SPatrice Chotard depends on STM32 34*23a06416SPatrice Chotard help 35*23a06416SPatrice Chotard Support for reset controllers on STMicroelectronics STM32 family SoCs. 36*23a06416SPatrice Chotard This resset driver is compatible with STM32 F4/F7 and H7 SoCs. 37*23a06416SPatrice Chotard 38fe60f06dSStephen Warrenconfig TEGRA_CAR_RESET 39fe60f06dSStephen Warren bool "Enable Tegra CAR-based reset driver" 40fe60f06dSStephen Warren depends on TEGRA_CAR 41fe60f06dSStephen Warren help 42fe60f06dSStephen Warren Enable support for manipulating Tegra's on-SoC reset signals via 43fe60f06dSStephen Warren direct register access to the Tegra CAR (Clock And Reset controller). 44fe60f06dSStephen Warren 454dd99d14SStephen Warrenconfig TEGRA186_RESET 464dd99d14SStephen Warren bool "Enable Tegra186 BPMP-based reset driver" 474dd99d14SStephen Warren depends on TEGRA186_BPMP 484dd99d14SStephen Warren help 494dd99d14SStephen Warren Enable support for manipulating Tegra's on-SoC reset signals via IPC 504dd99d14SStephen Warren requests to the BPMP (Boot and Power Management Processor). 514dd99d14SStephen Warren 5218393f70SÁlvaro Fernández Rojasconfig RESET_BCM6345 5318393f70SÁlvaro Fernández Rojas bool "Reset controller driver for BCM6345" 5418393f70SÁlvaro Fernández Rojas depends on DM_RESET && ARCH_BMIPS 5518393f70SÁlvaro Fernández Rojas help 5618393f70SÁlvaro Fernández Rojas Support reset controller on BCM6345. 5718393f70SÁlvaro Fernández Rojas 584fb96c48SMasahiro Yamadaconfig RESET_UNIPHIER 594fb96c48SMasahiro Yamada bool "Reset controller driver for UniPhier SoCs" 604fb96c48SMasahiro Yamada depends on ARCH_UNIPHIER 614fb96c48SMasahiro Yamada default y 624fb96c48SMasahiro Yamada help 634fb96c48SMasahiro Yamada Support for reset controllers on UniPhier SoCs. 644fb96c48SMasahiro Yamada Say Y if you want to control reset signals provided by System Control 654fb96c48SMasahiro Yamada block, Media I/O block, Peripheral Block. 664fb96c48SMasahiro Yamada 67858d4976Smaxims@google.comconfig AST2500_RESET 68858d4976Smaxims@google.com bool "Reset controller driver for AST2500 SoCs" 69858d4976Smaxims@google.com depends on DM_RESET && WDT_ASPEED 70858d4976Smaxims@google.com default y if ASPEED_AST2500 71858d4976Smaxims@google.com help 72858d4976Smaxims@google.com Support for reset controller on AST2500 SoC. This controller uses 73858d4976Smaxims@google.com watchdog to reset different peripherals and thus only supports 74858d4976Smaxims@google.com resets that are supported by watchdog. The main limitation though 75858d4976Smaxims@google.com is that some reset signals, like I2C or MISC reset multiple devices. 76858d4976Smaxims@google.com 7789c1e2daSStephen Warrenendmenu 78