27 #include <linux/module.h>
33 #define GPIO_BANK(x) ((x) >> 5)
34 #define GPIO_PORT(x) (((x) >> 3) & 0x3)
35 #define GPIO_BIT(x) ((x) & 0x7)
37 #define GPIO_REG(x) (GPIO_BANK(x) * tegra_gpio_bank_stride + \
40 #define GPIO_CNF(x) (GPIO_REG(x) + 0x00)
41 #define GPIO_OE(x) (GPIO_REG(x) + 0x10)
42 #define GPIO_OUT(x) (GPIO_REG(x) + 0X20)
43 #define GPIO_IN(x) (GPIO_REG(x) + 0x30)
44 #define GPIO_INT_STA(x) (GPIO_REG(x) + 0x40)
45 #define GPIO_INT_ENB(x) (GPIO_REG(x) + 0x50)
46 #define GPIO_INT_LVL(x) (GPIO_REG(x) + 0x60)
47 #define GPIO_INT_CLR(x) (GPIO_REG(x) + 0x70)
49 #define GPIO_MSK_CNF(x) (GPIO_REG(x) + tegra_gpio_upper_offset + 0x00)
50 #define GPIO_MSK_OE(x) (GPIO_REG(x) + tegra_gpio_upper_offset + 0x10)
51 #define GPIO_MSK_OUT(x) (GPIO_REG(x) + tegra_gpio_upper_offset + 0X20)
52 #define GPIO_MSK_INT_STA(x) (GPIO_REG(x) + tegra_gpio_upper_offset + 0x40)
53 #define GPIO_MSK_INT_ENB(x) (GPIO_REG(x) + tegra_gpio_upper_offset + 0x50)
54 #define GPIO_MSK_INT_LVL(x) (GPIO_REG(x) + tegra_gpio_upper_offset + 0x60)
56 #define GPIO_INT_LVL_MASK 0x010101
57 #define GPIO_INT_LVL_EDGE_RISING 0x000101
58 #define GPIO_INT_LVL_EDGE_FALLING 0x000100
59 #define GPIO_INT_LVL_EDGE_BOTH 0x010100
60 #define GPIO_INT_LVL_LEVEL_HIGH 0x000001
61 #define GPIO_INT_LVL_LEVEL_LOW 0x000000
78 static u32 tegra_gpio_bank_count;
79 static u32 tegra_gpio_bank_stride;
80 static u32 tegra_gpio_upper_offset;
88 static inline u32 tegra_gpio_readl(
u32 reg)
93 static int tegra_gpio_compose(
int bank,
int port,
int bit)
95 return (bank << 5) | ((port & 0x3) << 3) | (bit & 0x7);
105 tegra_gpio_writel(val, reg);
108 static void tegra_gpio_enable(
int gpio)
114 static void tegra_gpio_disable(
int gpio)
128 tegra_gpio_disable(offset);
131 static void tegra_gpio_set(
struct gpio_chip *
chip,
unsigned offset,
int value)
133 tegra_gpio_mask_write(
GPIO_MSK_OUT(offset), offset, value);
136 static int tegra_gpio_get(
struct gpio_chip *chip,
unsigned offset)
141 static int tegra_gpio_direction_input(
struct gpio_chip *chip,
unsigned offset)
143 tegra_gpio_mask_write(
GPIO_MSK_OE(offset), offset, 0);
144 tegra_gpio_enable(offset);
148 static int tegra_gpio_direction_output(
struct gpio_chip *chip,
unsigned offset,
151 tegra_gpio_set(chip, offset, value);
152 tegra_gpio_mask_write(
GPIO_MSK_OE(offset), offset, 1);
153 tegra_gpio_enable(offset);
157 static int tegra_gpio_to_irq(
struct gpio_chip *chip,
unsigned offset)
162 static struct gpio_chip tegra_gpio_chip = {
163 .label =
"tegra-gpio",
166 .direction_input = tegra_gpio_direction_input,
167 .get = tegra_gpio_get,
168 .direction_output = tegra_gpio_direction_output,
169 .set = tegra_gpio_set,
170 .to_irq = tegra_gpio_to_irq,
174 static void tegra_gpio_irq_ack(
struct irq_data *
d)
181 static void tegra_gpio_irq_mask(
struct irq_data *d)
188 static void tegra_gpio_irq_unmask(
struct irq_data *d)
195 static int tegra_gpio_irq_set_type(
struct irq_data *d,
unsigned int type)
236 spin_unlock_irqrestore(&bank->
lvl_lock[port], flags);
239 tegra_gpio_enable(gpio);
249 static void tegra_gpio_irq_handler(
unsigned int irq,
struct irq_desc *
desc)
255 struct irq_chip *chip = irq_desc_get_chip(desc);
257 chained_irq_enter(chip, desc);
259 bank = irq_get_handler_data(irq);
261 for (port = 0; port < 4; port++) {
262 int gpio = tegra_gpio_compose(bank->
bank, port, 0);
263 unsigned long sta = tegra_gpio_readl(
GPIO_INT_STA(gpio)) &
274 if (lvl & (0x100 << pin)) {
276 chained_irq_exit(chip, desc);
284 chained_irq_exit(chip, desc);
289 void tegra_gpio_resume(
void)
297 for (b = 0; b < tegra_gpio_bank_count; b++) {
301 unsigned int gpio = (b<<5) | (p<<3);
302 tegra_gpio_writel(bank->cnf[p],
GPIO_CNF(gpio));
303 tegra_gpio_writel(bank->out[p],
GPIO_OUT(gpio));
304 tegra_gpio_writel(bank->oe[p],
GPIO_OE(gpio));
305 tegra_gpio_writel(bank->int_lvl[p],
GPIO_INT_LVL(gpio));
306 tegra_gpio_writel(bank->int_enb[p],
GPIO_INT_ENB(gpio));
313 void tegra_gpio_suspend(
void)
320 for (b = 0; b < tegra_gpio_bank_count; b++) {
324 unsigned int gpio = (b<<5) | (p<<3);
325 bank->cnf[
p] = tegra_gpio_readl(
GPIO_CNF(gpio));
326 bank->out[
p] = tegra_gpio_readl(
GPIO_OUT(gpio));
327 bank->oe[
p] = tegra_gpio_readl(
GPIO_OE(gpio));
335 static int tegra_gpio_wake_enable(
struct irq_data *d,
unsigned int enable)
342 static struct irq_chip tegra_gpio_irq_chip = {
344 .irq_ack = tegra_gpio_irq_ack,
345 .irq_mask = tegra_gpio_irq_mask,
346 .irq_unmask = tegra_gpio_irq_unmask,
347 .irq_set_type = tegra_gpio_irq_set_type,
349 .irq_set_wake = tegra_gpio_wake_enable,
360 .upper_offset = 0x800,
364 .bank_stride = 0x100,
365 .upper_offset = 0x80,
369 { .compatible =
"nvidia,tegra30-gpio", .data = &tegra30_gpio_config },
370 { .compatible =
"nvidia,tegra20-gpio", .data = &tegra20_gpio_config },
394 config = &tegra20_gpio_config;
403 tegra_gpio_bank_count++;
405 if (!tegra_gpio_bank_count) {
406 dev_err(&pdev->
dev,
"Missing IRQ resource\n");
410 tegra_gpio_chip.ngpio = tegra_gpio_bank_count * 32;
413 tegra_gpio_bank_count *
sizeof(*tegra_gpio_banks),
415 if (!tegra_gpio_banks) {
416 dev_err(&pdev->
dev,
"Couldn't allocate bank structure\n");
420 irq_base = irq_alloc_descs(-1, 0, tegra_gpio_chip.ngpio, 0);
422 dev_err(&pdev->
dev,
"Couldn't allocate IRQ numbers\n");
426 tegra_gpio_chip.ngpio, irq_base, 0,
429 for (i = 0; i < tegra_gpio_bank_count; i++) {
432 dev_err(&pdev->
dev,
"Missing IRQ resource\n");
436 bank = &tegra_gpio_banks[
i];
443 dev_err(&pdev->
dev,
"Missing MEM resource\n");
449 dev_err(&pdev->
dev,
"Couldn't ioremap regs\n");
453 for (i = 0; i < tegra_gpio_bank_count; i++) {
454 for (j = 0; j < 4; j++) {
455 int gpio = tegra_gpio_compose(i, j, 0);
460 #ifdef CONFIG_OF_GPIO
461 tegra_gpio_chip.of_node = pdev->
dev.of_node;
466 for (gpio = 0; gpio < tegra_gpio_chip.ngpio; gpio++) {
470 bank = &tegra_gpio_banks[
GPIO_BANK(gpio)];
472 irq_set_lockdep_class(irq, &gpio_lock_class);
474 irq_set_chip_and_handler(irq, &tegra_gpio_irq_chip,
479 for (i = 0; i < tegra_gpio_bank_count; i++) {
480 bank = &tegra_gpio_banks[
i];
482 irq_set_chained_handler(bank->
irq, tegra_gpio_irq_handler);
485 for (j = 0; j < 4; j++)
494 .name =
"tegra-gpio",
496 .of_match_table = tegra_gpio_of_match,
498 .probe = tegra_gpio_probe,
501 static int __init tegra_gpio_init(
void)
507 #ifdef CONFIG_DEBUG_FS
517 for (i = 0; i < tegra_gpio_bank_count; i++) {
518 for (j = 0; j < 4; j++) {
519 int gpio = tegra_gpio_compose(i, j, 0);
521 "%d:%d %02x %02x %02x %02x %02x %02x %06x\n",
524 tegra_gpio_readl(
GPIO_OE(gpio)),
526 tegra_gpio_readl(
GPIO_IN(gpio)),
541 .
open = dbg_gpio_open,
547 static int __init tegra_gpio_debuginit(
void)