blob: c7d061776293f4b8873a01b45419b65bd597aec8 [file] [log] [blame]
Linus Walleij28a8d142012-02-09 01:52:22 +01001/*
2 * Consumer interface the pin control subsystem
3 *
4 * Copyright (C) 2012 ST-Ericsson SA
5 * Written on behalf of Linaro for ST-Ericsson
6 * Based on bits of regulator core, gpio core and clk core
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_CONSUMER_H
13#define __LINUX_PINCTRL_CONSUMER_H
14
15#include <linux/list.h>
16#include <linux/seq_file.h>
17#include "pinctrl.h"
18
19/* This struct is private to the core and should be regarded as a cookie */
Linus Walleije93bcee2012-02-09 07:23:28 +010020struct pinctrl;
Linus Walleij28a8d142012-02-09 01:52:22 +010021
22#ifdef CONFIG_PINMUX
23
24/* External interface to pinmux */
Linus Walleije93bcee2012-02-09 07:23:28 +010025extern int pinctrl_request_gpio(unsigned gpio);
26extern void pinctrl_free_gpio(unsigned gpio);
27extern int pinctrl_gpio_direction_input(unsigned gpio);
28extern int pinctrl_gpio_direction_output(unsigned gpio);
29extern struct pinctrl * __must_check pinctrl_get(struct device *dev, const char *name);
30extern void pinctrl_put(struct pinctrl *p);
31extern int pinctrl_enable(struct pinctrl *p);
32extern void pinctrl_disable(struct pinctrl *p);
Linus Walleij28a8d142012-02-09 01:52:22 +010033
34#else /* !CONFIG_PINMUX */
35
Linus Walleije93bcee2012-02-09 07:23:28 +010036static inline int pinctrl_request_gpio(unsigned gpio)
Linus Walleij28a8d142012-02-09 01:52:22 +010037{
38 return 0;
39}
40
Linus Walleije93bcee2012-02-09 07:23:28 +010041static inline void pinctrl_free_gpio(unsigned gpio)
Linus Walleij28a8d142012-02-09 01:52:22 +010042{
43}
44
Linus Walleije93bcee2012-02-09 07:23:28 +010045static inline int pinctrl_gpio_direction_input(unsigned gpio)
Linus Walleij28a8d142012-02-09 01:52:22 +010046{
47 return 0;
48}
49
Linus Walleije93bcee2012-02-09 07:23:28 +010050static inline int pinctrl_gpio_direction_output(unsigned gpio)
Linus Walleij28a8d142012-02-09 01:52:22 +010051{
52 return 0;
53}
54
Linus Walleije93bcee2012-02-09 07:23:28 +010055static inline struct pinctrl * __must_check pinctrl_get(struct device *dev, const char *name)
Linus Walleij28a8d142012-02-09 01:52:22 +010056{
57 return NULL;
58}
59
Linus Walleije93bcee2012-02-09 07:23:28 +010060static inline void pinctrl_put(struct pinctrl *p)
Linus Walleij28a8d142012-02-09 01:52:22 +010061{
62}
63
Linus Walleije93bcee2012-02-09 07:23:28 +010064static inline int pinctrl_enable(struct pinctrl *p)
Linus Walleij28a8d142012-02-09 01:52:22 +010065{
66 return 0;
67}
68
Linus Walleije93bcee2012-02-09 07:23:28 +010069static inline void pinctrl_disable(struct pinctrl *p)
Linus Walleij28a8d142012-02-09 01:52:22 +010070{
71}
72
73#endif /* CONFIG_PINMUX */
74
75#ifdef CONFIG_PINCONF
76
77extern int pin_config_get(const char *dev_name, const char *name,
78 unsigned long *config);
79extern int pin_config_set(const char *dev_name, const char *name,
80 unsigned long config);
81extern int pin_config_group_get(const char *dev_name,
82 const char *pin_group,
83 unsigned long *config);
84extern int pin_config_group_set(const char *dev_name,
85 const char *pin_group,
86 unsigned long config);
87
88#else
89
90static inline int pin_config_get(const char *dev_name, const char *name,
91 unsigned long *config)
92{
93 return 0;
94}
95
96static inline int pin_config_set(const char *dev_name, const char *name,
97 unsigned long config)
98{
99 return 0;
100}
101
102static inline int pin_config_group_get(const char *dev_name,
103 const char *pin_group,
104 unsigned long *config)
105{
106 return 0;
107}
108
109static inline int pin_config_group_set(const char *dev_name,
110 const char *pin_group,
111 unsigned long config)
112{
113 return 0;
114}
115
116#endif
117
118#endif /* __LINUX_PINCTRL_CONSUMER_H */