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