Files
linux-apfs/drivers/mfd/wm831x-spi.c
T

127 lines
2.8 KiB
C
Raw Normal View History

2010-10-20 00:00:11 +02:00
/*
* wm831x-spi.c -- SPI access for Wolfson WM831x PMICs
*
* Copyright 2009,2010 Wolfson Microelectronics PLC.
*
* Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
*/
#include <linux/kernel.h>
#include <linux/module.h>
2011-02-01 11:46:12 +00:00
#include <linux/pm.h>
2010-10-20 00:00:11 +02:00
#include <linux/spi/spi.h>
2011-06-10 19:28:10 +01:00
#include <linux/regmap.h>
#include <linux/err.h>
2010-10-20 00:00:11 +02:00
#include <linux/mfd/wm831x/core.h>
2012-11-19 13:23:04 -05:00
static int wm831x_spi_probe(struct spi_device *spi)
2010-10-20 00:00:11 +02:00
{
const struct spi_device_id *id = spi_get_device_id(spi);
2010-10-20 00:00:11 +02:00
struct wm831x *wm831x;
enum wm831x_parent type;
2011-06-10 19:28:10 +01:00
int ret;
2010-10-20 00:00:11 +02:00
type = (enum wm831x_parent)id->driver_data;
2010-10-20 00:00:11 +02:00
wm831x = devm_kzalloc(&spi->dev, sizeof(struct wm831x), GFP_KERNEL);
2010-10-20 00:00:11 +02:00
if (wm831x == NULL)
return -ENOMEM;
spi->bits_per_word = 16;
spi->mode = SPI_MODE_0;
spi_set_drvdata(spi, wm831x);
2010-10-20 00:00:11 +02:00
wm831x->dev = &spi->dev;
2011-06-10 19:28:10 +01:00
2012-01-30 20:08:06 +00:00
wm831x->regmap = devm_regmap_init_spi(spi, &wm831x_regmap_config);
2011-06-10 19:28:10 +01:00
if (IS_ERR(wm831x->regmap)) {
ret = PTR_ERR(wm831x->regmap);
dev_err(wm831x->dev, "Failed to allocate register map: %d\n",
ret);
return ret;
}
2010-10-20 00:00:11 +02:00
return wm831x_device_init(wm831x, type, spi->irq);
}
2012-11-19 13:26:01 -05:00
static int wm831x_spi_remove(struct spi_device *spi)
2010-10-20 00:00:11 +02:00
{
struct wm831x *wm831x = spi_get_drvdata(spi);
2010-10-20 00:00:11 +02:00
wm831x_device_exit(wm831x);
return 0;
}
2011-02-01 11:46:12 +00:00
static int wm831x_spi_suspend(struct device *dev)
2010-10-20 00:00:11 +02:00
{
2011-02-01 11:46:12 +00:00
struct wm831x *wm831x = dev_get_drvdata(dev);
2010-10-20 00:00:11 +02:00
return wm831x_device_suspend(wm831x);
}
static void wm831x_spi_shutdown(struct spi_device *spi)
{
struct wm831x *wm831x = spi_get_drvdata(spi);
wm831x_device_shutdown(wm831x);
}
2011-02-01 11:46:12 +00:00
static const struct dev_pm_ops wm831x_spi_pm = {
.freeze = wm831x_spi_suspend,
.suspend = wm831x_spi_suspend,
};
static const struct spi_device_id wm831x_spi_ids[] = {
{ "wm8310", WM8310 },
{ "wm8311", WM8311 },
{ "wm8312", WM8312 },
{ "wm8320", WM8320 },
{ "wm8321", WM8321 },
{ "wm8325", WM8325 },
{ "wm8326", WM8326 },
{ },
2010-10-20 00:00:11 +02:00
};
MODULE_DEVICE_TABLE(spi, wm831x_spi_ids);
2010-10-20 00:00:11 +02:00
static struct spi_driver wm831x_spi_driver = {
2010-10-20 00:00:11 +02:00
.driver = {
.name = "wm831x",
2010-11-24 18:01:41 +00:00
.owner = THIS_MODULE,
2011-02-01 11:46:12 +00:00
.pm = &wm831x_spi_pm,
2010-11-24 18:01:41 +00:00
},
.id_table = wm831x_spi_ids,
2010-11-24 18:01:41 +00:00
.probe = wm831x_spi_probe,
2012-11-19 13:20:24 -05:00
.remove = wm831x_spi_remove,
.shutdown = wm831x_spi_shutdown,
2010-11-24 18:01:41 +00:00
};
2010-10-20 00:00:11 +02:00
static int __init wm831x_spi_init(void)
{
int ret;
ret = spi_register_driver(&wm831x_spi_driver);
2010-10-20 00:00:11 +02:00
if (ret != 0)
pr_err("Failed to register WM831x SPI driver: %d\n", ret);
2010-11-24 18:01:41 +00:00
2010-10-20 00:00:11 +02:00
return 0;
}
subsys_initcall(wm831x_spi_init);
static void __exit wm831x_spi_exit(void)
{
spi_unregister_driver(&wm831x_spi_driver);
2010-10-20 00:00:11 +02:00
}
module_exit(wm831x_spi_exit);
MODULE_DESCRIPTION("SPI support for WM831x/2x AudioPlus PMICs");
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Mark Brown");