blob: bb5613574786b2489531b47b3ffeac38e1746a64 [file] [log] [blame]
Thomas Gleixnerfda8d262019-05-28 09:57:06 -07001// SPDX-License-Identifier: GPL-2.0-only
Lars-Peter Clausen2923af02014-05-27 10:53:19 +02002/*
3 * Driver for ADAU1381/ADAU1781 CODEC
4 *
5 * Copyright 2014 Analog Devices Inc.
6 * Author: Lars-Peter Clausen <lars@metafoo.de>
Lars-Peter Clausen2923af02014-05-27 10:53:19 +02007 */
8
9#include <linux/mod_devicetable.h>
10#include <linux/module.h>
11#include <linux/regmap.h>
12#include <linux/spi/spi.h>
13#include <sound/soc.h>
14
15#include "adau1781.h"
16
17static void adau1781_spi_switch_mode(struct device *dev)
18{
19 struct spi_device *spi = to_spi_device(dev);
20
21 /*
22 * To get the device into SPI mode CLATCH has to be pulled low three
23 * times. Do this by issuing three dummy reads.
24 */
25 spi_w8r8(spi, 0x00);
26 spi_w8r8(spi, 0x00);
27 spi_w8r8(spi, 0x00);
28}
29
30static int adau1781_spi_probe(struct spi_device *spi)
31{
32 const struct spi_device_id *id = spi_get_device_id(spi);
33 struct regmap_config config;
34
35 if (!id)
36 return -EINVAL;
37
38 config = adau1781_regmap_config;
39 config.val_bits = 8;
40 config.reg_bits = 24;
41 config.read_flag_mask = 0x1;
42
43 return adau1781_probe(&spi->dev,
44 devm_regmap_init_spi(spi, &config),
45 id->driver_data, adau1781_spi_switch_mode);
46}
47
48static int adau1781_spi_remove(struct spi_device *spi)
49{
Lars-Peter Clausen5d76de62016-06-15 15:07:27 +020050 adau17x1_remove(&spi->dev);
Lars-Peter Clausen2923af02014-05-27 10:53:19 +020051 return 0;
52}
53
54static const struct spi_device_id adau1781_spi_id[] = {
55 { "adau1381", ADAU1381 },
56 { "adau1781", ADAU1781 },
57 { }
58};
59MODULE_DEVICE_TABLE(spi, adau1781_spi_id);
60
Andreas Irestålaaf0f3a2016-02-16 13:56:44 +010061#if defined(CONFIG_OF)
62static const struct of_device_id adau1781_spi_dt_ids[] = {
63 { .compatible = "adi,adau1381", },
64 { .compatible = "adi,adau1781", },
65 { },
66};
67MODULE_DEVICE_TABLE(of, adau1781_spi_dt_ids);
68#endif
69
Lars-Peter Clausen2923af02014-05-27 10:53:19 +020070static struct spi_driver adau1781_spi_driver = {
71 .driver = {
72 .name = "adau1781",
Andreas Irestålaaf0f3a2016-02-16 13:56:44 +010073 .of_match_table = of_match_ptr(adau1781_spi_dt_ids),
Lars-Peter Clausen2923af02014-05-27 10:53:19 +020074 },
75 .probe = adau1781_spi_probe,
76 .remove = adau1781_spi_remove,
77 .id_table = adau1781_spi_id,
78};
79module_spi_driver(adau1781_spi_driver);
80
81MODULE_DESCRIPTION("ASoC ADAU1381/ADAU1781 CODEC SPI driver");
82MODULE_AUTHOR("Lars-Peter Clausen <lars@metafoo.de>");
83MODULE_LICENSE("GPL");