1 // SPDX-License-Identifier: GPL-2.0-only
3 * Driver for the PCM512x CODECs
6 * Copyright 2014 Linaro Ltd
9 #include <linux/init.h>
10 #include <linux/module.h>
11 #include <linux/spi/spi.h>
15 static int pcm512x_spi_probe(struct spi_device *spi)
17 struct regmap *regmap;
20 regmap = devm_regmap_init_spi(spi, &pcm512x_regmap);
22 ret = PTR_ERR(regmap);
26 return pcm512x_probe(&spi->dev, regmap);
29 static void pcm512x_spi_remove(struct spi_device *spi)
31 pcm512x_remove(&spi->dev);
34 static const struct spi_device_id pcm512x_spi_id[] = {
42 MODULE_DEVICE_TABLE(spi, pcm512x_spi_id);
44 static const struct of_device_id pcm512x_of_match[] = {
45 { .compatible = "ti,pcm5121", },
46 { .compatible = "ti,pcm5122", },
47 { .compatible = "ti,pcm5141", },
48 { .compatible = "ti,pcm5142", },
49 { .compatible = "ti,pcm5242", },
52 MODULE_DEVICE_TABLE(of, pcm512x_of_match);
54 static struct spi_driver pcm512x_spi_driver = {
55 .probe = pcm512x_spi_probe,
56 .remove = pcm512x_spi_remove,
57 .id_table = pcm512x_spi_id,
60 .of_match_table = pcm512x_of_match,
61 .pm = &pcm512x_pm_ops,
65 module_spi_driver(pcm512x_spi_driver);
67 MODULE_DESCRIPTION("ASoC PCM512x codec driver - SPI");
69 MODULE_LICENSE("GPL v2");