2 * Copyright 2009-2012 Freescale Semiconductor, Inc. All Rights Reserved.
4 * Author: Wu Guoxing <b39297@freescale.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
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.
17 #include <linux/kernel.h>
18 #include <linux/module.h>
19 #include <linux/slab.h>
20 #include <linux/i2c.h>
21 #include <linux/gpio.h>
23 #define GPIO_GROUP_NUM 2
24 #define GPIO_NUM_PER_GROUP 8
25 #define GPIO_NUM (GPIO_GROUP_NUM*GPIO_NUM_PER_GROUP)
28 struct i2c_client
*client
;
29 struct gpio_chip chip
;
32 static inline struct mc9s08dz60
*to_mc9s08dz60(struct gpio_chip
*gc
)
34 return container_of(gc
, struct mc9s08dz60
, chip
);
38 static void mc9s_gpio_to_reg_and_bit(int offset
, u8
*reg
, u8
*bit
)
40 *reg
= 0x20 + offset
/ GPIO_NUM_PER_GROUP
;
41 *bit
= offset
% GPIO_NUM_PER_GROUP
;
44 static int mc9s08dz60_get_value(struct gpio_chip
*gc
, unsigned offset
)
48 struct mc9s08dz60
*mc9s
= to_mc9s08dz60(gc
);
50 mc9s_gpio_to_reg_and_bit(offset
, ®
, &bit
);
51 value
= i2c_smbus_read_byte_data(mc9s
->client
, reg
);
53 return (value
>= 0) ? (value
>> bit
) & 0x1 : 0;
56 static int mc9s08dz60_set(struct mc9s08dz60
*mc9s
, unsigned offset
, int val
)
61 mc9s_gpio_to_reg_and_bit(offset
, ®
, &bit
);
62 value
= i2c_smbus_read_byte_data(mc9s
->client
, reg
);
69 return i2c_smbus_write_byte_data(mc9s
->client
, reg
, value
);
76 static void mc9s08dz60_set_value(struct gpio_chip
*gc
, unsigned offset
, int val
)
78 struct mc9s08dz60
*mc9s
= to_mc9s08dz60(gc
);
80 mc9s08dz60_set(mc9s
, offset
, val
);
83 static int mc9s08dz60_direction_output(struct gpio_chip
*gc
,
84 unsigned offset
, int val
)
86 struct mc9s08dz60
*mc9s
= to_mc9s08dz60(gc
);
88 return mc9s08dz60_set(mc9s
, offset
, val
);
91 static int mc9s08dz60_probe(struct i2c_client
*client
,
92 const struct i2c_device_id
*id
)
94 struct mc9s08dz60
*mc9s
;
96 mc9s
= devm_kzalloc(&client
->dev
, sizeof(*mc9s
), GFP_KERNEL
);
100 mc9s
->chip
.label
= client
->name
;
101 mc9s
->chip
.base
= -1;
102 mc9s
->chip
.dev
= &client
->dev
;
103 mc9s
->chip
.owner
= THIS_MODULE
;
104 mc9s
->chip
.ngpio
= GPIO_NUM
;
105 mc9s
->chip
.can_sleep
= 1;
106 mc9s
->chip
.get
= mc9s08dz60_get_value
;
107 mc9s
->chip
.set
= mc9s08dz60_set_value
;
108 mc9s
->chip
.direction_output
= mc9s08dz60_direction_output
;
109 mc9s
->client
= client
;
110 i2c_set_clientdata(client
, mc9s
);
112 return gpiochip_add(&mc9s
->chip
);
115 static int mc9s08dz60_remove(struct i2c_client
*client
)
117 struct mc9s08dz60
*mc9s
;
119 mc9s
= i2c_get_clientdata(client
);
121 return gpiochip_remove(&mc9s
->chip
);
124 static const struct i2c_device_id mc9s08dz60_id
[] = {
129 MODULE_DEVICE_TABLE(i2c
, mc9s08dz60_id
);
131 static struct i2c_driver mc9s08dz60_i2c_driver
= {
133 .owner
= THIS_MODULE
,
134 .name
= "mc9s08dz60",
136 .probe
= mc9s08dz60_probe
,
137 .remove
= mc9s08dz60_remove
,
138 .id_table
= mc9s08dz60_id
,
141 module_i2c_driver(mc9s08dz60_i2c_driver
);
143 MODULE_AUTHOR("Freescale Semiconductor, Inc. "
144 "Wu Guoxing <b39297@freescale.com>");
145 MODULE_DESCRIPTION("mc9s08dz60 gpio function on mx35 3ds board");
146 MODULE_LICENSE("GPL v2");