blob: 6b0df0d750dc5dab211ef07fefb7af229ef1b9d1 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Sean Cross567e4f92014-07-31 10:43:36 +08002/*
3 * es8328-i2c.c -- ES8328 ALSA SoC I2C Audio driver
4 *
5 * Copyright 2014 Sutajio Ko-Usagi PTE LTD
6 *
7 * Author: Sean Cross <xobs@kosagi.com>
Sean Cross567e4f92014-07-31 10:43:36 +08008 */
9
10#include <linux/module.h>
11#include <linux/i2c.h>
12#include <linux/regmap.h>
13
14#include <sound/soc.h>
15
16#include "es8328.h"
17
18static const struct i2c_device_id es8328_id[] = {
Axel Linb2a9a3b2014-10-28 08:59:37 +080019 { "es8328", 0 },
Romain Perier5f166152017-01-23 11:41:46 +010020 { "es8388", 0 },
Sean Cross567e4f92014-07-31 10:43:36 +080021 { }
22};
23MODULE_DEVICE_TABLE(i2c, es8328_id);
24
25static const struct of_device_id es8328_of_match[] = {
26 { .compatible = "everest,es8328", },
Romain Perier5f166152017-01-23 11:41:46 +010027 { .compatible = "everest,es8388", },
Sean Cross567e4f92014-07-31 10:43:36 +080028 { }
29};
30MODULE_DEVICE_TABLE(of, es8328_of_match);
31
32static int es8328_i2c_probe(struct i2c_client *i2c,
33 const struct i2c_device_id *id)
34{
35 return es8328_probe(&i2c->dev,
36 devm_regmap_init_i2c(i2c, &es8328_regmap_config));
37}
38
Sean Cross567e4f92014-07-31 10:43:36 +080039static struct i2c_driver es8328_i2c_driver = {
40 .driver = {
41 .name = "es8328",
42 .of_match_table = es8328_of_match,
43 },
44 .probe = es8328_i2c_probe,
Sean Cross567e4f92014-07-31 10:43:36 +080045 .id_table = es8328_id,
46};
47
48module_i2c_driver(es8328_i2c_driver);
49
50MODULE_DESCRIPTION("ASoC ES8328 audio CODEC I2C driver");
51MODULE_AUTHOR("Sean Cross <xobs@kosagi.com>");
52MODULE_LICENSE("GPL");