Release 4.7 drivers/pinctrl/sh-pfc/gpio.c
  
  
/*
 * 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.
 */
#include <linux/device.h>
#include <linux/gpio.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/pinctrl/consumer.h>
#include <linux/slab.h>
#include <linux/spinlock.h>
#include "core.h"
struct sh_pfc_gpio_data_reg {
	
const struct pinmux_data_reg *info;
	
u32 shadow;
};
struct sh_pfc_gpio_pin {
	
u8 dbit;
	
u8 dreg;
};
struct sh_pfc_chip {
	
struct sh_pfc			*pfc;
	
struct gpio_chip		gpio_chip;
	
struct sh_pfc_window		*mem;
	
struct sh_pfc_gpio_data_reg	*regs;
	
struct sh_pfc_gpio_pin		*pins;
};
static struct sh_pfc *gpio_to_pfc(struct gpio_chip *gc)
{
	struct sh_pfc_chip *chip = gpiochip_get_data(gc);
	return chip->pfc;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| paul mundt | paul mundt | 19 | 67.86% | 1 | 50.00% | 
| linus walleij | linus walleij | 9 | 32.14% | 1 | 50.00% | 
 | Total | 28 | 100.00% | 2 | 100.00% | 
static void gpio_get_data_reg(struct sh_pfc_chip *chip, unsigned int offset,
			      struct sh_pfc_gpio_data_reg **reg,
			      unsigned int *bit)
{
	int idx = sh_pfc_get_pin_index(chip->pfc, offset);
	struct sh_pfc_gpio_pin *gpio_pin = &chip->pins[idx];
	*reg = &chip->regs[gpio_pin->dreg];
	*bit = gpio_pin->dbit;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| laurent pinchart | laurent pinchart | 71 | 100.00% | 4 | 100.00% | 
 | Total | 71 | 100.00% | 4 | 100.00% | 
static u32 gpio_read_data_reg(struct sh_pfc_chip *chip,
			      const struct pinmux_data_reg *dreg)
{
	phys_addr_t address = dreg->reg;
	void __iomem *mem = address - chip->mem->phys + chip->mem->virt;
	return sh_pfc_read_raw_reg(mem, dreg->reg_width);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| laurent pinchart | laurent pinchart | 44 | 83.02% | 1 | 33.33% | 
| geert uytterhoeven | geert uytterhoeven | 9 | 16.98% | 2 | 66.67% | 
 | Total | 53 | 100.00% | 3 | 100.00% | 
static void gpio_write_data_reg(struct sh_pfc_chip *chip,
				const struct pinmux_data_reg *dreg, u32 value)
{
	phys_addr_t address = dreg->reg;
	void __iomem *mem = address - chip->mem->phys + chip->mem->virt;
	sh_pfc_write_raw_reg(mem, dreg->reg_width, value);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| laurent pinchart | laurent pinchart | 48 | 84.21% | 1 | 33.33% | 
| geert uytterhoeven | geert uytterhoeven | 9 | 15.79% | 2 | 66.67% | 
 | Total | 57 | 100.00% | 3 | 100.00% | 
static void gpio_setup_data_reg(struct sh_pfc_chip *chip, unsigned idx)
{
	struct sh_pfc *pfc = chip->pfc;
	struct sh_pfc_gpio_pin *gpio_pin = &chip->pins[idx];
	const struct sh_pfc_pin *pin = &pfc->info->pins[idx];
	const struct pinmux_data_reg *dreg;
	unsigned int bit;
	unsigned int i;
	for (i = 0, dreg = pfc->info->data_regs; dreg->reg_width; ++i, ++dreg) {
		for (bit = 0; bit < dreg->reg_width; bit++) {
			if (dreg->enum_ids[bit] == pin->enum_id) {
				gpio_pin->dreg = i;
				gpio_pin->dbit = bit;
				return;
			}
		}
	}
	BUG();
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| laurent pinchart | laurent pinchart | 139 | 99.29% | 5 | 83.33% | 
| geert uytterhoeven | geert uytterhoeven | 1 | 0.71% | 1 | 16.67% | 
 | Total | 140 | 100.00% | 6 | 100.00% | 
static int gpio_setup_data_regs(struct sh_pfc_chip *chip)
{
	struct sh_pfc *pfc = chip->pfc;
	const struct pinmux_data_reg *dreg;
	unsigned int i;
	/* Count the number of data registers, allocate memory and initialize
         * them.
         */
	for (i = 0; pfc->info->data_regs[i].reg_width; ++i)
		;
	chip->regs = devm_kzalloc(pfc->dev, i * sizeof(*chip->regs),
				  GFP_KERNEL);
	if (chip->regs == NULL)
		return -ENOMEM;
	for (i = 0, dreg = pfc->info->data_regs; dreg->reg_width; ++i, ++dreg) {
		chip->regs[i].info = dreg;
		chip->regs[i].shadow = gpio_read_data_reg(chip, dreg);
	}
	for (i = 0; i < pfc->info->nr_pins; i++) {
		if (pfc->info->pins[i].enum_id == 0)
			continue;
		gpio_setup_data_reg(chip, i);
	}
	return 0;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| laurent pinchart | laurent pinchart | 185 | 100.00% | 4 | 100.00% | 
 | Total | 185 | 100.00% | 4 | 100.00% | 
/* -----------------------------------------------------------------------------
 * Pin GPIOs
 */
static int gpio_pin_request(struct gpio_chip *gc, unsigned offset)
{
	struct sh_pfc *pfc = gpio_to_pfc(gc);
	int idx = sh_pfc_get_pin_index(pfc, offset);
	if (idx < 0 || pfc->info->pins[idx].enum_id == 0)
		return -EINVAL;
	return pinctrl_request_gpio(offset);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| laurent pinchart | laurent pinchart | 44 | 69.84% | 5 | 71.43% | 
| paul mundt | paul mundt | 19 | 30.16% | 2 | 28.57% | 
 | Total | 63 | 100.00% | 7 | 100.00% | 
static void gpio_pin_free(struct gpio_chip *gc, unsigned offset)
{
	return pinctrl_free_gpio(offset);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| paul mundt | paul mundt | 17 | 85.00% | 2 | 50.00% | 
| laurent pinchart | laurent pinchart | 3 | 15.00% | 2 | 50.00% | 
 | Total | 20 | 100.00% | 4 | 100.00% | 
static void gpio_pin_set_value(struct sh_pfc_chip *chip, unsigned offset,
			       int value)
{
	struct sh_pfc_gpio_data_reg *reg;
	unsigned int bit;
	unsigned int pos;
	gpio_get_data_reg(chip, offset, ®, &bit);
	pos = reg->info->reg_width - (bit + 1);
	if (value)
		reg->shadow |= BIT(pos);
	else
		reg->shadow &= ~BIT(pos);
	gpio_write_data_reg(chip, reg->info, reg->shadow);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| laurent pinchart | laurent pinchart | 50 | 53.19% | 4 | 57.14% | 
| paul mundt | paul mundt | 32 | 34.04% | 1 | 14.29% | 
| geert uytterhoeven | geert uytterhoeven | 12 | 12.77% | 2 | 28.57% | 
 | Total | 94 | 100.00% | 7 | 100.00% | 
static int gpio_pin_direction_input(struct gpio_chip *gc, unsigned offset)
{
	return pinctrl_gpio_direction_input(offset);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| laurent pinchart | laurent pinchart | 13 | 65.00% | 1 | 50.00% | 
| paul mundt | paul mundt | 7 | 35.00% | 1 | 50.00% | 
 | Total | 20 | 100.00% | 2 | 100.00% | 
static int gpio_pin_direction_output(struct gpio_chip *gc, unsigned offset,
				    int value)
{
	gpio_pin_set_value(gpiochip_get_data(gc), offset, value);
	return pinctrl_gpio_direction_output(offset);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| laurent pinchart | laurent pinchart | 34 | 97.14% | 1 | 50.00% | 
| linus walleij | linus walleij | 1 | 2.86% | 1 | 50.00% | 
 | Total | 35 | 100.00% | 2 | 100.00% | 
static int gpio_pin_get(struct gpio_chip *gc, unsigned offset)
{
	struct sh_pfc_chip *chip = gpiochip_get_data(gc);
	struct sh_pfc_gpio_data_reg *reg;
	unsigned int bit;
	unsigned int pos;
	gpio_get_data_reg(chip, offset, ®, &bit);
	pos = reg->info->reg_width - (bit + 1);
	return (gpio_read_data_reg(chip, reg->info) >> pos) & 1;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| laurent pinchart | laurent pinchart | 55 | 68.75% | 5 | 62.50% | 
| paul mundt | paul mundt | 21 | 26.25% | 1 | 12.50% | 
| geert uytterhoeven | geert uytterhoeven | 3 | 3.75% | 1 | 12.50% | 
| linus walleij | linus walleij | 1 | 1.25% | 1 | 12.50% | 
 | Total | 80 | 100.00% | 8 | 100.00% | 
static void gpio_pin_set(struct gpio_chip *gc, unsigned offset, int value)
{
	gpio_pin_set_value(gpiochip_get_data(gc), offset, value);
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| paul mundt | paul mundt | 21 | 72.41% | 1 | 33.33% | 
| laurent pinchart | laurent pinchart | 7 | 24.14% | 1 | 33.33% | 
| linus walleij | linus walleij | 1 | 3.45% | 1 | 33.33% | 
 | Total | 29 | 100.00% | 3 | 100.00% | 
static int gpio_pin_to_irq(struct gpio_chip *gc, unsigned offset)
{
	struct sh_pfc *pfc = gpio_to_pfc(gc);
	unsigned int i, k;
	for (i = 0; i < pfc->info->gpio_irq_size; i++) {
		const short *gpios = pfc->info->gpio_irq[i].gpios;
		for (k = 0; gpios[k] >= 0; k++) {
			if (gpios[k] == offset)
				goto found;
		}
	}
	return 0;
found:
	return pfc->irqs[i];
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| laurent pinchart | laurent pinchart | 63 | 58.33% | 8 | 80.00% | 
| paul mundt | paul mundt | 44 | 40.74% | 1 | 10.00% | 
| geert uytterhoeven | geert uytterhoeven | 1 | 0.93% | 1 | 10.00% | 
 | Total | 108 | 100.00% | 10 | 100.00% | 
static int gpio_pin_setup(struct sh_pfc_chip *chip)
{
	struct sh_pfc *pfc = chip->pfc;
	struct gpio_chip *gc = &chip->gpio_chip;
	int ret;
	chip->pins = devm_kzalloc(pfc->dev, pfc->info->nr_pins *
				  sizeof(*chip->pins), GFP_KERNEL);
	if (chip->pins == NULL)
		return -ENOMEM;
	ret = gpio_setup_data_regs(chip);
	if (ret < 0)
		return ret;
	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;
	gc->label = pfc->info->name;
	gc->parent = pfc->dev;
	gc->owner = THIS_MODULE;
	gc->base = 0;
	gc->ngpio = pfc->nr_gpio_pins;
	return 0;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| laurent pinchart | laurent pinchart | 170 | 99.42% | 5 | 83.33% | 
| linus walleij | linus walleij | 1 | 0.58% | 1 | 16.67% | 
 | Total | 171 | 100.00% | 6 | 100.00% | 
/* -----------------------------------------------------------------------------
 * Function GPIOs
 */
#ifdef CONFIG_SUPERH
static int gpio_function_request(struct gpio_chip *gc, unsigned offset)
{
	static bool __print_once;
	struct sh_pfc *pfc = gpio_to_pfc(gc);
	unsigned int mark = pfc->info->func_gpios[offset].enum_id;
	unsigned long flags;
	int ret;
	if (!__print_once) {
		dev_notice(pfc->dev,
			   "Use of GPIO API for function requests is deprecated."
			   " Convert to pinctrl\n");
		__print_once = true;
	}
	if (mark == 0)
		return -EINVAL;
	spin_lock_irqsave(&pfc->lock, flags);
	ret = sh_pfc_config_mux(pfc, mark, PINMUX_TYPE_FUNCTION);
	spin_unlock_irqrestore(&pfc->lock, flags);
	return ret;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| laurent pinchart | laurent pinchart | 115 | 100.00% | 4 | 100.00% | 
 | Total | 115 | 100.00% | 4 | 100.00% | 
static int 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->label = pfc->info->name;
	gc->owner = THIS_MODULE;
	gc->base = pfc->nr_gpio_pins;
	gc->ngpio = pfc->info->nr_func_gpios;
	return 0;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| paul mundt | paul mundt | 54 | 73.97% | 1 | 14.29% | 
| laurent pinchart | laurent pinchart | 19 | 26.03% | 6 | 85.71% | 
 | Total | 73 | 100.00% | 7 | 100.00% | 
#endif
/* -----------------------------------------------------------------------------
 * Register/unregister
 */
static struct sh_pfc_chip *
sh_pfc_add_gpiochip(struct sh_pfc *pfc, int(*setup)(struct sh_pfc_chip *),
		    struct sh_pfc_window *mem)
{
	struct sh_pfc_chip *chip;
	int ret;
	chip = devm_kzalloc(pfc->dev, sizeof(*chip), GFP_KERNEL);
	if (unlikely(!chip))
		return ERR_PTR(-ENOMEM);
	chip->mem = mem;
	chip->pfc = pfc;
	ret = setup(chip);
	if (ret < 0)
		return ERR_PTR(ret);
	ret = gpiochip_add_data(&chip->gpio_chip, chip);
	if (unlikely(ret < 0))
		return ERR_PTR(ret);
	dev_info(pfc->dev, "%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;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| laurent pinchart | laurent pinchart | 88 | 53.33% | 9 | 81.82% | 
| paul mundt | paul mundt | 74 | 44.85% | 1 | 9.09% | 
| linus walleij | linus walleij | 3 | 1.82% | 1 | 9.09% | 
 | Total | 165 | 100.00% | 11 | 100.00% | 
int sh_pfc_register_gpiochip(struct sh_pfc *pfc)
{
	struct sh_pfc_chip *chip;
	phys_addr_t address;
	unsigned int i;
	if (pfc->info->data_regs == NULL)
		return 0;
	/* Find the memory window that contain the GPIO registers. Boards that
         * register a separate GPIO device will not supply a memory resource
         * that covers the data registers. In that case don't try to handle
         * GPIOs.
         */
	address = pfc->info->data_regs[0].reg;
	for (i = 0; i < pfc->num_windows; ++i) {
		struct sh_pfc_window *window = &pfc->windows[i];
		if (address >= window->phys &&
		    address < window->phys + window->size)
			break;
	}
	if (i == pfc->num_windows)
		return 0;
	/* If we have IRQ resources make sure their number is correct. */
	if (pfc->num_irqs != pfc->info->gpio_irq_size) {
		dev_err(pfc->dev, "invalid number of IRQ resources\n");
		return -EINVAL;
	}
	/* Register the real GPIOs chip. */
	chip = sh_pfc_add_gpiochip(pfc, gpio_pin_setup, &pfc->windows[i]);
	if (IS_ERR(chip))
		return PTR_ERR(chip);
	pfc->gpio = chip;
	if (IS_ENABLED(CONFIG_OF) && pfc->dev->of_node)
		return 0;
#ifdef CONFIG_SUPERH
	/*
         * Register the GPIO to pin mappings. As pins with GPIO ports
         * must come first in the ranges, skip the pins without GPIO
         * ports by stopping at the first range that contains such a
         * pin.
         */
	for (i = 0; i < pfc->nr_ranges; ++i) {
		const struct sh_pfc_pin_range *range = &pfc->ranges[i];
		int ret;
		if (range->start >= pfc->nr_gpio_pins)
			break;
		ret = gpiochip_add_pin_range(&chip->gpio_chip,
			dev_name(pfc->dev), range->start, range->start,
			range->end - range->start + 1);
		if (ret < 0)
			return ret;
	}
	/* Register the function GPIOs chip. */
	if (pfc->info->nr_func_gpios == 0)
		return 0;
	chip = sh_pfc_add_gpiochip(pfc, gpio_function_setup, NULL);
	if (IS_ERR(chip))
		return PTR_ERR(chip);
	pfc->func = chip;
#endif /* CONFIG_SUPERH */
	return 0;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| laurent pinchart | laurent pinchart | 279 | 83.78% | 11 | 68.75% | 
| geert uytterhoeven | geert uytterhoeven | 44 | 13.21% | 4 | 25.00% | 
| paul mundt | paul mundt | 10 | 3.00% | 1 | 6.25% | 
 | Total | 333 | 100.00% | 16 | 100.00% | 
int sh_pfc_unregister_gpiochip(struct sh_pfc *pfc)
{
	gpiochip_remove(&pfc->gpio->gpio_chip);
#ifdef CONFIG_SUPERH
	gpiochip_remove(&pfc->func->gpio_chip);
#endif
	return 0;
}
Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| laurent pinchart | laurent pinchart | 21 | 55.26% | 2 | 50.00% | 
| paul mundt | paul mundt | 12 | 31.58% | 1 | 25.00% | 
| geert uytterhoeven | geert uytterhoeven | 5 | 13.16% | 1 | 25.00% | 
 | Total | 38 | 100.00% | 4 | 100.00% | 
Overall Contributors
 | Person | Tokens | Prop | Commits | CommitProp | 
| laurent pinchart | laurent pinchart | 1502 | 76.44% | 36 | 73.47% | 
| paul mundt | paul mundt | 355 | 18.07% | 2 | 4.08% | 
| geert uytterhoeven | geert uytterhoeven | 90 | 4.58% | 8 | 16.33% | 
| linus walleij | linus walleij | 16 | 0.81% | 2 | 4.08% | 
| rob herring | rob herring | 2 | 0.10% | 1 | 2.04% | 
 | Total | 1965 | 100.00% | 49 | 100.00% | 
  
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.