blob: 53d1148e80a05e648d47ef9e0fedc03b0125a234 [file] [log] [blame]
Mark Browna676f082011-05-12 11:42:10 +02001/*
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
13#include <linux/regmap.h>
14#include <linux/spi/spi.h>
Stephen Rothwellb5ddbf42011-08-16 09:36:06 +100015#include <linux/module.h>
Mark Browna676f082011-05-12 11:42:10 +020016
Mark Browne0356df2013-01-29 12:14:12 +080017#include "internal.h"
18
19struct regmap_async_spi {
20 struct regmap_async core;
21 struct spi_message m;
22 struct spi_transfer t[2];
23};
24
25static void regmap_spi_complete(void *data)
26{
27 struct regmap_async_spi *async = data;
28
29 regmap_async_complete_cb(&async->core, async->m.status);
30}
31
Stephen Warren0135bbc2012-04-04 15:48:30 -060032static int regmap_spi_write(void *context, const void *data, size_t count)
Mark Browna676f082011-05-12 11:42:10 +020033{
Stephen Warren0135bbc2012-04-04 15:48:30 -060034 struct device *dev = context;
Mark Browna676f082011-05-12 11:42:10 +020035 struct spi_device *spi = to_spi_device(dev);
36
37 return spi_write(spi, data, count);
38}
39
Stephen Warren0135bbc2012-04-04 15:48:30 -060040static int regmap_spi_gather_write(void *context,
Mark Browna676f082011-05-12 11:42:10 +020041 const void *reg, size_t reg_len,
42 const void *val, size_t val_len)
43{
Stephen Warren0135bbc2012-04-04 15:48:30 -060044 struct device *dev = context;
Mark Browna676f082011-05-12 11:42:10 +020045 struct spi_device *spi = to_spi_device(dev);
46 struct spi_message m;
47 struct spi_transfer t[2] = { { .tx_buf = reg, .len = reg_len, },
48 { .tx_buf = val, .len = val_len, }, };
49
50 spi_message_init(&m);
51 spi_message_add_tail(&t[0], &m);
52 spi_message_add_tail(&t[1], &m);
53
54 return spi_sync(spi, &m);
55}
56
Mark Browne0356df2013-01-29 12:14:12 +080057static int regmap_spi_async_write(void *context,
58 const void *reg, size_t reg_len,
59 const void *val, size_t val_len,
60 struct regmap_async *a)
61{
62 struct regmap_async_spi *async = container_of(a,
63 struct regmap_async_spi,
64 core);
65 struct device *dev = context;
66 struct spi_device *spi = to_spi_device(dev);
67
68 async->t[0].tx_buf = reg;
69 async->t[0].len = reg_len;
70 async->t[1].tx_buf = val;
71 async->t[1].len = val_len;
72
73 spi_message_init(&async->m);
74 spi_message_add_tail(&async->t[0], &async->m);
Mark Browncd1b9dd2013-10-10 22:25:23 +010075 if (val)
76 spi_message_add_tail(&async->t[1], &async->m);
Mark Browne0356df2013-01-29 12:14:12 +080077
78 async->m.complete = regmap_spi_complete;
79 async->m.context = async;
80
81 return spi_async(spi, &async->m);
82}
83
84static struct regmap_async *regmap_spi_async_alloc(void)
85{
86 struct regmap_async_spi *async_spi;
87
88 async_spi = kzalloc(sizeof(*async_spi), GFP_KERNEL);
Mark Brown95601d62013-02-05 14:14:32 +000089 if (!async_spi)
90 return NULL;
Mark Browne0356df2013-01-29 12:14:12 +080091
92 return &async_spi->core;
93}
94
Stephen Warren0135bbc2012-04-04 15:48:30 -060095static int regmap_spi_read(void *context,
Mark Browna676f082011-05-12 11:42:10 +020096 const void *reg, size_t reg_size,
97 void *val, size_t val_size)
98{
Stephen Warren0135bbc2012-04-04 15:48:30 -060099 struct device *dev = context;
Mark Browna676f082011-05-12 11:42:10 +0200100 struct spi_device *spi = to_spi_device(dev);
101
102 return spi_write_then_read(spi, reg, reg_size, val, val_size);
103}
104
105static struct regmap_bus regmap_spi = {
Mark Browna676f082011-05-12 11:42:10 +0200106 .write = regmap_spi_write,
107 .gather_write = regmap_spi_gather_write,
Mark Browne0356df2013-01-29 12:14:12 +0800108 .async_write = regmap_spi_async_write,
109 .async_alloc = regmap_spi_async_alloc,
Mark Browna676f082011-05-12 11:42:10 +0200110 .read = regmap_spi_read,
Mark Browna676f082011-05-12 11:42:10 +0200111 .read_flag_mask = 0x80,
Xiubo Lid647c192014-07-15 12:23:02 +0800112 .reg_format_endian_default = REGMAP_ENDIAN_BIG,
113 .val_format_endian_default = REGMAP_ENDIAN_BIG,
Mark Browna676f082011-05-12 11:42:10 +0200114};
115
116/**
117 * regmap_init_spi(): Initialise register map
118 *
119 * @spi: Device that will be interacted with
120 * @config: Configuration for register map
121 *
122 * The return value will be an ERR_PTR() on error or a valid pointer to
123 * a struct regmap.
124 */
125struct regmap *regmap_init_spi(struct spi_device *spi,
126 const struct regmap_config *config)
127{
Stephen Warren0135bbc2012-04-04 15:48:30 -0600128 return regmap_init(&spi->dev, &regmap_spi, &spi->dev, config);
Mark Browna676f082011-05-12 11:42:10 +0200129}
130EXPORT_SYMBOL_GPL(regmap_init_spi);
Stephen Warrenb33f9cb2011-08-11 11:59:10 -0600131
Mark Brownc0eb4672012-01-30 19:56:52 +0000132/**
133 * devm_regmap_init_spi(): Initialise register map
134 *
135 * @spi: Device that will be interacted with
136 * @config: Configuration for register map
137 *
138 * The return value will be an ERR_PTR() on error or a valid pointer
139 * to a struct regmap. The map will be automatically freed by the
140 * device management code.
141 */
142struct regmap *devm_regmap_init_spi(struct spi_device *spi,
143 const struct regmap_config *config)
144{
Stephen Warren0135bbc2012-04-04 15:48:30 -0600145 return devm_regmap_init(&spi->dev, &regmap_spi, &spi->dev, config);
Mark Brownc0eb4672012-01-30 19:56:52 +0000146}
147EXPORT_SYMBOL_GPL(devm_regmap_init_spi);
148
Stephen Warrenb33f9cb2011-08-11 11:59:10 -0600149MODULE_LICENSE("GPL");