2 * it8761_gpio.c - GPIO interface for IT8761E Super I/O chip
4 * Author: Denis Turischev <denis@compulab.co.il>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License 2 as published
8 * by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; see the file COPYING. If not, write to
17 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20 #include <linux/init.h>
21 #include <linux/kernel.h>
22 #include <linux/module.h>
24 #include <linux/errno.h>
25 #include <linux/ioport.h>
27 #include <linux/gpio.h>
29 #define SIO_CHIP_ID 0x8761
30 #define CHIP_ID_HIGH_BYTE 0x20
31 #define CHIP_ID_LOW_BYTE 0x21
33 static u8 ports
[2] = { 0x2e, 0x4e };
36 static DEFINE_SPINLOCK(sio_lock
);
38 #define GPIO_NAME "it8761-gpio"
39 #define GPIO_BA_HIGH_BYTE 0x60
40 #define GPIO_BA_LOW_BYTE 0x61
42 #define GPIO1X_IO 0xf0
43 #define GPIO2X_IO 0xf1
47 static u8
read_reg(u8 addr
, u8 port
)
53 static void write_reg(u8 data
, u8 addr
, u8 port
)
59 static void enter_conf_mode(u8 port
)
64 outb((port
== 0x2e) ? 0x55 : 0xaa, port
);
67 static void exit_conf_mode(u8 port
)
73 static void enter_gpio_mode(u8 port
)
75 write_reg(0x2, 0x7, port
);
78 static int it8761e_gpio_get(struct gpio_chip
*gc
, unsigned gpio_num
)
84 reg
= (gpio_num
>= 7) ? gpio_ba
+ 1 : gpio_ba
;
86 return !!(inb(reg
) & (1 << bit
));
89 static int it8761e_gpio_direction_in(struct gpio_chip
*gc
, unsigned gpio_num
)
95 io_reg
= (gpio_num
>= 7) ? GPIO2X_IO
: GPIO1X_IO
;
99 enter_conf_mode(port
);
100 enter_gpio_mode(port
);
102 curr_dirs
= read_reg(io_reg
, port
);
104 if (curr_dirs
& (1 << bit
))
105 write_reg(curr_dirs
& ~(1 << bit
), io_reg
, port
);
107 exit_conf_mode(port
);
109 spin_unlock(&sio_lock
);
113 static void it8761e_gpio_set(struct gpio_chip
*gc
,
114 unsigned gpio_num
, int val
)
120 reg
= (gpio_num
>= 7) ? gpio_ba
+ 1 : gpio_ba
;
122 spin_lock(&sio_lock
);
124 curr_vals
= inb(reg
);
126 outb(curr_vals
| (1 << bit
) , reg
);
128 outb(curr_vals
& ~(1 << bit
), reg
);
130 spin_unlock(&sio_lock
);
133 static int it8761e_gpio_direction_out(struct gpio_chip
*gc
,
134 unsigned gpio_num
, int val
)
136 u8 curr_dirs
, io_reg
, bit
;
139 io_reg
= (gpio_num
>= 7) ? GPIO2X_IO
: GPIO1X_IO
;
141 it8761e_gpio_set(gc
, gpio_num
, val
);
143 spin_lock(&sio_lock
);
145 enter_conf_mode(port
);
146 enter_gpio_mode(port
);
148 curr_dirs
= read_reg(io_reg
, port
);
150 if (!(curr_dirs
& (1 << bit
)))
151 write_reg(curr_dirs
| (1 << bit
), io_reg
, port
);
153 exit_conf_mode(port
);
155 spin_unlock(&sio_lock
);
159 static struct gpio_chip it8761e_gpio_chip
= {
161 .owner
= THIS_MODULE
,
162 .get
= it8761e_gpio_get
,
163 .direction_input
= it8761e_gpio_direction_in
,
164 .set
= it8761e_gpio_set
,
165 .direction_output
= it8761e_gpio_direction_out
,
168 static int __init
it8761e_gpio_init(void)
172 /* chip and port detection */
173 for (i
= 0; i
< ARRAY_SIZE(ports
); i
++) {
174 spin_lock(&sio_lock
);
175 enter_conf_mode(ports
[i
]);
177 id
= (read_reg(CHIP_ID_HIGH_BYTE
, ports
[i
]) << 8) +
178 read_reg(CHIP_ID_LOW_BYTE
, ports
[i
]);
180 exit_conf_mode(ports
[i
]);
181 spin_unlock(&sio_lock
);
183 if (id
== SIO_CHIP_ID
) {
192 /* fetch GPIO base address */
193 enter_conf_mode(port
);
194 enter_gpio_mode(port
);
195 gpio_ba
= (read_reg(GPIO_BA_HIGH_BYTE
, port
) << 8) +
196 read_reg(GPIO_BA_LOW_BYTE
, port
);
197 exit_conf_mode(port
);
199 if (!request_region(gpio_ba
, GPIO_IOSIZE
, GPIO_NAME
))
202 it8761e_gpio_chip
.base
= -1;
203 it8761e_gpio_chip
.ngpio
= 14;
205 err
= gpiochip_add(&it8761e_gpio_chip
);
207 goto gpiochip_add_err
;
212 release_region(gpio_ba
, GPIO_IOSIZE
);
217 static void __exit
it8761e_gpio_exit(void)
220 gpiochip_remove(&it8761e_gpio_chip
);
222 release_region(gpio_ba
, GPIO_IOSIZE
);
226 module_init(it8761e_gpio_init
);
227 module_exit(it8761e_gpio_exit
);
229 MODULE_AUTHOR("Denis Turischev <denis@compulab.co.il>");
230 MODULE_DESCRIPTION("GPIO interface for IT8761E Super I/O chip");
231 MODULE_LICENSE("GPL");