2006-01-09 18:05:41 +01:00
|
|
|
/*
|
2007-02-05 11:42:07 +01:00
|
|
|
* linux/arch/arm/mach-at91/gpio.c
|
2006-01-09 18:05:41 +01:00
|
|
|
*
|
|
|
|
* Copyright (C) 2005 HP Labs
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
2006-09-27 14:23:00 +02:00
|
|
|
#include <linux/clk.h>
|
2006-01-09 18:05:41 +01:00
|
|
|
#include <linux/errno.h>
|
2012-02-11 15:56:01 +01:00
|
|
|
#include <linux/device.h>
|
2011-07-26 11:53:52 +02:00
|
|
|
#include <linux/gpio.h>
|
2006-07-02 00:01:50 +02:00
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/irq.h>
|
2007-11-23 16:09:10 +01:00
|
|
|
#include <linux/debugfs.h>
|
|
|
|
#include <linux/seq_file.h>
|
2006-01-09 18:05:41 +01:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/list.h>
|
|
|
|
#include <linux/module.h>
|
2008-09-06 13:10:45 +02:00
|
|
|
#include <linux/io.h>
|
2012-02-11 15:41:40 +01:00
|
|
|
#include <linux/irqdomain.h>
|
2013-01-18 16:31:37 +01:00
|
|
|
#include <linux/irqchip/chained_irq.h>
|
2012-02-11 15:41:40 +01:00
|
|
|
#include <linux/of_address.h>
|
2006-01-09 18:05:41 +01:00
|
|
|
|
2008-08-05 17:14:15 +02:00
|
|
|
#include <mach/hardware.h>
|
|
|
|
#include <mach/at91_pio.h>
|
2006-01-09 18:05:41 +01:00
|
|
|
|
2006-09-27 14:23:00 +02:00
|
|
|
#include "generic.h"
|
|
|
|
|
2012-07-14 09:26:08 +02:00
|
|
|
#define MAX_NB_GPIO_PER_BANK 32
|
|
|
|
|
2009-02-10 21:02:08 +01:00
|
|
|
struct at91_gpio_chip {
|
|
|
|
struct gpio_chip chip;
|
|
|
|
struct at91_gpio_chip *next; /* Bank sharing same clock */
|
2012-02-11 15:28:08 +01:00
|
|
|
int pioc_hwirq; /* PIO bank interrupt identifier on AIC */
|
2012-02-14 18:08:14 +01:00
|
|
|
int pioc_virq; /* PIO bank Linux virtual interrupt */
|
2012-02-11 15:41:40 +01:00
|
|
|
int pioc_idx; /* PIO bank index */
|
2012-02-11 15:28:08 +01:00
|
|
|
void __iomem *regbase; /* PIO bank virtual address */
|
2011-11-13 06:00:58 +01:00
|
|
|
struct clk *clock; /* associated clock */
|
2012-02-11 15:41:40 +01:00
|
|
|
struct irq_domain *domain; /* associated irq domain */
|
2009-02-10 21:02:08 +01:00
|
|
|
};
|
2006-09-27 14:23:00 +02:00
|
|
|
|
2009-02-10 21:02:08 +01:00
|
|
|
#define to_at91_gpio_chip(c) container_of(c, struct at91_gpio_chip, chip)
|
|
|
|
|
2012-07-06 00:48:33 +02:00
|
|
|
static int at91_gpiolib_request(struct gpio_chip *chip, unsigned offset);
|
2009-02-10 21:02:08 +01:00
|
|
|
static void at91_gpiolib_dbg_show(struct seq_file *s, struct gpio_chip *chip);
|
|
|
|
static void at91_gpiolib_set(struct gpio_chip *chip, unsigned offset, int val);
|
|
|
|
static int at91_gpiolib_get(struct gpio_chip *chip, unsigned offset);
|
|
|
|
static int at91_gpiolib_direction_output(struct gpio_chip *chip,
|
|
|
|
unsigned offset, int val);
|
|
|
|
static int at91_gpiolib_direction_input(struct gpio_chip *chip,
|
|
|
|
unsigned offset);
|
2012-02-11 15:56:01 +01:00
|
|
|
static int at91_gpiolib_to_irq(struct gpio_chip *chip, unsigned offset);
|
2009-02-10 21:02:08 +01:00
|
|
|
|
2012-07-14 09:26:08 +02:00
|
|
|
#define AT91_GPIO_CHIP(name) \
|
2009-02-10 21:02:08 +01:00
|
|
|
{ \
|
|
|
|
.chip = { \
|
|
|
|
.label = name, \
|
2012-07-06 00:48:33 +02:00
|
|
|
.request = at91_gpiolib_request, \
|
2009-02-10 21:02:08 +01:00
|
|
|
.direction_input = at91_gpiolib_direction_input, \
|
|
|
|
.direction_output = at91_gpiolib_direction_output, \
|
|
|
|
.get = at91_gpiolib_get, \
|
|
|
|
.set = at91_gpiolib_set, \
|
|
|
|
.dbg_show = at91_gpiolib_dbg_show, \
|
2012-02-11 15:56:01 +01:00
|
|
|
.to_irq = at91_gpiolib_to_irq, \
|
2012-07-14 09:26:08 +02:00
|
|
|
.ngpio = MAX_NB_GPIO_PER_BANK, \
|
2009-02-10 21:02:08 +01:00
|
|
|
}, \
|
|
|
|
}
|
2006-09-27 14:23:00 +02:00
|
|
|
|
2009-02-10 21:02:08 +01:00
|
|
|
static struct at91_gpio_chip gpio_chip[] = {
|
2012-07-14 09:26:08 +02:00
|
|
|
AT91_GPIO_CHIP("pioA"),
|
|
|
|
AT91_GPIO_CHIP("pioB"),
|
|
|
|
AT91_GPIO_CHIP("pioC"),
|
|
|
|
AT91_GPIO_CHIP("pioD"),
|
|
|
|
AT91_GPIO_CHIP("pioE"),
|
2009-02-10 21:02:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static int gpio_banks;
|
2010-07-20 19:18:51 +02:00
|
|
|
static unsigned long at91_gpio_caps;
|
|
|
|
|
|
|
|
/* All PIO controllers support PIO3 features */
|
|
|
|
#define AT91_GPIO_CAP_PIO3 (1 << 0)
|
|
|
|
|
|
|
|
#define has_pio3() (at91_gpio_caps & AT91_GPIO_CAP_PIO3)
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------*/
|
2006-01-09 18:05:41 +01:00
|
|
|
|
|
|
|
static inline void __iomem *pin_to_controller(unsigned pin)
|
|
|
|
{
|
2012-07-14 09:26:08 +02:00
|
|
|
pin /= MAX_NB_GPIO_PER_BANK;
|
2006-09-27 14:23:00 +02:00
|
|
|
if (likely(pin < gpio_banks))
|
2009-02-10 21:02:08 +01:00
|
|
|
return gpio_chip[pin].regbase;
|
2006-01-09 18:05:41 +01:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned pin_to_mask(unsigned pin)
|
|
|
|
{
|
2012-07-14 09:26:08 +02:00
|
|
|
return 1 << (pin % MAX_NB_GPIO_PER_BANK);
|
2006-01-09 18:05:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-20 19:18:51 +02:00
|
|
|
static char peripheral_function(void __iomem *pio, unsigned mask)
|
|
|
|
{
|
|
|
|
char ret = 'X';
|
|
|
|
u8 select;
|
|
|
|
|
|
|
|
if (pio) {
|
|
|
|
if (has_pio3()) {
|
|
|
|
select = !!(__raw_readl(pio + PIO_ABCDSR1) & mask);
|
|
|
|
select |= (!!(__raw_readl(pio + PIO_ABCDSR2) & mask) << 1);
|
|
|
|
ret = 'A' + select;
|
|
|
|
} else {
|
|
|
|
ret = __raw_readl(pio + PIO_ABSR) & mask ?
|
|
|
|
'B' : 'A';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2006-01-09 18:05:41 +01:00
|
|
|
/*--------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/* Not all hardware capabilities are exposed through these calls; they
|
|
|
|
* only encapsulate the most common features and modes. (So if you
|
|
|
|
* want to change signals in groups, do it directly.)
|
|
|
|
*
|
|
|
|
* Bootloaders will usually handle some of the pin multiplexing setup.
|
|
|
|
* The intent is certainly that by the time Linux is fully booted, all
|
|
|
|
* pins should have been fully initialized. These setup calls should
|
|
|
|
* only be used by board setup routines, or possibly in driver probe().
|
|
|
|
*
|
|
|
|
* For bootloaders doing all that setup, these calls could be inlined
|
|
|
|
* as NOPs so Linux won't duplicate any setup code
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2007-02-12 09:53:13 +01:00
|
|
|
/*
|
|
|
|
* mux the pin to the "GPIO" peripheral role.
|
|
|
|
*/
|
|
|
|
int __init_or_module at91_set_GPIO_periph(unsigned pin, int use_pullup)
|
|
|
|
{
|
|
|
|
void __iomem *pio = pin_to_controller(pin);
|
|
|
|
unsigned mask = pin_to_mask(pin);
|
|
|
|
|
|
|
|
if (!pio)
|
|
|
|
return -EINVAL;
|
|
|
|
__raw_writel(mask, pio + PIO_IDR);
|
|
|
|
__raw_writel(mask, pio + (use_pullup ? PIO_PUER : PIO_PUDR));
|
|
|
|
__raw_writel(mask, pio + PIO_PER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(at91_set_GPIO_periph);
|
|
|
|
|
|
|
|
|
2006-01-09 18:05:41 +01:00
|
|
|
/*
|
|
|
|
* mux the pin to the "A" internal peripheral role.
|
|
|
|
*/
|
|
|
|
int __init_or_module at91_set_A_periph(unsigned pin, int use_pullup)
|
|
|
|
{
|
|
|
|
void __iomem *pio = pin_to_controller(pin);
|
|
|
|
unsigned mask = pin_to_mask(pin);
|
|
|
|
|
|
|
|
if (!pio)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
__raw_writel(mask, pio + PIO_IDR);
|
|
|
|
__raw_writel(mask, pio + (use_pullup ? PIO_PUER : PIO_PUDR));
|
2010-07-20 19:18:51 +02:00
|
|
|
if (has_pio3()) {
|
|
|
|
__raw_writel(__raw_readl(pio + PIO_ABCDSR1) & ~mask,
|
|
|
|
pio + PIO_ABCDSR1);
|
|
|
|
__raw_writel(__raw_readl(pio + PIO_ABCDSR2) & ~mask,
|
|
|
|
pio + PIO_ABCDSR2);
|
|
|
|
} else {
|
|
|
|
__raw_writel(mask, pio + PIO_ASR);
|
|
|
|
}
|
2006-01-09 18:05:41 +01:00
|
|
|
__raw_writel(mask, pio + PIO_PDR);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(at91_set_A_periph);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* mux the pin to the "B" internal peripheral role.
|
|
|
|
*/
|
|
|
|
int __init_or_module at91_set_B_periph(unsigned pin, int use_pullup)
|
|
|
|
{
|
|
|
|
void __iomem *pio = pin_to_controller(pin);
|
|
|
|
unsigned mask = pin_to_mask(pin);
|
|
|
|
|
|
|
|
if (!pio)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
__raw_writel(mask, pio + PIO_IDR);
|
|
|
|
__raw_writel(mask, pio + (use_pullup ? PIO_PUER : PIO_PUDR));
|
2010-07-20 19:18:51 +02:00
|
|
|
if (has_pio3()) {
|
|
|
|
__raw_writel(__raw_readl(pio + PIO_ABCDSR1) | mask,
|
|
|
|
pio + PIO_ABCDSR1);
|
|
|
|
__raw_writel(__raw_readl(pio + PIO_ABCDSR2) & ~mask,
|
|
|
|
pio + PIO_ABCDSR2);
|
|
|
|
} else {
|
|
|
|
__raw_writel(mask, pio + PIO_BSR);
|
|
|
|
}
|
2006-01-09 18:05:41 +01:00
|
|
|
__raw_writel(mask, pio + PIO_PDR);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(at91_set_B_periph);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2010-07-20 19:18:51 +02:00
|
|
|
* mux the pin to the "C" internal peripheral role.
|
|
|
|
*/
|
|
|
|
int __init_or_module at91_set_C_periph(unsigned pin, int use_pullup)
|
|
|
|
{
|
|
|
|
void __iomem *pio = pin_to_controller(pin);
|
|
|
|
unsigned mask = pin_to_mask(pin);
|
|
|
|
|
|
|
|
if (!pio || !has_pio3())
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
__raw_writel(mask, pio + PIO_IDR);
|
|
|
|
__raw_writel(mask, pio + (use_pullup ? PIO_PUER : PIO_PUDR));
|
|
|
|
__raw_writel(__raw_readl(pio + PIO_ABCDSR1) & ~mask, pio + PIO_ABCDSR1);
|
|
|
|
__raw_writel(__raw_readl(pio + PIO_ABCDSR2) | mask, pio + PIO_ABCDSR2);
|
|
|
|
__raw_writel(mask, pio + PIO_PDR);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(at91_set_C_periph);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* mux the pin to the "D" internal peripheral role.
|
|
|
|
*/
|
|
|
|
int __init_or_module at91_set_D_periph(unsigned pin, int use_pullup)
|
|
|
|
{
|
|
|
|
void __iomem *pio = pin_to_controller(pin);
|
|
|
|
unsigned mask = pin_to_mask(pin);
|
|
|
|
|
|
|
|
if (!pio || !has_pio3())
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
__raw_writel(mask, pio + PIO_IDR);
|
|
|
|
__raw_writel(mask, pio + (use_pullup ? PIO_PUER : PIO_PUDR));
|
|
|
|
__raw_writel(__raw_readl(pio + PIO_ABCDSR1) | mask, pio + PIO_ABCDSR1);
|
|
|
|
__raw_writel(__raw_readl(pio + PIO_ABCDSR2) | mask, pio + PIO_ABCDSR2);
|
|
|
|
__raw_writel(mask, pio + PIO_PDR);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(at91_set_D_periph);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* mux the pin to the gpio controller (instead of "A", "B", "C"
|
|
|
|
* or "D" peripheral), and configure it for an input.
|
2006-01-09 18:05:41 +01:00
|
|
|
*/
|
|
|
|
int __init_or_module at91_set_gpio_input(unsigned pin, int use_pullup)
|
|
|
|
{
|
|
|
|
void __iomem *pio = pin_to_controller(pin);
|
|
|
|
unsigned mask = pin_to_mask(pin);
|
|
|
|
|
|
|
|
if (!pio)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
__raw_writel(mask, pio + PIO_IDR);
|
|
|
|
__raw_writel(mask, pio + (use_pullup ? PIO_PUER : PIO_PUDR));
|
|
|
|
__raw_writel(mask, pio + PIO_ODR);
|
|
|
|
__raw_writel(mask, pio + PIO_PER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(at91_set_gpio_input);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2010-07-20 19:18:51 +02:00
|
|
|
* mux the pin to the gpio controller (instead of "A", "B", "C"
|
|
|
|
* or "D" peripheral), and configure it for an output.
|
2006-01-09 18:05:41 +01:00
|
|
|
*/
|
|
|
|
int __init_or_module at91_set_gpio_output(unsigned pin, int value)
|
|
|
|
{
|
|
|
|
void __iomem *pio = pin_to_controller(pin);
|
|
|
|
unsigned mask = pin_to_mask(pin);
|
|
|
|
|
|
|
|
if (!pio)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
__raw_writel(mask, pio + PIO_IDR);
|
|
|
|
__raw_writel(mask, pio + PIO_PUDR);
|
|
|
|
__raw_writel(mask, pio + (value ? PIO_SODR : PIO_CODR));
|
|
|
|
__raw_writel(mask, pio + PIO_OER);
|
|
|
|
__raw_writel(mask, pio + PIO_PER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(at91_set_gpio_output);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* enable/disable the glitch filter; mostly used with IRQ handling.
|
|
|
|
*/
|
|
|
|
int __init_or_module at91_set_deglitch(unsigned pin, int is_on)
|
|
|
|
{
|
|
|
|
void __iomem *pio = pin_to_controller(pin);
|
|
|
|
unsigned mask = pin_to_mask(pin);
|
|
|
|
|
|
|
|
if (!pio)
|
|
|
|
return -EINVAL;
|
2010-07-20 19:18:51 +02:00
|
|
|
|
|
|
|
if (has_pio3() && is_on)
|
|
|
|
__raw_writel(mask, pio + PIO_IFSCDR);
|
2006-01-09 18:05:41 +01:00
|
|
|
__raw_writel(mask, pio + (is_on ? PIO_IFER : PIO_IFDR));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(at91_set_deglitch);
|
|
|
|
|
2010-07-20 19:18:51 +02:00
|
|
|
/*
|
|
|
|
* enable/disable the debounce filter;
|
|
|
|
*/
|
|
|
|
int __init_or_module at91_set_debounce(unsigned pin, int is_on, int div)
|
|
|
|
{
|
|
|
|
void __iomem *pio = pin_to_controller(pin);
|
|
|
|
unsigned mask = pin_to_mask(pin);
|
|
|
|
|
|
|
|
if (!pio || !has_pio3())
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if (is_on) {
|
|
|
|
__raw_writel(mask, pio + PIO_IFSCER);
|
|
|
|
__raw_writel(div & PIO_SCDR_DIV, pio + PIO_SCDR);
|
|
|
|
__raw_writel(mask, pio + PIO_IFER);
|
|
|
|
} else {
|
|
|
|
__raw_writel(mask, pio + PIO_IFDR);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(at91_set_debounce);
|
|
|
|
|
2006-02-22 22:23:35 +01:00
|
|
|
/*
|
|
|
|
* enable/disable the multi-driver; This is only valid for output and
|
|
|
|
* allows the output pin to run as an open collector output.
|
|
|
|
*/
|
|
|
|
int __init_or_module at91_set_multi_drive(unsigned pin, int is_on)
|
|
|
|
{
|
|
|
|
void __iomem *pio = pin_to_controller(pin);
|
|
|
|
unsigned mask = pin_to_mask(pin);
|
|
|
|
|
|
|
|
if (!pio)
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
__raw_writel(mask, pio + (is_on ? PIO_MDER : PIO_MDDR));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(at91_set_multi_drive);
|
|
|
|
|
2010-07-20 19:18:51 +02:00
|
|
|
/*
|
|
|
|
* enable/disable the pull-down.
|
|
|
|
* If pull-up already enabled while calling the function, we disable it.
|
|
|
|
*/
|
|
|
|
int __init_or_module at91_set_pulldown(unsigned pin, int is_on)
|
|
|
|
{
|
|
|
|
void __iomem *pio = pin_to_controller(pin);
|
|
|
|
unsigned mask = pin_to_mask(pin);
|
|
|
|
|
|
|
|
if (!pio || !has_pio3())
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
/* Disable pull-up anyway */
|
|
|
|
__raw_writel(mask, pio + PIO_PUDR);
|
|
|
|
__raw_writel(mask, pio + (is_on ? PIO_PPDER : PIO_PPDDR));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(at91_set_pulldown);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* disable Schmitt trigger
|
|
|
|
*/
|
|
|
|
int __init_or_module at91_disable_schmitt_trig(unsigned pin)
|
|
|
|
{
|
|
|
|
void __iomem *pio = pin_to_controller(pin);
|
|
|
|
unsigned mask = pin_to_mask(pin);
|
|
|
|
|
|
|
|
if (!pio || !has_pio3())
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
__raw_writel(__raw_readl(pio + PIO_SCHMITT) | mask, pio + PIO_SCHMITT);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(at91_disable_schmitt_trig);
|
|
|
|
|
2006-01-09 18:05:41 +01:00
|
|
|
/*
|
|
|
|
* assuming the pin is muxed as a gpio output, set its value.
|
|
|
|
*/
|
|
|
|
int at91_set_gpio_value(unsigned pin, int value)
|
|
|
|
{
|
|
|
|
void __iomem *pio = pin_to_controller(pin);
|
|
|
|
unsigned mask = pin_to_mask(pin);
|
|
|
|
|
|
|
|
if (!pio)
|
|
|
|
return -EINVAL;
|
|
|
|
__raw_writel(mask, pio + (value ? PIO_SODR : PIO_CODR));
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(at91_set_gpio_value);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* read the pin's value (works even if it's not muxed as a gpio).
|
|
|
|
*/
|
|
|
|
int at91_get_gpio_value(unsigned pin)
|
|
|
|
{
|
|
|
|
void __iomem *pio = pin_to_controller(pin);
|
|
|
|
unsigned mask = pin_to_mask(pin);
|
|
|
|
u32 pdsr;
|
|
|
|
|
|
|
|
if (!pio)
|
|
|
|
return -EINVAL;
|
|
|
|
pdsr = __raw_readl(pio + PIO_PDSR);
|
|
|
|
return (pdsr & mask) != 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(at91_get_gpio_value);
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------*/
|
|
|
|
|
2006-06-19 16:26:54 +02:00
|
|
|
#ifdef CONFIG_PM
|
|
|
|
|
2006-09-27 14:23:00 +02:00
|
|
|
static u32 wakeups[MAX_GPIO_BANKS];
|
|
|
|
static u32 backups[MAX_GPIO_BANKS];
|
2006-06-19 16:26:54 +02:00
|
|
|
|
2010-11-29 10:26:19 +01:00
|
|
|
static int gpio_irq_set_wake(struct irq_data *d, unsigned state)
|
2006-06-19 16:26:54 +02:00
|
|
|
{
|
2012-02-11 15:41:40 +01:00
|
|
|
struct at91_gpio_chip *at91_gpio = irq_data_get_irq_chip_data(d);
|
|
|
|
unsigned mask = 1 << d->hwirq;
|
|
|
|
unsigned bank = at91_gpio->pioc_idx;
|
2006-06-19 16:26:54 +02:00
|
|
|
|
2007-01-09 13:47:29 +01:00
|
|
|
if (unlikely(bank >= MAX_GPIO_BANKS))
|
2006-06-19 16:26:54 +02:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if (state)
|
2007-01-09 13:47:29 +01:00
|
|
|
wakeups[bank] |= mask;
|
2006-06-19 16:26:54 +02:00
|
|
|
else
|
2007-01-09 13:47:29 +01:00
|
|
|
wakeups[bank] &= ~mask;
|
|
|
|
|
2012-02-14 18:08:14 +01:00
|
|
|
irq_set_irq_wake(at91_gpio->pioc_virq, state);
|
2006-06-19 16:26:54 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void at91_gpio_suspend(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2006-09-27 14:23:00 +02:00
|
|
|
for (i = 0; i < gpio_banks; i++) {
|
2009-02-10 21:02:08 +01:00
|
|
|
void __iomem *pio = gpio_chip[i].regbase;
|
2006-06-19 16:26:54 +02:00
|
|
|
|
2008-01-04 18:30:24 +01:00
|
|
|
backups[i] = __raw_readl(pio + PIO_IMR);
|
|
|
|
__raw_writel(backups[i], pio + PIO_IDR);
|
|
|
|
__raw_writel(wakeups[i], pio + PIO_IER);
|
2006-06-19 16:26:54 +02:00
|
|
|
|
2012-02-11 15:41:40 +01:00
|
|
|
if (!wakeups[i]) {
|
|
|
|
clk_unprepare(gpio_chip[i].clock);
|
2011-11-13 06:00:58 +01:00
|
|
|
clk_disable(gpio_chip[i].clock);
|
2012-02-11 15:41:40 +01:00
|
|
|
} else {
|
2006-06-19 16:26:54 +02:00
|
|
|
#ifdef CONFIG_PM_DEBUG
|
2007-01-09 13:47:29 +01:00
|
|
|
printk(KERN_DEBUG "GPIO-%c may wake for %08x\n", 'A'+i, wakeups[i]);
|
2006-06-19 16:26:54 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void at91_gpio_resume(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2006-09-27 14:23:00 +02:00
|
|
|
for (i = 0; i < gpio_banks; i++) {
|
2009-02-10 21:02:08 +01:00
|
|
|
void __iomem *pio = gpio_chip[i].regbase;
|
2006-06-19 16:26:54 +02:00
|
|
|
|
2012-02-11 15:41:40 +01:00
|
|
|
if (!wakeups[i]) {
|
|
|
|
if (clk_prepare(gpio_chip[i].clock) == 0)
|
|
|
|
clk_enable(gpio_chip[i].clock);
|
|
|
|
}
|
2007-01-09 13:47:29 +01:00
|
|
|
|
2008-01-04 18:30:24 +01:00
|
|
|
__raw_writel(wakeups[i], pio + PIO_IDR);
|
|
|
|
__raw_writel(backups[i], pio + PIO_IER);
|
2006-09-27 14:23:00 +02:00
|
|
|
}
|
2006-06-19 16:26:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
#define gpio_irq_set_wake NULL
|
|
|
|
#endif
|
|
|
|
|
2006-01-09 18:05:41 +01:00
|
|
|
|
|
|
|
/* Several AIC controller irqs are dispatched through this GPIO handler.
|
|
|
|
* To use any AT91_PIN_* as an externally triggered IRQ, first call
|
|
|
|
* at91_set_gpio_input() then maybe enable its glitch filter.
|
|
|
|
* Then just request_irq() with the pin ID; it works like any ARM IRQ
|
2010-07-20 19:18:51 +02:00
|
|
|
* handler.
|
|
|
|
* First implementation always triggers on rising and falling edges
|
|
|
|
* whereas the newer PIO3 can be additionally configured to trigger on
|
|
|
|
* level, edge with any polarity.
|
2006-01-09 18:05:41 +01:00
|
|
|
*
|
|
|
|
* Alternatively, certain pins may be used directly as IRQ0..IRQ6 after
|
|
|
|
* configuring them with at91_set_a_periph() or at91_set_b_periph().
|
|
|
|
* IRQ0..IRQ6 should be configurable, e.g. level vs edge triggering.
|
|
|
|
*/
|
|
|
|
|
2010-11-29 10:26:19 +01:00
|
|
|
static void gpio_irq_mask(struct irq_data *d)
|
2006-01-09 18:05:41 +01:00
|
|
|
{
|
2012-02-11 15:41:40 +01:00
|
|
|
struct at91_gpio_chip *at91_gpio = irq_data_get_irq_chip_data(d);
|
|
|
|
void __iomem *pio = at91_gpio->regbase;
|
|
|
|
unsigned mask = 1 << d->hwirq;
|
2006-01-09 18:05:41 +01:00
|
|
|
|
|
|
|
if (pio)
|
|
|
|
__raw_writel(mask, pio + PIO_IDR);
|
|
|
|
}
|
|
|
|
|
2010-11-29 10:26:19 +01:00
|
|
|
static void gpio_irq_unmask(struct irq_data *d)
|
2006-01-09 18:05:41 +01:00
|
|
|
{
|
2012-02-11 15:41:40 +01:00
|
|
|
struct at91_gpio_chip *at91_gpio = irq_data_get_irq_chip_data(d);
|
|
|
|
void __iomem *pio = at91_gpio->regbase;
|
|
|
|
unsigned mask = 1 << d->hwirq;
|
2006-01-09 18:05:41 +01:00
|
|
|
|
|
|
|
if (pio)
|
|
|
|
__raw_writel(mask, pio + PIO_IER);
|
|
|
|
}
|
|
|
|
|
2010-11-29 10:26:19 +01:00
|
|
|
static int gpio_irq_type(struct irq_data *d, unsigned type)
|
2006-01-09 18:05:41 +01:00
|
|
|
{
|
2008-01-04 18:30:24 +01:00
|
|
|
switch (type) {
|
|
|
|
case IRQ_TYPE_NONE:
|
|
|
|
case IRQ_TYPE_EDGE_BOTH:
|
|
|
|
return 0;
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2006-01-09 18:05:41 +01:00
|
|
|
}
|
|
|
|
|
2010-07-20 19:18:51 +02:00
|
|
|
/* Alternate irq type for PIO3 support */
|
|
|
|
static int alt_gpio_irq_type(struct irq_data *d, unsigned type)
|
|
|
|
{
|
|
|
|
struct at91_gpio_chip *at91_gpio = irq_data_get_irq_chip_data(d);
|
|
|
|
void __iomem *pio = at91_gpio->regbase;
|
|
|
|
unsigned mask = 1 << d->hwirq;
|
|
|
|
|
|
|
|
switch (type) {
|
|
|
|
case IRQ_TYPE_EDGE_RISING:
|
|
|
|
__raw_writel(mask, pio + PIO_ESR);
|
|
|
|
__raw_writel(mask, pio + PIO_REHLSR);
|
|
|
|
break;
|
|
|
|
case IRQ_TYPE_EDGE_FALLING:
|
|
|
|
__raw_writel(mask, pio + PIO_ESR);
|
|
|
|
__raw_writel(mask, pio + PIO_FELLSR);
|
|
|
|
break;
|
|
|
|
case IRQ_TYPE_LEVEL_LOW:
|
|
|
|
__raw_writel(mask, pio + PIO_LSR);
|
|
|
|
__raw_writel(mask, pio + PIO_FELLSR);
|
|
|
|
break;
|
|
|
|
case IRQ_TYPE_LEVEL_HIGH:
|
|
|
|
__raw_writel(mask, pio + PIO_LSR);
|
|
|
|
__raw_writel(mask, pio + PIO_REHLSR);
|
|
|
|
break;
|
|
|
|
case IRQ_TYPE_EDGE_BOTH:
|
|
|
|
/*
|
|
|
|
* disable additional interrupt modes:
|
|
|
|
* fall back to default behavior
|
|
|
|
*/
|
|
|
|
__raw_writel(mask, pio + PIO_AIMDR);
|
|
|
|
return 0;
|
|
|
|
case IRQ_TYPE_NONE:
|
|
|
|
default:
|
|
|
|
pr_warn("AT91: No type for irq %d\n", gpio_to_irq(d->irq));
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* enable additional interrupt modes */
|
|
|
|
__raw_writel(mask, pio + PIO_AIMER);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-08-01 23:26:25 +02:00
|
|
|
static struct irq_chip gpio_irqchip = {
|
|
|
|
.name = "GPIO",
|
2011-03-24 12:48:18 +01:00
|
|
|
.irq_disable = gpio_irq_mask,
|
2010-11-29 10:26:19 +01:00
|
|
|
.irq_mask = gpio_irq_mask,
|
|
|
|
.irq_unmask = gpio_irq_unmask,
|
2010-07-20 19:18:51 +02:00
|
|
|
/* .irq_set_type is set dynamically */
|
2010-11-29 10:26:19 +01:00
|
|
|
.irq_set_wake = gpio_irq_set_wake,
|
2006-01-09 18:05:41 +01:00
|
|
|
};
|
|
|
|
|
2006-11-23 12:41:32 +01:00
|
|
|
static void gpio_irq_handler(unsigned irq, struct irq_desc *desc)
|
2006-01-09 18:05:41 +01:00
|
|
|
{
|
2012-05-25 14:11:51 +02:00
|
|
|
struct irq_chip *chip = irq_desc_get_chip(desc);
|
2011-03-24 12:48:18 +01:00
|
|
|
struct irq_data *idata = irq_desc_get_irq_data(desc);
|
|
|
|
struct at91_gpio_chip *at91_gpio = irq_data_get_irq_chip_data(idata);
|
|
|
|
void __iomem *pio = at91_gpio->regbase;
|
2012-02-14 18:08:14 +01:00
|
|
|
unsigned long isr;
|
|
|
|
int n;
|
2006-01-09 18:05:41 +01:00
|
|
|
|
2012-05-25 14:11:51 +02:00
|
|
|
chained_irq_enter(chip, desc);
|
2006-01-09 18:05:41 +01:00
|
|
|
for (;;) {
|
2008-01-04 18:30:24 +01:00
|
|
|
/* Reading ISR acks pending (edge triggered) GPIO interrupts.
|
|
|
|
* When there none are pending, we're finished unless we need
|
|
|
|
* to process multiple banks (like ID_PIOCDE on sam9263).
|
|
|
|
*/
|
2006-01-09 18:05:41 +01:00
|
|
|
isr = __raw_readl(pio + PIO_ISR) & __raw_readl(pio + PIO_IMR);
|
2008-01-04 18:30:24 +01:00
|
|
|
if (!isr) {
|
2009-02-10 21:02:08 +01:00
|
|
|
if (!at91_gpio->next)
|
2008-01-04 18:30:24 +01:00
|
|
|
break;
|
2009-02-10 21:02:08 +01:00
|
|
|
at91_gpio = at91_gpio->next;
|
|
|
|
pio = at91_gpio->regbase;
|
2008-01-04 18:30:24 +01:00
|
|
|
continue;
|
|
|
|
}
|
2006-01-09 18:05:41 +01:00
|
|
|
|
2012-02-14 18:08:14 +01:00
|
|
|
n = find_first_bit(&isr, BITS_PER_LONG);
|
|
|
|
while (n < BITS_PER_LONG) {
|
|
|
|
generic_handle_irq(irq_find_mapping(at91_gpio->domain, n));
|
|
|
|
n = find_next_bit(&isr, BITS_PER_LONG, n + 1);
|
2006-01-09 18:05:41 +01:00
|
|
|
}
|
|
|
|
}
|
2012-05-25 14:11:51 +02:00
|
|
|
chained_irq_exit(chip, desc);
|
2006-01-09 18:05:41 +01:00
|
|
|
/* now it may re-trigger */
|
|
|
|
}
|
|
|
|
|
2006-09-27 14:23:00 +02:00
|
|
|
/*--------------------------------------------------------------------------*/
|
|
|
|
|
2007-11-23 16:09:10 +01:00
|
|
|
#ifdef CONFIG_DEBUG_FS
|
|
|
|
|
2010-07-20 19:18:51 +02:00
|
|
|
static void gpio_printf(struct seq_file *s, void __iomem *pio, unsigned mask)
|
|
|
|
{
|
|
|
|
char *trigger = NULL;
|
|
|
|
char *polarity = NULL;
|
|
|
|
|
|
|
|
if (__raw_readl(pio + PIO_IMR) & mask) {
|
|
|
|
if (!has_pio3() || !(__raw_readl(pio + PIO_AIMMR) & mask )) {
|
|
|
|
trigger = "edge";
|
|
|
|
polarity = "both";
|
|
|
|
} else {
|
|
|
|
if (__raw_readl(pio + PIO_ELSR) & mask) {
|
|
|
|
trigger = "level";
|
|
|
|
polarity = __raw_readl(pio + PIO_FRLHSR) & mask ?
|
|
|
|
"high" : "low";
|
|
|
|
} else {
|
|
|
|
trigger = "edge";
|
|
|
|
polarity = __raw_readl(pio + PIO_FRLHSR) & mask ?
|
|
|
|
"rising" : "falling";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
seq_printf(s, "IRQ:%s-%s\t", trigger, polarity);
|
|
|
|
} else {
|
|
|
|
seq_printf(s, "GPIO:%s\t\t",
|
|
|
|
__raw_readl(pio + PIO_PDSR) & mask ? "1" : "0");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-23 16:09:10 +01:00
|
|
|
static int at91_gpio_show(struct seq_file *s, void *unused)
|
|
|
|
{
|
|
|
|
int bank, j;
|
|
|
|
|
|
|
|
/* print heading */
|
|
|
|
seq_printf(s, "Pin\t");
|
|
|
|
for (bank = 0; bank < gpio_banks; bank++) {
|
2010-07-20 19:18:51 +02:00
|
|
|
seq_printf(s, "PIO%c\t\t", 'A' + bank);
|
2007-11-23 16:09:10 +01:00
|
|
|
};
|
|
|
|
seq_printf(s, "\n\n");
|
|
|
|
|
|
|
|
/* print pin status */
|
|
|
|
for (j = 0; j < 32; j++) {
|
|
|
|
seq_printf(s, "%i:\t", j);
|
|
|
|
|
|
|
|
for (bank = 0; bank < gpio_banks; bank++) {
|
2011-09-17 15:49:36 +02:00
|
|
|
unsigned pin = (32 * bank) + j;
|
2007-11-23 16:09:10 +01:00
|
|
|
void __iomem *pio = pin_to_controller(pin);
|
|
|
|
unsigned mask = pin_to_mask(pin);
|
|
|
|
|
|
|
|
if (__raw_readl(pio + PIO_PSR) & mask)
|
2010-07-20 19:18:51 +02:00
|
|
|
gpio_printf(s, pio, mask);
|
2007-11-23 16:09:10 +01:00
|
|
|
else
|
2010-07-20 19:18:51 +02:00
|
|
|
seq_printf(s, "%c\t\t",
|
|
|
|
peripheral_function(pio, mask));
|
2007-11-23 16:09:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
seq_printf(s, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int at91_gpio_open(struct inode *inode, struct file *file)
|
|
|
|
{
|
|
|
|
return single_open(file, at91_gpio_show, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct file_operations at91_gpio_operations = {
|
|
|
|
.open = at91_gpio_open,
|
|
|
|
.read = seq_read,
|
|
|
|
.llseek = seq_lseek,
|
|
|
|
.release = single_release,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int __init at91_gpio_debugfs_init(void)
|
|
|
|
{
|
|
|
|
/* /sys/kernel/debug/at91_gpio */
|
|
|
|
(void) debugfs_create_file("at91_gpio", S_IFREG | S_IRUGO, NULL, NULL, &at91_gpio_operations);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
postcore_initcall(at91_gpio_debugfs_init);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------------------*/
|
|
|
|
|
2012-02-14 18:08:14 +01:00
|
|
|
/*
|
|
|
|
* This lock class tells lockdep that GPIO irqs are in a different
|
|
|
|
* category than their parents, so it won't report false recursion.
|
|
|
|
*/
|
|
|
|
static struct lock_class_key gpio_lock_class;
|
|
|
|
|
2012-02-11 15:41:40 +01:00
|
|
|
/*
|
|
|
|
* irqdomain initialization: pile up irqdomains on top of AIC range
|
|
|
|
*/
|
|
|
|
static void __init at91_gpio_irqdomain(struct at91_gpio_chip *at91_gpio)
|
|
|
|
{
|
|
|
|
int irq_base;
|
|
|
|
|
|
|
|
irq_base = irq_alloc_descs(-1, 0, at91_gpio->chip.ngpio, 0);
|
|
|
|
if (irq_base < 0)
|
|
|
|
panic("at91_gpio.%d: error %d: couldn't allocate IRQ numbers.\n",
|
|
|
|
at91_gpio->pioc_idx, irq_base);
|
2012-02-14 18:08:14 +01:00
|
|
|
at91_gpio->domain = irq_domain_add_legacy(NULL, at91_gpio->chip.ngpio,
|
2012-02-11 15:41:40 +01:00
|
|
|
irq_base, 0,
|
|
|
|
&irq_domain_simple_ops, NULL);
|
|
|
|
if (!at91_gpio->domain)
|
|
|
|
panic("at91_gpio.%d: couldn't allocate irq domain.\n",
|
|
|
|
at91_gpio->pioc_idx);
|
|
|
|
}
|
|
|
|
|
2006-09-27 14:23:00 +02:00
|
|
|
/*
|
|
|
|
* Called from the processor-specific init to enable GPIO interrupt support.
|
|
|
|
*/
|
|
|
|
void __init at91_gpio_irq_setup(void)
|
2006-01-09 18:05:41 +01:00
|
|
|
{
|
2012-02-11 15:41:40 +01:00
|
|
|
unsigned pioc;
|
|
|
|
int gpio_irqnbr = 0;
|
2009-02-10 21:02:08 +01:00
|
|
|
struct at91_gpio_chip *this, *prev;
|
2006-01-09 18:05:41 +01:00
|
|
|
|
2010-07-20 19:18:51 +02:00
|
|
|
/* Setup proper .irq_set_type function */
|
|
|
|
if (has_pio3())
|
|
|
|
gpio_irqchip.irq_set_type = alt_gpio_irq_type;
|
|
|
|
else
|
|
|
|
gpio_irqchip.irq_set_type = gpio_irq_type;
|
|
|
|
|
2011-09-17 15:49:36 +02:00
|
|
|
for (pioc = 0, this = gpio_chip, prev = NULL;
|
2008-01-04 18:30:24 +01:00
|
|
|
pioc++ < gpio_banks;
|
|
|
|
prev = this, this++) {
|
2012-02-14 18:08:14 +01:00
|
|
|
int offset;
|
2006-01-09 18:05:41 +01:00
|
|
|
|
2008-01-04 18:30:24 +01:00
|
|
|
__raw_writel(~0, this->regbase + PIO_IDR);
|
2006-01-09 18:05:41 +01:00
|
|
|
|
2012-02-11 15:41:40 +01:00
|
|
|
/* setup irq domain for this GPIO controller */
|
|
|
|
at91_gpio_irqdomain(this);
|
|
|
|
|
|
|
|
for (offset = 0; offset < this->chip.ngpio; offset++) {
|
|
|
|
unsigned int virq = irq_find_mapping(this->domain, offset);
|
|
|
|
irq_set_lockdep_class(virq, &gpio_lock_class);
|
2008-03-05 00:08:29 +01:00
|
|
|
|
2006-06-19 16:26:54 +02:00
|
|
|
/*
|
|
|
|
* Can use the "simple" and not "edge" handler since it's
|
2007-10-19 23:10:43 +02:00
|
|
|
* shorter, and the AIC handles interrupts sanely.
|
2006-06-19 16:26:54 +02:00
|
|
|
*/
|
2012-02-11 15:41:40 +01:00
|
|
|
irq_set_chip_and_handler(virq, &gpio_irqchip,
|
2011-03-24 13:35:09 +01:00
|
|
|
handle_simple_irq);
|
2012-02-11 15:41:40 +01:00
|
|
|
set_irq_flags(virq, IRQF_VALID);
|
|
|
|
irq_set_chip_data(virq, this);
|
|
|
|
|
|
|
|
gpio_irqnbr++;
|
2006-01-09 18:05:41 +01:00
|
|
|
}
|
|
|
|
|
2008-01-04 18:30:24 +01:00
|
|
|
/* The toplevel handler handles one bank of GPIOs, except
|
2012-02-11 15:28:08 +01:00
|
|
|
* on some SoC it can handles up to three...
|
|
|
|
* We only set up the handler for the first of the list.
|
2008-01-04 18:30:24 +01:00
|
|
|
*/
|
|
|
|
if (prev && prev->next == this)
|
|
|
|
continue;
|
|
|
|
|
2012-02-14 18:08:14 +01:00
|
|
|
this->pioc_virq = irq_create_mapping(NULL, this->pioc_hwirq);
|
|
|
|
irq_set_chip_data(this->pioc_virq, this);
|
|
|
|
irq_set_chained_handler(this->pioc_virq, gpio_irq_handler);
|
2006-01-09 18:05:41 +01:00
|
|
|
}
|
2012-02-11 15:41:40 +01:00
|
|
|
pr_info("AT91: %d gpio irqs in %d banks\n", gpio_irqnbr, gpio_banks);
|
2006-09-27 14:23:00 +02:00
|
|
|
}
|
|
|
|
|
2009-02-10 21:02:08 +01:00
|
|
|
/* gpiolib support */
|
2012-07-06 00:48:33 +02:00
|
|
|
static int at91_gpiolib_request(struct gpio_chip *chip, unsigned offset)
|
|
|
|
{
|
|
|
|
struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
|
|
|
|
void __iomem *pio = at91_gpio->regbase;
|
|
|
|
unsigned mask = 1 << offset;
|
|
|
|
|
|
|
|
__raw_writel(mask, pio + PIO_PER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-02-10 21:02:08 +01:00
|
|
|
static int at91_gpiolib_direction_input(struct gpio_chip *chip,
|
|
|
|
unsigned offset)
|
|
|
|
{
|
|
|
|
struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
|
|
|
|
void __iomem *pio = at91_gpio->regbase;
|
|
|
|
unsigned mask = 1 << offset;
|
|
|
|
|
|
|
|
__raw_writel(mask, pio + PIO_ODR);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int at91_gpiolib_direction_output(struct gpio_chip *chip,
|
|
|
|
unsigned offset, int val)
|
|
|
|
{
|
|
|
|
struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
|
|
|
|
void __iomem *pio = at91_gpio->regbase;
|
|
|
|
unsigned mask = 1 << offset;
|
|
|
|
|
|
|
|
__raw_writel(mask, pio + (val ? PIO_SODR : PIO_CODR));
|
|
|
|
__raw_writel(mask, pio + PIO_OER);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int at91_gpiolib_get(struct gpio_chip *chip, unsigned offset)
|
|
|
|
{
|
|
|
|
struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
|
|
|
|
void __iomem *pio = at91_gpio->regbase;
|
|
|
|
unsigned mask = 1 << offset;
|
|
|
|
u32 pdsr;
|
|
|
|
|
|
|
|
pdsr = __raw_readl(pio + PIO_PDSR);
|
|
|
|
return (pdsr & mask) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void at91_gpiolib_set(struct gpio_chip *chip, unsigned offset, int val)
|
|
|
|
{
|
|
|
|
struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
|
|
|
|
void __iomem *pio = at91_gpio->regbase;
|
|
|
|
unsigned mask = 1 << offset;
|
|
|
|
|
|
|
|
__raw_writel(mask, pio + (val ? PIO_SODR : PIO_CODR));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void at91_gpiolib_dbg_show(struct seq_file *s, struct gpio_chip *chip)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < chip->ngpio; i++) {
|
|
|
|
unsigned pin = chip->base + i;
|
|
|
|
void __iomem *pio = pin_to_controller(pin);
|
|
|
|
unsigned mask = pin_to_mask(pin);
|
|
|
|
const char *gpio_label;
|
|
|
|
|
|
|
|
gpio_label = gpiochip_is_requested(chip, i);
|
|
|
|
if (gpio_label) {
|
|
|
|
seq_printf(s, "[%s] GPIO%s%d: ",
|
|
|
|
gpio_label, chip->label, i);
|
|
|
|
if (__raw_readl(pio + PIO_PSR) & mask)
|
|
|
|
seq_printf(s, "[gpio] %s\n",
|
|
|
|
at91_get_gpio_value(pin) ?
|
|
|
|
"set" : "clear");
|
|
|
|
else
|
2010-07-20 19:18:51 +02:00
|
|
|
seq_printf(s, "[periph %c]\n",
|
|
|
|
peripheral_function(pio, mask));
|
2009-02-10 21:02:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-11 15:56:01 +01:00
|
|
|
static int at91_gpiolib_to_irq(struct gpio_chip *chip, unsigned offset)
|
|
|
|
{
|
|
|
|
struct at91_gpio_chip *at91_gpio = to_at91_gpio_chip(chip);
|
2012-02-14 18:08:14 +01:00
|
|
|
int virq;
|
|
|
|
|
|
|
|
if (offset < chip->ngpio)
|
|
|
|
virq = irq_create_mapping(at91_gpio->domain, offset);
|
|
|
|
else
|
|
|
|
virq = -ENXIO;
|
2012-02-11 15:56:01 +01:00
|
|
|
|
|
|
|
dev_dbg(chip->dev, "%s: request IRQ for GPIO %d, return %d\n",
|
|
|
|
chip->label, offset + chip->base, virq);
|
|
|
|
return virq;
|
|
|
|
}
|
|
|
|
|
2012-02-11 15:41:40 +01:00
|
|
|
static int __init at91_gpio_setup_clk(int idx)
|
|
|
|
{
|
|
|
|
struct at91_gpio_chip *at91_gpio = &gpio_chip[idx];
|
|
|
|
|
|
|
|
/* retreive PIO controller's clock */
|
|
|
|
at91_gpio->clock = clk_get_sys(NULL, at91_gpio->chip.label);
|
|
|
|
if (IS_ERR(at91_gpio->clock)) {
|
|
|
|
pr_err("at91_gpio.%d, failed to get clock, ignoring.\n", idx);
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (clk_prepare(at91_gpio->clock))
|
|
|
|
goto clk_prep_err;
|
|
|
|
|
|
|
|
/* enable PIO controller's clock */
|
|
|
|
if (clk_enable(at91_gpio->clock)) {
|
|
|
|
pr_err("at91_gpio.%d, failed to enable clock, ignoring.\n", idx);
|
|
|
|
goto clk_err;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
clk_err:
|
|
|
|
clk_unprepare(at91_gpio->clock);
|
|
|
|
clk_prep_err:
|
|
|
|
clk_put(at91_gpio->clock);
|
|
|
|
err:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __init at91_gpio_init_one(int idx, u32 regbase, int pioc_hwirq)
|
|
|
|
{
|
|
|
|
struct at91_gpio_chip *at91_gpio = &gpio_chip[idx];
|
|
|
|
|
2012-07-14 09:26:08 +02:00
|
|
|
at91_gpio->chip.base = idx * MAX_NB_GPIO_PER_BANK;
|
2012-02-11 15:41:40 +01:00
|
|
|
at91_gpio->pioc_hwirq = pioc_hwirq;
|
|
|
|
at91_gpio->pioc_idx = idx;
|
|
|
|
|
|
|
|
at91_gpio->regbase = ioremap(regbase, 512);
|
|
|
|
if (!at91_gpio->regbase) {
|
|
|
|
pr_err("at91_gpio.%d, failed to map registers, ignoring.\n", idx);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (at91_gpio_setup_clk(idx))
|
|
|
|
goto ioremap_err;
|
|
|
|
|
|
|
|
gpio_banks = max(gpio_banks, idx + 1);
|
|
|
|
return;
|
|
|
|
|
|
|
|
ioremap_err:
|
|
|
|
iounmap(at91_gpio->regbase);
|
|
|
|
}
|
|
|
|
|
2006-09-27 14:23:00 +02:00
|
|
|
/*
|
|
|
|
* Called from the processor-specific init to enable GPIO pin support.
|
|
|
|
*/
|
|
|
|
void __init at91_gpio_init(struct at91_gpio_bank *data, int nr_banks)
|
|
|
|
{
|
2012-02-11 15:41:40 +01:00
|
|
|
unsigned i;
|
2009-02-10 21:02:08 +01:00
|
|
|
struct at91_gpio_chip *at91_gpio, *last = NULL;
|
2008-01-04 18:30:24 +01:00
|
|
|
|
2006-09-27 14:23:00 +02:00
|
|
|
BUG_ON(nr_banks > MAX_GPIO_BANKS);
|
|
|
|
|
2012-07-12 17:35:02 +02:00
|
|
|
if (of_have_populated_dt())
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < nr_banks; i++)
|
|
|
|
at91_gpio_init_one(i, data[i].regbase, data[i].id);
|
2008-01-04 18:30:24 +01:00
|
|
|
|
2012-02-11 15:41:40 +01:00
|
|
|
for (i = 0; i < gpio_banks; i++) {
|
2009-02-10 21:02:08 +01:00
|
|
|
at91_gpio = &gpio_chip[i];
|
|
|
|
|
2012-02-11 15:28:08 +01:00
|
|
|
/*
|
|
|
|
* GPIO controller are grouped on some SoC:
|
|
|
|
* PIOC, PIOD and PIOE can share the same IRQ line
|
|
|
|
*/
|
|
|
|
if (last && last->pioc_hwirq == at91_gpio->pioc_hwirq)
|
2009-02-10 21:02:08 +01:00
|
|
|
last->next = at91_gpio;
|
|
|
|
last = at91_gpio;
|
|
|
|
|
|
|
|
gpiochip_add(&at91_gpio->chip);
|
2008-01-04 18:30:24 +01:00
|
|
|
}
|
2006-01-09 18:05:41 +01:00
|
|
|
}
|