2 * STMicroelectronics hts221 spi driver
4 * Copyright 2016 STMicroelectronics Inc.
6 * Lorenzo Bianconi <lorenzo.bianconi@st.com>
8 * Licensed under the GPL-2.
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/spi/spi.h>
14 #include <linux/slab.h>
17 #define SENSORS_SPI_READ 0x80
18 #define SPI_AUTO_INCREMENT 0x40
20 static int hts221_spi_read(struct device
*dev
, u8 addr
, int len
, u8
*data
)
23 struct spi_device
*spi
= to_spi_device(dev
);
24 struct iio_dev
*iio_dev
= spi_get_drvdata(spi
);
25 struct hts221_hw
*hw
= iio_priv(iio_dev
);
27 struct spi_transfer xfers
[] = {
29 .tx_buf
= hw
->tb
.tx_buf
,
34 .rx_buf
= hw
->tb
.rx_buf
,
41 addr
|= SPI_AUTO_INCREMENT
;
42 hw
->tb
.tx_buf
[0] = addr
| SENSORS_SPI_READ
;
44 err
= spi_sync_transfer(spi
, xfers
, ARRAY_SIZE(xfers
));
48 memcpy(data
, hw
->tb
.rx_buf
, len
* sizeof(u8
));
53 static int hts221_spi_write(struct device
*dev
, u8 addr
, int len
, u8
*data
)
55 struct spi_device
*spi
= to_spi_device(dev
);
56 struct iio_dev
*iio_dev
= spi_get_drvdata(spi
);
57 struct hts221_hw
*hw
= iio_priv(iio_dev
);
59 struct spi_transfer xfers
= {
60 .tx_buf
= hw
->tb
.tx_buf
,
65 if (len
>= HTS221_TX_MAX_LENGTH
)
69 addr
|= SPI_AUTO_INCREMENT
;
70 hw
->tb
.tx_buf
[0] = addr
;
71 memcpy(&hw
->tb
.tx_buf
[1], data
, len
);
73 return spi_sync_transfer(spi
, &xfers
, 1);
76 static const struct hts221_transfer_function hts221_transfer_fn
= {
77 .read
= hts221_spi_read
,
78 .write
= hts221_spi_write
,
81 static int hts221_spi_probe(struct spi_device
*spi
)
83 return hts221_probe(&spi
->dev
, spi
->irq
,
84 spi
->modalias
, &hts221_transfer_fn
);
87 static const struct of_device_id hts221_spi_of_match
[] = {
88 { .compatible
= "st,hts221", },
91 MODULE_DEVICE_TABLE(of
, hts221_spi_of_match
);
93 static const struct spi_device_id hts221_spi_id_table
[] = {
97 MODULE_DEVICE_TABLE(spi
, hts221_spi_id_table
);
99 static struct spi_driver hts221_driver
= {
101 .name
= "hts221_spi",
102 .pm
= &hts221_pm_ops
,
103 .of_match_table
= of_match_ptr(hts221_spi_of_match
),
105 .probe
= hts221_spi_probe
,
106 .id_table
= hts221_spi_id_table
,
108 module_spi_driver(hts221_driver
);
110 MODULE_AUTHOR("Lorenzo Bianconi <lorenzo.bianconi@st.com>");
111 MODULE_DESCRIPTION("STMicroelectronics hts221 spi driver");
112 MODULE_LICENSE("GPL v2");