gpio-max7301.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /*
  2. * Copyright (C) 2006 Juergen Beisert, Pengutronix
  3. * Copyright (C) 2008 Guennadi Liakhovetski, Pengutronix
  4. * Copyright (C) 2009 Wolfram Sang, Pengutronix
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * Check max730x.c for further details.
  11. */
  12. #include <linux/module.h>
  13. #include <linux/init.h>
  14. #include <linux/platform_device.h>
  15. #include <linux/mutex.h>
  16. #include <linux/slab.h>
  17. #include <linux/spi/spi.h>
  18. #include <linux/spi/max7301.h>
  19. /* A write to the MAX7301 means one message with one transfer */
  20. static int max7301_spi_write(struct device *dev, unsigned int reg,
  21. unsigned int val)
  22. {
  23. struct spi_device *spi = to_spi_device(dev);
  24. u16 word = ((reg & 0x7F) << 8) | (val & 0xFF);
  25. return spi_write(spi, (const u8 *)&word, sizeof(word));
  26. }
  27. /* A read from the MAX7301 means two transfers; here, one message each */
  28. static int max7301_spi_read(struct device *dev, unsigned int reg)
  29. {
  30. int ret;
  31. u16 word;
  32. struct spi_device *spi = to_spi_device(dev);
  33. word = 0x8000 | (reg << 8);
  34. ret = spi_write(spi, (const u8 *)&word, sizeof(word));
  35. if (ret)
  36. return ret;
  37. /*
  38. * This relies on the fact, that a transfer with NULL tx_buf shifts out
  39. * zero bytes (=NOOP for MAX7301)
  40. */
  41. ret = spi_read(spi, (u8 *)&word, sizeof(word));
  42. if (ret)
  43. return ret;
  44. return word & 0xff;
  45. }
  46. static int max7301_probe(struct spi_device *spi)
  47. {
  48. struct max7301 *ts;
  49. int ret;
  50. /* bits_per_word cannot be configured in platform data */
  51. spi->bits_per_word = 16;
  52. ret = spi_setup(spi);
  53. if (ret < 0)
  54. return ret;
  55. ts = devm_kzalloc(&spi->dev, sizeof(struct max7301), GFP_KERNEL);
  56. if (!ts)
  57. return -ENOMEM;
  58. ts->read = max7301_spi_read;
  59. ts->write = max7301_spi_write;
  60. ts->dev = &spi->dev;
  61. ret = __max730x_probe(ts);
  62. return ret;
  63. }
  64. static int max7301_remove(struct spi_device *spi)
  65. {
  66. return __max730x_remove(&spi->dev);
  67. }
  68. static const struct spi_device_id max7301_id[] = {
  69. { "max7301", 0 },
  70. { }
  71. };
  72. MODULE_DEVICE_TABLE(spi, max7301_id);
  73. static struct spi_driver max7301_driver = {
  74. .driver = {
  75. .name = "max7301",
  76. .owner = THIS_MODULE,
  77. },
  78. .probe = max7301_probe,
  79. .remove = max7301_remove,
  80. .id_table = max7301_id,
  81. };
  82. static int __init max7301_init(void)
  83. {
  84. return spi_register_driver(&max7301_driver);
  85. }
  86. /* register after spi postcore initcall and before
  87. * subsys initcalls that may rely on these GPIOs
  88. */
  89. subsys_initcall(max7301_init);
  90. static void __exit max7301_exit(void)
  91. {
  92. spi_unregister_driver(&max7301_driver);
  93. }
  94. module_exit(max7301_exit);
  95. MODULE_AUTHOR("Juergen Beisert, Wolfram Sang");
  96. MODULE_LICENSE("GPL v2");
  97. MODULE_DESCRIPTION("MAX7301 GPIO-Expander");