130 lines
3.8 KiB
C
130 lines
3.8 KiB
C
/* quark_se_clock_control.c - Clock controller driver for Quark SE */
|
|
|
|
/*
|
|
* 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.
|
|
*/
|
|
|
|
#include <nanokernel.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 <misc/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
|
|
|
|
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
|
|
|
|
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
|
|
|
|
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 */
|