2 * GPIO interface for Intel Poulsbo SCH
4 * Copyright (c) 2010 CompuLab Ltd
5 * Author: Denis Turischev <denis@compulab.co.il>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License 2 as published
9 * by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; see the file COPYING. If not, write to
18 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
21 #include <linux/init.h>
22 #include <linux/kernel.h>
23 #include <linux/module.h>
25 #include <linux/errno.h>
26 #include <linux/acpi.h>
27 #include <linux/platform_device.h>
28 #include <linux/pci_ids.h>
30 #include <linux/gpio.h>
32 static DEFINE_SPINLOCK(gpio_lock
);
42 static unsigned short gpio_ba
;
44 static int sch_gpio_core_direction_in(struct gpio_chip
*gc
, unsigned gpio_num
)
47 unsigned short offset
, bit
;
49 spin_lock(&gpio_lock
);
51 offset
= CGIO
+ gpio_num
/ 8;
54 curr_dirs
= inb(gpio_ba
+ offset
);
56 if (!(curr_dirs
& (1 << bit
)))
57 outb(curr_dirs
| (1 << bit
), gpio_ba
+ offset
);
59 spin_unlock(&gpio_lock
);
63 static int sch_gpio_core_get(struct gpio_chip
*gc
, unsigned gpio_num
)
66 unsigned short offset
, bit
;
68 offset
= CGLV
+ gpio_num
/ 8;
71 res
= !!(inb(gpio_ba
+ offset
) & (1 << bit
));
75 static void sch_gpio_core_set(struct gpio_chip
*gc
, unsigned gpio_num
, int val
)
78 unsigned short offset
, bit
;
80 spin_lock(&gpio_lock
);
82 offset
= CGLV
+ gpio_num
/ 8;
85 curr_vals
= inb(gpio_ba
+ offset
);
88 outb(curr_vals
| (1 << bit
), gpio_ba
+ offset
);
90 outb((curr_vals
& ~(1 << bit
)), gpio_ba
+ offset
);
91 spin_unlock(&gpio_lock
);
94 static int sch_gpio_core_direction_out(struct gpio_chip
*gc
,
95 unsigned gpio_num
, int val
)
98 unsigned short offset
, bit
;
100 spin_lock(&gpio_lock
);
102 offset
= CGIO
+ gpio_num
/ 8;
105 curr_dirs
= inb(gpio_ba
+ offset
);
106 if (curr_dirs
& (1 << bit
))
107 outb(curr_dirs
& ~(1 << bit
), gpio_ba
+ offset
);
109 spin_unlock(&gpio_lock
);
112 * according to the datasheet, writing to the level register has no
113 * effect when GPIO is programmed as input.
114 * Actually the the level register is read-only when configured as input.
115 * Thus presetting the output level before switching to output is _NOT_ possible.
116 * Hence we set the level after configuring the GPIO as output.
117 * But we cannot prevent a short low pulse if direction is set to high
118 * and an external pull-up is connected.
120 sch_gpio_core_set(gc
, gpio_num
, val
);
124 static struct gpio_chip sch_gpio_core
= {
125 .label
= "sch_gpio_core",
126 .owner
= THIS_MODULE
,
127 .direction_input
= sch_gpio_core_direction_in
,
128 .get
= sch_gpio_core_get
,
129 .direction_output
= sch_gpio_core_direction_out
,
130 .set
= sch_gpio_core_set
,
133 static int sch_gpio_resume_direction_in(struct gpio_chip
*gc
,
137 unsigned short offset
, bit
;
139 spin_lock(&gpio_lock
);
141 offset
= RGIO
+ gpio_num
/ 8;
144 curr_dirs
= inb(gpio_ba
+ offset
);
146 if (!(curr_dirs
& (1 << bit
)))
147 outb(curr_dirs
| (1 << bit
), gpio_ba
+ offset
);
149 spin_unlock(&gpio_lock
);
153 static int sch_gpio_resume_get(struct gpio_chip
*gc
, unsigned gpio_num
)
155 unsigned short offset
, bit
;
157 offset
= RGLV
+ gpio_num
/ 8;
160 return !!(inb(gpio_ba
+ offset
) & (1 << bit
));
163 static void sch_gpio_resume_set(struct gpio_chip
*gc
,
164 unsigned gpio_num
, int val
)
167 unsigned short offset
, bit
;
169 spin_lock(&gpio_lock
);
171 offset
= RGLV
+ gpio_num
/ 8;
174 curr_vals
= inb(gpio_ba
+ offset
);
177 outb(curr_vals
| (1 << bit
), gpio_ba
+ offset
);
179 outb((curr_vals
& ~(1 << bit
)), gpio_ba
+ offset
);
181 spin_unlock(&gpio_lock
);
184 static int sch_gpio_resume_direction_out(struct gpio_chip
*gc
,
185 unsigned gpio_num
, int val
)
188 unsigned short offset
, bit
;
190 offset
= RGIO
+ gpio_num
/ 8;
193 spin_lock(&gpio_lock
);
195 curr_dirs
= inb(gpio_ba
+ offset
);
196 if (curr_dirs
& (1 << bit
))
197 outb(curr_dirs
& ~(1 << bit
), gpio_ba
+ offset
);
199 spin_unlock(&gpio_lock
);
202 * according to the datasheet, writing to the level register has no
203 * effect when GPIO is programmed as input.
204 * Actually the the level register is read-only when configured as input.
205 * Thus presetting the output level before switching to output is _NOT_ possible.
206 * Hence we set the level after configuring the GPIO as output.
207 * But we cannot prevent a short low pulse if direction is set to high
208 * and an external pull-up is connected.
210 sch_gpio_resume_set(gc
, gpio_num
, val
);
214 static struct gpio_chip sch_gpio_resume
= {
215 .label
= "sch_gpio_resume",
216 .owner
= THIS_MODULE
,
217 .direction_input
= sch_gpio_resume_direction_in
,
218 .get
= sch_gpio_resume_get
,
219 .direction_output
= sch_gpio_resume_direction_out
,
220 .set
= sch_gpio_resume_set
,
223 static int sch_gpio_probe(struct platform_device
*pdev
)
225 struct resource
*res
;
232 res
= platform_get_resource(pdev
, IORESOURCE_IO
, 0);
236 if (!request_region(res
->start
, resource_size(res
), pdev
->name
))
239 gpio_ba
= res
->start
;
242 case PCI_DEVICE_ID_INTEL_SCH_LPC
:
243 sch_gpio_core
.base
= 0;
244 sch_gpio_core
.ngpio
= 10;
245 sch_gpio_resume
.base
= 10;
246 sch_gpio_resume
.ngpio
= 4;
248 * GPIO[6:0] enabled by default
249 * GPIO7 is configured by the CMC as SLPIOVR
250 * Enable GPIO[9:8] core powered gpios explicitly
252 outb(0x3, gpio_ba
+ CGEN
+ 1);
254 * SUS_GPIO[2:0] enabled by default
255 * Enable SUS_GPIO3 resume powered gpio explicitly
257 outb(0x8, gpio_ba
+ RGEN
);
260 case PCI_DEVICE_ID_INTEL_ITC_LPC
:
261 sch_gpio_core
.base
= 0;
262 sch_gpio_core
.ngpio
= 5;
263 sch_gpio_resume
.base
= 5;
264 sch_gpio_resume
.ngpio
= 9;
267 case PCI_DEVICE_ID_INTEL_CENTERTON_ILB
:
268 sch_gpio_core
.base
= 0;
269 sch_gpio_core
.ngpio
= 21;
270 sch_gpio_resume
.base
= 21;
271 sch_gpio_resume
.ngpio
= 9;
276 goto err_sch_gpio_core
;
279 sch_gpio_core
.dev
= &pdev
->dev
;
280 sch_gpio_resume
.dev
= &pdev
->dev
;
282 err
= gpiochip_add(&sch_gpio_core
);
284 goto err_sch_gpio_core
;
286 err
= gpiochip_add(&sch_gpio_resume
);
288 goto err_sch_gpio_resume
;
293 gpiochip_remove(&sch_gpio_core
);
296 release_region(res
->start
, resource_size(res
));
302 static int sch_gpio_remove(struct platform_device
*pdev
)
304 struct resource
*res
;
307 gpiochip_remove(&sch_gpio_core
);
308 gpiochip_remove(&sch_gpio_resume
);
310 res
= platform_get_resource(pdev
, IORESOURCE_IO
, 0);
312 release_region(res
->start
, resource_size(res
));
319 static struct platform_driver sch_gpio_driver
= {
322 .owner
= THIS_MODULE
,
324 .probe
= sch_gpio_probe
,
325 .remove
= sch_gpio_remove
,
328 module_platform_driver(sch_gpio_driver
);
330 MODULE_AUTHOR("Denis Turischev <denis@compulab.co.il>");
331 MODULE_DESCRIPTION("GPIO interface for Intel Poulsbo SCH");
332 MODULE_LICENSE("GPL");
333 MODULE_ALIAS("platform:sch_gpio");