2016-03-05 18:05:57 +01:00
|
|
|
# Kconfig - Clock controller driver configuration options
|
|
|
|
|
|
|
|
#
|
2016-03-17 14:41:13 -07:00
|
|
|
# Copyright (c) 2015-2016 Intel Corporation
|
2016-03-05 18:05:57 +01:00
|
|
|
#
|
2017-01-18 17:01:01 -08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2016-03-05 18:05:57 +01:00
|
|
|
#
|
|
|
|
|
2016-05-24 18:17:13 -05:00
|
|
|
menuconfig CLOCK_CONTROL_QUARK_SE
|
2018-08-14 16:19:20 +02:00
|
|
|
bool "Quark SE Clock controller support"
|
2016-05-24 18:17:13 -05:00
|
|
|
help
|
|
|
|
Enable support for the Quark SE clock driver.
|
2016-03-05 18:05:57 +01:00
|
|
|
|
2018-02-27 09:12:59 +01:00
|
|
|
if CLOCK_CONTROL_QUARK_SE
|
|
|
|
|
2016-05-24 18:17:13 -05:00
|
|
|
config CLOCK_CONTROL_QUARK_SE_PERIPHERAL
|
2018-08-14 16:19:20 +02:00
|
|
|
bool "Quark SE peripheral clock support"
|
2016-05-24 18:17:13 -05:00
|
|
|
help
|
|
|
|
Enable support for Quark SE peripheral clock which controls the
|
|
|
|
clock of I2C, SPI, GPIO controllers and more.
|
2016-03-05 18:05:57 +01:00
|
|
|
|
2016-05-24 18:17:13 -05:00
|
|
|
config CLOCK_CONTROL_QUARK_SE_PERIPHERAL_DRV_NAME
|
2018-08-14 16:19:20 +02:00
|
|
|
string "Quark SE peripheral clock device name"
|
2016-05-24 18:17:13 -05:00
|
|
|
depends on CLOCK_CONTROL_QUARK_SE_PERIPHERAL
|
|
|
|
default "clk_peripheral"
|
2016-03-05 18:05:57 +01:00
|
|
|
|
2016-05-24 18:17:13 -05:00
|
|
|
config CLOCK_CONTROL_QUARK_SE_EXTERNAL
|
2018-08-14 16:19:20 +02:00
|
|
|
bool "Quark SE external clock support"
|
2016-05-24 18:17:13 -05:00
|
|
|
help
|
|
|
|
Enable support for Quark SE external sub-system clock.
|
2016-03-05 18:05:57 +01:00
|
|
|
|
2016-05-24 18:17:13 -05:00
|
|
|
config CLOCK_CONTROL_QUARK_SE_EXTERNAL_DRV_NAME
|
2018-08-14 16:19:20 +02:00
|
|
|
string "Quark SE external clock device name"
|
2016-05-24 18:17:13 -05:00
|
|
|
depends on CLOCK_CONTROL_QUARK_SE_EXTERNAL
|
|
|
|
default "clk_external"
|
2016-03-05 18:05:57 +01:00
|
|
|
|
2016-05-24 18:17:13 -05:00
|
|
|
config CLOCK_CONTROL_QUARK_SE_SENSOR
|
2018-08-14 16:19:20 +02:00
|
|
|
bool "Quark SE sensor clock support"
|
2016-05-24 18:17:13 -05:00
|
|
|
help
|
|
|
|
Enable support for Quark SE sensor sub-system clock.
|
2016-03-05 18:05:57 +01:00
|
|
|
|
2016-05-24 18:17:13 -05:00
|
|
|
config CLOCK_CONTROL_QUARK_SE_SENSOR_DRV_NAME
|
2018-08-14 16:19:20 +02:00
|
|
|
string "Quark SE sensor clock device name"
|
2016-05-24 18:17:13 -05:00
|
|
|
depends on CLOCK_CONTROL_QUARK_SE_SENSOR
|
|
|
|
default "clk_sensor"
|
2016-03-05 18:05:57 +01:00
|
|
|
|
2018-04-04 15:51:55 -07:00
|
|
|
endif # CLOCK_CONTROL_QUARK_SE
|