cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

Kconfig (699B)


      1# SPDX-License-Identifier: GPL-2.0-only
      2config CLK_ACTIONS
      3	bool "Clock driver for Actions Semi SoCs"
      4	depends on ARCH_ACTIONS || COMPILE_TEST
      5	select REGMAP_MMIO
      6	select RESET_CONTROLLER
      7	default ARCH_ACTIONS
      8
      9if CLK_ACTIONS
     10
     11# SoC Drivers
     12
     13config CLK_OWL_S500
     14	bool "Support for the Actions Semi OWL S500 clocks"
     15	depends on ARCH_ACTIONS || COMPILE_TEST
     16	default ARCH_ACTIONS
     17
     18config CLK_OWL_S700
     19	bool "Support for the Actions Semi OWL S700 clocks"
     20	depends on (ARM64 && ARCH_ACTIONS) || COMPILE_TEST
     21	default ARM64 && ARCH_ACTIONS
     22
     23config CLK_OWL_S900
     24	bool "Support for the Actions Semi OWL S900 clocks"
     25	depends on (ARM64 && ARCH_ACTIONS) || COMPILE_TEST
     26	default ARM64 && ARCH_ACTIONS
     27
     28endif