PM / sleep: Asynchronous threads for suspend_noirq
[linux/fpc-iii.git] / drivers / i2c / busses / scx200_i2c.c
blob8eadf0f47ad7a1a295a9b4486c3bd870ed756e38
1 /* linux/drivers/i2c/busses/scx200_i2c.c
3 Copyright (c) 2001,2002 Christer Weinigel <wingel@nano-system.com>
5 National Semiconductor SCx200 I2C bus on GPIO pins
7 Based on i2c-velleman.c Copyright (C) 1995-96, 2000 Simon G. Vogl
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
26 #include <linux/module.h>
27 #include <linux/errno.h>
28 #include <linux/kernel.h>
29 #include <linux/i2c.h>
30 #include <linux/i2c-algo-bit.h>
31 #include <linux/io.h>
33 #include <linux/scx200_gpio.h>
35 MODULE_AUTHOR("Christer Weinigel <wingel@nano-system.com>");
36 MODULE_DESCRIPTION("NatSemi SCx200 I2C Driver");
37 MODULE_LICENSE("GPL");
39 static int scl = CONFIG_SCx200_I2C_SCL;
40 static int sda = CONFIG_SCx200_I2C_SDA;
42 module_param(scl, int, 0);
43 MODULE_PARM_DESC(scl, "GPIO line for SCL");
44 module_param(sda, int, 0);
45 MODULE_PARM_DESC(sda, "GPIO line for SDA");
47 static void scx200_i2c_setscl(void *data, int state)
49 scx200_gpio_set(scl, state);
52 static void scx200_i2c_setsda(void *data, int state)
54 scx200_gpio_set(sda, state);
57 static int scx200_i2c_getscl(void *data)
59 return scx200_gpio_get(scl);
62 static int scx200_i2c_getsda(void *data)
64 return scx200_gpio_get(sda);
67 /* ------------------------------------------------------------------------
68 * Encapsulate the above functions in the correct operations structure.
69 * This is only done when more than one hardware adapter is supported.
72 static struct i2c_algo_bit_data scx200_i2c_data = {
73 .setsda = scx200_i2c_setsda,
74 .setscl = scx200_i2c_setscl,
75 .getsda = scx200_i2c_getsda,
76 .getscl = scx200_i2c_getscl,
77 .udelay = 10,
78 .timeout = HZ,
81 static struct i2c_adapter scx200_i2c_ops = {
82 .owner = THIS_MODULE,
83 .class = I2C_CLASS_HWMON | I2C_CLASS_SPD,
84 .algo_data = &scx200_i2c_data,
85 .name = "NatSemi SCx200 I2C",
88 static int scx200_i2c_init(void)
90 pr_debug("NatSemi SCx200 I2C Driver\n");
92 if (!scx200_gpio_present()) {
93 pr_err("no SCx200 gpio pins available\n");
94 return -ENODEV;
97 pr_debug("SCL=GPIO%02u, SDA=GPIO%02u\n", scl, sda);
99 if (scl == -1 || sda == -1 || scl == sda) {
100 pr_err("scl and sda must be specified\n");
101 return -EINVAL;
104 /* Configure GPIOs as open collector outputs */
105 scx200_gpio_configure(scl, ~2, 5);
106 scx200_gpio_configure(sda, ~2, 5);
108 if (i2c_bit_add_bus(&scx200_i2c_ops) < 0) {
109 pr_err("adapter %s registration failed\n", scx200_i2c_ops.name);
110 return -ENODEV;
113 return 0;
116 static void scx200_i2c_cleanup(void)
118 i2c_del_adapter(&scx200_i2c_ops);
121 module_init(scx200_i2c_init);
122 module_exit(scx200_i2c_cleanup);
125 Local variables:
126 compile-command: "make -k -C ../.. SUBDIRS=drivers/i2c modules"
127 c-basic-offset: 8
128 End: