regmap-spi.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * Register map access API - SPI support
  3. *
  4. * Copyright 2011 Wolfson Microelectronics plc
  5. *
  6. * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License version 2 as
  10. * published by the Free Software Foundation.
  11. */
  12. #include <linux/regmap.h>
  13. #include <linux/spi/spi.h>
  14. #include <linux/init.h>
  15. static int regmap_spi_write(struct device *dev, const void *data, size_t count)
  16. {
  17. struct spi_device *spi = to_spi_device(dev);
  18. return spi_write(spi, data, count);
  19. }
  20. static int regmap_spi_gather_write(struct device *dev,
  21. const void *reg, size_t reg_len,
  22. const void *val, size_t val_len)
  23. {
  24. struct spi_device *spi = to_spi_device(dev);
  25. struct spi_message m;
  26. struct spi_transfer t[2] = { { .tx_buf = reg, .len = reg_len, },
  27. { .tx_buf = val, .len = val_len, }, };
  28. spi_message_init(&m);
  29. spi_message_add_tail(&t[0], &m);
  30. spi_message_add_tail(&t[1], &m);
  31. return spi_sync(spi, &m);
  32. }
  33. static int regmap_spi_read(struct device *dev,
  34. const void *reg, size_t reg_size,
  35. void *val, size_t val_size)
  36. {
  37. struct spi_device *spi = to_spi_device(dev);
  38. return spi_write_then_read(spi, reg, reg_size, val, val_size);
  39. }
  40. static struct regmap_bus regmap_spi = {
  41. .type = &spi_bus_type,
  42. .write = regmap_spi_write,
  43. .gather_write = regmap_spi_gather_write,
  44. .read = regmap_spi_read,
  45. .owner = THIS_MODULE,
  46. .read_flag_mask = 0x80,
  47. };
  48. /**
  49. * regmap_init_spi(): Initialise register map
  50. *
  51. * @spi: Device that will be interacted with
  52. * @config: Configuration for register map
  53. *
  54. * The return value will be an ERR_PTR() on error or a valid pointer to
  55. * a struct regmap.
  56. */
  57. struct regmap *regmap_init_spi(struct spi_device *spi,
  58. const struct regmap_config *config)
  59. {
  60. return regmap_init(&spi->dev, &regmap_spi, config);
  61. }
  62. EXPORT_SYMBOL_GPL(regmap_init_spi);