Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) ST-Ericsson SA 2010 |
| 3 | * |
| 4 | * License Terms: GNU General Public License, version 2 |
| 5 | * Author: Hanumath Prasad <hanumath.prasad@stericsson.com> for ST-Ericsson |
| 6 | * Author: Rabin Vincent <rabin.vincent@stericsson.com> for ST-Ericsson |
| 7 | */ |
| 8 | |
| 9 | #include <linux/module.h> |
| 10 | #include <linux/interrupt.h> |
| 11 | #include <linux/irq.h> |
Lee Jones | 15e27b1 | 2012-09-07 12:14:56 +0100 | [diff] [blame] | 12 | #include <linux/irqdomain.h> |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 13 | #include <linux/slab.h> |
| 14 | #include <linux/i2c.h> |
Lee Jones | a435ae1 | 2012-09-07 12:14:57 +0100 | [diff] [blame] | 15 | #include <linux/of.h> |
Linus Walleij | a381b13 | 2014-01-23 13:43:28 +0100 | [diff] [blame] | 16 | #include <linux/of_device.h> |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 17 | #include <linux/mfd/core.h> |
Sundar Iyer | c6eda6c | 2010-12-13 09:33:12 +0530 | [diff] [blame] | 18 | #include <linux/mfd/tc3589x.h> |
Linus Walleij | a381b13 | 2014-01-23 13:43:28 +0100 | [diff] [blame] | 19 | #include <linux/err.h> |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 20 | |
Linus Walleij | e64c1eb | 2013-10-18 11:51:45 +0200 | [diff] [blame] | 21 | /** |
| 22 | * enum tc3589x_version - indicates the TC3589x version |
| 23 | */ |
| 24 | enum tc3589x_version { |
| 25 | TC3589X_TC35890, |
| 26 | TC3589X_TC35892, |
| 27 | TC3589X_TC35893, |
| 28 | TC3589X_TC35894, |
| 29 | TC3589X_TC35895, |
| 30 | TC3589X_TC35896, |
| 31 | TC3589X_UNKNOWN, |
| 32 | }; |
| 33 | |
Sundar Iyer | 593e9d7 | 2010-12-13 09:33:18 +0530 | [diff] [blame] | 34 | #define TC3589x_CLKMODE_MODCTL_SLEEP 0x0 |
| 35 | #define TC3589x_CLKMODE_MODCTL_OPERATION (1 << 0) |
| 36 | |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 37 | /** |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 38 | * tc3589x_reg_read() - read a single TC3589x register |
| 39 | * @tc3589x: Device to read from |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 40 | * @reg: Register to read |
| 41 | */ |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 42 | int tc3589x_reg_read(struct tc3589x *tc3589x, u8 reg) |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 43 | { |
| 44 | int ret; |
| 45 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 46 | ret = i2c_smbus_read_byte_data(tc3589x->i2c, reg); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 47 | if (ret < 0) |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 48 | dev_err(tc3589x->dev, "failed to read reg %#x: %d\n", |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 49 | reg, ret); |
| 50 | |
| 51 | return ret; |
| 52 | } |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 53 | EXPORT_SYMBOL_GPL(tc3589x_reg_read); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 54 | |
| 55 | /** |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 56 | * tc3589x_reg_read() - write a single TC3589x register |
| 57 | * @tc3589x: Device to write to |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 58 | * @reg: Register to read |
| 59 | * @data: Value to write |
| 60 | */ |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 61 | int tc3589x_reg_write(struct tc3589x *tc3589x, u8 reg, u8 data) |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 62 | { |
| 63 | int ret; |
| 64 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 65 | ret = i2c_smbus_write_byte_data(tc3589x->i2c, reg, data); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 66 | if (ret < 0) |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 67 | dev_err(tc3589x->dev, "failed to write reg %#x: %d\n", |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 68 | reg, ret); |
| 69 | |
| 70 | return ret; |
| 71 | } |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 72 | EXPORT_SYMBOL_GPL(tc3589x_reg_write); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 73 | |
| 74 | /** |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 75 | * tc3589x_block_read() - read multiple TC3589x registers |
| 76 | * @tc3589x: Device to read from |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 77 | * @reg: First register |
| 78 | * @length: Number of registers |
| 79 | * @values: Buffer to write to |
| 80 | */ |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 81 | int tc3589x_block_read(struct tc3589x *tc3589x, u8 reg, u8 length, u8 *values) |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 82 | { |
| 83 | int ret; |
| 84 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 85 | ret = i2c_smbus_read_i2c_block_data(tc3589x->i2c, reg, length, values); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 86 | if (ret < 0) |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 87 | dev_err(tc3589x->dev, "failed to read regs %#x: %d\n", |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 88 | reg, ret); |
| 89 | |
| 90 | return ret; |
| 91 | } |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 92 | EXPORT_SYMBOL_GPL(tc3589x_block_read); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 93 | |
| 94 | /** |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 95 | * tc3589x_block_write() - write multiple TC3589x registers |
| 96 | * @tc3589x: Device to write to |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 97 | * @reg: First register |
| 98 | * @length: Number of registers |
| 99 | * @values: Values to write |
| 100 | */ |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 101 | int tc3589x_block_write(struct tc3589x *tc3589x, u8 reg, u8 length, |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 102 | const u8 *values) |
| 103 | { |
| 104 | int ret; |
| 105 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 106 | ret = i2c_smbus_write_i2c_block_data(tc3589x->i2c, reg, length, |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 107 | values); |
| 108 | if (ret < 0) |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 109 | dev_err(tc3589x->dev, "failed to write regs %#x: %d\n", |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 110 | reg, ret); |
| 111 | |
| 112 | return ret; |
| 113 | } |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 114 | EXPORT_SYMBOL_GPL(tc3589x_block_write); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 115 | |
| 116 | /** |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 117 | * tc3589x_set_bits() - set the value of a bitfield in a TC3589x register |
| 118 | * @tc3589x: Device to write to |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 119 | * @reg: Register to write |
| 120 | * @mask: Mask of bits to set |
| 121 | * @values: Value to set |
| 122 | */ |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 123 | int tc3589x_set_bits(struct tc3589x *tc3589x, u8 reg, u8 mask, u8 val) |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 124 | { |
| 125 | int ret; |
| 126 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 127 | mutex_lock(&tc3589x->lock); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 128 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 129 | ret = tc3589x_reg_read(tc3589x, reg); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 130 | if (ret < 0) |
| 131 | goto out; |
| 132 | |
| 133 | ret &= ~mask; |
| 134 | ret |= val; |
| 135 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 136 | ret = tc3589x_reg_write(tc3589x, reg, ret); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 137 | |
| 138 | out: |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 139 | mutex_unlock(&tc3589x->lock); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 140 | return ret; |
| 141 | } |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 142 | EXPORT_SYMBOL_GPL(tc3589x_set_bits); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 143 | |
| 144 | static struct resource gpio_resources[] = { |
| 145 | { |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 146 | .start = TC3589x_INT_GPIIRQ, |
| 147 | .end = TC3589x_INT_GPIIRQ, |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 148 | .flags = IORESOURCE_IRQ, |
| 149 | }, |
| 150 | }; |
| 151 | |
Sundar Iyer | 09c730a | 2010-12-21 15:53:31 +0530 | [diff] [blame] | 152 | static struct resource keypad_resources[] = { |
| 153 | { |
| 154 | .start = TC3589x_INT_KBDIRQ, |
| 155 | .end = TC3589x_INT_KBDIRQ, |
| 156 | .flags = IORESOURCE_IRQ, |
| 157 | }, |
| 158 | }; |
| 159 | |
Geert Uytterhoeven | afb580a | 2013-11-18 14:33:03 +0100 | [diff] [blame] | 160 | static const struct mfd_cell tc3589x_dev_gpio[] = { |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 161 | { |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 162 | .name = "tc3589x-gpio", |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 163 | .num_resources = ARRAY_SIZE(gpio_resources), |
| 164 | .resources = &gpio_resources[0], |
Linus Walleij | a381b13 | 2014-01-23 13:43:28 +0100 | [diff] [blame] | 165 | .of_compatible = "toshiba,tc3589x-gpio", |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 166 | }, |
| 167 | }; |
| 168 | |
Geert Uytterhoeven | afb580a | 2013-11-18 14:33:03 +0100 | [diff] [blame] | 169 | static const struct mfd_cell tc3589x_dev_keypad[] = { |
Sundar Iyer | 09c730a | 2010-12-21 15:53:31 +0530 | [diff] [blame] | 170 | { |
| 171 | .name = "tc3589x-keypad", |
| 172 | .num_resources = ARRAY_SIZE(keypad_resources), |
| 173 | .resources = &keypad_resources[0], |
Linus Walleij | a381b13 | 2014-01-23 13:43:28 +0100 | [diff] [blame] | 174 | .of_compatible = "toshiba,tc3589x-keypad", |
Sundar Iyer | 09c730a | 2010-12-21 15:53:31 +0530 | [diff] [blame] | 175 | }, |
| 176 | }; |
| 177 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 178 | static irqreturn_t tc3589x_irq(int irq, void *data) |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 179 | { |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 180 | struct tc3589x *tc3589x = data; |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 181 | int status; |
| 182 | |
Sundar Iyer | bd77efd | 2010-12-13 09:33:16 +0530 | [diff] [blame] | 183 | again: |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 184 | status = tc3589x_reg_read(tc3589x, TC3589x_IRQST); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 185 | if (status < 0) |
| 186 | return IRQ_NONE; |
| 187 | |
| 188 | while (status) { |
| 189 | int bit = __ffs(status); |
Lee Jones | 15e27b1 | 2012-09-07 12:14:56 +0100 | [diff] [blame] | 190 | int virq = irq_create_mapping(tc3589x->domain, bit); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 191 | |
Lee Jones | 15e27b1 | 2012-09-07 12:14:56 +0100 | [diff] [blame] | 192 | handle_nested_irq(virq); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 193 | status &= ~(1 << bit); |
| 194 | } |
| 195 | |
| 196 | /* |
| 197 | * A dummy read or write (to any register) appears to be necessary to |
| 198 | * have the last interrupt clear (for example, GPIO IC write) take |
Sundar Iyer | bd77efd | 2010-12-13 09:33:16 +0530 | [diff] [blame] | 199 | * effect. In such a case, recheck for any interrupt which is still |
| 200 | * pending. |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 201 | */ |
Sundar Iyer | bd77efd | 2010-12-13 09:33:16 +0530 | [diff] [blame] | 202 | status = tc3589x_reg_read(tc3589x, TC3589x_IRQST); |
| 203 | if (status) |
| 204 | goto again; |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 205 | |
| 206 | return IRQ_HANDLED; |
| 207 | } |
| 208 | |
Lee Jones | 15e27b1 | 2012-09-07 12:14:56 +0100 | [diff] [blame] | 209 | static int tc3589x_irq_map(struct irq_domain *d, unsigned int virq, |
| 210 | irq_hw_number_t hwirq) |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 211 | { |
Lee Jones | 15e27b1 | 2012-09-07 12:14:56 +0100 | [diff] [blame] | 212 | struct tc3589x *tc3589x = d->host_data; |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 213 | |
Lee Jones | 15e27b1 | 2012-09-07 12:14:56 +0100 | [diff] [blame] | 214 | irq_set_chip_data(virq, tc3589x); |
| 215 | irq_set_chip_and_handler(virq, &dummy_irq_chip, |
| 216 | handle_edge_irq); |
| 217 | irq_set_nested_thread(virq, 1); |
Lee Jones | 15e27b1 | 2012-09-07 12:14:56 +0100 | [diff] [blame] | 218 | irq_set_noprobe(virq); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 219 | |
| 220 | return 0; |
| 221 | } |
| 222 | |
Lee Jones | 15e27b1 | 2012-09-07 12:14:56 +0100 | [diff] [blame] | 223 | static void tc3589x_irq_unmap(struct irq_domain *d, unsigned int virq) |
| 224 | { |
Lee Jones | 15e27b1 | 2012-09-07 12:14:56 +0100 | [diff] [blame] | 225 | irq_set_chip_and_handler(virq, NULL, NULL); |
| 226 | irq_set_chip_data(virq, NULL); |
| 227 | } |
| 228 | |
Krzysztof Kozlowski | 7ce7b26 | 2015-04-27 21:54:13 +0900 | [diff] [blame] | 229 | static const struct irq_domain_ops tc3589x_irq_ops = { |
Linus Walleij | 1f0529b | 2013-01-02 14:40:14 +0100 | [diff] [blame] | 230 | .map = tc3589x_irq_map, |
Lee Jones | 15e27b1 | 2012-09-07 12:14:56 +0100 | [diff] [blame] | 231 | .unmap = tc3589x_irq_unmap, |
Linus Walleij | 627918e | 2014-06-10 14:31:32 +0200 | [diff] [blame] | 232 | .xlate = irq_domain_xlate_onecell, |
Lee Jones | 15e27b1 | 2012-09-07 12:14:56 +0100 | [diff] [blame] | 233 | }; |
| 234 | |
Lee Jones | a435ae1 | 2012-09-07 12:14:57 +0100 | [diff] [blame] | 235 | static int tc3589x_irq_init(struct tc3589x *tc3589x, struct device_node *np) |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 236 | { |
Linus Walleij | 1f0529b | 2013-01-02 14:40:14 +0100 | [diff] [blame] | 237 | tc3589x->domain = irq_domain_add_simple( |
Linus Walleij | 90f2d0f | 2014-10-28 11:06:56 +0100 | [diff] [blame] | 238 | np, TC3589x_NR_INTERNAL_IRQS, 0, |
Linus Walleij | 1f0529b | 2013-01-02 14:40:14 +0100 | [diff] [blame] | 239 | &tc3589x_irq_ops, tc3589x); |
Lee Jones | 15e27b1 | 2012-09-07 12:14:56 +0100 | [diff] [blame] | 240 | |
| 241 | if (!tc3589x->domain) { |
| 242 | dev_err(tc3589x->dev, "Failed to create irqdomain\n"); |
| 243 | return -ENOSYS; |
| 244 | } |
| 245 | |
| 246 | return 0; |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 247 | } |
| 248 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 249 | static int tc3589x_chip_init(struct tc3589x *tc3589x) |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 250 | { |
| 251 | int manf, ver, ret; |
| 252 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 253 | manf = tc3589x_reg_read(tc3589x, TC3589x_MANFCODE); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 254 | if (manf < 0) |
| 255 | return manf; |
| 256 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 257 | ver = tc3589x_reg_read(tc3589x, TC3589x_VERSION); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 258 | if (ver < 0) |
| 259 | return ver; |
| 260 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 261 | if (manf != TC3589x_MANFCODE_MAGIC) { |
| 262 | dev_err(tc3589x->dev, "unknown manufacturer: %#x\n", manf); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 263 | return -EINVAL; |
| 264 | } |
| 265 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 266 | dev_info(tc3589x->dev, "manufacturer: %#x, version: %#x\n", manf, ver); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 267 | |
Sundar Iyer | 523bc38 | 2010-12-13 09:33:17 +0530 | [diff] [blame] | 268 | /* |
| 269 | * Put everything except the IRQ module into reset; |
| 270 | * also spare the GPIO module for any pin initialization |
| 271 | * done during pre-kernel boot |
| 272 | */ |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 273 | ret = tc3589x_reg_write(tc3589x, TC3589x_RSTCTRL, |
| 274 | TC3589x_RSTCTRL_TIMRST |
| 275 | | TC3589x_RSTCTRL_ROTRST |
Sundar Iyer | 523bc38 | 2010-12-13 09:33:17 +0530 | [diff] [blame] | 276 | | TC3589x_RSTCTRL_KBDRST); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 277 | if (ret < 0) |
| 278 | return ret; |
| 279 | |
| 280 | /* Clear the reset interrupt. */ |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 281 | return tc3589x_reg_write(tc3589x, TC3589x_RSTINTCLR, 0x1); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 282 | } |
| 283 | |
Bill Pemberton | f791be4 | 2012-11-19 13:23:04 -0500 | [diff] [blame] | 284 | static int tc3589x_device_init(struct tc3589x *tc3589x) |
Sundar Iyer | 611b759 | 2010-12-13 09:33:15 +0530 | [diff] [blame] | 285 | { |
| 286 | int ret = 0; |
| 287 | unsigned int blocks = tc3589x->pdata->block; |
| 288 | |
| 289 | if (blocks & TC3589x_BLOCK_GPIO) { |
| 290 | ret = mfd_add_devices(tc3589x->dev, -1, tc3589x_dev_gpio, |
Mark Brown | 55692af | 2012-09-11 15:16:36 +0800 | [diff] [blame] | 291 | ARRAY_SIZE(tc3589x_dev_gpio), NULL, |
Linus Walleij | 90f2d0f | 2014-10-28 11:06:56 +0100 | [diff] [blame] | 292 | 0, tc3589x->domain); |
Sundar Iyer | 611b759 | 2010-12-13 09:33:15 +0530 | [diff] [blame] | 293 | if (ret) { |
| 294 | dev_err(tc3589x->dev, "failed to add gpio child\n"); |
| 295 | return ret; |
| 296 | } |
| 297 | dev_info(tc3589x->dev, "added gpio block\n"); |
| 298 | } |
| 299 | |
Sundar Iyer | 09c730a | 2010-12-21 15:53:31 +0530 | [diff] [blame] | 300 | if (blocks & TC3589x_BLOCK_KEYPAD) { |
| 301 | ret = mfd_add_devices(tc3589x->dev, -1, tc3589x_dev_keypad, |
Mark Brown | 55692af | 2012-09-11 15:16:36 +0800 | [diff] [blame] | 302 | ARRAY_SIZE(tc3589x_dev_keypad), NULL, |
Linus Walleij | 90f2d0f | 2014-10-28 11:06:56 +0100 | [diff] [blame] | 303 | 0, tc3589x->domain); |
Sundar Iyer | 09c730a | 2010-12-21 15:53:31 +0530 | [diff] [blame] | 304 | if (ret) { |
| 305 | dev_err(tc3589x->dev, "failed to keypad child\n"); |
| 306 | return ret; |
| 307 | } |
| 308 | dev_info(tc3589x->dev, "added keypad block\n"); |
| 309 | } |
Sundar Iyer | 611b759 | 2010-12-13 09:33:15 +0530 | [diff] [blame] | 310 | |
Sundar Iyer | 09c730a | 2010-12-21 15:53:31 +0530 | [diff] [blame] | 311 | return ret; |
Sundar Iyer | 611b759 | 2010-12-13 09:33:15 +0530 | [diff] [blame] | 312 | } |
| 313 | |
Linus Walleij | a381b13 | 2014-01-23 13:43:28 +0100 | [diff] [blame] | 314 | static const struct of_device_id tc3589x_match[] = { |
| 315 | /* Legacy compatible string */ |
| 316 | { .compatible = "tc3589x", .data = (void *) TC3589X_UNKNOWN }, |
| 317 | { .compatible = "toshiba,tc35890", .data = (void *) TC3589X_TC35890 }, |
| 318 | { .compatible = "toshiba,tc35892", .data = (void *) TC3589X_TC35892 }, |
| 319 | { .compatible = "toshiba,tc35893", .data = (void *) TC3589X_TC35893 }, |
| 320 | { .compatible = "toshiba,tc35894", .data = (void *) TC3589X_TC35894 }, |
| 321 | { .compatible = "toshiba,tc35895", .data = (void *) TC3589X_TC35895 }, |
| 322 | { .compatible = "toshiba,tc35896", .data = (void *) TC3589X_TC35896 }, |
| 323 | { } |
| 324 | }; |
| 325 | |
| 326 | MODULE_DEVICE_TABLE(of, tc3589x_match); |
| 327 | |
| 328 | static struct tc3589x_platform_data * |
| 329 | tc3589x_of_probe(struct device *dev, enum tc3589x_version *version) |
Lee Jones | a435ae1 | 2012-09-07 12:14:57 +0100 | [diff] [blame] | 330 | { |
Linus Walleij | a381b13 | 2014-01-23 13:43:28 +0100 | [diff] [blame] | 331 | struct device_node *np = dev->of_node; |
| 332 | struct tc3589x_platform_data *pdata; |
Lee Jones | a435ae1 | 2012-09-07 12:14:57 +0100 | [diff] [blame] | 333 | struct device_node *child; |
Linus Walleij | a381b13 | 2014-01-23 13:43:28 +0100 | [diff] [blame] | 334 | const struct of_device_id *of_id; |
| 335 | |
| 336 | pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL); |
| 337 | if (!pdata) |
| 338 | return ERR_PTR(-ENOMEM); |
| 339 | |
| 340 | of_id = of_match_device(tc3589x_match, dev); |
| 341 | if (!of_id) |
| 342 | return ERR_PTR(-ENODEV); |
| 343 | *version = (enum tc3589x_version) of_id->data; |
Lee Jones | a435ae1 | 2012-09-07 12:14:57 +0100 | [diff] [blame] | 344 | |
| 345 | for_each_child_of_node(np, child) { |
Linus Walleij | a381b13 | 2014-01-23 13:43:28 +0100 | [diff] [blame] | 346 | if (of_device_is_compatible(child, "toshiba,tc3589x-gpio")) |
Lee Jones | a435ae1 | 2012-09-07 12:14:57 +0100 | [diff] [blame] | 347 | pdata->block |= TC3589x_BLOCK_GPIO; |
Linus Walleij | a381b13 | 2014-01-23 13:43:28 +0100 | [diff] [blame] | 348 | if (of_device_is_compatible(child, "toshiba,tc3589x-keypad")) |
Lee Jones | a435ae1 | 2012-09-07 12:14:57 +0100 | [diff] [blame] | 349 | pdata->block |= TC3589x_BLOCK_KEYPAD; |
Lee Jones | a435ae1 | 2012-09-07 12:14:57 +0100 | [diff] [blame] | 350 | } |
| 351 | |
Linus Walleij | a381b13 | 2014-01-23 13:43:28 +0100 | [diff] [blame] | 352 | return pdata; |
Lee Jones | a435ae1 | 2012-09-07 12:14:57 +0100 | [diff] [blame] | 353 | } |
| 354 | |
Bill Pemberton | f791be4 | 2012-11-19 13:23:04 -0500 | [diff] [blame] | 355 | static int tc3589x_probe(struct i2c_client *i2c, |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 356 | const struct i2c_device_id *id) |
| 357 | { |
Lee Jones | a435ae1 | 2012-09-07 12:14:57 +0100 | [diff] [blame] | 358 | struct device_node *np = i2c->dev.of_node; |
Linus Walleij | a381b13 | 2014-01-23 13:43:28 +0100 | [diff] [blame] | 359 | struct tc3589x_platform_data *pdata = dev_get_platdata(&i2c->dev); |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 360 | struct tc3589x *tc3589x; |
Linus Walleij | a381b13 | 2014-01-23 13:43:28 +0100 | [diff] [blame] | 361 | enum tc3589x_version version; |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 362 | int ret; |
| 363 | |
Lee Jones | a435ae1 | 2012-09-07 12:14:57 +0100 | [diff] [blame] | 364 | if (!pdata) { |
Linus Walleij | a381b13 | 2014-01-23 13:43:28 +0100 | [diff] [blame] | 365 | pdata = tc3589x_of_probe(&i2c->dev, &version); |
| 366 | if (IS_ERR(pdata)) { |
Lee Jones | a435ae1 | 2012-09-07 12:14:57 +0100 | [diff] [blame] | 367 | dev_err(&i2c->dev, "No platform data or DT found\n"); |
Linus Walleij | a381b13 | 2014-01-23 13:43:28 +0100 | [diff] [blame] | 368 | return PTR_ERR(pdata); |
Lee Jones | a435ae1 | 2012-09-07 12:14:57 +0100 | [diff] [blame] | 369 | } |
Linus Walleij | a381b13 | 2014-01-23 13:43:28 +0100 | [diff] [blame] | 370 | } else { |
| 371 | /* When not probing from device tree we have this ID */ |
| 372 | version = id->driver_data; |
Lee Jones | a435ae1 | 2012-09-07 12:14:57 +0100 | [diff] [blame] | 373 | } |
| 374 | |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 375 | if (!i2c_check_functionality(i2c->adapter, I2C_FUNC_SMBUS_BYTE_DATA |
| 376 | | I2C_FUNC_SMBUS_I2C_BLOCK)) |
| 377 | return -EIO; |
| 378 | |
Jingoo Han | 1383e00 | 2013-02-20 18:31:52 +0900 | [diff] [blame] | 379 | tc3589x = devm_kzalloc(&i2c->dev, sizeof(struct tc3589x), |
| 380 | GFP_KERNEL); |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 381 | if (!tc3589x) |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 382 | return -ENOMEM; |
| 383 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 384 | mutex_init(&tc3589x->lock); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 385 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 386 | tc3589x->dev = &i2c->dev; |
| 387 | tc3589x->i2c = i2c; |
| 388 | tc3589x->pdata = pdata; |
Linus Walleij | e64c1eb | 2013-10-18 11:51:45 +0200 | [diff] [blame] | 389 | |
Linus Walleij | a381b13 | 2014-01-23 13:43:28 +0100 | [diff] [blame] | 390 | switch (version) { |
Linus Walleij | e64c1eb | 2013-10-18 11:51:45 +0200 | [diff] [blame] | 391 | case TC3589X_TC35893: |
| 392 | case TC3589X_TC35895: |
| 393 | case TC3589X_TC35896: |
| 394 | tc3589x->num_gpio = 20; |
| 395 | break; |
| 396 | case TC3589X_TC35890: |
| 397 | case TC3589X_TC35892: |
| 398 | case TC3589X_TC35894: |
| 399 | case TC3589X_UNKNOWN: |
| 400 | default: |
| 401 | tc3589x->num_gpio = 24; |
| 402 | break; |
| 403 | } |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 404 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 405 | i2c_set_clientdata(i2c, tc3589x); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 406 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 407 | ret = tc3589x_chip_init(tc3589x); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 408 | if (ret) |
Jingoo Han | 1383e00 | 2013-02-20 18:31:52 +0900 | [diff] [blame] | 409 | return ret; |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 410 | |
Lee Jones | a435ae1 | 2012-09-07 12:14:57 +0100 | [diff] [blame] | 411 | ret = tc3589x_irq_init(tc3589x, np); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 412 | if (ret) |
Jingoo Han | 1383e00 | 2013-02-20 18:31:52 +0900 | [diff] [blame] | 413 | return ret; |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 414 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 415 | ret = request_threaded_irq(tc3589x->i2c->irq, NULL, tc3589x_irq, |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 416 | IRQF_TRIGGER_FALLING | IRQF_ONESHOT, |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 417 | "tc3589x", tc3589x); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 418 | if (ret) { |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 419 | dev_err(tc3589x->dev, "failed to request IRQ: %d\n", ret); |
Jingoo Han | 1383e00 | 2013-02-20 18:31:52 +0900 | [diff] [blame] | 420 | return ret; |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 421 | } |
| 422 | |
Sundar Iyer | 611b759 | 2010-12-13 09:33:15 +0530 | [diff] [blame] | 423 | ret = tc3589x_device_init(tc3589x); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 424 | if (ret) { |
Sundar Iyer | 611b759 | 2010-12-13 09:33:15 +0530 | [diff] [blame] | 425 | dev_err(tc3589x->dev, "failed to add child devices\n"); |
Jingoo Han | 1383e00 | 2013-02-20 18:31:52 +0900 | [diff] [blame] | 426 | return ret; |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 427 | } |
| 428 | |
| 429 | return 0; |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 430 | } |
| 431 | |
Bill Pemberton | 4740f73 | 2012-11-19 13:26:01 -0500 | [diff] [blame] | 432 | static int tc3589x_remove(struct i2c_client *client) |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 433 | { |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 434 | struct tc3589x *tc3589x = i2c_get_clientdata(client); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 435 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 436 | mfd_remove_devices(tc3589x->dev); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 437 | |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 438 | return 0; |
| 439 | } |
| 440 | |
Axel Lin | 930bf02 | 2012-07-02 17:19:52 +0800 | [diff] [blame] | 441 | #ifdef CONFIG_PM_SLEEP |
Sundar Iyer | 593e9d7 | 2010-12-13 09:33:18 +0530 | [diff] [blame] | 442 | static int tc3589x_suspend(struct device *dev) |
| 443 | { |
| 444 | struct tc3589x *tc3589x = dev_get_drvdata(dev); |
| 445 | struct i2c_client *client = tc3589x->i2c; |
| 446 | int ret = 0; |
| 447 | |
| 448 | /* put the system to sleep mode */ |
| 449 | if (!device_may_wakeup(&client->dev)) |
| 450 | ret = tc3589x_reg_write(tc3589x, TC3589x_CLKMODE, |
| 451 | TC3589x_CLKMODE_MODCTL_SLEEP); |
| 452 | |
| 453 | return ret; |
| 454 | } |
| 455 | |
| 456 | static int tc3589x_resume(struct device *dev) |
| 457 | { |
| 458 | struct tc3589x *tc3589x = dev_get_drvdata(dev); |
| 459 | struct i2c_client *client = tc3589x->i2c; |
| 460 | int ret = 0; |
| 461 | |
| 462 | /* enable the system into operation */ |
| 463 | if (!device_may_wakeup(&client->dev)) |
| 464 | ret = tc3589x_reg_write(tc3589x, TC3589x_CLKMODE, |
| 465 | TC3589x_CLKMODE_MODCTL_OPERATION); |
| 466 | |
| 467 | return ret; |
| 468 | } |
Linus Walleij | 54d8e2c | 2011-08-09 20:37:17 +0200 | [diff] [blame] | 469 | #endif |
Sundar Iyer | 593e9d7 | 2010-12-13 09:33:18 +0530 | [diff] [blame] | 470 | |
Axel Lin | 930bf02 | 2012-07-02 17:19:52 +0800 | [diff] [blame] | 471 | static SIMPLE_DEV_PM_OPS(tc3589x_dev_pm_ops, tc3589x_suspend, tc3589x_resume); |
| 472 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 473 | static const struct i2c_device_id tc3589x_id[] = { |
Linus Walleij | e64c1eb | 2013-10-18 11:51:45 +0200 | [diff] [blame] | 474 | { "tc35890", TC3589X_TC35890 }, |
| 475 | { "tc35892", TC3589X_TC35892 }, |
| 476 | { "tc35893", TC3589X_TC35893 }, |
| 477 | { "tc35894", TC3589X_TC35894 }, |
| 478 | { "tc35895", TC3589X_TC35895 }, |
| 479 | { "tc35896", TC3589X_TC35896 }, |
| 480 | { "tc3589x", TC3589X_UNKNOWN }, |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 481 | { } |
| 482 | }; |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 483 | MODULE_DEVICE_TABLE(i2c, tc3589x_id); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 484 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 485 | static struct i2c_driver tc3589x_driver = { |
Linus Walleij | a381b13 | 2014-01-23 13:43:28 +0100 | [diff] [blame] | 486 | .driver = { |
| 487 | .name = "tc3589x", |
Linus Walleij | a381b13 | 2014-01-23 13:43:28 +0100 | [diff] [blame] | 488 | .pm = &tc3589x_dev_pm_ops, |
| 489 | .of_match_table = of_match_ptr(tc3589x_match), |
| 490 | }, |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 491 | .probe = tc3589x_probe, |
Bill Pemberton | 8444921 | 2012-11-19 13:20:24 -0500 | [diff] [blame] | 492 | .remove = tc3589x_remove, |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 493 | .id_table = tc3589x_id, |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 494 | }; |
| 495 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 496 | static int __init tc3589x_init(void) |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 497 | { |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 498 | return i2c_add_driver(&tc3589x_driver); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 499 | } |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 500 | subsys_initcall(tc3589x_init); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 501 | |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 502 | static void __exit tc3589x_exit(void) |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 503 | { |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 504 | i2c_del_driver(&tc3589x_driver); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 505 | } |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 506 | module_exit(tc3589x_exit); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 507 | |
| 508 | MODULE_LICENSE("GPL v2"); |
Sundar Iyer | 20406eb | 2010-12-13 09:33:14 +0530 | [diff] [blame] | 509 | MODULE_DESCRIPTION("TC3589x MFD core driver"); |
Rabin Vincent | b4ecd32 | 2010-05-10 23:39:47 +0200 | [diff] [blame] | 510 | MODULE_AUTHOR("Hanumath Prasad, Rabin Vincent"); |