2010-10-20 02:00:11 +04: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 14:46:12 +03:00
# include <linux/pm.h>
2010-10-20 02:00:11 +04:00
# include <linux/spi/spi.h>
2011-06-10 22:28:10 +04:00
# include <linux/regmap.h>
# include <linux/err.h>
2010-10-20 02:00:11 +04:00
# include <linux/mfd/wm831x/core.h>
static int __devinit wm831x_spi_probe ( struct spi_device * spi )
{
2011-07-24 14:44:19 +04:00
const struct spi_device_id * id = spi_get_device_id ( spi ) ;
2010-10-20 02:00:11 +04:00
struct wm831x * wm831x ;
enum wm831x_parent type ;
2011-06-10 22:28:10 +04:00
int ret ;
2010-10-20 02:00:11 +04:00
2011-07-24 14:44:19 +04:00
type = ( enum wm831x_parent ) id - > driver_data ;
2010-10-20 02:00:11 +04:00
2011-10-25 16:47:40 +04:00
wm831x = devm_kzalloc ( & spi - > dev , sizeof ( struct wm831x ) , GFP_KERNEL ) ;
2010-10-20 02:00:11 +04:00
if ( wm831x = = NULL )
return - ENOMEM ;
spi - > bits_per_word = 16 ;
spi - > mode = SPI_MODE_0 ;
dev_set_drvdata ( & spi - > dev , wm831x ) ;
wm831x - > dev = & spi - > dev ;
2011-06-10 22:28:10 +04:00
2011-07-24 14:44:19 +04:00
wm831x - > regmap = regmap_init_spi ( spi , & wm831x_regmap_config ) ;
2011-06-10 22:28:10 +04: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 02:00:11 +04:00
return wm831x_device_init ( wm831x , type , spi - > irq ) ;
}
static int __devexit wm831x_spi_remove ( struct spi_device * spi )
{
struct wm831x * wm831x = dev_get_drvdata ( & spi - > dev ) ;
wm831x_device_exit ( wm831x ) ;
return 0 ;
}
2011-02-01 14:46:12 +03:00
static int wm831x_spi_suspend ( struct device * dev )
2010-10-20 02:00:11 +04:00
{
2011-02-01 14:46:12 +03:00
struct wm831x * wm831x = dev_get_drvdata ( dev ) ;
2010-10-20 02:00:11 +04:00
return wm831x_device_suspend ( wm831x ) ;
}
2011-09-15 20:54:53 +04:00
static void wm831x_spi_shutdown ( struct spi_device * spi )
{
struct wm831x * wm831x = dev_get_drvdata ( & spi - > dev ) ;
wm831x_device_shutdown ( wm831x ) ;
}
2011-02-01 14:46:12 +03:00
static const struct dev_pm_ops wm831x_spi_pm = {
. freeze = wm831x_spi_suspend ,
. suspend = wm831x_spi_suspend ,
} ;
2011-07-24 14:44:19 +04:00
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 02:00:11 +04:00
} ;
2011-07-24 14:44:19 +04:00
MODULE_DEVICE_TABLE ( spi , wm831x_spi_id ) ;
2010-10-20 02:00:11 +04:00
2011-07-24 14:44:19 +04:00
static struct spi_driver wm831x_spi_driver = {
2010-10-20 02:00:11 +04:00
. driver = {
2011-07-24 14:44:19 +04:00
. name = " wm831x " ,
2010-11-24 21:01:41 +03:00
. owner = THIS_MODULE ,
2011-02-01 14:46:12 +03:00
. pm = & wm831x_spi_pm ,
2010-11-24 21:01:41 +03:00
} ,
2011-07-24 14:44:19 +04:00
. id_table = wm831x_spi_ids ,
2010-11-24 21:01:41 +03:00
. probe = wm831x_spi_probe ,
. remove = __devexit_p ( wm831x_spi_remove ) ,
2011-09-15 20:54:53 +04:00
. shutdown = wm831x_spi_shutdown ,
2010-11-24 21:01:41 +03:00
} ;
2010-10-20 02:00:11 +04:00
static int __init wm831x_spi_init ( void )
{
int ret ;
2011-07-24 14:44:19 +04:00
ret = spi_register_driver ( & wm831x_spi_driver ) ;
2010-11-24 21:01:41 +03:00
if ( ret ! = 0 )
2011-07-24 14:44:19 +04:00
pr_err ( " Failed to register WM831x SPI driver: %d \n " , ret ) ;
2010-11-24 21:01:41 +03:00
2010-10-20 02:00:11 +04:00
return 0 ;
}
subsys_initcall ( wm831x_spi_init ) ;
static void __exit wm831x_spi_exit ( void )
{
2011-07-24 14:44:19 +04:00
spi_unregister_driver ( & wm831x_spi_driver ) ;
2010-10-20 02:00:11 +04:00
}
module_exit ( wm831x_spi_exit ) ;
MODULE_DESCRIPTION ( " SPI support for WM831x/2x AudioPlus PMICs " ) ;
MODULE_LICENSE ( " GPL " ) ;
MODULE_AUTHOR ( " Mark Brown " ) ;