summaryrefslogtreecommitdiffstats
path: root/target/linux/adm5120/files/drivers/i2c/busses/i2c-gpio-custom.c
blob: a019fafcc8c66f168bdd8be32e6622113534d54a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
 *  Custom GPIO-based I2C driver
 *
 *  Copyright (C) 2007 Gabor Juhos <juhosg at openwrt.org>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License version 2 as
 *  published by the Free Software Foundation.
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/platform_device.h>

#include <linux/i2c-gpio.h>

#define DRV_NAME	"i2c-gpio-custom"
#define DRV_DESC	"Custom GPIO I2C device driver"

static unsigned int sda = CONFIG_I2C_GPIO_CUSTOM_SDA;
static unsigned int scl = CONFIG_I2C_GPIO_CUSTOM_SCL;
static int id = CONFIG_I2C_GPIO_CUSTOM_DEVICE_ID;

module_param(sda, uint, S_IRUGO);
MODULE_PARM_DESC(sda, "GPIO pin for SDA");

module_param(scl, uint, S_IRUGO);
MODULE_PARM_DESC(scl, "GPIO pin for SCL");

module_param(id, int, S_IRUGO);
MODULE_PARM_DESC(id, "device id of the i2c-gpio device");

static struct i2c_gpio_platform_data i2c_data;
static struct platform_device i2c_device;

static void i2c_gpio_custom_release(struct platform_device *pdev)
{
	/* nothing to do */
}

static int __init i2c_gpio_custom_init(void)
{
	int err;

	i2c_data.sda_pin = sda;
	i2c_data.scl_pin = scl;

	i2c_device.name	= "i2c-gpio";
	i2c_device.id	= id;

	i2c_device.dev.platform_data	= &i2c_data,
	i2c_device.dev.release		= i2c_gpio_custom_release,

	err = platform_device_register(&i2c_device);

	return err;
}

static void __exit i2c_gpio_custom_exit(void)
{
	platform_device_unregister(&i2c_device);
}

module_init(i2c_gpio_custom_init);
module_exit(i2c_gpio_custom_exit);

MODULE_LICENSE("GPL v2");
MODULE_AUTHOR("Gabor Juhos <juhosg at openwrt.org >");
MODULE_DESCRIPTION(DRV_DESC);