2008-10-08 15:41:43 +04:00
/*
2012-06-20 12:29:04 +04:00
* SuperH Pin Function Controller support .
2008-10-08 15:41:43 +04:00
*
* Copyright ( C ) 2008 Magnus Damm
2012-06-20 12:29:04 +04:00
* Copyright ( C ) 2009 - 2012 Paul Mundt
2008-10-08 15:41:43 +04:00
*
* This file is subject to the terms and conditions of the GNU General Public
* License . See the file " COPYING " in the main directory of this archive
* for more details .
*/
2012-12-16 02:50:47 +04:00
# define DRV_NAME "sh-pfc"
2012-12-16 02:50:45 +04:00
# define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
2010-10-03 22:54:56 +04:00
2012-12-16 02:50:52 +04:00
# include <linux/bitops.h>
2008-10-08 15:41:43 +04:00
# include <linux/err.h>
2012-12-16 02:50:52 +04:00
# include <linux/errno.h>
2008-10-08 15:41:43 +04:00
# include <linux/io.h>
2011-12-09 07:14:27 +04:00
# include <linux/ioport.h>
2012-12-16 02:50:52 +04:00
# include <linux/kernel.h>
# include <linux/module.h>
2012-07-10 07:08:14 +04:00
# include <linux/pinctrl/machine.h>
2012-12-16 02:50:47 +04:00
# include <linux/platform_device.h>
2012-12-16 02:50:52 +04:00
# include <linux/slab.h>
2011-12-09 07:14:27 +04:00
2012-12-16 02:50:44 +04:00
# include "core.h"
2012-12-16 02:50:55 +04:00
static int sh_pfc_ioremap ( struct sh_pfc * pfc , struct platform_device * pdev )
2011-12-09 07:14:27 +04:00
{
struct resource * res ;
int k ;
2012-12-16 02:51:18 +04:00
if ( pdev - > num_resources = = 0 ) {
2012-12-16 02:50:55 +04:00
pfc - > num_windows = 0 ;
2011-12-09 07:14:27 +04:00
return 0 ;
2012-12-16 02:50:55 +04:00
}
2011-12-09 07:14:27 +04:00
2012-12-16 02:51:18 +04:00
pfc - > window = devm_kzalloc ( pfc - > dev , pdev - > num_resources *
2012-12-16 02:50:48 +04:00
sizeof ( * pfc - > window ) , GFP_NOWAIT ) ;
2012-06-20 12:29:04 +04:00
if ( ! pfc - > window )
2012-12-16 02:50:48 +04:00
return - ENOMEM ;
2011-12-09 07:14:27 +04:00
2012-12-16 02:51:18 +04:00
pfc - > num_windows = pdev - > num_resources ;
2012-12-16 02:50:55 +04:00
2012-12-16 02:51:18 +04:00
for ( k = 0 , res = pdev - > resource ; k < pdev - > num_resources ; k + + , res + + ) {
2011-12-09 07:14:27 +04:00
WARN_ON ( resource_type ( res ) ! = IORESOURCE_MEM ) ;
2012-06-20 12:29:04 +04:00
pfc - > window [ k ] . phys = res - > start ;
pfc - > window [ k ] . size = resource_size ( res ) ;
2012-12-16 02:50:49 +04:00
pfc - > window [ k ] . virt = devm_ioremap_nocache ( pfc - > dev , res - > start ,
resource_size ( res ) ) ;
if ( ! pfc - > window [ k ] . virt )
2012-12-16 02:50:48 +04:00
return - ENOMEM ;
2011-12-09 07:14:27 +04:00
}
return 0 ;
}
2012-12-16 02:50:53 +04:00
static void __iomem * sh_pfc_phys_to_virt ( struct sh_pfc * pfc ,
unsigned long address )
2011-12-09 07:14:27 +04:00
{
2012-12-16 02:50:53 +04:00
struct sh_pfc_window * window ;
2011-12-09 07:14:27 +04:00
int k ;
/* scan through physical windows and convert address */
2012-12-16 02:50:55 +04:00
for ( k = 0 ; k < pfc - > num_windows ; k + + ) {
2012-06-20 12:29:04 +04:00
window = pfc - > window + k ;
2011-12-09 07:14:27 +04:00
if ( address < window - > phys )
continue ;
if ( address > = ( window - > phys + window - > size ) )
continue ;
return window - > virt + ( address - window - > phys ) ;
}
/* no windows defined, register must be 1:1 mapped virt:phys */
return ( void __iomem * ) address ;
}
2008-10-08 15:41:43 +04:00
2012-12-16 02:50:53 +04:00
static int sh_pfc_enum_in_range ( pinmux_enum_t enum_id , struct pinmux_range * r )
2008-10-08 15:41:43 +04:00
{
if ( enum_id < r - > begin )
return 0 ;
if ( enum_id > r - > end )
return 0 ;
return 1 ;
}
2012-12-16 02:50:53 +04:00
static unsigned long sh_pfc_read_raw_reg ( void __iomem * mapped_reg ,
unsigned long reg_width )
2008-12-25 12:17:26 +03:00
{
switch ( reg_width ) {
case 8 :
2011-12-09 07:14:27 +04:00
return ioread8 ( mapped_reg ) ;
2008-12-25 12:17:26 +03:00
case 16 :
2011-12-09 07:14:27 +04:00
return ioread16 ( mapped_reg ) ;
2008-12-25 12:17:26 +03:00
case 32 :
2011-12-09 07:14:27 +04:00
return ioread32 ( mapped_reg ) ;
2008-12-25 12:17:26 +03:00
}
BUG ( ) ;
return 0 ;
}
2012-12-16 02:50:53 +04:00
static void sh_pfc_write_raw_reg ( void __iomem * mapped_reg ,
unsigned long reg_width , unsigned long data )
2008-12-25 12:17:26 +03:00
{
switch ( reg_width ) {
case 8 :
2011-12-09 07:14:27 +04:00
iowrite8 ( data , mapped_reg ) ;
2008-12-25 12:17:26 +03:00
return ;
case 16 :
2011-12-09 07:14:27 +04:00
iowrite16 ( data , mapped_reg ) ;
2008-12-25 12:17:26 +03:00
return ;
case 32 :
2011-12-09 07:14:27 +04:00
iowrite32 ( data , mapped_reg ) ;
2008-12-25 12:17:26 +03:00
return ;
}
BUG ( ) ;
}
2012-06-20 12:29:04 +04:00
int sh_pfc_read_bit ( struct pinmux_data_reg * dr , unsigned long in_pos )
2011-12-13 20:00:37 +04:00
{
unsigned long pos ;
pos = dr - > reg_width - ( in_pos + 1 ) ;
pr_debug ( " read_bit: addr = %lx, pos = %ld, "
" r_width = %ld \n " , dr - > reg , pos , dr - > reg_width ) ;
2012-12-16 02:50:53 +04:00
return ( sh_pfc_read_raw_reg ( dr - > mapped_reg , dr - > reg_width ) > > pos ) & 1 ;
2011-12-13 20:00:37 +04:00
}
2012-06-20 12:29:04 +04:00
void sh_pfc_write_bit ( struct pinmux_data_reg * dr , unsigned long in_pos ,
unsigned long value )
2008-12-25 12:17:26 +03:00
{
unsigned long pos ;
pos = dr - > reg_width - ( in_pos + 1 ) ;
2009-12-09 09:51:27 +03:00
pr_debug ( " write_bit addr = %lx, value = %d, pos = %ld, "
2009-11-30 06:15:04 +03:00
" r_width = %ld \n " ,
dr - > reg , ! ! value , pos , dr - > reg_width ) ;
2008-12-25 12:17:26 +03:00
if ( value )
set_bit ( pos , & dr - > reg_shadow ) ;
else
clear_bit ( pos , & dr - > reg_shadow ) ;
2012-12-16 02:50:53 +04:00
sh_pfc_write_raw_reg ( dr - > mapped_reg , dr - > reg_width , dr - > reg_shadow ) ;
2008-12-25 12:17:26 +03:00
}
2012-12-16 02:50:53 +04:00
static void sh_pfc_config_reg_helper ( struct sh_pfc * pfc ,
struct pinmux_cfg_reg * crp ,
unsigned long in_pos ,
void __iomem * * mapped_regp ,
unsigned long * maskp ,
unsigned long * posp )
2008-10-08 15:41:43 +04:00
{
2011-12-13 20:01:05 +04:00
int k ;
2012-12-16 02:50:53 +04:00
* mapped_regp = sh_pfc_phys_to_virt ( pfc , crp - > reg ) ;
2008-10-08 15:41:43 +04:00
2011-12-13 20:01:05 +04:00
if ( crp - > field_width ) {
* maskp = ( 1 < < crp - > field_width ) - 1 ;
* posp = crp - > reg_width - ( ( in_pos + 1 ) * crp - > field_width ) ;
} else {
* maskp = ( 1 < < crp - > var_field_width [ in_pos ] ) - 1 ;
* posp = crp - > reg_width ;
for ( k = 0 ; k < = in_pos ; k + + )
* posp - = crp - > var_field_width [ k ] ;
}
2011-12-13 20:00:55 +04:00
}
2012-12-16 02:50:53 +04:00
static int sh_pfc_read_config_reg ( struct sh_pfc * pfc ,
struct pinmux_cfg_reg * crp ,
unsigned long field )
2011-12-13 20:00:55 +04:00
{
void __iomem * mapped_reg ;
unsigned long mask , pos ;
2012-12-16 02:50:53 +04:00
sh_pfc_config_reg_helper ( pfc , crp , field , & mapped_reg , & mask , & pos ) ;
2008-10-08 15:41:43 +04:00
2011-12-13 20:00:55 +04:00
pr_debug ( " read_reg: addr = %lx, field = %ld, "
2009-11-30 06:15:04 +03:00
" r_width = %ld, f_width = %ld \n " ,
2011-12-13 20:00:55 +04:00
crp - > reg , field , crp - > reg_width , crp - > field_width ) ;
2008-10-08 15:41:43 +04:00
2012-12-16 02:50:53 +04:00
return ( sh_pfc_read_raw_reg ( mapped_reg , crp - > reg_width ) > > pos ) & mask ;
2008-12-25 12:17:18 +03:00
}
2012-12-16 02:50:53 +04:00
static void sh_pfc_write_config_reg ( struct sh_pfc * pfc ,
struct pinmux_cfg_reg * crp ,
unsigned long field , unsigned long value )
2008-12-25 12:17:18 +03:00
{
2011-12-13 20:00:55 +04:00
void __iomem * mapped_reg ;
2011-12-13 20:01:14 +04:00
unsigned long mask , pos , data ;
2008-12-25 12:17:18 +03:00
2012-12-16 02:50:53 +04:00
sh_pfc_config_reg_helper ( pfc , crp , field , & mapped_reg , & mask , & pos ) ;
2008-10-08 15:41:43 +04:00
2011-12-13 20:00:55 +04:00
pr_debug ( " write_reg addr = %lx, value = %ld, field = %ld, "
2009-11-30 06:15:04 +03:00
" r_width = %ld, f_width = %ld \n " ,
2011-12-13 20:00:55 +04:00
crp - > reg , value , field , crp - > reg_width , crp - > field_width ) ;
2008-12-25 12:17:18 +03:00
mask = ~ ( mask < < pos ) ;
value = value < < pos ;
2008-10-08 15:41:43 +04:00
2012-12-16 02:50:53 +04:00
data = sh_pfc_read_raw_reg ( mapped_reg , crp - > reg_width ) ;
2011-12-13 20:01:14 +04:00
data & = mask ;
data | = value ;
2012-12-16 02:51:20 +04:00
if ( pfc - > info - > unlock_reg )
2012-12-16 02:50:53 +04:00
sh_pfc_write_raw_reg (
2012-12-16 02:51:20 +04:00
sh_pfc_phys_to_virt ( pfc , pfc - > info - > unlock_reg ) , 32 ,
2012-12-16 02:50:53 +04:00
~ data ) ;
2011-12-13 20:01:14 +04:00
2012-12-16 02:50:53 +04:00
sh_pfc_write_raw_reg ( mapped_reg , crp - > reg_width , data ) ;
2008-10-08 15:41:43 +04:00
}
2012-12-16 02:50:53 +04:00
static int sh_pfc_setup_data_reg ( struct sh_pfc * pfc , unsigned gpio )
2008-10-08 15:41:43 +04:00
{
2012-12-16 02:51:20 +04:00
struct pinmux_gpio * gpiop = & pfc - > info - > gpios [ gpio ] ;
2008-10-08 15:41:43 +04:00
struct pinmux_data_reg * data_reg ;
int k , n ;
2012-12-16 02:51:20 +04:00
if ( ! sh_pfc_enum_in_range ( gpiop - > enum_id , & pfc - > info - > data ) )
2008-10-08 15:41:43 +04:00
return - 1 ;
k = 0 ;
while ( 1 ) {
2012-12-16 02:51:20 +04:00
data_reg = pfc - > info - > data_regs + k ;
2008-10-08 15:41:43 +04:00
if ( ! data_reg - > reg_width )
break ;
2012-12-16 02:50:53 +04:00
data_reg - > mapped_reg = sh_pfc_phys_to_virt ( pfc , data_reg - > reg ) ;
2011-12-09 07:14:27 +04:00
2008-10-08 15:41:43 +04:00
for ( n = 0 ; n < data_reg - > reg_width ; n + + ) {
2008-12-25 12:17:09 +03:00
if ( data_reg - > enum_ids [ n ] = = gpiop - > enum_id ) {
gpiop - > flags & = ~ PINMUX_FLAG_DREG ;
gpiop - > flags | = ( k < < PINMUX_FLAG_DREG_SHIFT ) ;
gpiop - > flags & = ~ PINMUX_FLAG_DBIT ;
gpiop - > flags | = ( n < < PINMUX_FLAG_DBIT_SHIFT ) ;
2008-10-08 15:41:43 +04:00
return 0 ;
}
}
k + + ;
}
2008-12-25 12:17:09 +03:00
BUG ( ) ;
2008-10-08 15:41:43 +04:00
return - 1 ;
}
2012-12-16 02:50:53 +04:00
static void sh_pfc_setup_data_regs ( struct sh_pfc * pfc )
2008-12-25 12:17:26 +03:00
{
struct pinmux_data_reg * drp ;
int k ;
2012-12-16 02:51:20 +04:00
for ( k = pfc - > info - > first_gpio ; k < = pfc - > info - > last_gpio ; k + + )
2012-12-16 02:50:53 +04:00
sh_pfc_setup_data_reg ( pfc , k ) ;
2008-12-25 12:17:26 +03:00
k = 0 ;
while ( 1 ) {
2012-12-16 02:51:20 +04:00
drp = pfc - > info - > data_regs + k ;
2008-12-25 12:17:26 +03:00
if ( ! drp - > reg_width )
break ;
2012-12-16 02:50:53 +04:00
drp - > reg_shadow = sh_pfc_read_raw_reg ( drp - > mapped_reg ,
drp - > reg_width ) ;
2008-12-25 12:17:26 +03:00
k + + ;
}
}
2012-06-20 12:29:04 +04:00
int sh_pfc_get_data_reg ( struct sh_pfc * pfc , unsigned gpio ,
2008-12-25 12:17:09 +03:00
struct pinmux_data_reg * * drp , int * bitp )
{
2012-12-16 02:51:20 +04:00
struct pinmux_gpio * gpiop = & pfc - > info - > gpios [ gpio ] ;
2008-12-25 12:17:09 +03:00
int k , n ;
2012-12-16 02:51:20 +04:00
if ( ! sh_pfc_enum_in_range ( gpiop - > enum_id , & pfc - > info - > data ) )
2008-12-25 12:17:09 +03:00
return - 1 ;
k = ( gpiop - > flags & PINMUX_FLAG_DREG ) > > PINMUX_FLAG_DREG_SHIFT ;
n = ( gpiop - > flags & PINMUX_FLAG_DBIT ) > > PINMUX_FLAG_DBIT_SHIFT ;
2012-12-16 02:51:20 +04:00
* drp = pfc - > info - > data_regs + k ;
2008-12-25 12:17:09 +03:00
* bitp = n ;
return 0 ;
}
2012-12-16 02:50:53 +04:00
static int sh_pfc_get_config_reg ( struct sh_pfc * pfc , pinmux_enum_t enum_id ,
struct pinmux_cfg_reg * * crp , int * fieldp ,
int * valuep , unsigned long * * cntp )
2008-10-08 15:41:43 +04:00
{
struct pinmux_cfg_reg * config_reg ;
2011-12-13 20:01:05 +04:00
unsigned long r_width , f_width , curr_width , ncomb ;
int k , m , n , pos , bit_pos ;
2008-10-08 15:41:43 +04:00
k = 0 ;
while ( 1 ) {
2012-12-16 02:51:20 +04:00
config_reg = pfc - > info - > cfg_regs + k ;
2008-10-08 15:41:43 +04:00
r_width = config_reg - > reg_width ;
f_width = config_reg - > field_width ;
if ( ! r_width )
break ;
2011-12-13 20:01:05 +04:00
pos = 0 ;
m = 0 ;
for ( bit_pos = 0 ; bit_pos < r_width ; bit_pos + = curr_width ) {
if ( f_width )
curr_width = f_width ;
else
curr_width = config_reg - > var_field_width [ m ] ;
ncomb = 1 < < curr_width ;
for ( n = 0 ; n < ncomb ; n + + ) {
if ( config_reg - > enum_ids [ pos + n ] = = enum_id ) {
* crp = config_reg ;
* fieldp = m ;
* valuep = n ;
* cntp = & config_reg - > cnt [ m ] ;
return 0 ;
}
2008-10-08 15:41:43 +04:00
}
2011-12-13 20:01:05 +04:00
pos + = ncomb ;
m + + ;
2008-10-08 15:41:43 +04:00
}
k + + ;
}
return - 1 ;
}
2012-06-20 12:29:04 +04:00
int sh_pfc_gpio_to_enum ( struct sh_pfc * pfc , unsigned gpio , int pos ,
pinmux_enum_t * enum_idp )
2008-10-08 15:41:43 +04:00
{
2012-12-16 02:51:20 +04:00
pinmux_enum_t enum_id = pfc - > info - > gpios [ gpio ] . enum_id ;
pinmux_enum_t * data = pfc - > info - > gpio_data ;
2008-10-08 15:41:43 +04:00
int k ;
2012-12-16 02:51:20 +04:00
if ( ! sh_pfc_enum_in_range ( enum_id , & pfc - > info - > data ) ) {
if ( ! sh_pfc_enum_in_range ( enum_id , & pfc - > info - > mark ) ) {
2008-10-08 15:41:43 +04:00
pr_err ( " non data/mark enum_id for gpio %d \n " , gpio ) ;
return - 1 ;
}
}
if ( pos ) {
* enum_idp = data [ pos + 1 ] ;
return pos + 1 ;
}
2012-12-16 02:51:20 +04:00
for ( k = 0 ; k < pfc - > info - > gpio_data_size ; k + + ) {
2008-10-08 15:41:43 +04:00
if ( data [ k ] = = enum_id ) {
* enum_idp = data [ k + 1 ] ;
return k + 1 ;
}
}
pr_err ( " cannot locate data/mark enum_id for gpio %d \n " , gpio ) ;
return - 1 ;
}
2012-06-20 12:29:04 +04:00
int sh_pfc_config_gpio ( struct sh_pfc * pfc , unsigned gpio , int pinmux_type ,
int cfg_mode )
2008-10-08 15:41:43 +04:00
{
struct pinmux_cfg_reg * cr = NULL ;
pinmux_enum_t enum_id ;
struct pinmux_range * range ;
2011-12-13 20:00:46 +04:00
int in_range , pos , field , value ;
2008-10-08 15:41:43 +04:00
unsigned long * cntp ;
switch ( pinmux_type ) {
case PINMUX_TYPE_FUNCTION :
range = NULL ;
break ;
case PINMUX_TYPE_OUTPUT :
2012-12-16 02:51:20 +04:00
range = & pfc - > info - > output ;
2008-10-08 15:41:43 +04:00
break ;
case PINMUX_TYPE_INPUT :
2012-12-16 02:51:20 +04:00
range = & pfc - > info - > input ;
2008-10-08 15:41:43 +04:00
break ;
case PINMUX_TYPE_INPUT_PULLUP :
2012-12-16 02:51:20 +04:00
range = & pfc - > info - > input_pu ;
2008-10-08 15:41:43 +04:00
break ;
case PINMUX_TYPE_INPUT_PULLDOWN :
2012-12-16 02:51:20 +04:00
range = & pfc - > info - > input_pd ;
2008-10-08 15:41:43 +04:00
break ;
default :
goto out_err ;
}
pos = 0 ;
enum_id = 0 ;
2011-12-13 20:00:46 +04:00
field = 0 ;
value = 0 ;
2008-10-08 15:41:43 +04:00
while ( 1 ) {
2012-06-20 12:29:04 +04:00
pos = sh_pfc_gpio_to_enum ( pfc , gpio , pos , & enum_id ) ;
2008-10-08 15:41:43 +04:00
if ( pos < = 0 )
goto out_err ;
if ( ! enum_id )
break ;
2010-01-19 16:52:28 +03:00
/* first check if this is a function enum */
2012-12-16 02:51:20 +04:00
in_range = sh_pfc_enum_in_range ( enum_id , & pfc - > info - > function ) ;
2010-01-19 16:52:28 +03:00
if ( ! in_range ) {
/* not a function enum */
if ( range ) {
/*
* other range exists , so this pin is
* a regular GPIO pin that now is being
* bound to a specific direction .
*
* for this case we only allow function enums
* and the enums that match the other range .
*/
2012-12-16 02:50:53 +04:00
in_range = sh_pfc_enum_in_range ( enum_id , range ) ;
2010-01-19 16:52:28 +03:00
/*
* special case pass through for fixed
* input - only or output - only pins without
* function enum register association .
*/
if ( in_range & & enum_id = = range - > force )
continue ;
} else {
/*
* no other range exists , so this pin
* must then be of the function type .
*
* allow function type pins to select
* any combination of function / in / out
* in their MARK lists .
*/
in_range = 1 ;
}
2008-10-22 13:29:17 +04:00
}
2008-10-08 15:41:43 +04:00
if ( ! in_range )
continue ;
2012-12-16 02:50:53 +04:00
if ( sh_pfc_get_config_reg ( pfc , enum_id , & cr ,
& field , & value , & cntp ) ! = 0 )
2008-10-08 15:41:43 +04:00
goto out_err ;
switch ( cfg_mode ) {
case GPIO_CFG_DRYRUN :
2011-12-13 20:00:55 +04:00
if ( ! * cntp | |
2012-12-16 02:50:53 +04:00
( sh_pfc_read_config_reg ( pfc , cr , field ) ! = value ) )
2008-10-08 15:41:43 +04:00
continue ;
break ;
case GPIO_CFG_REQ :
2012-12-16 02:50:53 +04:00
sh_pfc_write_config_reg ( pfc , cr , field , value ) ;
2008-10-08 15:41:43 +04:00
* cntp = * cntp + 1 ;
break ;
case GPIO_CFG_FREE :
* cntp = * cntp - 1 ;
break ;
}
}
return 0 ;
out_err :
return - 1 ;
}
2012-12-16 02:50:47 +04:00
static int sh_pfc_probe ( struct platform_device * pdev )
2008-10-08 15:41:43 +04:00
{
2012-12-16 02:51:20 +04:00
struct sh_pfc_soc_info * info ;
2012-12-16 02:50:47 +04:00
struct sh_pfc * pfc ;
2008-12-25 12:17:18 +03:00
int ret ;
2008-10-08 15:41:43 +04:00
2012-06-20 19:03:41 +04:00
/*
* Ensure that the type encoding fits
*/
BUILD_BUG_ON ( PINMUX_FLAG_TYPE > ( ( 1 < < PINMUX_FLAG_DBIT_SHIFT ) - 1 ) ) ;
2012-12-16 02:51:20 +04:00
info = pdev - > id_entry - > driver_data
? ( void * ) pdev - > id_entry - > driver_data : pdev - > dev . platform_data ;
if ( info = = NULL )
2012-12-16 02:50:47 +04:00
return - ENODEV ;
2008-10-08 15:41:43 +04:00
2012-12-16 02:50:47 +04:00
pfc = devm_kzalloc ( & pdev - > dev , sizeof ( pfc ) , GFP_KERNEL ) ;
if ( pfc = = NULL )
return - ENOMEM ;
2012-12-16 02:50:43 +04:00
2012-12-16 02:51:20 +04:00
pfc - > info = info ;
2012-12-16 02:50:47 +04:00
pfc - > dev = & pdev - > dev ;
2012-12-16 02:50:55 +04:00
ret = sh_pfc_ioremap ( pfc , pdev ) ;
2012-12-16 02:50:47 +04:00
if ( unlikely ( ret < 0 ) )
2011-12-09 07:14:27 +04:00
return ret ;
2012-12-16 02:50:47 +04:00
spin_lock_init ( & pfc - > lock ) ;
2008-12-25 12:17:34 +03:00
2012-07-10 07:08:14 +04:00
pinctrl_provide_dummies ( ) ;
2012-12-16 02:50:53 +04:00
sh_pfc_setup_data_regs ( pfc ) ;
2011-12-09 07:14:27 +04:00
2012-07-10 07:08:14 +04:00
/*
* Initialize pinctrl bindings first
*/
2012-12-16 02:50:47 +04:00
ret = sh_pfc_register_pinctrl ( pfc ) ;
2012-12-16 02:50:45 +04:00
if ( unlikely ( ret ! = 0 ) )
2012-12-16 02:50:49 +04:00
return ret ;
2012-07-10 07:08:14 +04:00
2012-12-16 02:50:46 +04:00
# ifdef CONFIG_GPIO_SH_PFC
2012-07-10 07:08:14 +04:00
/*
* Then the GPIO chip
*/
2012-12-16 02:50:47 +04:00
ret = sh_pfc_register_gpiochip ( pfc ) ;
2012-12-16 02:50:46 +04:00
if ( unlikely ( ret ! = 0 ) ) {
2012-07-10 07:08:14 +04:00
/*
* If the GPIO chip fails to come up we still leave the
* PFC state as it is , given that there are already
* extant users of it that have succeeded by this point .
*/
2012-12-16 02:50:46 +04:00
pr_notice ( " failed to init GPIO chip, ignoring... \n " ) ;
2012-06-20 12:29:04 +04:00
}
2012-12-16 02:50:46 +04:00
# endif
2010-10-03 22:54:56 +04:00
2012-12-16 02:50:47 +04:00
platform_set_drvdata ( pdev , pfc ) ;
2012-12-16 02:51:20 +04:00
pr_info ( " %s support registered \n " , info - > name ) ;
2012-07-10 07:08:14 +04:00
2012-06-20 12:29:04 +04:00
return 0 ;
2010-10-03 22:54:56 +04:00
}
2012-12-16 02:50:46 +04:00
2012-12-16 02:50:47 +04:00
static int sh_pfc_remove ( struct platform_device * pdev )
{
struct sh_pfc * pfc = platform_get_drvdata ( pdev ) ;
# ifdef CONFIG_GPIO_SH_PFC
sh_pfc_unregister_gpiochip ( pfc ) ;
# endif
sh_pfc_unregister_pinctrl ( pfc ) ;
platform_set_drvdata ( pdev , NULL ) ;
return 0 ;
}
static const struct platform_device_id sh_pfc_id_table [ ] = {
2012-12-16 02:51:21 +04:00
# ifdef CONFIG_PINCTRL_PFC_R8A7740
{ " pfc-r8a7740 " , ( kernel_ulong_t ) & r8a7740_pinmux_info } ,
2012-12-16 02:51:22 +04:00
# endif
# ifdef CONFIG_PINCTRL_PFC_R8A7779
{ " pfc-r8a7779 " , ( kernel_ulong_t ) & r8a7779_pinmux_info } ,
2012-12-16 02:51:23 +04:00
# endif
2012-12-16 02:51:29 +04:00
# ifdef CONFIG_PINCTRL_PFC_SH7203
{ " pfc-sh7203 " , ( kernel_ulong_t ) & sh7203_pinmux_info } ,
# endif
2012-12-16 02:51:30 +04:00
# ifdef CONFIG_PINCTRL_PFC_SH7264
{ " pfc-sh7264 " , ( kernel_ulong_t ) & sh7264_pinmux_info } ,
# endif
2012-12-16 02:51:31 +04:00
# ifdef CONFIG_PINCTRL_PFC_SH7269
{ " pfc-sh7269 " , ( kernel_ulong_t ) & sh7269_pinmux_info } ,
# endif
2012-12-16 02:51:23 +04:00
# ifdef CONFIG_PINCTRL_PFC_SH7372
{ " pfc-sh7372 " , ( kernel_ulong_t ) & sh7372_pinmux_info } ,
2012-12-16 02:51:24 +04:00
# endif
# ifdef CONFIG_PINCTRL_PFC_SH73A0
{ " pfc-sh73a0 " , ( kernel_ulong_t ) & sh73a0_pinmux_info } ,
2012-12-16 02:51:32 +04:00
# endif
# ifdef CONFIG_PINCTRL_PFC_SH7720
{ " pfc-sh7720 " , ( kernel_ulong_t ) & sh7720_pinmux_info } ,
2012-12-16 02:51:33 +04:00
# endif
# ifdef CONFIG_PINCTRL_PFC_SH7722
{ " pfc-sh7722 " , ( kernel_ulong_t ) & sh7722_pinmux_info } ,
2012-12-16 02:51:34 +04:00
# endif
# ifdef CONFIG_PINCTRL_PFC_SH7723
{ " pfc-sh7723 " , ( kernel_ulong_t ) & sh7723_pinmux_info } ,
2012-12-16 02:51:35 +04:00
# endif
# ifdef CONFIG_PINCTRL_PFC_SH7724
{ " pfc-sh7724 " , ( kernel_ulong_t ) & sh7724_pinmux_info } ,
2012-12-16 02:51:36 +04:00
# endif
# ifdef CONFIG_PINCTRL_PFC_SH7734
{ " pfc-sh7734 " , ( kernel_ulong_t ) & sh7734_pinmux_info } ,
2012-12-16 02:51:37 +04:00
# endif
# ifdef CONFIG_PINCTRL_PFC_SH7757
{ " pfc-sh7757 " , ( kernel_ulong_t ) & sh7757_pinmux_info } ,
2012-12-16 02:51:38 +04:00
# endif
# ifdef CONFIG_PINCTRL_PFC_SH7785
{ " pfc-sh7785 " , ( kernel_ulong_t ) & sh7785_pinmux_info } ,
2012-12-16 02:51:39 +04:00
# endif
# ifdef CONFIG_PINCTRL_PFC_SH7786
{ " pfc-sh7786 " , ( kernel_ulong_t ) & sh7786_pinmux_info } ,
2012-12-16 02:51:40 +04:00
# endif
# ifdef CONFIG_PINCTRL_PFC_SHX3
{ " pfc-shx3 " , ( kernel_ulong_t ) & shx3_pinmux_info } ,
2012-12-16 02:51:21 +04:00
# endif
2012-12-16 02:50:47 +04:00
{ " sh-pfc " , 0 } ,
{ } ,
} ;
MODULE_DEVICE_TABLE ( platform , sh_pfc_id_table ) ;
static struct platform_driver sh_pfc_driver = {
. probe = sh_pfc_probe ,
. remove = sh_pfc_remove ,
. id_table = sh_pfc_id_table ,
. driver = {
. name = DRV_NAME ,
. owner = THIS_MODULE ,
} ,
} ;
2012-12-16 02:50:54 +04:00
static int __init sh_pfc_init ( void )
{
return platform_driver_register ( & sh_pfc_driver ) ;
2012-12-16 02:50:47 +04:00
}
2012-12-16 02:50:54 +04:00
postcore_initcall ( sh_pfc_init ) ;
2012-12-16 02:50:47 +04:00
static void __exit sh_pfc_exit ( void )
{
platform_driver_unregister ( & sh_pfc_driver ) ;
}
module_exit ( sh_pfc_exit ) ;
2012-12-16 02:50:46 +04:00
MODULE_AUTHOR ( " Magnus Damm, Paul Mundt, Laurent Pinchart " ) ;
MODULE_DESCRIPTION ( " Pin Control and GPIO driver for SuperH pin function controller " ) ;
MODULE_LICENSE ( " GPL v2 " ) ;