2012-06-20 16:29:04 +08:00
|
|
|
/*
|
|
|
|
* SuperH Pin Function Controller GPIO driver.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Magnus Damm
|
|
|
|
* Copyright (C) 2009 - 2012 Paul Mundt
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
|
|
* for more details.
|
|
|
|
*/
|
2012-12-16 06:50:47 +08:00
|
|
|
|
|
|
|
#define pr_fmt(fmt) KBUILD_MODNAME " gpio: " fmt
|
2012-06-20 16:29:04 +08:00
|
|
|
|
2012-12-16 06:50:48 +08:00
|
|
|
#include <linux/device.h>
|
2012-06-20 16:29:04 +08:00
|
|
|
#include <linux/gpio.h>
|
2012-12-16 06:50:52 +08:00
|
|
|
#include <linux/init.h>
|
2012-06-20 16:29:04 +08:00
|
|
|
#include <linux/module.h>
|
2012-07-10 11:08:14 +08:00
|
|
|
#include <linux/pinctrl/consumer.h>
|
2012-12-16 06:50:52 +08:00
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/spinlock.h>
|
2012-06-20 16:29:04 +08:00
|
|
|
|
2012-12-16 06:50:44 +08:00
|
|
|
#include "core.h"
|
|
|
|
|
2012-06-20 16:29:04 +08:00
|
|
|
struct sh_pfc_chip {
|
|
|
|
struct sh_pfc *pfc;
|
|
|
|
struct gpio_chip gpio_chip;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct sh_pfc_chip *gpio_to_pfc_chip(struct gpio_chip *gc)
|
|
|
|
{
|
|
|
|
return container_of(gc, struct sh_pfc_chip, gpio_chip);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct sh_pfc *gpio_to_pfc(struct gpio_chip *gc)
|
|
|
|
{
|
|
|
|
return gpio_to_pfc_chip(gc)->pfc;
|
|
|
|
}
|
|
|
|
|
2012-12-06 21:49:25 +08:00
|
|
|
/* -----------------------------------------------------------------------------
|
|
|
|
* Pin GPIOs
|
|
|
|
*/
|
2012-06-20 16:29:04 +08:00
|
|
|
|
2012-12-06 21:49:25 +08:00
|
|
|
static int gpio_pin_request(struct gpio_chip *gc, unsigned offset)
|
2012-06-20 16:29:04 +08:00
|
|
|
{
|
2012-12-06 21:49:25 +08:00
|
|
|
return pinctrl_request_gpio(offset);
|
2012-06-20 16:29:04 +08:00
|
|
|
}
|
|
|
|
|
2012-12-06 21:49:25 +08:00
|
|
|
static void gpio_pin_free(struct gpio_chip *gc, unsigned offset)
|
2012-06-20 16:29:04 +08:00
|
|
|
{
|
2012-12-06 21:49:25 +08:00
|
|
|
return pinctrl_free_gpio(offset);
|
2012-06-20 16:29:04 +08:00
|
|
|
}
|
|
|
|
|
2012-12-06 21:49:25 +08:00
|
|
|
static void gpio_pin_set_value(struct sh_pfc *pfc, unsigned offset, int value)
|
2012-06-20 16:29:04 +08:00
|
|
|
{
|
|
|
|
struct pinmux_data_reg *dr = NULL;
|
|
|
|
int bit = 0;
|
|
|
|
|
2012-12-06 21:49:25 +08:00
|
|
|
if (sh_pfc_get_data_reg(pfc, offset, &dr, &bit) != 0)
|
|
|
|
BUG();
|
2012-06-20 16:29:04 +08:00
|
|
|
|
2012-12-06 21:49:25 +08:00
|
|
|
sh_pfc_write_bit(dr, bit, value);
|
2012-06-20 16:29:04 +08:00
|
|
|
}
|
|
|
|
|
2012-12-06 21:49:25 +08:00
|
|
|
static int gpio_pin_direction_input(struct gpio_chip *gc, unsigned offset)
|
2012-07-10 11:08:14 +08:00
|
|
|
{
|
|
|
|
return pinctrl_gpio_direction_input(offset);
|
|
|
|
}
|
|
|
|
|
2012-12-06 21:49:25 +08:00
|
|
|
static int gpio_pin_direction_output(struct gpio_chip *gc, unsigned offset,
|
2012-07-10 11:08:14 +08:00
|
|
|
int value)
|
|
|
|
{
|
2012-12-06 21:49:25 +08:00
|
|
|
gpio_pin_set_value(gpio_to_pfc(gc), offset, value);
|
2012-07-10 11:08:14 +08:00
|
|
|
|
|
|
|
return pinctrl_gpio_direction_output(offset);
|
|
|
|
}
|
|
|
|
|
2012-12-06 21:49:25 +08:00
|
|
|
static int gpio_pin_get(struct gpio_chip *gc, unsigned offset)
|
2012-06-20 16:29:04 +08:00
|
|
|
{
|
2012-12-06 21:49:25 +08:00
|
|
|
struct sh_pfc *pfc = gpio_to_pfc(gc);
|
|
|
|
struct pinmux_data_reg *dr = NULL;
|
|
|
|
int bit = 0;
|
|
|
|
|
|
|
|
if (sh_pfc_get_data_reg(pfc, offset, &dr, &bit) != 0)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
return sh_pfc_read_bit(dr, bit);
|
2012-06-20 16:29:04 +08:00
|
|
|
}
|
|
|
|
|
2012-12-06 21:49:25 +08:00
|
|
|
static void gpio_pin_set(struct gpio_chip *gc, unsigned offset, int value)
|
2012-06-20 16:29:04 +08:00
|
|
|
{
|
2012-12-06 21:49:25 +08:00
|
|
|
gpio_pin_set_value(gpio_to_pfc(gc), offset, value);
|
2012-06-20 16:29:04 +08:00
|
|
|
}
|
|
|
|
|
2012-12-06 21:49:25 +08:00
|
|
|
static int gpio_pin_to_irq(struct gpio_chip *gc, unsigned offset)
|
2012-06-20 16:29:04 +08:00
|
|
|
{
|
|
|
|
struct sh_pfc *pfc = gpio_to_pfc(gc);
|
|
|
|
pinmux_enum_t enum_id;
|
|
|
|
pinmux_enum_t *enum_ids;
|
|
|
|
int i, k, pos;
|
|
|
|
|
|
|
|
pos = 0;
|
|
|
|
enum_id = 0;
|
|
|
|
while (1) {
|
|
|
|
pos = sh_pfc_gpio_to_enum(pfc, offset, pos, &enum_id);
|
|
|
|
if (pos <= 0 || !enum_id)
|
|
|
|
break;
|
|
|
|
|
2012-12-16 06:51:20 +08:00
|
|
|
for (i = 0; i < pfc->info->gpio_irq_size; i++) {
|
|
|
|
enum_ids = pfc->info->gpio_irq[i].enum_ids;
|
2012-06-20 16:29:04 +08:00
|
|
|
for (k = 0; enum_ids[k]; k++) {
|
|
|
|
if (enum_ids[k] == enum_id)
|
2012-12-16 06:51:20 +08:00
|
|
|
return pfc->info->gpio_irq[i].irq;
|
2012-06-20 16:29:04 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
|
2012-12-06 21:49:25 +08:00
|
|
|
static void gpio_pin_setup(struct sh_pfc_chip *chip)
|
2012-06-20 16:29:04 +08:00
|
|
|
{
|
|
|
|
struct sh_pfc *pfc = chip->pfc;
|
|
|
|
struct gpio_chip *gc = &chip->gpio_chip;
|
|
|
|
|
2012-12-06 21:49:25 +08:00
|
|
|
gc->request = gpio_pin_request;
|
|
|
|
gc->free = gpio_pin_free;
|
|
|
|
gc->direction_input = gpio_pin_direction_input;
|
|
|
|
gc->get = gpio_pin_get;
|
|
|
|
gc->direction_output = gpio_pin_direction_output;
|
|
|
|
gc->set = gpio_pin_set;
|
|
|
|
gc->to_irq = gpio_pin_to_irq;
|
2012-06-20 16:29:04 +08:00
|
|
|
|
2012-12-16 06:51:20 +08:00
|
|
|
gc->label = pfc->info->name;
|
2012-12-06 21:49:25 +08:00
|
|
|
gc->dev = pfc->dev;
|
2012-06-20 16:29:04 +08:00
|
|
|
gc->owner = THIS_MODULE;
|
2012-11-29 00:51:00 +08:00
|
|
|
gc->base = 0;
|
2012-12-06 21:49:25 +08:00
|
|
|
gc->ngpio = pfc->info->nr_pins;
|
2012-06-20 16:29:04 +08:00
|
|
|
}
|
|
|
|
|
2012-12-06 21:49:25 +08:00
|
|
|
/* -----------------------------------------------------------------------------
|
|
|
|
* Function GPIOs
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int gpio_function_request(struct gpio_chip *gc, unsigned offset)
|
|
|
|
{
|
|
|
|
struct sh_pfc *pfc = gpio_to_pfc(gc);
|
|
|
|
unsigned int gpio = gc->base + offset;
|
|
|
|
unsigned long flags;
|
|
|
|
int ret = -EINVAL;
|
|
|
|
|
|
|
|
pr_notice_once("Use of GPIO API for function requests is deprecated, convert to pinctrl\n");
|
|
|
|
|
|
|
|
if (pfc->info->func_gpios[offset].enum_id == 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&pfc->lock, flags);
|
|
|
|
|
|
|
|
if (sh_pfc_config_gpio(pfc, gpio, PINMUX_TYPE_FUNCTION,
|
|
|
|
GPIO_CFG_DRYRUN))
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
if (sh_pfc_config_gpio(pfc, gpio, PINMUX_TYPE_FUNCTION,
|
|
|
|
GPIO_CFG_REQ))
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
done:
|
|
|
|
spin_unlock_irqrestore(&pfc->lock, flags);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gpio_function_free(struct gpio_chip *gc, unsigned offset)
|
|
|
|
{
|
|
|
|
struct sh_pfc *pfc = gpio_to_pfc(gc);
|
|
|
|
unsigned int gpio = gc->base + offset;
|
|
|
|
unsigned long flags;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&pfc->lock, flags);
|
|
|
|
|
|
|
|
sh_pfc_config_gpio(pfc, gpio, PINMUX_TYPE_FUNCTION, GPIO_CFG_FREE);
|
|
|
|
|
|
|
|
spin_unlock_irqrestore(&pfc->lock, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void gpio_function_setup(struct sh_pfc_chip *chip)
|
|
|
|
{
|
|
|
|
struct sh_pfc *pfc = chip->pfc;
|
|
|
|
struct gpio_chip *gc = &chip->gpio_chip;
|
|
|
|
|
|
|
|
gc->request = gpio_function_request;
|
|
|
|
gc->free = gpio_function_free;
|
|
|
|
|
|
|
|
gc->label = pfc->info->name;
|
|
|
|
gc->owner = THIS_MODULE;
|
|
|
|
gc->base = pfc->info->nr_pins;
|
|
|
|
gc->ngpio = pfc->info->nr_func_gpios;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -----------------------------------------------------------------------------
|
|
|
|
* Register/unregister
|
|
|
|
*/
|
|
|
|
|
|
|
|
static struct sh_pfc_chip *
|
|
|
|
sh_pfc_add_gpiochip(struct sh_pfc *pfc, void(*setup)(struct sh_pfc_chip *))
|
2012-06-20 16:29:04 +08:00
|
|
|
{
|
|
|
|
struct sh_pfc_chip *chip;
|
|
|
|
int ret;
|
|
|
|
|
2012-12-16 06:50:48 +08:00
|
|
|
chip = devm_kzalloc(pfc->dev, sizeof(*chip), GFP_KERNEL);
|
2012-06-20 16:29:04 +08:00
|
|
|
if (unlikely(!chip))
|
2012-12-06 21:49:25 +08:00
|
|
|
return ERR_PTR(-ENOMEM);
|
2012-06-20 16:29:04 +08:00
|
|
|
|
|
|
|
chip->pfc = pfc;
|
|
|
|
|
2012-12-06 21:49:25 +08:00
|
|
|
setup(chip);
|
2012-06-20 16:29:04 +08:00
|
|
|
|
|
|
|
ret = gpiochip_add(&chip->gpio_chip);
|
2012-12-16 06:50:48 +08:00
|
|
|
if (unlikely(ret < 0))
|
2012-12-06 21:49:25 +08:00
|
|
|
return ERR_PTR(ret);
|
|
|
|
|
|
|
|
pr_info("%s handling gpio %u -> %u\n",
|
|
|
|
chip->gpio_chip.label, chip->gpio_chip.base,
|
|
|
|
chip->gpio_chip.base + chip->gpio_chip.ngpio - 1);
|
|
|
|
|
|
|
|
return chip;
|
|
|
|
}
|
|
|
|
|
|
|
|
int sh_pfc_register_gpiochip(struct sh_pfc *pfc)
|
|
|
|
{
|
|
|
|
struct sh_pfc_chip *chip;
|
|
|
|
|
|
|
|
chip = sh_pfc_add_gpiochip(pfc, gpio_pin_setup);
|
|
|
|
if (IS_ERR(chip))
|
|
|
|
return PTR_ERR(chip);
|
2012-12-16 06:50:46 +08:00
|
|
|
|
|
|
|
pfc->gpio = chip;
|
2012-06-20 16:29:04 +08:00
|
|
|
|
2012-12-06 21:49:25 +08:00
|
|
|
chip = sh_pfc_add_gpiochip(pfc, gpio_function_setup);
|
|
|
|
if (IS_ERR(chip))
|
|
|
|
return PTR_ERR(chip);
|
|
|
|
|
|
|
|
pfc->func = chip;
|
2012-06-20 16:29:04 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-12-16 06:50:46 +08:00
|
|
|
int sh_pfc_unregister_gpiochip(struct sh_pfc *pfc)
|
2012-06-20 16:29:04 +08:00
|
|
|
{
|
2012-12-06 21:49:25 +08:00
|
|
|
int err;
|
2012-06-20 16:29:04 +08:00
|
|
|
int ret;
|
|
|
|
|
2012-12-06 21:49:25 +08:00
|
|
|
ret = gpiochip_remove(&pfc->gpio->gpio_chip);
|
|
|
|
err = gpiochip_remove(&pfc->func->gpio_chip);
|
2012-06-20 16:29:04 +08:00
|
|
|
|
2012-12-06 21:49:25 +08:00
|
|
|
return ret < 0 ? ret : err;
|
2012-06-20 16:29:04 +08:00
|
|
|
}
|