mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-07 08:32:57 +00:00
Usually, we want to operate only on "available" device nodes ("available" means "status is okay and a matching binding is found"), but that's not true in all cases. Sometimes we want to operate on special nodes without matching bindings, such as those describing memory. To handle the distinction, change various additional devicetree APIs making it clear that they operate only on available device nodes, adjusting gen_defines and devicetree.h implementation details accordingly: - emit macros for all existing nodes in gen_defines.py, regardless of status or matching binding - rename DT_NUM_INST to DT_NUM_INST_STATUS_OKAY - rename DT_NODE_HAS_COMPAT to DT_NODE_HAS_COMPAT_STATUS_OKAY - rename DT_INST_FOREACH to DT_INST_FOREACH_STATUS_OKAY - rename DT_ANY_INST_ON_BUS to DT_ANY_INST_ON_BUS_STATUS_OKAY - rewrite DT_HAS_NODE_STATUS_OKAY in terms of a new DT_NODE_HAS_STATUS - resurrect DT_HAS_NODE in the form of DT_NODE_EXISTS - remove DT_COMPAT_ON_BUS as a public API - use the new default_prop_types edtlib parameter Signed-off-by: Martí Bolívar <marti.bolivar@nordicsemi.no>
310 lines
7.9 KiB
C
310 lines
7.9 KiB
C
/*
|
|
* Copyright (c) 2016 Linaro Limited.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#define DT_DRV_COMPAT arm_cmsdk_gpio
|
|
|
|
#include <kernel.h>
|
|
|
|
#include <device.h>
|
|
#include <errno.h>
|
|
#include <drivers/gpio.h>
|
|
#include <init.h>
|
|
#include <soc.h>
|
|
#include <drivers/clock_control/arm_clock_control.h>
|
|
|
|
#include "gpio_cmsdk_ahb.h"
|
|
#include "gpio_utils.h"
|
|
|
|
/**
|
|
* @brief GPIO driver for ARM CMSDK AHB GPIO
|
|
*/
|
|
|
|
typedef void (*gpio_config_func_t)(struct device *port);
|
|
|
|
struct gpio_cmsdk_ahb_cfg {
|
|
/* gpio_driver_config needs to be first */
|
|
struct gpio_driver_config common;
|
|
volatile struct gpio_cmsdk_ahb *port;
|
|
gpio_config_func_t gpio_config_func;
|
|
/* GPIO Clock control in Active State */
|
|
struct arm_clock_control_t gpio_cc_as;
|
|
/* GPIO Clock control in Sleep State */
|
|
struct arm_clock_control_t gpio_cc_ss;
|
|
/* GPIO Clock control in Deep Sleep State */
|
|
struct arm_clock_control_t gpio_cc_dss;
|
|
};
|
|
|
|
struct gpio_cmsdk_ahb_dev_data {
|
|
/* gpio_driver_data needs to be first */
|
|
struct gpio_driver_data common;
|
|
/* list of callbacks */
|
|
sys_slist_t gpio_cb;
|
|
};
|
|
|
|
static int gpio_cmsdk_ahb_port_get_raw(struct device *dev, u32_t *value)
|
|
{
|
|
const struct gpio_cmsdk_ahb_cfg * const cfg = dev->config_info;
|
|
|
|
*value = cfg->port->data;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int gpio_cmsdk_ahb_port_set_masked_raw(struct device *dev, u32_t mask,
|
|
u32_t value)
|
|
{
|
|
const struct gpio_cmsdk_ahb_cfg * const cfg = dev->config_info;
|
|
|
|
cfg->port->dataout = (cfg->port->dataout & ~mask) | (mask & value);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int gpio_cmsdk_ahb_port_set_bits_raw(struct device *dev, u32_t mask)
|
|
{
|
|
const struct gpio_cmsdk_ahb_cfg * const cfg = dev->config_info;
|
|
|
|
cfg->port->dataout |= mask;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int gpio_cmsdk_ahb_port_clear_bits_raw(struct device *dev, u32_t mask)
|
|
{
|
|
const struct gpio_cmsdk_ahb_cfg * const cfg = dev->config_info;
|
|
|
|
cfg->port->dataout &= ~mask;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int gpio_cmsdk_ahb_port_toggle_bits(struct device *dev, u32_t mask)
|
|
{
|
|
const struct gpio_cmsdk_ahb_cfg * const cfg = dev->config_info;
|
|
|
|
cfg->port->dataout ^= mask;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int cmsdk_ahb_gpio_config(struct device *dev, u32_t mask, gpio_flags_t flags)
|
|
{
|
|
const struct gpio_cmsdk_ahb_cfg * const cfg = dev->config_info;
|
|
|
|
if (((flags & GPIO_INPUT) == 0) && ((flags & GPIO_OUTPUT) == 0)) {
|
|
return -ENOTSUP;
|
|
}
|
|
|
|
if ((flags & (GPIO_PULL_UP | GPIO_PULL_DOWN)) != 0) {
|
|
return -ENOTSUP;
|
|
}
|
|
|
|
if ((flags & GPIO_SINGLE_ENDED) != 0) {
|
|
return -ENOTSUP;
|
|
}
|
|
|
|
/*
|
|
* Setup the pin direction
|
|
* Output Enable:
|
|
* 0 - Input
|
|
* 1 - Output
|
|
*/
|
|
if ((flags & GPIO_OUTPUT) != 0) {
|
|
if ((flags & GPIO_OUTPUT_INIT_HIGH) != 0) {
|
|
gpio_cmsdk_ahb_port_set_bits_raw(dev, mask);
|
|
} else if ((flags & GPIO_OUTPUT_INIT_LOW) != 0) {
|
|
gpio_cmsdk_ahb_port_clear_bits_raw(dev, mask);
|
|
}
|
|
cfg->port->outenableset = mask;
|
|
} else {
|
|
cfg->port->outenableclr = mask;
|
|
}
|
|
|
|
cfg->port->altfuncclr = mask;
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* @brief Configure pin or port
|
|
*
|
|
* @param dev Device struct
|
|
* @param pin The pin number
|
|
* @param flags Flags of pin or port
|
|
*
|
|
* @return 0 if successful, failed otherwise
|
|
*/
|
|
static int gpio_cmsdk_ahb_config(struct device *dev,
|
|
gpio_pin_t pin,
|
|
gpio_flags_t flags)
|
|
{
|
|
return cmsdk_ahb_gpio_config(dev, BIT(pin), flags);
|
|
}
|
|
|
|
static int gpio_cmsdk_ahb_pin_interrupt_configure(struct device *dev,
|
|
gpio_pin_t pin, enum gpio_int_mode mode,
|
|
enum gpio_int_trig trig)
|
|
{
|
|
const struct gpio_cmsdk_ahb_cfg * const cfg = dev->config_info;
|
|
|
|
if (trig == GPIO_INT_TRIG_BOTH) {
|
|
return -ENOTSUP;
|
|
}
|
|
|
|
/* For now treat level interrupts as not supported, as we seem to only
|
|
* get a single 'edge' still interrupt rather than continuous
|
|
* interrupts until the cause is cleared */
|
|
if (mode == GPIO_INT_MODE_LEVEL) {
|
|
return -ENOTSUP;
|
|
}
|
|
|
|
if (mode == GPIO_INT_MODE_DISABLED) {
|
|
cfg->port->intenclr = BIT(pin);
|
|
} else {
|
|
if (mode == GPIO_INT_MODE_EDGE) {
|
|
cfg->port->inttypeset = BIT(pin);
|
|
} else {
|
|
/* LEVEL */
|
|
cfg->port->inttypeclr = BIT(pin);
|
|
}
|
|
|
|
/* Level High or Edge Risising */
|
|
if (trig == GPIO_INT_TRIG_HIGH) {
|
|
cfg->port->intpolset = BIT(pin);
|
|
} else {
|
|
cfg->port->intpolclr = BIT(pin);
|
|
}
|
|
cfg->port->intclear = BIT(pin);
|
|
cfg->port->intenset = BIT(pin);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void gpio_cmsdk_ahb_isr(void *arg)
|
|
{
|
|
struct device *dev = (struct device *)arg;
|
|
const struct gpio_cmsdk_ahb_cfg * const cfg = dev->config_info;
|
|
struct gpio_cmsdk_ahb_dev_data *data = dev->driver_data;
|
|
u32_t int_stat;
|
|
|
|
int_stat = cfg->port->intstatus;
|
|
|
|
/* clear the port interrupts */
|
|
cfg->port->intclear = int_stat;
|
|
|
|
gpio_fire_callbacks(&data->gpio_cb, dev, int_stat);
|
|
|
|
}
|
|
|
|
static int gpio_cmsdk_ahb_manage_callback(struct device *dev,
|
|
struct gpio_callback *callback,
|
|
bool set)
|
|
{
|
|
struct gpio_cmsdk_ahb_dev_data *data = dev->driver_data;
|
|
|
|
return gpio_manage_callback(&data->gpio_cb, callback, set);
|
|
}
|
|
|
|
static int gpio_cmsdk_ahb_enable_callback(struct device *dev,
|
|
gpio_pin_t pin)
|
|
{
|
|
const struct gpio_cmsdk_ahb_cfg * const cfg = dev->config_info;
|
|
|
|
cfg->port->intenset |= BIT(pin);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int gpio_cmsdk_ahb_disable_callback(struct device *dev,
|
|
gpio_pin_t pin)
|
|
{
|
|
const struct gpio_cmsdk_ahb_cfg * const cfg = dev->config_info;
|
|
|
|
cfg->port->intenclr |= BIT(pin);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct gpio_driver_api gpio_cmsdk_ahb_drv_api_funcs = {
|
|
.pin_configure = gpio_cmsdk_ahb_config,
|
|
.port_get_raw = gpio_cmsdk_ahb_port_get_raw,
|
|
.port_set_masked_raw = gpio_cmsdk_ahb_port_set_masked_raw,
|
|
.port_set_bits_raw = gpio_cmsdk_ahb_port_set_bits_raw,
|
|
.port_clear_bits_raw = gpio_cmsdk_ahb_port_clear_bits_raw,
|
|
.port_toggle_bits = gpio_cmsdk_ahb_port_toggle_bits,
|
|
.pin_interrupt_configure = gpio_cmsdk_ahb_pin_interrupt_configure,
|
|
.manage_callback = gpio_cmsdk_ahb_manage_callback,
|
|
.enable_callback = gpio_cmsdk_ahb_enable_callback,
|
|
.disable_callback = gpio_cmsdk_ahb_disable_callback,
|
|
};
|
|
|
|
/**
|
|
* @brief Initialization function of GPIO
|
|
*
|
|
* @param dev Device struct
|
|
* @return 0 if successful, failed otherwise.
|
|
*/
|
|
static int gpio_cmsdk_ahb_init(struct device *dev)
|
|
{
|
|
const struct gpio_cmsdk_ahb_cfg * const cfg = dev->config_info;
|
|
|
|
#ifdef CONFIG_CLOCK_CONTROL
|
|
/* Enable clock for subsystem */
|
|
struct device *clk =
|
|
device_get_binding(CONFIG_ARM_CLOCK_CONTROL_DEV_NAME);
|
|
|
|
#ifdef CONFIG_SOC_SERIES_BEETLE
|
|
clock_control_on(clk, (clock_control_subsys_t *) &cfg->gpio_cc_as);
|
|
clock_control_off(clk, (clock_control_subsys_t *) &cfg->gpio_cc_ss);
|
|
clock_control_off(clk, (clock_control_subsys_t *) &cfg->gpio_cc_dss);
|
|
#endif /* CONFIG_SOC_SERIES_BEETLE */
|
|
#endif /* CONFIG_CLOCK_CONTROL */
|
|
|
|
cfg->gpio_config_func(dev);
|
|
|
|
return 0;
|
|
}
|
|
|
|
#define CMSDK_AHB_GPIO_DEVICE(n) \
|
|
static void gpio_cmsdk_port_##n##_config_func(struct device *dev); \
|
|
\
|
|
static const struct gpio_cmsdk_ahb_cfg gpio_cmsdk_port_##n##_config = { \
|
|
.common = { \
|
|
.port_pin_mask = GPIO_PORT_PIN_MASK_FROM_DT_INST(n), \
|
|
}, \
|
|
.port = ((volatile struct gpio_cmsdk_ahb *)DT_INST_REG_ADDR(n)),\
|
|
.gpio_config_func = gpio_cmsdk_port_##n##_config_func, \
|
|
.gpio_cc_as = {.bus = CMSDK_AHB, .state = SOC_ACTIVE, \
|
|
.device = DT_INST_REG_ADDR(n),}, \
|
|
.gpio_cc_ss = {.bus = CMSDK_AHB, .state = SOC_SLEEP, \
|
|
.device = DT_INST_REG_ADDR(n),}, \
|
|
.gpio_cc_dss = {.bus = CMSDK_AHB, .state = SOC_DEEPSLEEP, \
|
|
.device = DT_INST_REG_ADDR(n),}, \
|
|
}; \
|
|
\
|
|
static struct gpio_cmsdk_ahb_dev_data gpio_cmsdk_port_##n##_data; \
|
|
\
|
|
DEVICE_AND_API_INIT(gpio_cmsdk_port_## n, \
|
|
DT_INST_LABEL(n), \
|
|
gpio_cmsdk_ahb_init, \
|
|
&gpio_cmsdk_port_##n##_data, \
|
|
&gpio_cmsdk_port_## n ##_config, \
|
|
POST_KERNEL, CONFIG_KERNEL_INIT_PRIORITY_DEFAULT, \
|
|
&gpio_cmsdk_ahb_drv_api_funcs); \
|
|
\
|
|
static void gpio_cmsdk_port_##n##_config_func(struct device *dev) \
|
|
{ \
|
|
IRQ_CONNECT(DT_INST_IRQN(n), \
|
|
DT_INST_IRQ(n, priority), \
|
|
gpio_cmsdk_ahb_isr, \
|
|
DEVICE_GET(gpio_cmsdk_port_## n), 0); \
|
|
\
|
|
irq_enable(DT_INST_IRQN(n)); \
|
|
}
|
|
|
|
DT_INST_FOREACH_STATUS_OKAY(CMSDK_AHB_GPIO_DEVICE)
|