1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * AD7879/AD7889 touchscreen (SPI bus)
5 * Copyright (C) 2008-2010 Michael Hennerich, Analog Devices Inc.
8 #include <linux/input.h> /* BUS_SPI */
10 #include <linux/spi/spi.h>
11 #include <linux/module.h>
13 #include <linux/regmap.h>
17 #define AD7879_DEVID 0x7A /* AD7879/AD7889 */
19 #define MAX_SPI_FREQ_HZ 5000000
21 #define AD7879_CMD_MAGIC 0xE0
22 #define AD7879_CMD_READ BIT(2)
24 static const struct regmap_config ad7879_spi_regmap_config
= {
28 .read_flag_mask
= AD7879_CMD_MAGIC
| AD7879_CMD_READ
,
29 .write_flag_mask
= AD7879_CMD_MAGIC
,
32 static int ad7879_spi_probe(struct spi_device
*spi
)
34 struct regmap
*regmap
;
36 /* don't exceed max specified SPI CLK frequency */
37 if (spi
->max_speed_hz
> MAX_SPI_FREQ_HZ
) {
38 dev_err(&spi
->dev
, "SPI CLK %d Hz?\n", spi
->max_speed_hz
);
42 regmap
= devm_regmap_init_spi(spi
, &ad7879_spi_regmap_config
);
44 return PTR_ERR(regmap
);
46 return ad7879_probe(&spi
->dev
, regmap
, spi
->irq
, BUS_SPI
, AD7879_DEVID
);
50 static const struct of_device_id ad7879_spi_dt_ids
[] = {
51 { .compatible
= "adi,ad7879", },
54 MODULE_DEVICE_TABLE(of
, ad7879_spi_dt_ids
);
57 static struct spi_driver ad7879_spi_driver
= {
60 .dev_groups
= ad7879_groups
,
62 .of_match_table
= of_match_ptr(ad7879_spi_dt_ids
),
64 .probe
= ad7879_spi_probe
,
67 module_spi_driver(ad7879_spi_driver
);
69 MODULE_AUTHOR("Michael Hennerich <michael.hennerich@analog.com>");
70 MODULE_DESCRIPTION("AD7879(-1) touchscreen SPI bus driver");
71 MODULE_LICENSE("GPL");
72 MODULE_ALIAS("spi:ad7879");