Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 235261
b: refs/heads/master
c: 632095e
h: refs/heads/master
i:
  235259: 0e600be
v: v3
  • Loading branch information
Olof Johansson committed Feb 23, 2011
1 parent 551415e commit f96dca2
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 38376866a1fe5b1e6d9510ec4913c2b461f456f3
refs/heads/master: 632095ea15db51d73d3d084ee18620d3ac1cb040
14 changes: 14 additions & 0 deletions trunk/arch/arm/mach-tegra/gpio.c
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,20 @@ static int __init tegra_gpio_init(void)

postcore_initcall(tegra_gpio_init);

void __init tegra_gpio_config(struct tegra_gpio_table *table, int num)
{
int i;

for (i = 0; i < num; i++) {
int gpio = table[i].gpio;

if (table[i].enable)
tegra_gpio_enable(gpio);
else
tegra_gpio_disable(gpio);
}
}

#ifdef CONFIG_DEBUG_FS

#include <linux/debugfs.h>
Expand Down
7 changes: 7 additions & 0 deletions trunk/arch/arm/mach-tegra/include/mach/gpio.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#ifndef __MACH_TEGRA_GPIO_H
#define __MACH_TEGRA_GPIO_H

#include <linux/init.h>
#include <mach/irqs.h>

#define TEGRA_NR_GPIOS INT_GPIO_NR
Expand Down Expand Up @@ -47,6 +48,12 @@ static inline int irq_to_gpio(unsigned int irq)
return -EINVAL;
}

struct tegra_gpio_table {
int gpio; /* GPIO number */
bool enable; /* Enable for GPIO at init? */
};

void tegra_gpio_config(struct tegra_gpio_table *table, int num);
void tegra_gpio_enable(int gpio);
void tegra_gpio_disable(int gpio);

Expand Down

0 comments on commit f96dca2

Please sign in to comment.