blob: 7b9d5f00ed37c9c4ce82ac0e604d5f9b581814b4 [file] [log] [blame]
Linus Walleijae6b4d82011-10-19 18:14:33 +02001/*
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
17struct pinctrl_dev;
Stephen Warren63fd5982011-12-15 16:57:16 -070018struct seq_file;
Linus Walleijae6b4d82011-10-19 18:14:33 +020019
20/**
21 * struct pinconf_ops - pin config operations, to be implemented by
22 * pin configuration capable drivers.
Linus Walleij394349f2011-11-24 18:27:15 +010023 * @is_generic: for pin controllers that want to use the generic interface,
24 * this flag tells the framework that it's generic.
Linus Walleijae6b4d82011-10-19 18:14:33 +020025 * @pin_config_get: get the config of a certain pin, if the requested config
26 * is not available on this controller this should return -ENOTSUPP
27 * and if it is available but disabled it should return -EINVAL
28 * @pin_config_get: get the config of a certain pin
29 * @pin_config_set: configure an individual pin
30 * @pin_config_group_get: get configurations for an entire pin group
31 * @pin_config_group_set: configure all pins in a group
32 * @pin_config_dbg_show: optional debugfs display hook that will provide
33 * per-device info for a certain pin in debugfs
34 * @pin_config_group_dbg_show: optional debugfs display hook that will provide
35 * per-device info for a certain group in debugfs
Stephen Warren6cb41582012-04-13 10:49:06 -060036 * @pin_config_config_dbg_show: optional debugfs display hook that will decode
37 * and display a driver's pin configuration parameter
Linus Walleijae6b4d82011-10-19 18:14:33 +020038 */
39struct pinconf_ops {
Linus Walleij394349f2011-11-24 18:27:15 +010040#ifdef CONFIG_GENERIC_PINCONF
41 bool is_generic;
42#endif
Linus Walleijae6b4d82011-10-19 18:14:33 +020043 int (*pin_config_get) (struct pinctrl_dev *pctldev,
44 unsigned pin,
45 unsigned long *config);
46 int (*pin_config_set) (struct pinctrl_dev *pctldev,
47 unsigned pin,
48 unsigned long config);
49 int (*pin_config_group_get) (struct pinctrl_dev *pctldev,
50 unsigned selector,
51 unsigned long *config);
52 int (*pin_config_group_set) (struct pinctrl_dev *pctldev,
53 unsigned selector,
54 unsigned long config);
55 void (*pin_config_dbg_show) (struct pinctrl_dev *pctldev,
56 struct seq_file *s,
57 unsigned offset);
58 void (*pin_config_group_dbg_show) (struct pinctrl_dev *pctldev,
59 struct seq_file *s,
60 unsigned selector);
Stephen Warren6cb41582012-04-13 10:49:06 -060061 void (*pin_config_config_dbg_show) (struct pinctrl_dev *pctldev,
62 struct seq_file *s,
63 unsigned long config);
Linus Walleijae6b4d82011-10-19 18:14:33 +020064};
65
Linus Walleijae6b4d82011-10-19 18:14:33 +020066#endif
67
68#endif /* __LINUX_PINCTRL_PINCONF_H */