mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-26 19:55:55 +00:00
Replace the existing Apache 2.0 boilerplate header with an SPDX tag throughout the zephyr code tree. This patch was generated via a script run over the master branch. Also updated doc/porting/application.rst that had a dependency on line numbers in a literal include. Manually updated subsys/logging/sys_log.c that had a malformed header in the original file. Also cleanup several cases that already had a SPDX tag and we either got a duplicate or missed updating. Jira: ZEP-1457 Change-Id: I6131a1d4ee0e58f5b938300c2d2fc77d2e69572c Signed-off-by: David B. Kinder <david.b.kinder@intel.com> Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
62 lines
1.5 KiB
Plaintext
62 lines
1.5 KiB
Plaintext
# Kconfig - Clock controller driver configuration options
|
|
|
|
#
|
|
# Copyright (c) 2015-2016 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
if SOC_QUARK_SE_C1000
|
|
|
|
menuconfig CLOCK_CONTROL_QUARK_SE
|
|
bool
|
|
prompt "Quark SE Clock controller support"
|
|
default n
|
|
help
|
|
Enable support for the Quark SE clock driver.
|
|
|
|
config CLOCK_CONTROL_QUARK_SE_PERIPHERAL
|
|
bool
|
|
prompt "Quark SE peripheral clock support"
|
|
depends on CLOCK_CONTROL_QUARK_SE
|
|
default n
|
|
help
|
|
Enable support for Quark SE peripheral clock which controls the
|
|
clock of I2C, SPI, GPIO controllers and more.
|
|
|
|
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"
|
|
|
|
config CLOCK_CONTROL_QUARK_SE_EXTERNAL
|
|
bool
|
|
prompt "Quark SE external clock support"
|
|
depends on CLOCK_CONTROL_QUARK_SE
|
|
default n
|
|
help
|
|
Enable support for Quark SE external sub-system clock.
|
|
|
|
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"
|
|
|
|
config CLOCK_CONTROL_QUARK_SE_SENSOR
|
|
bool
|
|
prompt "Quark SE sensor clock support"
|
|
depends on CLOCK_CONTROL_QUARK_SE
|
|
default n
|
|
help
|
|
Enable support for Quark SE sensor sub-system clock.
|
|
|
|
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"
|
|
|
|
endif # SOC_QUARK_SE_C1000
|