2 * Driver for the PCM512x CODECs
5 * Copyright 2014 Linaro Ltd
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * version 2 as published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
17 #include <linux/init.h>
18 #include <linux/module.h>
19 #include <linux/spi/spi.h>
23 static int pcm512x_spi_probe(struct spi_device *spi)
25 struct regmap *regmap;
28 regmap = devm_regmap_init_spi(spi, &pcm512x_regmap);
30 ret = PTR_ERR(regmap);
34 return pcm512x_probe(&spi->dev, regmap);
37 static int pcm512x_spi_remove(struct spi_device *spi)
39 pcm512x_remove(&spi->dev);
43 static const struct spi_device_id pcm512x_spi_id[] = {
50 MODULE_DEVICE_TABLE(spi, pcm512x_spi_id);
52 static const struct of_device_id pcm512x_of_match[] = {
53 { .compatible = "ti,pcm5121", },
54 { .compatible = "ti,pcm5122", },
55 { .compatible = "ti,pcm5141", },
56 { .compatible = "ti,pcm5142", },
59 MODULE_DEVICE_TABLE(of, pcm512x_of_match);
61 static struct spi_driver pcm512x_spi_driver = {
62 .probe = pcm512x_spi_probe,
63 .remove = pcm512x_spi_remove,
64 .id_table = pcm512x_spi_id,
67 .of_match_table = pcm512x_of_match,
68 .pm = &pcm512x_pm_ops,
72 module_spi_driver(pcm512x_spi_driver);