1 /* SPDX-License-Identifier: GPL-2.0
3 * Copyright 2011-2019 NW Digital Radio
5 * Author: Annaliese McDermond <nh6z@nh6z.net>
7 * Based on sound/soc/codecs/wm8974 and TI driver for kernel 2.6.27.
11 #include <linux/spi/spi.h>
12 #include <linux/module.h>
14 #include <linux/regmap.h>
15 #include <sound/soc.h>
17 #include "tlv320aic32x4.h"
19 static int aic32x4_spi_probe(struct spi_device
*spi
)
21 struct regmap
*regmap
;
22 struct regmap_config config
;
24 config
= aic32x4_regmap_config
;
28 config
.read_flag_mask
= 0x01;
30 regmap
= devm_regmap_init_spi(spi
, &config
);
31 return aic32x4_probe(&spi
->dev
, regmap
);
34 static int aic32x4_spi_remove(struct spi_device
*spi
)
36 return aic32x4_remove(&spi
->dev
);
39 static const struct spi_device_id aic32x4_spi_id
[] = {
40 { "tlv320aic32x4", 0 },
41 { "tlv320aic32x6", 1 },
44 MODULE_DEVICE_TABLE(spi
, aic32x4_spi_id
);
46 static const struct of_device_id aic32x4_of_id
[] = {
47 { .compatible
= "ti,tlv320aic32x4", },
48 { .compatible
= "ti,tlv320aic32x6", },
51 MODULE_DEVICE_TABLE(of
, aic32x4_of_id
);
53 static struct spi_driver aic32x4_spi_driver
= {
55 .name
= "tlv320aic32x4",
57 .of_match_table
= aic32x4_of_id
,
59 .probe
= aic32x4_spi_probe
,
60 .remove
= aic32x4_spi_remove
,
61 .id_table
= aic32x4_spi_id
,
64 module_spi_driver(aic32x4_spi_driver
);
66 MODULE_DESCRIPTION("ASoC TLV320AIC32x4 codec driver SPI");
67 MODULE_AUTHOR("Annaliese McDermond <nh6z@nh6z.net>");
68 MODULE_LICENSE("GPL");