blob: 19baa3260f85fb0b0d50a9562867ca1df798db08 [file] [log] [blame]
Sean Cross567e4f92014-07-31 10:43:36 +08001/*
2 * es8328-i2c.c -- ES8328 ALSA SoC I2C Audio driver
3 *
4 * Copyright 2014 Sutajio Ko-Usagi PTE LTD
5 *
6 * Author: Sean Cross <xobs@kosagi.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/module.h>
14#include <linux/i2c.h>
15#include <linux/regmap.h>
16
17#include <sound/soc.h>
18
19#include "es8328.h"
20
21static const struct i2c_device_id es8328_id[] = {
Axel Linb2a9a3b2014-10-28 08:59:37 +080022 { "es8328", 0 },
Romain Perier5f166152017-01-23 11:41:46 +010023 { "es8388", 0 },
Sean Cross567e4f92014-07-31 10:43:36 +080024 { }
25};
26MODULE_DEVICE_TABLE(i2c, es8328_id);
27
28static const struct of_device_id es8328_of_match[] = {
29 { .compatible = "everest,es8328", },
Romain Perier5f166152017-01-23 11:41:46 +010030 { .compatible = "everest,es8388", },
Sean Cross567e4f92014-07-31 10:43:36 +080031 { }
32};
33MODULE_DEVICE_TABLE(of, es8328_of_match);
34
35static int es8328_i2c_probe(struct i2c_client *i2c,
36 const struct i2c_device_id *id)
37{
38 return es8328_probe(&i2c->dev,
39 devm_regmap_init_i2c(i2c, &es8328_regmap_config));
40}
41
Sean Cross567e4f92014-07-31 10:43:36 +080042static struct i2c_driver es8328_i2c_driver = {
43 .driver = {
44 .name = "es8328",
45 .of_match_table = es8328_of_match,
46 },
47 .probe = es8328_i2c_probe,
Sean Cross567e4f92014-07-31 10:43:36 +080048 .id_table = es8328_id,
49};
50
51module_i2c_driver(es8328_i2c_driver);
52
53MODULE_DESCRIPTION("ASoC ES8328 audio CODEC I2C driver");
54MODULE_AUTHOR("Sean Cross <xobs@kosagi.com>");
55MODULE_LICENSE("GPL");