core.h 4.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11
/*
 * Core private header for the pin control subsystem
 *
 * Copyright (C) 2011 ST-Ericsson SA
 * Written on behalf of Linaro for ST-Ericsson
 *
 * Author: Linus Walleij <linus.walleij@linaro.org>
 *
 * License terms: GNU General Public License (GPL) version 2
 */

12 13
#include <linux/mutex.h>
#include <linux/radix-tree.h>
14 15 16 17
#include <linux/pinctrl/pinconf.h>

struct pinctrl_gpio_range;

18 19 20 21 22 23 24 25 26 27 28 29 30
/**
 * struct pinctrl_dev - pin control class device
 * @node: node to include this pin controller in the global pin controller list
 * @desc: the pin controller descriptor supplied when initializing this pin
 *	controller
 * @pin_desc_tree: each pin descriptor for this pin controller is stored in
 *	this radix tree
 * @gpio_ranges: a list of GPIO ranges that is handled by this pin controller,
 *	ranges are added to this list at runtime
 * @dev: the device entry for this pin controller
 * @owner: module providing the pin controller, used for refcounting
 * @driver_data: driver data for drivers registering to the pin controller
 *	subsystem
31
 * @p: result of pinctrl_get() for this device
32
 * @device_root: debugfs root for this device
33 34 35 36 37 38
 */
struct pinctrl_dev {
	struct list_head node;
	struct pinctrl_desc *desc;
	struct radix_tree_root pin_desc_tree;
	struct list_head gpio_ranges;
39
	struct device *dev;
40 41
	struct module *owner;
	void *driver_data;
42
	struct pinctrl *p;
43 44 45
#ifdef CONFIG_DEBUG_FS
	struct dentry *device_root;
#endif
46 47 48 49 50 51
};

/**
 * struct pinctrl - per-device pin control state holder
 * @node: global list node
 * @dev: the device using this pin control handle
52 53
 * @states: a list of states for this device
 * @state: the current state
54 55 56 57
 */
struct pinctrl {
	struct list_head node;
	struct device *dev;
58 59 60 61 62 63 64 65 66 67 68 69 70
	struct list_head states;
	struct pinctrl_state *state;
};

/**
 * struct pinctrl_state - a pinctrl state for a device
 * @node: list not for struct pinctrl's @states field
 * @name: the name of this state
 * @settings: a list of settings for this state
 */
struct pinctrl_state {
	struct list_head node;
	const char *name;
71 72 73
	struct list_head settings;
};

74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
/**
 * struct pinctrl_setting_mux - setting data for MAP_TYPE_MUX_GROUP
 * @group: the group selector to program
 * @func: the function selector to program
 */
struct pinctrl_setting_mux {
	unsigned group;
	unsigned func;
};

/**
 * struct pinctrl_setting_configs - setting data for MAP_TYPE_CONFIGS_*
 * @group_or_pin: the group selector or pin ID to program
 * @configs: a pointer to an array of config parameters/values to program into
 *	hardware. Each individual pin controller defines the format and meaning
 *	of config parameters.
 * @num_configs: the number of entries in array @configs
 */
struct pinctrl_setting_configs {
	unsigned group_or_pin;
	unsigned long *configs;
	unsigned num_configs;
};

98 99
/**
 * struct pinctrl_setting - an individual mux setting
100
 * @node: list node for struct pinctrl_settings's @settings field
101
 * @type: the type of setting
102
 * @pctldev: pin control device handling to be programmed
103
 * @data: Data specific to the setting type
104 105 106
 */
struct pinctrl_setting {
	struct list_head node;
107
	enum pinctrl_map_type type;
108
	struct pinctrl_dev *pctldev;
109 110 111 112
	union {
		struct pinctrl_setting_mux mux;
		struct pinctrl_setting_configs configs;
	} data;
113 114 115 116 117 118 119
};

/**
 * struct pin_desc - pin descriptor for each physical pin in the arch
 * @pctldev: corresponding pin control device
 * @name: a name for the pin, e.g. the name of the pin/pad/finger on a
 *	datasheet or such
120
 * @dynamic_name: if the name of this pin was dynamically allocated
121 122 123 124 125 126 127 128
 * @usecount: If zero, the pin is not claimed, and @owner should be NULL.
 *	If non-zero, this pin is claimed by @owner. This field is an integer
 *	rather than a boolean, since pinctrl_get() might process multiple
 *	mapping table entries that refer to, and hence claim, the same group
 *	or pin, and each of these will increment the @usecount.
 * @owner: The name of the entity owning the pin. Typically, this is the name
 *	of the device that called pinctrl_get(). Alternatively, it may be the
 *	name of the GPIO passed to pinctrl_request_gpio().
129
 * @mux_setting: The most recent selected mux setting for this pin, if any.
130 131 132
 */
struct pin_desc {
	struct pinctrl_dev *pctldev;
133
	const char *name;
134
	bool dynamic_name;
135 136
	/* These fields only added when supporting pinmux drivers */
#ifdef CONFIG_PINMUX
137
	unsigned usecount;
138
	const char *owner;
139
	const struct pinctrl_setting_mux *mux_setting;
140 141 142
#endif
};

143
struct pinctrl_dev *get_pinctrl_dev_from_devname(const char *dev_name);
144
int pin_get_from_name(struct pinctrl_dev *pctldev, const char *name);
145 146
int pinctrl_get_group_selector(struct pinctrl_dev *pctldev,
			       const char *pin_group);
147 148 149 150 151 152

static inline struct pin_desc *pin_desc_get(struct pinctrl_dev *pctldev,
					    unsigned int pin)
{
	return radix_tree_lookup(&pctldev->pin_desc_tree, pin);
}
153 154

extern struct mutex pinctrl_mutex;