2 * Murata ZPA2326 SPI pressure and temperature sensor driver
4 * Copyright (c) 2016 Parrot S.A.
6 * Author: Gregor Boirie <gregor.boirie@parrot.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License version 2 as published by
10 * the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
18 #include <linux/module.h>
19 #include <linux/regmap.h>
20 #include <linux/spi/spi.h>
21 #include <linux/of_device.h>
26 * - address bit 7 must be set to request a register read operation
27 * - address bit 6 must be set to request register address auto increment
29 static const struct regmap_config zpa2326_regmap_spi_config = {
32 .writeable_reg = zpa2326_isreg_writeable,
33 .readable_reg = zpa2326_isreg_readable,
34 .precious_reg = zpa2326_isreg_precious,
35 .max_register = ZPA2326_TEMP_OUT_H_REG,
36 .read_flag_mask = BIT(7) | BIT(6),
37 .cache_type = REGCACHE_NONE,
40 static int zpa2326_probe_spi(struct spi_device *spi)
42 struct regmap *regmap;
45 regmap = devm_regmap_init_spi(spi, &zpa2326_regmap_spi_config);
47 dev_err(&spi->dev, "failed to init registers map");
48 return PTR_ERR(regmap);
52 * Enforce SPI slave settings to prevent from DT misconfiguration.
54 * Clock is idle high. Sampling happens on trailing edge, i.e., rising
55 * edge. Maximum bus frequency is 1 MHz. Registers are 8 bits wide.
57 spi->mode = SPI_MODE_3;
58 spi->max_speed_hz = min(spi->max_speed_hz, 1000000U);
59 spi->bits_per_word = 8;
64 return zpa2326_probe(&spi->dev, spi_get_device_id(spi)->name,
65 spi->irq, ZPA2326_DEVICE_ID, regmap);
68 static int zpa2326_remove_spi(struct spi_device *spi)
70 zpa2326_remove(&spi->dev);
75 static const struct spi_device_id zpa2326_spi_ids[] = {
79 MODULE_DEVICE_TABLE(spi, zpa2326_spi_ids);
81 #if defined(CONFIG_OF)
82 static const struct of_device_id zpa2326_spi_matches[] = {
83 { .compatible = "murata,zpa2326" },
86 MODULE_DEVICE_TABLE(of, zpa2326_spi_matches);
89 static struct spi_driver zpa2326_spi_driver = {
91 .name = "zpa2326-spi",
92 .of_match_table = of_match_ptr(zpa2326_spi_matches),
95 .probe = zpa2326_probe_spi,
96 .remove = zpa2326_remove_spi,
97 .id_table = zpa2326_spi_ids,
99 module_spi_driver(zpa2326_spi_driver);
101 MODULE_AUTHOR("Gregor Boirie <gregor.boirie@parrot.com>");
102 MODULE_DESCRIPTION("SPI driver for Murata ZPA2326 pressure sensor");
103 MODULE_LICENSE("GPL v2");