diff options
author | Tom Rini <trini@konsulko.com> | 2018-12-07 10:55:12 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-12-07 10:55:12 -0500 |
commit | 3589025867274ff28f689029ab8323301771c8ec (patch) | |
tree | bc8f6b088d9b5ceec8e99602082f4d034800b8ef /drivers/hwspinlock/Kconfig | |
parent | 57dbc151437b36cc1105857d222df28b095236d7 (diff) | |
parent | fdce9d35dc3671dfc6ce29b4c76e152cc5780869 (diff) |
Merge branch '2018-12-06-master-imports'
- Various FAT fixes
- Hardware spinlock uclass
- DMA uclass
- Various am335x fixes
- DT resyncs for a number of TI platforms
- stm32 updates
Diffstat (limited to 'drivers/hwspinlock/Kconfig')
-rw-r--r-- | drivers/hwspinlock/Kconfig | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/drivers/hwspinlock/Kconfig b/drivers/hwspinlock/Kconfig new file mode 100644 index 0000000000..96d4f5d6ca --- /dev/null +++ b/drivers/hwspinlock/Kconfig @@ -0,0 +1,24 @@ +menu "Hardware Spinlock Support" + +config DM_HWSPINLOCK + bool "Enable U-Boot hardware spinlock support" + help + This option enables U-Boot hardware spinlock support + +config HWSPINLOCK_SANDBOX + bool "Enable Hardware Spinlock support for Sandbox" + depends on SANDBOX && DM_HWSPINLOCK + help + Enable hardware spinlock support in Sandbox. This is a dummy device that + can be probed and support all the methods of HWSPINLOCK, but does not + really do anything. + +config HWSPINLOCK_STM32 + bool "Enable Hardware Spinlock support for STM32" + depends on ARCH_STM32MP && DM_HWSPINLOCK + help + Enable hardware spinlock support in STM32MP. Hardware spinlocks are + hardware mutex which provide a synchronisation mechanism for the + various processors on the SoC. + +endmenu |