2 * SuperH Pin Function Controller GPIO driver.
4 * Copyright (C) 2008 Magnus Damm
5 * Copyright (C) 2009 - 2012 Paul Mundt
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file "COPYING" in the main directory of this archive
12 #include <linux/device.h>
13 #include <linux/gpio.h>
14 #include <linux/init.h>
15 #include <linux/module.h>
16 #include <linux/pinctrl/consumer.h>
17 #include <linux/slab.h>
18 #include <linux/spinlock.h>
22 struct sh_pfc_gpio_data_reg {
23 const struct pinmux_data_reg *info;
27 struct sh_pfc_gpio_pin {
34 struct gpio_chip gpio_chip;
36 struct sh_pfc_window *mem;
37 struct sh_pfc_gpio_data_reg *regs;
38 struct sh_pfc_gpio_pin *pins;
41 static struct sh_pfc_chip *gpio_to_pfc_chip(struct gpio_chip *gc)
43 return container_of(gc, struct sh_pfc_chip, gpio_chip);
46 static struct sh_pfc *gpio_to_pfc(struct gpio_chip *gc)
48 return gpio_to_pfc_chip(gc)->pfc;
51 static void gpio_get_data_reg(struct sh_pfc_chip *chip, unsigned int offset,
52 struct sh_pfc_gpio_data_reg **reg,
55 int idx = sh_pfc_get_pin_index(chip->pfc, offset);
56 struct sh_pfc_gpio_pin *gpio_pin = &chip->pins[idx];
58 *reg = &chip->regs[gpio_pin->dreg];
59 *bit = gpio_pin->dbit;
62 static u32 gpio_read_data_reg(struct sh_pfc_chip *chip,
63 const struct pinmux_data_reg *dreg)
65 phys_addr_t address = dreg->reg;
66 void __iomem *mem = address - chip->mem->phys + chip->mem->virt;
68 return sh_pfc_read_raw_reg(mem, dreg->reg_width);
71 static void gpio_write_data_reg(struct sh_pfc_chip *chip,
72 const struct pinmux_data_reg *dreg, u32 value)
74 phys_addr_t address = dreg->reg;
75 void __iomem *mem = address - chip->mem->phys + chip->mem->virt;
77 sh_pfc_write_raw_reg(mem, dreg->reg_width, value);
80 static void gpio_setup_data_reg(struct sh_pfc_chip *chip, unsigned idx)
82 struct sh_pfc *pfc = chip->pfc;
83 struct sh_pfc_gpio_pin *gpio_pin = &chip->pins[idx];
84 const struct sh_pfc_pin *pin = &pfc->info->pins[idx];
85 const struct pinmux_data_reg *dreg;
89 for (i = 0, dreg = pfc->info->data_regs; dreg->reg_width; ++i, ++dreg) {
90 for (bit = 0; bit < dreg->reg_width; bit++) {
91 if (dreg->enum_ids[bit] == pin->enum_id) {
102 static int gpio_setup_data_regs(struct sh_pfc_chip *chip)
104 struct sh_pfc *pfc = chip->pfc;
105 const struct pinmux_data_reg *dreg;
108 /* Count the number of data registers, allocate memory and initialize
111 for (i = 0; pfc->info->data_regs[i].reg_width; ++i)
114 chip->regs = devm_kzalloc(pfc->dev, i * sizeof(*chip->regs),
116 if (chip->regs == NULL)
119 for (i = 0, dreg = pfc->info->data_regs; dreg->reg_width; ++i, ++dreg) {
120 chip->regs[i].info = dreg;
121 chip->regs[i].shadow = gpio_read_data_reg(chip, dreg);
124 for (i = 0; i < pfc->info->nr_pins; i++) {
125 if (pfc->info->pins[i].enum_id == 0)
128 gpio_setup_data_reg(chip, i);
134 /* -----------------------------------------------------------------------------
138 static int gpio_pin_request(struct gpio_chip *gc, unsigned offset)
140 struct sh_pfc *pfc = gpio_to_pfc(gc);
141 int idx = sh_pfc_get_pin_index(pfc, offset);
143 if (idx < 0 || pfc->info->pins[idx].enum_id == 0)
146 return pinctrl_request_gpio(offset);
149 static void gpio_pin_free(struct gpio_chip *gc, unsigned offset)
151 return pinctrl_free_gpio(offset);
154 static void gpio_pin_set_value(struct sh_pfc_chip *chip, unsigned offset,
157 struct sh_pfc_gpio_data_reg *reg;
161 gpio_get_data_reg(chip, offset, ®, &bit);
163 pos = reg->info->reg_width - (bit + 1);
166 reg->shadow |= BIT(pos);
168 reg->shadow &= ~BIT(pos);
170 gpio_write_data_reg(chip, reg->info, reg->shadow);
173 static int gpio_pin_direction_input(struct gpio_chip *gc, unsigned offset)
175 return pinctrl_gpio_direction_input(offset);
178 static int gpio_pin_direction_output(struct gpio_chip *gc, unsigned offset,
181 gpio_pin_set_value(gpio_to_pfc_chip(gc), offset, value);
183 return pinctrl_gpio_direction_output(offset);
186 static int gpio_pin_get(struct gpio_chip *gc, unsigned offset)
188 struct sh_pfc_chip *chip = gpio_to_pfc_chip(gc);
189 struct sh_pfc_gpio_data_reg *reg;
193 gpio_get_data_reg(chip, offset, ®, &bit);
195 pos = reg->info->reg_width - (bit + 1);
197 return (gpio_read_data_reg(chip, reg->info) >> pos) & 1;
200 static void gpio_pin_set(struct gpio_chip *gc, unsigned offset, int value)
202 gpio_pin_set_value(gpio_to_pfc_chip(gc), offset, value);
205 static int gpio_pin_to_irq(struct gpio_chip *gc, unsigned offset)
207 struct sh_pfc *pfc = gpio_to_pfc(gc);
210 for (i = 0; i < pfc->info->gpio_irq_size; i++) {
211 const short *gpios = pfc->info->gpio_irq[i].gpios;
213 for (k = 0; gpios[k] >= 0; k++) {
214 if (gpios[k] == offset)
225 return pfc->info->gpio_irq[i].irq;
228 static int gpio_pin_setup(struct sh_pfc_chip *chip)
230 struct sh_pfc *pfc = chip->pfc;
231 struct gpio_chip *gc = &chip->gpio_chip;
234 chip->pins = devm_kzalloc(pfc->dev, pfc->info->nr_pins *
235 sizeof(*chip->pins), GFP_KERNEL);
236 if (chip->pins == NULL)
239 ret = gpio_setup_data_regs(chip);
243 gc->request = gpio_pin_request;
244 gc->free = gpio_pin_free;
245 gc->direction_input = gpio_pin_direction_input;
246 gc->get = gpio_pin_get;
247 gc->direction_output = gpio_pin_direction_output;
248 gc->set = gpio_pin_set;
249 gc->to_irq = gpio_pin_to_irq;
251 gc->label = pfc->info->name;
253 gc->owner = THIS_MODULE;
255 gc->ngpio = pfc->nr_gpio_pins;
260 /* -----------------------------------------------------------------------------
264 static int gpio_function_request(struct gpio_chip *gc, unsigned offset)
266 static bool __print_once;
267 struct sh_pfc *pfc = gpio_to_pfc(gc);
268 unsigned int mark = pfc->info->func_gpios[offset].enum_id;
274 "Use of GPIO API for function requests is deprecated."
275 " Convert to pinctrl\n");
282 spin_lock_irqsave(&pfc->lock, flags);
283 ret = sh_pfc_config_mux(pfc, mark, PINMUX_TYPE_FUNCTION);
284 spin_unlock_irqrestore(&pfc->lock, flags);
289 static void gpio_function_free(struct gpio_chip *gc, unsigned offset)
293 static int gpio_function_setup(struct sh_pfc_chip *chip)
295 struct sh_pfc *pfc = chip->pfc;
296 struct gpio_chip *gc = &chip->gpio_chip;
298 gc->request = gpio_function_request;
299 gc->free = gpio_function_free;
301 gc->label = pfc->info->name;
302 gc->owner = THIS_MODULE;
303 gc->base = pfc->nr_gpio_pins;
304 gc->ngpio = pfc->info->nr_func_gpios;
309 /* -----------------------------------------------------------------------------
310 * Register/unregister
313 static struct sh_pfc_chip *
314 sh_pfc_add_gpiochip(struct sh_pfc *pfc, int(*setup)(struct sh_pfc_chip *),
315 struct sh_pfc_window *mem)
317 struct sh_pfc_chip *chip;
320 chip = devm_kzalloc(pfc->dev, sizeof(*chip), GFP_KERNEL);
322 return ERR_PTR(-ENOMEM);
331 ret = gpiochip_add(&chip->gpio_chip);
332 if (unlikely(ret < 0))
335 dev_info(pfc->dev, "%s handling gpio %u -> %u\n",
336 chip->gpio_chip.label, chip->gpio_chip.base,
337 chip->gpio_chip.base + chip->gpio_chip.ngpio - 1);
342 int sh_pfc_register_gpiochip(struct sh_pfc *pfc)
344 struct sh_pfc_chip *chip;
349 if (pfc->info->data_regs == NULL)
352 /* Find the memory window that contain the GPIO registers. Boards that
353 * register a separate GPIO device will not supply a memory resource
354 * that covers the data registers. In that case don't try to handle
357 address = pfc->info->data_regs[0].reg;
358 for (i = 0; i < pfc->num_windows; ++i) {
359 struct sh_pfc_window *window = &pfc->windows[i];
361 if (address >= window->phys &&
362 address < window->phys + window->size)
366 if (i == pfc->num_windows)
369 /* If we have IRQ resources make sure their number is correct. */
370 if (pfc->num_irqs && pfc->num_irqs != pfc->info->gpio_irq_size) {
371 dev_err(pfc->dev, "invalid number of IRQ resources\n");
375 /* Register the real GPIOs chip. */
376 chip = sh_pfc_add_gpiochip(pfc, gpio_pin_setup, &pfc->windows[i]);
378 return PTR_ERR(chip);
382 /* Register the GPIO to pin mappings. As pins with GPIO ports must come
383 * first in the ranges, skip the pins without GPIO ports by stopping at
384 * the first range that contains such a pin.
386 for (i = 0; i < pfc->nr_ranges; ++i) {
387 const struct sh_pfc_pin_range *range = &pfc->ranges[i];
389 if (range->start >= pfc->nr_gpio_pins)
392 ret = gpiochip_add_pin_range(&chip->gpio_chip,
394 range->start, range->start,
395 range->end - range->start + 1);
400 /* Register the function GPIOs chip. */
401 if (pfc->info->nr_func_gpios == 0)
404 chip = sh_pfc_add_gpiochip(pfc, gpio_function_setup, NULL);
406 return PTR_ERR(chip);
413 int sh_pfc_unregister_gpiochip(struct sh_pfc *pfc)
415 gpiochip_remove(&pfc->gpio->gpio_chip);
416 gpiochip_remove(&pfc->func->gpio_chip);