Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Interface the pinconfig portions of the pinctrl subsystem |
| 3 | * |
| 4 | * Copyright (C) 2011 ST-Ericsson SA |
| 5 | * Written on behalf of Linaro for ST-Ericsson |
| 6 | * This interface is used in the core to keep track of pins. |
| 7 | * |
| 8 | * Author: Linus Walleij <linus.walleij@linaro.org> |
| 9 | * |
| 10 | * License terms: GNU General Public License (GPL) version 2 |
| 11 | */ |
| 12 | #ifndef __LINUX_PINCTRL_PINCONF_H |
| 13 | #define __LINUX_PINCTRL_PINCONF_H |
| 14 | |
| 15 | #ifdef CONFIG_PINCONF |
| 16 | |
Laurent Meunier | f07512e | 2013-04-18 10:48:07 +0200 | [diff] [blame] | 17 | #include <linux/pinctrl/machine.h> |
| 18 | |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 19 | struct pinctrl_dev; |
Stephen Warren | 63fd598 | 2011-12-15 16:57:16 -0700 | [diff] [blame] | 20 | struct seq_file; |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 21 | |
| 22 | /** |
| 23 | * struct pinconf_ops - pin config operations, to be implemented by |
| 24 | * pin configuration capable drivers. |
Linus Walleij | 394349f | 2011-11-24 18:27:15 +0100 | [diff] [blame] | 25 | * @is_generic: for pin controllers that want to use the generic interface, |
| 26 | * this flag tells the framework that it's generic. |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 27 | * @pin_config_get: get the config of a certain pin, if the requested config |
| 28 | * is not available on this controller this should return -ENOTSUPP |
| 29 | * and if it is available but disabled it should return -EINVAL |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 30 | * @pin_config_set: configure an individual pin |
| 31 | * @pin_config_group_get: get configurations for an entire pin group |
| 32 | * @pin_config_group_set: configure all pins in a group |
James Hogan | 1c851fb | 2013-06-18 10:49:33 +0100 | [diff] [blame] | 33 | * @pin_config_dbg_parse_modify: optional debugfs to modify a pin configuration |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 34 | * @pin_config_dbg_show: optional debugfs display hook that will provide |
| 35 | * per-device info for a certain pin in debugfs |
| 36 | * @pin_config_group_dbg_show: optional debugfs display hook that will provide |
| 37 | * per-device info for a certain group in debugfs |
Stephen Warren | 6cb4158 | 2012-04-13 10:49:06 -0600 | [diff] [blame] | 38 | * @pin_config_config_dbg_show: optional debugfs display hook that will decode |
| 39 | * and display a driver's pin configuration parameter |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 40 | */ |
| 41 | struct pinconf_ops { |
Linus Walleij | 394349f | 2011-11-24 18:27:15 +0100 | [diff] [blame] | 42 | #ifdef CONFIG_GENERIC_PINCONF |
| 43 | bool is_generic; |
| 44 | #endif |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 45 | int (*pin_config_get) (struct pinctrl_dev *pctldev, |
| 46 | unsigned pin, |
| 47 | unsigned long *config); |
| 48 | int (*pin_config_set) (struct pinctrl_dev *pctldev, |
| 49 | unsigned pin, |
Sherman Yin | 03b054e | 2013-08-27 11:32:12 -0700 | [diff] [blame] | 50 | unsigned long *configs, |
| 51 | unsigned num_configs); |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 52 | int (*pin_config_group_get) (struct pinctrl_dev *pctldev, |
| 53 | unsigned selector, |
| 54 | unsigned long *config); |
| 55 | int (*pin_config_group_set) (struct pinctrl_dev *pctldev, |
| 56 | unsigned selector, |
Sherman Yin | 03b054e | 2013-08-27 11:32:12 -0700 | [diff] [blame] | 57 | unsigned long *configs, |
| 58 | unsigned num_configs); |
Laurent Meunier | f07512e | 2013-04-18 10:48:07 +0200 | [diff] [blame] | 59 | int (*pin_config_dbg_parse_modify) (struct pinctrl_dev *pctldev, |
| 60 | const char *arg, |
| 61 | unsigned long *config); |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 62 | void (*pin_config_dbg_show) (struct pinctrl_dev *pctldev, |
| 63 | struct seq_file *s, |
| 64 | unsigned offset); |
| 65 | void (*pin_config_group_dbg_show) (struct pinctrl_dev *pctldev, |
| 66 | struct seq_file *s, |
| 67 | unsigned selector); |
Stephen Warren | 6cb4158 | 2012-04-13 10:49:06 -0600 | [diff] [blame] | 68 | void (*pin_config_config_dbg_show) (struct pinctrl_dev *pctldev, |
| 69 | struct seq_file *s, |
| 70 | unsigned long config); |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 71 | }; |
| 72 | |
Linus Walleij | ae6b4d8 | 2011-10-19 18:14:33 +0200 | [diff] [blame] | 73 | #endif |
| 74 | |
| 75 | #endif /* __LINUX_PINCTRL_PINCONF_H */ |