blob: 9809a94f151b994d4afcb1ab5e104f0488e19c31 [file] [log] [blame]
Linus Walleij2744e8a2011-05-02 20:50:54 +02001/*
2 * Interface 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_PINCTRL_H
13#define __LINUX_PINCTRL_PINCTRL_H
14
15#ifdef CONFIG_PINCTRL
16
17#include <linux/radix-tree.h>
18#include <linux/spinlock.h>
19#include <linux/list.h>
20#include <linux/seq_file.h>
21
22struct pinctrl_dev;
23struct pinmux_ops;
Linus Walleijae6b4d82011-10-19 18:14:33 +020024struct pinconf_ops;
Linus Walleij2744e8a2011-05-02 20:50:54 +020025struct gpio_chip;
26
27/**
28 * struct pinctrl_pin_desc - boards/machines provide information on their
29 * pins, pads or other muxable units in this struct
30 * @number: unique pin number from the global pin number space
31 * @name: a name for this pin
32 */
33struct pinctrl_pin_desc {
34 unsigned number;
35 const char *name;
36};
37
38/* Convenience macro to define a single named or anonymous pin descriptor */
39#define PINCTRL_PIN(a, b) { .number = a, .name = b }
40#define PINCTRL_PIN_ANON(a) { .number = a }
41
42/**
43 * struct pinctrl_gpio_range - each pin controller can provide subranges of
44 * the GPIO number space to be handled by the controller
45 * @node: list node for internal use
46 * @name: a name for the chip in this range
47 * @id: an ID number for the chip in this range
48 * @base: base offset of the GPIO range
Chanho Park3c739ad2011-11-11 18:47:58 +090049 * @pin_base: base pin number of the GPIO range
Linus Walleij2744e8a2011-05-02 20:50:54 +020050 * @npins: number of pins in the GPIO range, including the base number
51 * @gc: an optional pointer to a gpio_chip
52 */
53struct pinctrl_gpio_range {
54 struct list_head node;
55 const char *name;
56 unsigned int id;
57 unsigned int base;
Chanho Park3c739ad2011-11-11 18:47:58 +090058 unsigned int pin_base;
Linus Walleij2744e8a2011-05-02 20:50:54 +020059 unsigned int npins;
60 struct gpio_chip *gc;
61};
62
63/**
64 * struct pinctrl_ops - global pin control operations, to be implemented by
65 * pin controller drivers.
66 * @list_groups: list the number of selectable named groups available
67 * in this pinmux driver, the core will begin on 0 and call this
68 * repeatedly as long as it returns >= 0 to enumerate the groups
69 * @get_group_name: return the group name of the pin group
70 * @get_group_pins: return an array of pins corresponding to a certain
71 * group selector @pins, and the size of the array in @num_pins
72 * @pin_dbg_show: optional debugfs display hook that will provide per-device
73 * info for a certain pin in debugfs
74 */
75struct pinctrl_ops {
76 int (*list_groups) (struct pinctrl_dev *pctldev, unsigned selector);
77 const char *(*get_group_name) (struct pinctrl_dev *pctldev,
78 unsigned selector);
79 int (*get_group_pins) (struct pinctrl_dev *pctldev,
80 unsigned selector,
Stephen Warrena5818a82011-10-19 16:19:25 -060081 const unsigned **pins,
82 unsigned *num_pins);
Linus Walleij2744e8a2011-05-02 20:50:54 +020083 void (*pin_dbg_show) (struct pinctrl_dev *pctldev, struct seq_file *s,
84 unsigned offset);
85};
86
87/**
88 * struct pinctrl_desc - pin controller descriptor, register this to pin
89 * control subsystem
90 * @name: name for the pin controller
91 * @pins: an array of pin descriptors describing all the pins handled by
92 * this pin controller
93 * @npins: number of descriptors in the array, usually just ARRAY_SIZE()
94 * of the pins field above
95 * @maxpin: since pin spaces may be sparse, there can he "holes" in the
96 * pin range, this attribute gives the maximum pin number in the
97 * total range. This should not be lower than npins for example,
98 * but may be equal to npins if you have no holes in the pin range.
99 * @pctlops: pin control operation vtable, to support global concepts like
100 * grouping of pins, this is optional.
Linus Walleijae6b4d82011-10-19 18:14:33 +0200101 * @pmxops: pinmux operations vtable, if you support pinmuxing in your driver
102 * @confops: pin config operations vtable, if you support pin configuration in
103 * your driver
Linus Walleij2744e8a2011-05-02 20:50:54 +0200104 * @owner: module providing the pin controller, used for refcounting
105 */
106struct pinctrl_desc {
107 const char *name;
108 struct pinctrl_pin_desc const *pins;
109 unsigned int npins;
110 unsigned int maxpin;
111 struct pinctrl_ops *pctlops;
112 struct pinmux_ops *pmxops;
Linus Walleijae6b4d82011-10-19 18:14:33 +0200113 struct pinconf_ops *confops;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200114 struct module *owner;
115};
116
117/* External interface to pin controller */
118extern struct pinctrl_dev *pinctrl_register(struct pinctrl_desc *pctldesc,
119 struct device *dev, void *driver_data);
120extern void pinctrl_unregister(struct pinctrl_dev *pctldev);
121extern bool pin_is_valid(struct pinctrl_dev *pctldev, int pin);
122extern void pinctrl_add_gpio_range(struct pinctrl_dev *pctldev,
123 struct pinctrl_gpio_range *range);
124extern void pinctrl_remove_gpio_range(struct pinctrl_dev *pctldev,
125 struct pinctrl_gpio_range *range);
126extern const char *pinctrl_dev_get_name(struct pinctrl_dev *pctldev);
127extern void *pinctrl_dev_get_drvdata(struct pinctrl_dev *pctldev);
128#else
129
Barry Songe0e20752011-10-27 20:38:24 -0700130struct pinctrl_dev;
Linus Walleij2744e8a2011-05-02 20:50:54 +0200131
Linus Walleijae6b4d82011-10-19 18:14:33 +0200132/* Sufficiently stupid default functions when pinctrl is not in use */
Linus Walleij2744e8a2011-05-02 20:50:54 +0200133static inline bool pin_is_valid(struct pinctrl_dev *pctldev, int pin)
134{
135 return pin >= 0;
136}
137
138#endif /* !CONFIG_PINCTRL */
139
140#endif /* __LINUX_PINCTRL_PINCTRL_H */