1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * CS4271 SPI audio driver
8 #include <linux/module.h>
9 #include <linux/spi/spi.h>
10 #include <linux/regmap.h>
11 #include <sound/soc.h>
14 static int cs4271_spi_probe(struct spi_device *spi)
16 struct regmap_config config;
18 config = cs4271_regmap_config;
20 config.read_flag_mask = 0x21;
21 config.write_flag_mask = 0x20;
23 return cs4271_probe(&spi->dev, devm_regmap_init_spi(spi, &config));
26 static struct spi_driver cs4271_spi_driver = {
29 .of_match_table = of_match_ptr(cs4271_dt_ids),
31 .probe = cs4271_spi_probe,
33 module_spi_driver(cs4271_spi_driver);
35 MODULE_DESCRIPTION("ASoC CS4271 SPI Driver");
37 MODULE_LICENSE("GPL");