zephyr/drivers/clock_control/quark_se_clock_control.c
David B. Kinder ac74d8b652 license: Replace Apache boilerplate with SPDX tag
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>
2017-01-19 03:50:58 +00:00

120 lines
3.3 KiB
C

/* quark_se_clock_control.c - Clock controller driver for Quark SE */
/*
* Copyright (c) 2015 Intel Corporation.
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <kernel.h>
#include <arch/cpu.h>
#include <misc/__assert.h>
#include <board.h>
#include <device.h>
#include <init.h>
#include <sys_io.h>
#include <clock_control.h>
#include <clock_control/quark_se_clock_control.h>
#define SYS_LOG_LEVEL CONFIG_SYS_LOG_CLOCK_CONTROL_LEVEL
#include <logging/sys_log.h>
struct quark_se_clock_control_config {
uint32_t base_address;
};
static inline int quark_se_clock_control_on(struct device *dev,
clock_control_subsys_t sub_system)
{
const struct quark_se_clock_control_config *info = dev->config->config_info;
uint32_t subsys = POINTER_TO_INT(sub_system);
if (sub_system == CLOCK_CONTROL_SUBSYS_ALL) {
SYS_LOG_DBG("Enabling all clock gates on dev %p", dev);
sys_write32(0xffffffff, info->base_address);
return 0;
}
SYS_LOG_DBG("Enabling clock gate on dev %p subsystem %u", dev, subsys);
return sys_test_and_set_bit(info->base_address, subsys);
}
static inline int quark_se_clock_control_off(struct device *dev,
clock_control_subsys_t sub_system)
{
const struct quark_se_clock_control_config *info = dev->config->config_info;
uint32_t subsys = POINTER_TO_INT(sub_system);
if (sub_system == CLOCK_CONTROL_SUBSYS_ALL) {
SYS_LOG_DBG("Disabling all clock gates on dev %p", dev);
sys_write32(0x00000000, info->base_address);
return 0;
}
SYS_LOG_DBG("clock gate on dev %p subsystem %u", dev, subsys);
return sys_test_and_clear_bit(info->base_address, subsys);
}
static const struct clock_control_driver_api quark_se_clock_control_api = {
.on = quark_se_clock_control_on,
.off = quark_se_clock_control_off,
.get_rate = NULL,
};
int quark_se_clock_control_init(struct device *dev)
{
SYS_LOG_DBG("Quark Se clock controller driver initialized on device: "
"%p", dev);
return 0;
}
#ifdef CONFIG_CLOCK_CONTROL_QUARK_SE_PERIPHERAL
static struct quark_se_clock_control_config clock_quark_se_peripheral_config = {
.base_address = CLOCK_PERIPHERAL_BASE_ADDR
};
DEVICE_AND_API_INIT(clock_quark_se_peripheral,
CONFIG_CLOCK_CONTROL_QUARK_SE_PERIPHERAL_DRV_NAME,
&quark_se_clock_control_init,
NULL, &clock_quark_se_peripheral_config,
PRE_KERNEL_1, CONFIG_KERNEL_INIT_PRIORITY_DEVICE,
&quark_se_clock_control_api);
#endif /* CONFIG_CLOCK_CONTROL_QUARK_SE_PERIPHERAL */
#ifdef CONFIG_CLOCK_CONTROL_QUARK_SE_EXTERNAL
static struct quark_se_clock_control_config clock_quark_se_external_config = {
.base_address = CLOCK_EXTERNAL_BASE_ADDR
};
DEVICE_AND_API_INIT(clock_quark_se_external,
CONFIG_CLOCK_CONTROL_QUARK_SE_EXTERNAL_DRV_NAME,
&quark_se_clock_control_init,
NULL, &clock_quark_se_external_config,
PRE_KERNEL_1, CONFIG_KERNEL_INIT_PRIORITY_DEVICE,
&quark_se_clock_control_api);
#endif /* CONFIG_CLOCK_CONTROL_QUARK_SE_EXTERNAL */
#ifdef CONFIG_CLOCK_CONTROL_QUARK_SE_SENSOR
static struct quark_se_clock_control_config clock_quark_se_sensor_config = {
.base_address = CLOCK_SENSOR_BASE_ADDR
};
DEVICE_AND_API_INIT(clock_quark_se_sensor,
CONFIG_CLOCK_CONTROL_QUARK_SE_SENSOR_DRV_NAME,
&quark_se_clock_control_init,
NULL, &clock_quark_se_sensor_config,
PRE_KERNEL_1, CONFIG_KERNEL_INIT_PRIORITY_DEVICE,
&quark_se_clock_control_api);
#endif /* CONFIG_CLOCK_CONTROL_QUARK_SE_SENSOR */