blob: c1894e93c378853061eea4a0c31316ed05338552 [file] [log] [blame]
Greg Kroah-Hartman37613fa2019-04-25 20:06:18 +02001// SPDX-License-Identifier: GPL-2.0
2//
3// Register map access API - SPI support
4//
5// Copyright 2011 Wolfson Microelectronics plc
6//
7// Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
Mark Browna676f082011-05-12 11:42:10 +02008
9#include <linux/regmap.h>
10#include <linux/spi/spi.h>
Stephen Rothwellb5ddbf42011-08-16 09:36:06 +100011#include <linux/module.h>
Mark Browna676f082011-05-12 11:42:10 +020012
Mark Browne0356df2013-01-29 12:14:12 +080013#include "internal.h"
14
15struct regmap_async_spi {
16 struct regmap_async core;
17 struct spi_message m;
18 struct spi_transfer t[2];
19};
20
21static void regmap_spi_complete(void *data)
22{
23 struct regmap_async_spi *async = data;
24
25 regmap_async_complete_cb(&async->core, async->m.status);
26}
27
Stephen Warren0135bbc2012-04-04 15:48:30 -060028static int regmap_spi_write(void *context, const void *data, size_t count)
Mark Browna676f082011-05-12 11:42:10 +020029{
Stephen Warren0135bbc2012-04-04 15:48:30 -060030 struct device *dev = context;
Mark Browna676f082011-05-12 11:42:10 +020031 struct spi_device *spi = to_spi_device(dev);
32
33 return spi_write(spi, data, count);
34}
35
Stephen Warren0135bbc2012-04-04 15:48:30 -060036static int regmap_spi_gather_write(void *context,
Mark Browna676f082011-05-12 11:42:10 +020037 const void *reg, size_t reg_len,
38 const void *val, size_t val_len)
39{
Stephen Warren0135bbc2012-04-04 15:48:30 -060040 struct device *dev = context;
Mark Browna676f082011-05-12 11:42:10 +020041 struct spi_device *spi = to_spi_device(dev);
42 struct spi_message m;
43 struct spi_transfer t[2] = { { .tx_buf = reg, .len = reg_len, },
44 { .tx_buf = val, .len = val_len, }, };
45
46 spi_message_init(&m);
47 spi_message_add_tail(&t[0], &m);
48 spi_message_add_tail(&t[1], &m);
49
50 return spi_sync(spi, &m);
51}
52
Mark Browne0356df2013-01-29 12:14:12 +080053static int regmap_spi_async_write(void *context,
54 const void *reg, size_t reg_len,
55 const void *val, size_t val_len,
56 struct regmap_async *a)
57{
58 struct regmap_async_spi *async = container_of(a,
59 struct regmap_async_spi,
60 core);
61 struct device *dev = context;
62 struct spi_device *spi = to_spi_device(dev);
63
64 async->t[0].tx_buf = reg;
65 async->t[0].len = reg_len;
66 async->t[1].tx_buf = val;
67 async->t[1].len = val_len;
68
69 spi_message_init(&async->m);
70 spi_message_add_tail(&async->t[0], &async->m);
Mark Browncd1b9dd2013-10-10 22:25:23 +010071 if (val)
72 spi_message_add_tail(&async->t[1], &async->m);
Mark Browne0356df2013-01-29 12:14:12 +080073
74 async->m.complete = regmap_spi_complete;
75 async->m.context = async;
76
77 return spi_async(spi, &async->m);
78}
79
80static struct regmap_async *regmap_spi_async_alloc(void)
81{
82 struct regmap_async_spi *async_spi;
83
84 async_spi = kzalloc(sizeof(*async_spi), GFP_KERNEL);
Mark Brown95601d62013-02-05 14:14:32 +000085 if (!async_spi)
86 return NULL;
Mark Browne0356df2013-01-29 12:14:12 +080087
88 return &async_spi->core;
89}
90
Stephen Warren0135bbc2012-04-04 15:48:30 -060091static int regmap_spi_read(void *context,
Mark Browna676f082011-05-12 11:42:10 +020092 const void *reg, size_t reg_size,
93 void *val, size_t val_size)
94{
Stephen Warren0135bbc2012-04-04 15:48:30 -060095 struct device *dev = context;
Mark Browna676f082011-05-12 11:42:10 +020096 struct spi_device *spi = to_spi_device(dev);
97
98 return spi_write_then_read(spi, reg, reg_size, val, val_size);
99}
100
Julia Lawall9c2e5cb2017-08-11 08:57:36 +0200101static const struct regmap_bus regmap_spi = {
Mark Browna676f082011-05-12 11:42:10 +0200102 .write = regmap_spi_write,
103 .gather_write = regmap_spi_gather_write,
Mark Browne0356df2013-01-29 12:14:12 +0800104 .async_write = regmap_spi_async_write,
105 .async_alloc = regmap_spi_async_alloc,
Mark Browna676f082011-05-12 11:42:10 +0200106 .read = regmap_spi_read,
Mark Browna676f082011-05-12 11:42:10 +0200107 .read_flag_mask = 0x80,
Xiubo Lid647c192014-07-15 12:23:02 +0800108 .reg_format_endian_default = REGMAP_ENDIAN_BIG,
109 .val_format_endian_default = REGMAP_ENDIAN_BIG,
Mark Browna676f082011-05-12 11:42:10 +0200110};
111
Nicolas Boichat3cfe7a72015-07-08 14:30:18 +0800112struct regmap *__regmap_init_spi(struct spi_device *spi,
113 const struct regmap_config *config,
114 struct lock_class_key *lock_key,
115 const char *lock_name)
Mark Browna676f082011-05-12 11:42:10 +0200116{
Nicolas Boichat3cfe7a72015-07-08 14:30:18 +0800117 return __regmap_init(&spi->dev, &regmap_spi, &spi->dev, config,
118 lock_key, lock_name);
Mark Browna676f082011-05-12 11:42:10 +0200119}
Nicolas Boichat3cfe7a72015-07-08 14:30:18 +0800120EXPORT_SYMBOL_GPL(__regmap_init_spi);
Stephen Warrenb33f9cb2011-08-11 11:59:10 -0600121
Nicolas Boichat3cfe7a72015-07-08 14:30:18 +0800122struct regmap *__devm_regmap_init_spi(struct spi_device *spi,
123 const struct regmap_config *config,
124 struct lock_class_key *lock_key,
125 const char *lock_name)
Mark Brownc0eb4672012-01-30 19:56:52 +0000126{
Nicolas Boichat3cfe7a72015-07-08 14:30:18 +0800127 return __devm_regmap_init(&spi->dev, &regmap_spi, &spi->dev, config,
128 lock_key, lock_name);
Mark Brownc0eb4672012-01-30 19:56:52 +0000129}
Nicolas Boichat3cfe7a72015-07-08 14:30:18 +0800130EXPORT_SYMBOL_GPL(__devm_regmap_init_spi);
Mark Brownc0eb4672012-01-30 19:56:52 +0000131
Stephen Warrenb33f9cb2011-08-11 11:59:10 -0600132MODULE_LICENSE("GPL");