mirror of
https://github.com/torvalds/linux
synced 2024-11-05 18:23:50 +00:00
6c3d713e6d
There are a few known (minor) problems with having the support code for both I2C and SPI in the same module: * We need to be extra careful to make sure to not build the driver into the kernel if one of the subsystems is build as a module (Currently only I2C can be build as a module). * The module init path error handling is rather ugly. E.g. what should be done if either the SPI or the I2C driver fails to register? Most drivers that implement SPI and I2C in the same module currently fallback to undefined behavior in that case. Splitting the the driver into two modules, one for each bus, allows the registration of the other bus driver to continue without problems if one of them fails. This patch splits the AD193X driver into 3 modules. One core module that implements the device logic, but is independent of the bus method used. And one module for SPI and I2C each that registers the drivers and sets up the regmap struct for the bus. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Mark Brown <broonie@linaro.org>
48 lines
984 B
C
48 lines
984 B
C
/*
|
|
* AD1938/AD1939 audio driver
|
|
*
|
|
* Copyright 2014 Analog Devices Inc.
|
|
*
|
|
* Licensed under the GPL-2.
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/spi/spi.h>
|
|
#include <linux/regmap.h>
|
|
|
|
#include <sound/soc.h>
|
|
|
|
#include "ad193x.h"
|
|
|
|
static int ad193x_spi_probe(struct spi_device *spi)
|
|
{
|
|
struct regmap_config config;
|
|
|
|
config = ad193x_regmap_config;
|
|
config.val_bits = 8;
|
|
config.reg_bits = 16;
|
|
config.read_flag_mask = 0x09;
|
|
config.write_flag_mask = 0x08;
|
|
|
|
return ad193x_probe(&spi->dev, devm_regmap_init_spi(spi, &config));
|
|
}
|
|
|
|
static int ad193x_spi_remove(struct spi_device *spi)
|
|
{
|
|
snd_soc_unregister_codec(&spi->dev);
|
|
return 0;
|
|
}
|
|
|
|
static struct spi_driver ad193x_spi_driver = {
|
|
.driver = {
|
|
.name = "ad193x",
|
|
.owner = THIS_MODULE,
|
|
},
|
|
.probe = ad193x_spi_probe,
|
|
.remove = ad193x_spi_remove,
|
|
};
|
|
module_spi_driver(ad193x_spi_driver);
|
|
|
|
MODULE_DESCRIPTION("ASoC AD1938/AD1939 audio CODEC driver");
|
|
MODULE_AUTHOR("Barry Song <21cnbao@gmail.com>");
|
|
MODULE_LICENSE("GPL");
|