2020-01-14 18:02:52 +03:00
// SPDX-License-Identifier: GPL-2.0-or-later
2016-08-31 12:45:46 +03:00
/*
* GPIO Testing Device Driver
*
* Copyright ( C ) 2014 Kamlakant Patel < kamlakant . patel @ broadcom . com >
2018-03-06 11:04:15 +03:00
* Copyright ( C ) 2015 - 2016 Bamvor Jian Zhang < bamv2005 @ gmail . com >
2017-06-09 14:41:31 +03:00
* Copyright ( C ) 2017 Bartosz Golaszewski < brgl @ bgdev . pl >
2016-08-31 12:45:46 +03:00
*/
2020-09-29 13:09:59 +03:00
# define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
2020-01-14 18:02:53 +03:00
# include <linux/debugfs.h>
# include <linux/gpio/driver.h>
2017-02-06 17:11:07 +03:00
# include <linux/interrupt.h>
# include <linux/irq.h>
2017-08-14 14:20:56 +03:00
# include <linux/irq_sim.h>
2020-05-14 11:39:01 +03:00
# include <linux/irqdomain.h>
2020-10-29 11:17:20 +03:00
# include <linux/mod_devicetable.h>
2020-01-14 18:02:53 +03:00
# include <linux/module.h>
# include <linux/platform_device.h>
2018-09-25 14:29:46 +03:00
# include <linux/property.h>
2020-01-14 18:02:53 +03:00
# include <linux/slab.h>
2020-09-29 13:10:03 +03:00
# include <linux/string_helpers.h>
2020-01-14 18:02:53 +03:00
# include <linux/uaccess.h>
2017-02-06 17:11:08 +03:00
# include "gpiolib.h"
2016-08-31 12:45:46 +03:00
2017-11-27 13:48:42 +03:00
# define GPIO_MOCKUP_MAX_GC 10
2017-06-09 14:41:28 +03:00
/*
* We ' re storing two values per chip : the GPIO base and the number
* of GPIO lines .
*/
# define GPIO_MOCKUP_MAX_RANGES (GPIO_MOCKUP_MAX_GC * 2)
2020-09-29 13:10:01 +03:00
/* Maximum of four properties + the sentinel. */
# define GPIO_MOCKUP_MAX_PROP 5
2016-08-31 12:45:46 +03:00
/*
* struct gpio_pin_status - structure describing a GPIO status
2019-11-06 11:54:12 +03:00
* @ dir : Configures direction of gpio as " in " or " out "
2016-08-31 12:45:46 +03:00
* @ value : Configures status of the gpio as 0 ( low ) or 1 ( high )
*/
2017-02-06 15:10:35 +03:00
struct gpio_mockup_line_status {
int dir ;
2017-11-27 13:48:46 +03:00
int value ;
2019-01-17 18:30:27 +03:00
int pull ;
2017-02-06 17:11:07 +03:00
} ;
2017-02-06 15:10:35 +03:00
struct gpio_mockup_chip {
2016-08-31 12:45:46 +03:00
struct gpio_chip gc ;
2017-02-06 15:10:35 +03:00
struct gpio_mockup_line_status * lines ;
2020-05-14 11:39:01 +03:00
struct irq_domain * irq_sim_domain ;
2017-02-06 17:11:08 +03:00
struct dentry * dbg_dir ;
2018-10-31 16:55:47 +03:00
struct mutex lock ;
2017-02-06 17:11:08 +03:00
} ;
struct gpio_mockup_dbgfs_private {
struct gpio_mockup_chip * chip ;
struct gpio_desc * desc ;
2019-01-18 20:08:59 +03:00
unsigned int offset ;
2016-08-31 12:45:46 +03:00
} ;
2017-06-09 14:41:28 +03:00
static int gpio_mockup_ranges [ GPIO_MOCKUP_MAX_RANGES ] ;
2017-11-27 13:48:53 +03:00
static int gpio_mockup_num_ranges ;
module_param_array ( gpio_mockup_ranges , int , & gpio_mockup_num_ranges , 0400 ) ;
2016-08-31 12:45:46 +03:00
2017-02-06 15:10:37 +03:00
static bool gpio_mockup_named_lines ;
module_param_named ( gpio_mockup_named_lines ,
gpio_mockup_named_lines , bool , 0400 ) ;
2017-02-06 17:11:08 +03:00
static struct dentry * gpio_mockup_dbg_dir ;
2016-08-31 12:45:46 +03:00
2017-11-27 13:48:54 +03:00
static int gpio_mockup_range_base ( unsigned int index )
{
return gpio_mockup_ranges [ index * 2 ] ;
}
static int gpio_mockup_range_ngpio ( unsigned int index )
{
return gpio_mockup_ranges [ index * 2 + 1 ] ;
}
2019-01-23 11:34:15 +03:00
static int __gpio_mockup_get ( struct gpio_mockup_chip * chip ,
unsigned int offset )
2016-08-31 12:45:46 +03:00
{
2017-02-06 15:10:35 +03:00
return chip - > lines [ offset ] . value ;
2016-08-31 12:45:46 +03:00
}
2018-10-31 16:55:47 +03:00
static int gpio_mockup_get ( struct gpio_chip * gc , unsigned int offset )
{
struct gpio_mockup_chip * chip = gpiochip_get_data ( gc ) ;
int val ;
mutex_lock ( & chip - > lock ) ;
2019-01-23 11:34:15 +03:00
val = __gpio_mockup_get ( chip , offset ) ;
2018-10-31 16:55:47 +03:00
mutex_unlock ( & chip - > lock ) ;
return val ;
}
2018-10-31 17:01:40 +03:00
static int gpio_mockup_get_multiple ( struct gpio_chip * gc ,
unsigned long * mask , unsigned long * bits )
{
struct gpio_mockup_chip * chip = gpiochip_get_data ( gc ) ;
unsigned int bit , val ;
mutex_lock ( & chip - > lock ) ;
for_each_set_bit ( bit , mask , gc - > ngpio ) {
2019-01-23 11:34:15 +03:00
val = __gpio_mockup_get ( chip , bit ) ;
2018-10-31 17:01:40 +03:00
__assign_bit ( bit , bits , val ) ;
}
mutex_unlock ( & chip - > lock ) ;
return 0 ;
}
2019-01-23 11:34:15 +03:00
static void __gpio_mockup_set ( struct gpio_mockup_chip * chip ,
2018-10-31 16:55:47 +03:00
unsigned int offset , int value )
2016-08-31 12:45:46 +03:00
{
2017-02-06 15:10:35 +03:00
chip - > lines [ offset ] . value = ! ! value ;
2016-08-31 12:45:46 +03:00
}
2018-10-31 16:55:47 +03:00
static void gpio_mockup_set ( struct gpio_chip * gc ,
unsigned int offset , int value )
{
struct gpio_mockup_chip * chip = gpiochip_get_data ( gc ) ;
mutex_lock ( & chip - > lock ) ;
2019-01-23 11:34:15 +03:00
__gpio_mockup_set ( chip , offset , value ) ;
2018-10-31 16:55:47 +03:00
mutex_unlock ( & chip - > lock ) ;
}
2017-11-27 13:48:51 +03:00
static void gpio_mockup_set_multiple ( struct gpio_chip * gc ,
unsigned long * mask , unsigned long * bits )
{
2018-10-31 16:55:47 +03:00
struct gpio_mockup_chip * chip = gpiochip_get_data ( gc ) ;
2017-11-27 13:48:51 +03:00
unsigned int bit ;
2018-10-31 16:55:47 +03:00
mutex_lock ( & chip - > lock ) ;
2017-11-27 13:48:51 +03:00
for_each_set_bit ( bit , mask , gc - > ngpio )
2019-01-23 11:34:15 +03:00
__gpio_mockup_set ( chip , bit , test_bit ( bit , bits ) ) ;
2018-10-31 16:55:47 +03:00
mutex_unlock ( & chip - > lock ) ;
2017-11-27 13:48:51 +03:00
}
2019-11-05 05:04:27 +03:00
static int gpio_mockup_apply_pull ( struct gpio_mockup_chip * chip ,
unsigned int offset , int value )
{
2021-05-10 22:52:52 +03:00
struct gpio_chip * gc = & chip - > gc ;
struct gpio_desc * desc = gpiochip_get_desc ( gc , offset ) ;
2020-05-14 11:39:01 +03:00
int curr , irq , irq_type , ret = 0 ;
2019-11-05 05:04:27 +03:00
mutex_lock ( & chip - > lock ) ;
if ( test_bit ( FLAG_REQUESTED , & desc - > flags ) & &
2019-12-16 19:37:10 +03:00
! test_bit ( FLAG_IS_OUT , & desc - > flags ) ) {
2019-11-05 05:04:27 +03:00
curr = __gpio_mockup_get ( chip , offset ) ;
if ( curr = = value )
goto out ;
2020-05-14 11:39:01 +03:00
irq = irq_find_mapping ( chip - > irq_sim_domain , offset ) ;
if ( ! irq )
/*
* This is fine - it just means , nobody is listening
* for interrupts on this line , otherwise
* irq_create_mapping ( ) would have been called from
* the to_irq ( ) callback .
*/
goto set_value ;
2019-11-05 05:04:27 +03:00
irq_type = irq_get_trigger_type ( irq ) ;
if ( ( value = = 1 & & ( irq_type & IRQ_TYPE_EDGE_RISING ) ) | |
2020-05-14 11:39:01 +03:00
( value = = 0 & & ( irq_type & IRQ_TYPE_EDGE_FALLING ) ) ) {
ret = irq_set_irqchip_state ( irq , IRQCHIP_STATE_PENDING ,
true ) ;
if ( ret )
goto out ;
}
2019-11-05 05:04:27 +03:00
}
2020-05-14 11:39:01 +03:00
set_value :
2019-11-05 05:04:27 +03:00
/* Change the value unless we're actively driving the line. */
if ( ! test_bit ( FLAG_REQUESTED , & desc - > flags ) | |
2020-02-10 18:50:59 +03:00
! test_bit ( FLAG_IS_OUT , & desc - > flags ) )
2019-11-05 05:04:27 +03:00
__gpio_mockup_set ( chip , offset , value ) ;
out :
chip - > lines [ offset ] . pull = value ;
mutex_unlock ( & chip - > lock ) ;
2020-05-14 11:39:01 +03:00
return ret ;
2019-11-05 05:04:27 +03:00
}
static int gpio_mockup_set_config ( struct gpio_chip * gc ,
unsigned int offset , unsigned long config )
{
struct gpio_mockup_chip * chip = gpiochip_get_data ( gc ) ;
switch ( pinconf_to_config_param ( config ) ) {
case PIN_CONFIG_BIAS_PULL_UP :
return gpio_mockup_apply_pull ( chip , offset , 1 ) ;
case PIN_CONFIG_BIAS_PULL_DOWN :
return gpio_mockup_apply_pull ( chip , offset , 0 ) ;
default :
break ;
}
return - ENOTSUPP ;
}
2017-11-27 13:48:50 +03:00
static int gpio_mockup_dirout ( struct gpio_chip * gc ,
unsigned int offset , int value )
2016-08-31 12:45:46 +03:00
{
2017-02-06 15:10:35 +03:00
struct gpio_mockup_chip * chip = gpiochip_get_data ( gc ) ;
2018-10-31 16:55:47 +03:00
mutex_lock ( & chip - > lock ) ;
2019-11-06 11:54:12 +03:00
chip - > lines [ offset ] . dir = GPIO_LINE_DIRECTION_OUT ;
2019-01-23 11:34:15 +03:00
__gpio_mockup_set ( chip , offset , value ) ;
2018-10-31 16:55:47 +03:00
mutex_unlock ( & chip - > lock ) ;
2016-08-31 12:45:46 +03:00
return 0 ;
}
2017-02-06 15:10:35 +03:00
static int gpio_mockup_dirin ( struct gpio_chip * gc , unsigned int offset )
2016-08-31 12:45:46 +03:00
{
2017-02-06 15:10:35 +03:00
struct gpio_mockup_chip * chip = gpiochip_get_data ( gc ) ;
2018-10-31 16:55:47 +03:00
mutex_lock ( & chip - > lock ) ;
2019-11-06 11:54:12 +03:00
chip - > lines [ offset ] . dir = GPIO_LINE_DIRECTION_IN ;
2018-10-31 16:55:47 +03:00
mutex_unlock ( & chip - > lock ) ;
2016-08-31 12:45:46 +03:00
return 0 ;
}
2017-02-06 15:10:35 +03:00
static int gpio_mockup_get_direction ( struct gpio_chip * gc , unsigned int offset )
2016-08-31 12:45:46 +03:00
{
2017-02-06 15:10:35 +03:00
struct gpio_mockup_chip * chip = gpiochip_get_data ( gc ) ;
2018-10-31 16:55:47 +03:00
int direction ;
2016-08-31 12:45:46 +03:00
2018-10-31 16:55:47 +03:00
mutex_lock ( & chip - > lock ) ;
2019-12-11 03:46:31 +03:00
direction = chip - > lines [ offset ] . dir ;
2018-10-31 16:55:47 +03:00
mutex_unlock ( & chip - > lock ) ;
return direction ;
2016-08-31 12:45:46 +03:00
}
2017-08-14 14:20:56 +03:00
static int gpio_mockup_to_irq ( struct gpio_chip * gc , unsigned int offset )
2017-05-25 11:33:41 +03:00
{
struct gpio_mockup_chip * chip = gpiochip_get_data ( gc ) ;
2020-05-14 11:39:01 +03:00
return irq_create_mapping ( chip - > irq_sim_domain , offset ) ;
2017-02-06 17:11:07 +03:00
}
2019-01-17 18:30:27 +03:00
static void gpio_mockup_free ( struct gpio_chip * gc , unsigned int offset )
{
struct gpio_mockup_chip * chip = gpiochip_get_data ( gc ) ;
__gpio_mockup_set ( chip , offset , chip - > lines [ offset ] . pull ) ;
}
static ssize_t gpio_mockup_debugfs_read ( struct file * file ,
char __user * usr_buf ,
size_t size , loff_t * ppos )
2017-02-06 17:11:08 +03:00
{
struct gpio_mockup_dbgfs_private * priv ;
struct gpio_mockup_chip * chip ;
struct seq_file * sfile ;
2019-01-17 18:30:27 +03:00
struct gpio_chip * gc ;
2019-03-28 13:38:06 +03:00
int val , cnt ;
2019-01-17 18:30:27 +03:00
char buf [ 3 ] ;
2019-03-22 20:27:12 +03:00
2019-01-17 18:30:27 +03:00
if ( * ppos ! = 0 )
return 0 ;
sfile = file - > private_data ;
priv = sfile - > private ;
chip = priv - > chip ;
gc = & chip - > gc ;
val = gpio_mockup_get ( gc , priv - > offset ) ;
2019-03-22 20:27:12 +03:00
cnt = snprintf ( buf , sizeof ( buf ) , " %d \n " , val ) ;
2019-01-17 18:30:27 +03:00
2019-03-28 13:38:06 +03:00
return simple_read_from_buffer ( usr_buf , size , ppos , buf , cnt ) ;
2019-01-17 18:30:27 +03:00
}
static ssize_t gpio_mockup_debugfs_write ( struct file * file ,
const char __user * usr_buf ,
size_t size , loff_t * ppos )
{
struct gpio_mockup_dbgfs_private * priv ;
2019-11-05 05:04:27 +03:00
int rv , val ;
2019-01-17 18:30:27 +03:00
struct seq_file * sfile ;
if ( * ppos ! = 0 )
return - EINVAL ;
2017-02-06 17:11:08 +03:00
2017-06-09 14:41:25 +03:00
rv = kstrtoint_from_user ( usr_buf , size , 0 , & val ) ;
if ( rv )
return rv ;
if ( val ! = 0 & & val ! = 1 )
return - EINVAL ;
2017-06-09 14:41:26 +03:00
sfile = file - > private_data ;
priv = sfile - > private ;
2019-11-05 05:04:27 +03:00
rv = gpio_mockup_apply_pull ( priv - > chip , priv - > offset , val ) ;
if ( rv )
return rv ;
2017-02-06 17:11:08 +03:00
return size ;
}
2019-01-17 18:30:27 +03:00
static int gpio_mockup_debugfs_open ( struct inode * inode , struct file * file )
2017-02-06 17:11:08 +03:00
{
return single_open ( file , NULL , inode - > i_private ) ;
}
2019-01-17 18:30:27 +03:00
/*
* Each mockup chip is represented by a directory named after the chip ' s device
* name under / sys / kernel / debug / gpio - mockup / . Each line is represented by
* a file using the line ' s offset as the name under the chip ' s directory .
*
* Reading from the line ' s file yields the current * value * , writing to the
* line ' s file changes the current * pull * . Default pull for mockup lines is
* down .
*
* Examples :
* - when a line pulled down is requested in output mode and driven high , its
* value will return to 0 once it ' s released
* - when the line is requested in output mode and driven high , writing 0 to
* the corresponding debugfs file will change the pull to down but the
* reported value will still be 1 until the line is released
* - line requested in input mode always reports the same value as its pull
* configuration
* - when the line is requested in input mode and monitored for events , writing
* the same value to the debugfs file will be a noop , while writing the
* opposite value will generate a dummy interrupt with an appropriate edge
*/
static const struct file_operations gpio_mockup_debugfs_ops = {
2017-02-06 17:11:08 +03:00
. owner = THIS_MODULE ,
2019-01-17 18:30:27 +03:00
. open = gpio_mockup_debugfs_open ,
. read = gpio_mockup_debugfs_read ,
. write = gpio_mockup_debugfs_write ,
2017-02-06 17:11:08 +03:00
. llseek = no_llseek ,
2019-09-04 17:18:34 +03:00
. release = single_release ,
2017-02-06 17:11:08 +03:00
} ;
static void gpio_mockup_debugfs_setup ( struct device * dev ,
struct gpio_mockup_chip * chip )
{
struct gpio_mockup_dbgfs_private * priv ;
struct gpio_chip * gc ;
2017-11-27 13:48:45 +03:00
const char * devname ;
2017-02-06 17:11:08 +03:00
char * name ;
int i ;
gc = & chip - > gc ;
2017-11-27 13:48:45 +03:00
devname = dev_name ( & gc - > gpiodev - > dev ) ;
2017-02-06 17:11:08 +03:00
2017-11-27 13:48:45 +03:00
chip - > dbg_dir = debugfs_create_dir ( devname , gpio_mockup_dbg_dir ) ;
2017-02-06 17:11:08 +03:00
for ( i = 0 ; i < gc - > ngpio ; i + + ) {
name = devm_kasprintf ( dev , GFP_KERNEL , " %d " , i ) ;
if ( ! name )
2019-06-26 11:45:57 +03:00
return ;
2017-02-06 17:11:08 +03:00
priv = devm_kzalloc ( dev , sizeof ( * priv ) , GFP_KERNEL ) ;
if ( ! priv )
2019-06-26 11:45:57 +03:00
return ;
2017-02-06 17:11:08 +03:00
priv - > chip = chip ;
priv - > offset = i ;
2021-05-10 22:52:52 +03:00
priv - > desc = gpiochip_get_desc ( gc , i ) ;
2017-02-06 17:11:08 +03:00
2019-06-26 11:45:57 +03:00
debugfs_create_file ( name , 0200 , chip - > dbg_dir , priv ,
& gpio_mockup_debugfs_ops ) ;
2017-02-06 17:11:08 +03:00
}
}
2020-05-14 11:39:01 +03:00
static void gpio_mockup_dispose_mappings ( void * data )
{
struct gpio_mockup_chip * chip = data ;
struct gpio_chip * gc = & chip - > gc ;
int i , irq ;
for ( i = 0 ; i < gc - > ngpio ; i + + ) {
irq = irq_find_mapping ( chip - > irq_sim_domain , i ) ;
if ( irq )
irq_dispose_mapping ( irq ) ;
}
}
2017-11-27 13:48:43 +03:00
static int gpio_mockup_probe ( struct platform_device * pdev )
2016-08-31 12:45:46 +03:00
{
2017-11-27 13:48:43 +03:00
struct gpio_mockup_chip * chip ;
struct gpio_chip * gc ;
struct device * dev ;
2018-09-25 14:29:46 +03:00
const char * name ;
2019-12-11 03:46:31 +03:00
int rv , base , i ;
2018-09-25 14:29:46 +03:00
u16 ngpio ;
2017-11-27 13:48:43 +03:00
dev = & pdev - > dev ;
2018-09-25 14:29:46 +03:00
rv = device_property_read_u32 ( dev , " gpio-base " , & base ) ;
if ( rv )
base = - 1 ;
rv = device_property_read_u16 ( dev , " nr-gpios " , & ngpio ) ;
if ( rv )
return rv ;
2020-09-29 13:10:02 +03:00
rv = device_property_read_string ( dev , " chip-label " , & name ) ;
2018-09-25 14:29:46 +03:00
if ( rv )
2020-09-29 13:10:02 +03:00
name = dev_name ( dev ) ;
2017-11-27 13:48:43 +03:00
chip = devm_kzalloc ( dev , sizeof ( * chip ) , GFP_KERNEL ) ;
if ( ! chip )
return - ENOMEM ;
2018-10-31 16:55:47 +03:00
mutex_init ( & chip - > lock ) ;
2017-11-27 13:48:43 +03:00
gc = & chip - > gc ;
2017-02-06 15:10:35 +03:00
gc - > base = base ;
gc - > ngpio = ngpio ;
gc - > label = name ;
gc - > owner = THIS_MODULE ;
gc - > parent = dev ;
gc - > get = gpio_mockup_get ;
gc - > set = gpio_mockup_set ;
2018-10-31 17:01:40 +03:00
gc - > get_multiple = gpio_mockup_get_multiple ;
2017-11-27 13:48:51 +03:00
gc - > set_multiple = gpio_mockup_set_multiple ;
2017-02-06 15:10:35 +03:00
gc - > direction_output = gpio_mockup_dirout ;
gc - > direction_input = gpio_mockup_dirin ;
gc - > get_direction = gpio_mockup_get_direction ;
2019-11-05 05:04:27 +03:00
gc - > set_config = gpio_mockup_set_config ;
2017-02-06 17:11:07 +03:00
gc - > to_irq = gpio_mockup_to_irq ;
2019-01-17 18:30:27 +03:00
gc - > free = gpio_mockup_free ;
2017-02-06 15:10:35 +03:00
2017-06-09 14:41:32 +03:00
chip - > lines = devm_kcalloc ( dev , gc - > ngpio ,
sizeof ( * chip - > lines ) , GFP_KERNEL ) ;
2017-02-06 15:10:36 +03:00
if ( ! chip - > lines )
return - ENOMEM ;
2017-02-06 15:10:35 +03:00
2019-12-11 03:46:31 +03:00
for ( i = 0 ; i < gc - > ngpio ; i + + )
chip - > lines [ i ] . dir = GPIO_LINE_DIRECTION_IN ;
2020-05-14 11:39:01 +03:00
chip - > irq_sim_domain = devm_irq_domain_create_sim ( dev , NULL ,
gc - > ngpio ) ;
if ( IS_ERR ( chip - > irq_sim_domain ) )
return PTR_ERR ( chip - > irq_sim_domain ) ;
rv = devm_add_action_or_reset ( dev , gpio_mockup_dispose_mappings , chip ) ;
if ( rv )
2017-11-27 13:48:43 +03:00
return rv ;
2017-02-06 17:11:07 +03:00
2017-11-27 13:48:43 +03:00
rv = devm_gpiochip_add_data ( dev , & chip - > gc , chip ) ;
if ( rv )
return rv ;
2017-02-06 17:11:08 +03:00
2019-06-26 11:45:57 +03:00
gpio_mockup_debugfs_setup ( dev , chip ) ;
2017-02-06 17:11:08 +03:00
return 0 ;
2016-08-31 12:45:46 +03:00
}
2020-10-29 11:17:20 +03:00
static const struct of_device_id gpio_mockup_of_match [ ] = {
{ . compatible = " gpio-mockup " , } ,
{ } ,
} ;
MODULE_DEVICE_TABLE ( of , gpio_mockup_of_match ) ;
2017-02-06 15:10:35 +03:00
static struct platform_driver gpio_mockup_driver = {
2016-08-31 12:45:46 +03:00
. driver = {
2020-09-29 13:09:58 +03:00
. name = " gpio-mockup " ,
2020-10-29 11:17:20 +03:00
. of_match_table = gpio_mockup_of_match ,
2016-12-20 14:28:20 +03:00
} ,
2017-02-06 15:10:35 +03:00
. probe = gpio_mockup_probe ,
2016-08-31 12:45:46 +03:00
} ;
2017-11-27 13:48:40 +03:00
static struct platform_device * gpio_mockup_pdevs [ GPIO_MOCKUP_MAX_GC ] ;
static void gpio_mockup_unregister_pdevs ( void )
{
2021-10-05 15:24:49 +03:00
struct platform_device * pdev ;
struct fwnode_handle * fwnode ;
2017-11-27 13:48:40 +03:00
int i ;
2021-10-05 15:24:49 +03:00
for ( i = 0 ; i < GPIO_MOCKUP_MAX_GC ; i + + ) {
pdev = gpio_mockup_pdevs [ i ] ;
if ( ! pdev )
continue ;
fwnode = dev_fwnode ( & pdev - > dev ) ;
platform_device_unregister ( pdev ) ;
fwnode_remove_software_node ( fwnode ) ;
}
2017-11-27 13:48:40 +03:00
}
2017-11-27 13:48:37 +03:00
2020-09-29 13:10:04 +03:00
static int __init gpio_mockup_register_chip ( int idx )
2016-08-31 12:45:46 +03:00
{
2018-09-25 14:29:46 +03:00
struct property_entry properties [ GPIO_MOCKUP_MAX_PROP ] ;
struct platform_device_info pdevinfo ;
2017-11-27 13:48:40 +03:00
struct platform_device * pdev ;
2021-10-05 15:24:49 +03:00
struct fwnode_handle * fwnode ;
2020-09-29 13:10:04 +03:00
char * * line_names = NULL ;
2020-09-29 13:10:02 +03:00
char chip_label [ 32 ] ;
2020-09-29 13:10:04 +03:00
int prop = 0 , base ;
2018-09-25 14:29:46 +03:00
u16 ngpio ;
2016-08-31 12:45:46 +03:00
2020-09-29 13:10:04 +03:00
memset ( properties , 0 , sizeof ( properties ) ) ;
memset ( & pdevinfo , 0 , sizeof ( pdevinfo ) ) ;
snprintf ( chip_label , sizeof ( chip_label ) , " gpio-mockup-%c " , idx + ' A ' ) ;
properties [ prop + + ] = PROPERTY_ENTRY_STRING ( " chip-label " , chip_label ) ;
base = gpio_mockup_range_base ( idx ) ;
if ( base > = 0 )
properties [ prop + + ] = PROPERTY_ENTRY_U32 ( " gpio-base " , base ) ;
ngpio = base < 0 ? gpio_mockup_range_ngpio ( idx )
: gpio_mockup_range_ngpio ( idx ) - base ;
properties [ prop + + ] = PROPERTY_ENTRY_U16 ( " nr-gpios " , ngpio ) ;
if ( gpio_mockup_named_lines ) {
2021-11-05 15:42:42 +03:00
line_names = kasprintf_strarray ( GFP_KERNEL , chip_label , ngpio ) ;
2020-09-29 13:10:04 +03:00
if ( ! line_names )
return - ENOMEM ;
properties [ prop + + ] = PROPERTY_ENTRY_STRING_ARRAY_LEN (
" gpio-line-names " , line_names , ngpio ) ;
}
2021-10-05 15:24:49 +03:00
fwnode = fwnode_create_software_node ( properties , NULL ) ;
if ( IS_ERR ( fwnode ) )
return PTR_ERR ( fwnode ) ;
2020-09-29 13:10:04 +03:00
pdevinfo . name = " gpio-mockup " ;
pdevinfo . id = idx ;
2021-10-05 15:24:49 +03:00
pdevinfo . fwnode = fwnode ;
2020-09-29 13:10:04 +03:00
pdev = platform_device_register_full ( & pdevinfo ) ;
kfree_strarray ( line_names , ngpio ) ;
if ( IS_ERR ( pdev ) ) {
2021-10-05 15:24:49 +03:00
fwnode_remove_software_node ( fwnode ) ;
2020-09-29 13:10:04 +03:00
pr_err ( " error registering device " ) ;
return PTR_ERR ( pdev ) ;
}
gpio_mockup_pdevs [ idx ] = pdev ;
return 0 ;
}
static int __init gpio_mockup_init ( void )
{
int i , num_chips , err ;
2020-10-29 11:17:20 +03:00
if ( ( gpio_mockup_num_ranges % 2 ) | |
2017-11-27 13:48:53 +03:00
( gpio_mockup_num_ranges > GPIO_MOCKUP_MAX_RANGES ) )
2017-11-27 13:48:38 +03:00
return - EINVAL ;
2017-11-27 13:48:40 +03:00
/* Each chip is described by two values. */
2017-11-27 13:48:53 +03:00
num_chips = gpio_mockup_num_ranges / 2 ;
2017-11-27 13:48:40 +03:00
2017-11-27 13:48:49 +03:00
/*
* The second value in the < base GPIO - number of GPIOS > pair must
* always be greater than 0.
*/
for ( i = 0 ; i < num_chips ; i + + ) {
2017-11-27 13:48:54 +03:00
if ( gpio_mockup_range_ngpio ( i ) < 0 )
2017-11-27 13:48:49 +03:00
return - EINVAL ;
}
2019-01-17 18:30:27 +03:00
gpio_mockup_dbg_dir = debugfs_create_dir ( " gpio-mockup " , NULL ) ;
2017-02-06 17:11:08 +03:00
2017-11-27 13:48:40 +03:00
err = platform_driver_register ( & gpio_mockup_driver ) ;
2016-08-31 12:45:46 +03:00
if ( err ) {
2020-09-29 13:09:59 +03:00
pr_err ( " error registering platform driver \n " ) ;
2020-09-08 16:07:49 +03:00
debugfs_remove_recursive ( gpio_mockup_dbg_dir ) ;
2016-08-31 12:45:46 +03:00
return err ;
}
2017-11-27 13:48:40 +03:00
for ( i = 0 ; i < num_chips ; i + + ) {
2020-09-29 13:10:04 +03:00
err = gpio_mockup_register_chip ( i ) ;
if ( err ) {
2017-11-27 13:48:40 +03:00
platform_driver_unregister ( & gpio_mockup_driver ) ;
gpio_mockup_unregister_pdevs ( ) ;
2020-09-08 16:07:49 +03:00
debugfs_remove_recursive ( gpio_mockup_dbg_dir ) ;
2020-09-29 13:10:04 +03:00
return err ;
2017-11-27 13:48:40 +03:00
}
2016-08-31 12:45:46 +03:00
}
return 0 ;
}
2017-11-27 13:48:37 +03:00
static void __exit gpio_mockup_exit ( void )
2016-08-31 12:45:46 +03:00
{
2017-02-06 17:11:08 +03:00
debugfs_remove_recursive ( gpio_mockup_dbg_dir ) ;
2017-02-06 15:10:35 +03:00
platform_driver_unregister ( & gpio_mockup_driver ) ;
2017-11-27 13:48:40 +03:00
gpio_mockup_unregister_pdevs ( ) ;
2016-08-31 12:45:46 +03:00
}
2017-11-27 13:48:37 +03:00
module_init ( gpio_mockup_init ) ;
module_exit ( gpio_mockup_exit ) ;
2016-08-31 12:45:46 +03:00
MODULE_AUTHOR ( " Kamlakant Patel <kamlakant.patel@broadcom.com> " ) ;
2018-03-06 11:04:15 +03:00
MODULE_AUTHOR ( " Bamvor Jian Zhang <bamv2005@gmail.com> " ) ;
2017-06-09 14:41:31 +03:00
MODULE_AUTHOR ( " Bartosz Golaszewski <brgl@bgdev.pl> " ) ;
2016-08-31 12:45:46 +03:00
MODULE_DESCRIPTION ( " GPIO Testing driver " ) ;
MODULE_LICENSE ( " GPL v2 " ) ;