blob: 02de5b609ba5327c8588e91e0fbb9ca9f29f280a [file] [log] [blame]
Markus Brunnerdfc5ed22007-08-20 08:58:12 +09001/*
2 * include/asm-sh/gpio.h
3 *
Magnus Damm2967dab2008-10-08 20:41:43 +09004 * Generic GPIO API and pinmux table support for SuperH.
Markus Brunnerdfc5ed22007-08-20 08:58:12 +09005 *
Magnus Damm2967dab2008-10-08 20:41:43 +09006 * Copyright (c) 2008 Magnus Damm
Markus Brunnerdfc5ed22007-08-20 08:58:12 +09007 *
8 * This file is subject to the terms and conditions of the GNU General Public
9 * License. See the file "COPYING" in the main directory of this archive
10 * for more details.
11 */
12#ifndef __ASM_SH_GPIO_H
13#define __ASM_SH_GPIO_H
14
Paul Mundt55010932008-10-21 17:48:40 +090015#include <linux/errno.h>
16
Markus Brunnerdfc5ed22007-08-20 08:58:12 +090017#if defined(CONFIG_CPU_SH3)
Paul Mundtf15cbe62008-07-29 08:09:44 +090018#include <cpu/gpio.h>
Markus Brunnerdfc5ed22007-08-20 08:58:12 +090019#endif
20
Magnus Damm2967dab2008-10-08 20:41:43 +090021typedef unsigned short pinmux_enum_t;
22typedef unsigned char pinmux_flag_t;
23
24#define PINMUX_TYPE_NONE 0
25#define PINMUX_TYPE_FUNCTION 1
26#define PINMUX_TYPE_GPIO 2
27#define PINMUX_TYPE_OUTPUT 3
28#define PINMUX_TYPE_INPUT 4
29#define PINMUX_TYPE_INPUT_PULLUP 5
30#define PINMUX_TYPE_INPUT_PULLDOWN 6
31
32#define PINMUX_FLAG_TYPE (0x7)
33#define PINMUX_FLAG_WANT_PULLUP (1 << 3)
34#define PINMUX_FLAG_WANT_PULLDOWN (1 << 4)
35
36struct pinmux_gpio {
37 pinmux_enum_t enum_id;
38 pinmux_flag_t flags;
39};
40
41#define PINMUX_GPIO(gpio, data_or_mark) [gpio] = { data_or_mark }
42#define PINMUX_DATA(data_or_mark, ids...) data_or_mark, ids, 0
43
44struct pinmux_cfg_reg {
45 unsigned long reg, reg_width, field_width;
46 unsigned long *cnt;
47 pinmux_enum_t *enum_ids;
48};
49
50#define PINMUX_CFG_REG(name, r, r_width, f_width) \
51 .reg = r, .reg_width = r_width, .field_width = f_width, \
52 .cnt = (unsigned long [r_width / f_width]) {}, \
53 .enum_ids = (pinmux_enum_t [(r_width / f_width) * (1 << f_width)]) \
54
55struct pinmux_data_reg {
56 unsigned long reg, reg_width;
57 pinmux_enum_t *enum_ids;
58};
59
60#define PINMUX_DATA_REG(name, r, r_width) \
61 .reg = r, .reg_width = r_width, \
62 .enum_ids = (pinmux_enum_t [r_width]) \
63
64struct pinmux_range {
65 pinmux_enum_t begin;
66 pinmux_enum_t end;
67};
68
69struct pinmux_info {
70 char *name;
71 pinmux_enum_t reserved_id;
72 struct pinmux_range data;
73 struct pinmux_range input;
74 struct pinmux_range input_pd;
75 struct pinmux_range input_pu;
76 struct pinmux_range output;
77 struct pinmux_range mark;
78 struct pinmux_range function;
79
80 unsigned first_gpio, last_gpio;
81
82 struct pinmux_gpio *gpios;
83 struct pinmux_cfg_reg *cfg_regs;
84 struct pinmux_data_reg *data_regs;
85
86 pinmux_enum_t *gpio_data;
87 unsigned int gpio_data_size;
88
89 unsigned long *gpio_in_use;
90};
91
92int register_pinmux(struct pinmux_info *pip);
93
94int __gpio_request(unsigned gpio);
95static inline int gpio_request(unsigned gpio, const char *label)
96{
97 return __gpio_request(gpio);
98}
99void gpio_free(unsigned gpio);
100int gpio_direction_input(unsigned gpio);
101int gpio_direction_output(unsigned gpio, int value);
102int gpio_get_value(unsigned gpio);
103void gpio_set_value(unsigned gpio, int value);
Paul Mundt10bfc6e2008-10-21 14:27:05 +0900104
Paul Mundt55010932008-10-21 17:48:40 +0900105/* IRQ modes are unspported */
106static inline int gpio_to_irq(unsigned gpio)
107{
108 WARN_ON(1);
109 return -EINVAL;
110}
111
112static inline int irq_to_gpio(unsigned irq)
113{
114 WARN_ON(1);
115 return -EINVAL;
116}
117
Paul Mundt10bfc6e2008-10-21 14:27:05 +0900118#include <asm-generic/gpio.h>
Magnus Damm2967dab2008-10-08 20:41:43 +0900119
Markus Brunnerdfc5ed22007-08-20 08:58:12 +0900120#endif /* __ASM_SH_GPIO_H */