2012-06-19 19:36:18 +04:00
/*
* arizona - spi . c - - Arizona SPI bus interface
*
* Copyright 2012 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 version 2 as
* published by the Free Software Foundation .
*/
# include <linux/err.h>
# include <linux/module.h>
# include <linux/pm_runtime.h>
# include <linux/regmap.h>
# include <linux/regulator/consumer.h>
# include <linux/slab.h>
# include <linux/spi/spi.h>
2013-10-16 12:56:56 +04:00
# include <linux/of.h>
2012-06-19 19:36:18 +04:00
# include <linux/mfd/arizona/core.h>
# include "arizona.h"
2012-11-19 22:23:04 +04:00
static int arizona_spi_probe ( struct spi_device * spi )
2012-06-19 19:36:18 +04:00
{
const struct spi_device_id * id = spi_get_device_id ( spi ) ;
struct arizona * arizona ;
const struct regmap_config * regmap_config ;
2013-03-25 04:11:27 +04:00
int ret , type ;
2012-06-19 19:36:18 +04:00
2013-03-25 04:11:27 +04:00
if ( spi - > dev . of_node )
type = arizona_of_get_type ( & spi - > dev ) ;
else
type = id - > driver_data ;
switch ( type ) {
2012-06-19 19:36:18 +04:00
# ifdef CONFIG_MFD_WM5102
case WM5102 :
regmap_config = & wm5102_spi_regmap ;
break ;
2012-07-10 15:37:58 +04:00
# endif
# ifdef CONFIG_MFD_WM5110
case WM5110 :
regmap_config = & wm5110_spi_regmap ;
break ;
2012-06-19 19:36:18 +04:00
# endif
default :
dev_err ( & spi - > dev , " Unknown device type %ld \n " ,
id - > driver_data ) ;
return - EINVAL ;
}
arizona = devm_kzalloc ( & spi - > dev , sizeof ( * arizona ) , GFP_KERNEL ) ;
if ( arizona = = NULL )
return - ENOMEM ;
arizona - > regmap = devm_regmap_init_spi ( spi , regmap_config ) ;
if ( IS_ERR ( arizona - > regmap ) ) {
ret = PTR_ERR ( arizona - > regmap ) ;
dev_err ( & spi - > dev , " Failed to allocate register map: %d \n " ,
ret ) ;
return ret ;
}
arizona - > type = id - > driver_data ;
arizona - > dev = & spi - > dev ;
arizona - > irq = spi - > irq ;
return arizona_dev_init ( arizona ) ;
}
2012-11-19 22:26:01 +04:00
static int arizona_spi_remove ( struct spi_device * spi )
2012-06-19 19:36:18 +04:00
{
2013-04-06 10:44:30 +04:00
struct arizona * arizona = spi_get_drvdata ( spi ) ;
2012-06-19 19:36:18 +04:00
arizona_dev_exit ( arizona ) ;
return 0 ;
}
static const struct spi_device_id arizona_spi_ids [ ] = {
{ " wm5102 " , WM5102 } ,
2012-07-10 15:37:58 +04:00
{ " wm5110 " , WM5110 } ,
2012-06-19 19:36:18 +04:00
{ } ,
} ;
MODULE_DEVICE_TABLE ( spi , arizona_spi_ids ) ;
static struct spi_driver arizona_spi_driver = {
. driver = {
. name = " arizona " ,
. owner = THIS_MODULE ,
. pm = & arizona_pm_ops ,
2013-03-25 04:11:27 +04:00
. of_match_table = of_match_ptr ( arizona_of_match ) ,
2012-06-19 19:36:18 +04:00
} ,
. probe = arizona_spi_probe ,
2012-11-19 22:20:24 +04:00
. remove = arizona_spi_remove ,
2012-06-19 19:36:18 +04:00
. id_table = arizona_spi_ids ,
} ;
module_spi_driver ( arizona_spi_driver ) ;
MODULE_DESCRIPTION ( " Arizona SPI bus interface " ) ;
MODULE_AUTHOR ( " Mark Brown <broonie@opensource.wolfsonmicro.com> " ) ;
MODULE_LICENSE ( " GPL " ) ;