zephyr/drivers/Kconfig
Tomasz Bursztyka 714dd9786b clock: add Quark SE clock control
Quark SE provides various clock controllers through its SCSS block.
Peripheral, external, sensor, and others.

This current drivers provides only the clock gating capability, for
peripheral, external and sensor. But it could support divider and more
other features once defined in the generic API.

Note: such clock has _nothing_ to do with a Real Time Clock (RTC).
An RTC provide clock timing like a watch would do. Here the clock
controller is about circuit clocking.

Change-Id: I1a365ae730dfc6be7686271f7fbb693e64a6ff6f
Signed-off-by: Anas Nashif <anas.nashif@intel.com>
Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
2016-02-05 20:24:48 -05:00

63 lines
1.3 KiB
Plaintext

# Kconfig - drivers configuration options
#
# Copyright (c) 2015 Intel Corporation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
menu "Device Drivers"
source "drivers/simple/Kconfig"
source "drivers/bluetooth/Kconfig"
source "drivers/console/Kconfig"
source "drivers/ethernet/Kconfig"
source "drivers/serial/Kconfig"
source "drivers/interrupt_controller/Kconfig"
source "drivers/timer/Kconfig"
source "drivers/random/Kconfig"
source "drivers/grove/Kconfig"
source "drivers/pci/Kconfig"
source "drivers/gpio/Kconfig"
source "drivers/shared_irq/Kconfig"
source "drivers/spi/Kconfig"
source "drivers/i2c/Kconfig"
source "drivers/pwm/Kconfig"
source "drivers/pinmux/Kconfig"
source "drivers/adc/Kconfig"
source "drivers/rtc/Kconfig"
source "drivers/watchdog/Kconfig"
source "drivers/clock_control/Kconfig"
endmenu