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