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