core.h 3.5 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 14 15
#include <linux/pinctrl/pinconf.h>

struct pinctrl_gpio_range;

16 17 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
 * @pin_desc_tree_lock: lock for the descriptor tree
 * @gpio_ranges: a list of GPIO ranges that is handled by this pin controller,
 *	ranges are added to this list at runtime
 * @gpio_ranges_lock: lock for the GPIO ranges list
 * @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 32
 * @pinctrl_hogs_lock: lock for the pin control hog list
 * @pinctrl_hogs: list of pin control maps hogged by this device
33
 * @device_root: debugfs root for this device
34 35 36 37 38 39 40 41
 */
struct pinctrl_dev {
	struct list_head node;
	struct pinctrl_desc *desc;
	struct radix_tree_root pin_desc_tree;
	spinlock_t pin_desc_tree_lock;
	struct list_head gpio_ranges;
	struct mutex gpio_ranges_lock;
42
	struct device *dev;
43 44
	struct module *owner;
	void *driver_data;
45 46
	struct mutex pinctrl_hogs_lock;
	struct list_head pinctrl_hogs;
47 48 49
#ifdef CONFIG_DEBUG_FS
	struct dentry *device_root;
#endif
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
};

/**
 * struct pinctrl - per-device pin control state holder
 * @node: global list node
 * @dev: the device using this pin control handle
 * @usecount: the number of active users of this pin controller setting, used
 *	to keep track of nested use cases
 * @pctldev: pin control device handling this pin control handle
 * @mutex: a lock for the pin control state holder
 * @func_selector: the function selector for the pinmux device handling
 *	this pinmux
 * @groups: the group selectors for the pinmux device and
 *	selector combination handling this pinmux, this is a list that
 *	will be traversed on all pinmux operations such as
 *	get/put/enable/disable
 */
struct pinctrl {
	struct list_head node;
	struct device *dev;
	unsigned usecount;
	struct pinctrl_dev *pctldev;
	struct mutex mutex;
73
#ifdef CONFIG_PINMUX
74 75
	unsigned func_selector;
	struct list_head groups;
76 77 78 79 80 81 82 83
#endif
};

/**
 * 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
84
 * @dynamic_name: if the name of this pin was dynamically allocated
85 86 87 88 89 90 91
 * @lock: a lock to protect the descriptor structure
 * @mux_requested: whether the pin is already requested by pinmux or not
 * @mux_function: a named muxing function for the pin that will be passed to
 *	subdrivers and shown in debugfs etc
 */
struct pin_desc {
	struct pinctrl_dev *pctldev;
92
	const char *name;
93
	bool dynamic_name;
94 95 96
	spinlock_t lock;
	/* These fields only added when supporting pinmux drivers */
#ifdef CONFIG_PINMUX
97
	const char *owner;
98 99 100
#endif
};

101
struct pinctrl_dev *get_pinctrl_dev_from_devname(const char *dev_name);
102
struct pin_desc *pin_desc_get(struct pinctrl_dev *pctldev, unsigned int pin);
103
int pin_get_from_name(struct pinctrl_dev *pctldev, const char *name);
104 105
int pinctrl_get_group_selector(struct pinctrl_dev *pctldev,
			       const char *pin_group);