dd4d01f7ba
Additionally to the generic DT parameters, allow drivers to provide driver-specific DT parameters to be used with the generic parser infrastructure. To achieve this 'struct pinctrl_desc' is extended to pass custom pinconf option to the core. In order to pass this kind of information, the related data structures - 'struct pinconf_generic_dt_params', 'pin_config_item' - are moved from pinconf internals to the pinconf-generic header. Additionally pinconfg-generic is refactored to not only iterate over the generic pinconf parameters but also take the parameters into account that are provided through the driver's 'struct pinctrl_desc'. In particular 'pinconf_generic_parse_dt_config()' and 'pinconf_generic_dump' helpers are split into two parts each. In order to have a more generic helper that can be used to process the generic parameters as well as the driver-specific ones. v2: - fix typo - add missing documentation for @conf_items member in struct - rebase to pinctrl/devel: conflict in abx500 - rename _pinconf_generic_dump() to pinconf_generic_dump_one() - removed '_' from _parse_dt_cfg() - removed BUG_ONs, error condition is handled in if statements - removed pinconf_generic_dump_group() & pinconf_generic_dump_pin helpers - fixed up corresponding call sites - renamed pinconf_generic_dump() to pinconf_generic_dump_pins() - added kernel-doc to pinconf_generic_dump_pins() - add kernel-doc - more verbose commit message Signed-off-by: Soren Brinkmann <soren.brinkmann@xilinx.com> Tested-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
124 lines
3.1 KiB
C
124 lines
3.1 KiB
C
/*
|
|
* Internal interface between the core pin control system and the
|
|
* pin config portions
|
|
*
|
|
* Copyright (C) 2011 ST-Ericsson SA
|
|
* Written on behalf of Linaro for ST-Ericsson
|
|
* Based on bits of regulator core, gpio core and clk core
|
|
*
|
|
* Author: Linus Walleij <linus.walleij@linaro.org>
|
|
*
|
|
* License terms: GNU General Public License (GPL) version 2
|
|
*/
|
|
|
|
#ifdef CONFIG_PINCONF
|
|
|
|
int pinconf_check_ops(struct pinctrl_dev *pctldev);
|
|
int pinconf_validate_map(struct pinctrl_map const *map, int i);
|
|
int pinconf_map_to_setting(struct pinctrl_map const *map,
|
|
struct pinctrl_setting *setting);
|
|
void pinconf_free_setting(struct pinctrl_setting const *setting);
|
|
int pinconf_apply_setting(struct pinctrl_setting const *setting);
|
|
|
|
/*
|
|
* You will only be interested in these if you're using PINCONF
|
|
* so don't supply any stubs for these.
|
|
*/
|
|
int pin_config_get_for_pin(struct pinctrl_dev *pctldev, unsigned pin,
|
|
unsigned long *config);
|
|
int pin_config_group_get(const char *dev_name, const char *pin_group,
|
|
unsigned long *config);
|
|
|
|
#else
|
|
|
|
static inline int pinconf_check_ops(struct pinctrl_dev *pctldev)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline int pinconf_validate_map(struct pinctrl_map const *map, int i)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline int pinconf_map_to_setting(struct pinctrl_map const *map,
|
|
struct pinctrl_setting *setting)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static inline void pinconf_free_setting(struct pinctrl_setting const *setting)
|
|
{
|
|
}
|
|
|
|
static inline int pinconf_apply_setting(struct pinctrl_setting const *setting)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
#endif
|
|
|
|
#if defined(CONFIG_PINCONF) && defined(CONFIG_DEBUG_FS)
|
|
|
|
void pinconf_show_map(struct seq_file *s, struct pinctrl_map const *map);
|
|
void pinconf_show_setting(struct seq_file *s,
|
|
struct pinctrl_setting const *setting);
|
|
void pinconf_init_device_debugfs(struct dentry *devroot,
|
|
struct pinctrl_dev *pctldev);
|
|
|
|
#else
|
|
|
|
static inline void pinconf_show_map(struct seq_file *s,
|
|
struct pinctrl_map const *map)
|
|
{
|
|
}
|
|
|
|
static inline void pinconf_show_setting(struct seq_file *s,
|
|
struct pinctrl_setting const *setting)
|
|
{
|
|
}
|
|
|
|
static inline void pinconf_init_device_debugfs(struct dentry *devroot,
|
|
struct pinctrl_dev *pctldev)
|
|
{
|
|
}
|
|
|
|
#endif
|
|
|
|
/*
|
|
* The following functions are available if the driver uses the generic
|
|
* pin config.
|
|
*/
|
|
|
|
#if defined(CONFIG_GENERIC_PINCONF) && defined(CONFIG_DEBUG_FS)
|
|
|
|
void pinconf_generic_dump_pins(struct pinctrl_dev *pctldev,
|
|
struct seq_file *s, const char *gname,
|
|
unsigned pin);
|
|
|
|
void pinconf_generic_dump_config(struct pinctrl_dev *pctldev,
|
|
struct seq_file *s, unsigned long config);
|
|
#else
|
|
|
|
static inline void pinconf_generic_dump_pins(struct pinctrl_dev *pctldev,
|
|
struct seq_file *s,
|
|
const char *gname, unsigned pin)
|
|
{
|
|
return;
|
|
}
|
|
|
|
static inline void pinconf_generic_dump_config(struct pinctrl_dev *pctldev,
|
|
struct seq_file *s,
|
|
unsigned long config)
|
|
{
|
|
return;
|
|
}
|
|
#endif
|
|
|
|
#if defined(CONFIG_GENERIC_PINCONF) && defined(CONFIG_OF)
|
|
int pinconf_generic_parse_dt_config(struct device_node *np,
|
|
struct pinctrl_dev *pctldev,
|
|
unsigned long **configs,
|
|
unsigned int *nconfigs);
|
|
#endif
|