aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorStephen Boyd <sboyd@kernel.org>2018-04-06 16:36:50 -0400
committerStephen Boyd <sboyd@kernel.org>2018-04-06 16:36:50 -0400
commitac8e5cc73736fe1ec6c7f3674ee71f7c99c42ae0 (patch)
treee854a9878470a883cd678d4ee6f1b1d598e0030e /include/linux
parentfc3fcb4ff1960e9f0b72b1d4855f7e0bcf18b7f2 (diff)
parente2749bb998701e21cdb8b34486b82fc1c051ab41 (diff)
Merge branch 'reset/lookup' of git://git.pengutronix.de/git/pza/linux into clk-davinci
We need this to be able to use the reset_controller_add_lookup() API. * 'reset/lookup' of git://git.pengutronix.de/git/pza/linux: reset: modify the way reset lookup works for board files reset: add support for non-DT systems
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/reset-controller.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/include/linux/reset-controller.h b/include/linux/reset-controller.h
index adb88f8cefbc..9326d671b6e6 100644
--- a/include/linux/reset-controller.h
+++ b/include/linux/reset-controller.h
@@ -27,12 +27,38 @@ struct device_node;
27struct of_phandle_args; 27struct of_phandle_args;
28 28
29/** 29/**
30 * struct reset_control_lookup - represents a single lookup entry
31 *
32 * @list: internal list of all reset lookup entries
33 * @provider: name of the reset controller device controlling this reset line
34 * @index: ID of the reset controller in the reset controller device
35 * @dev_id: name of the device associated with this reset line
36 * @con_id name of the reset line (can be NULL)
37 */
38struct reset_control_lookup {
39 struct list_head list;
40 const char *provider;
41 unsigned int index;
42 const char *dev_id;
43 const char *con_id;
44};
45
46#define RESET_LOOKUP(_provider, _index, _dev_id, _con_id) \
47 { \
48 .provider = _provider, \
49 .index = _index, \
50 .dev_id = _dev_id, \
51 .con_id = _con_id, \
52 }
53
54/**
30 * struct reset_controller_dev - reset controller entity that might 55 * struct reset_controller_dev - reset controller entity that might
31 * provide multiple reset controls 56 * provide multiple reset controls
32 * @ops: a pointer to device specific struct reset_control_ops 57 * @ops: a pointer to device specific struct reset_control_ops
33 * @owner: kernel module of the reset controller driver 58 * @owner: kernel module of the reset controller driver
34 * @list: internal list of reset controller devices 59 * @list: internal list of reset controller devices
35 * @reset_control_head: head of internal list of requested reset controls 60 * @reset_control_head: head of internal list of requested reset controls
61 * @dev: corresponding driver model device struct
36 * @of_node: corresponding device tree node as phandle target 62 * @of_node: corresponding device tree node as phandle target
37 * @of_reset_n_cells: number of cells in reset line specifiers 63 * @of_reset_n_cells: number of cells in reset line specifiers
38 * @of_xlate: translation function to translate from specifier as found in the 64 * @of_xlate: translation function to translate from specifier as found in the
@@ -44,6 +70,7 @@ struct reset_controller_dev {
44 struct module *owner; 70 struct module *owner;
45 struct list_head list; 71 struct list_head list;
46 struct list_head reset_control_head; 72 struct list_head reset_control_head;
73 struct device *dev;
47 struct device_node *of_node; 74 struct device_node *of_node;
48 int of_reset_n_cells; 75 int of_reset_n_cells;
49 int (*of_xlate)(struct reset_controller_dev *rcdev, 76 int (*of_xlate)(struct reset_controller_dev *rcdev,
@@ -58,4 +85,7 @@ struct device;
58int devm_reset_controller_register(struct device *dev, 85int devm_reset_controller_register(struct device *dev,
59 struct reset_controller_dev *rcdev); 86 struct reset_controller_dev *rcdev);
60 87
88void reset_controller_add_lookup(struct reset_control_lookup *lookup,
89 unsigned int num_entries);
90
61#endif 91#endif