blob: 8d7809c2c42df7c62f994d5b5ef537f9c594027f [file] [log] [blame]
Rafael J. Wysockib31384f2014-11-04 01:28:56 +01001/*
2 * property.h - Unified device property interface.
3 *
4 * Copyright (C) 2014, Intel Corporation
5 * Authors: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
6 * Mika Westerberg <mika.westerberg@linux.intel.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#ifndef _LINUX_PROPERTY_H_
14#define _LINUX_PROPERTY_H_
15
Rafael J. Wysockice793482015-03-16 23:49:03 +010016#include <linux/fwnode.h>
Rafael J. Wysockib31384f2014-11-04 01:28:56 +010017#include <linux/types.h>
18
19struct device;
20
21enum dev_prop_type {
22 DEV_PROP_U8,
23 DEV_PROP_U16,
24 DEV_PROP_U32,
25 DEV_PROP_U64,
26 DEV_PROP_STRING,
27 DEV_PROP_MAX,
28};
29
Suthikulpanit, Suravee1b9863c2015-10-28 15:50:47 -070030enum dev_dma_attr {
31 DEV_DMA_NOT_SUPPORTED,
32 DEV_DMA_NON_COHERENT,
33 DEV_DMA_COHERENT,
34};
35
Rafael J. Wysockib31384f2014-11-04 01:28:56 +010036bool device_property_present(struct device *dev, const char *propname);
37int device_property_read_u8_array(struct device *dev, const char *propname,
38 u8 *val, size_t nval);
39int device_property_read_u16_array(struct device *dev, const char *propname,
40 u16 *val, size_t nval);
41int device_property_read_u32_array(struct device *dev, const char *propname,
42 u32 *val, size_t nval);
43int device_property_read_u64_array(struct device *dev, const char *propname,
44 u64 *val, size_t nval);
45int device_property_read_string_array(struct device *dev, const char *propname,
46 const char **val, size_t nval);
47int device_property_read_string(struct device *dev, const char *propname,
48 const char **val);
Mika Westerberg3f5c8d32015-09-14 17:37:35 +030049int device_property_match_string(struct device *dev,
50 const char *propname, const char *string);
Rafael J. Wysockib31384f2014-11-04 01:28:56 +010051
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +010052bool fwnode_property_present(struct fwnode_handle *fwnode, const char *propname);
53int fwnode_property_read_u8_array(struct fwnode_handle *fwnode,
54 const char *propname, u8 *val,
55 size_t nval);
56int fwnode_property_read_u16_array(struct fwnode_handle *fwnode,
57 const char *propname, u16 *val,
58 size_t nval);
59int fwnode_property_read_u32_array(struct fwnode_handle *fwnode,
60 const char *propname, u32 *val,
61 size_t nval);
62int fwnode_property_read_u64_array(struct fwnode_handle *fwnode,
63 const char *propname, u64 *val,
64 size_t nval);
65int fwnode_property_read_string_array(struct fwnode_handle *fwnode,
66 const char *propname, const char **val,
67 size_t nval);
68int fwnode_property_read_string(struct fwnode_handle *fwnode,
69 const char *propname, const char **val);
Mika Westerberg3f5c8d32015-09-14 17:37:35 +030070int fwnode_property_match_string(struct fwnode_handle *fwnode,
71 const char *propname, const char *string);
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +010072
Mika Westerbergafaf26f2017-03-28 10:52:17 +030073struct fwnode_handle *fwnode_get_parent(struct fwnode_handle *fwnode);
Mika Westerberg34055192017-03-28 10:52:18 +030074struct fwnode_handle *fwnode_get_next_child_node(struct fwnode_handle *fwnode,
75 struct fwnode_handle *child);
76
77#define fwnode_for_each_child_node(fwnode, child) \
78 for (child = fwnode_get_next_child_node(fwnode, NULL); child; \
79 child = fwnode_get_next_child_node(fwnode, child))
Mika Westerbergafaf26f2017-03-28 10:52:17 +030080
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +010081struct fwnode_handle *device_get_next_child_node(struct device *dev,
82 struct fwnode_handle *child);
83
Andy Shevchenko1d656fb2015-11-30 17:11:34 +020084#define device_for_each_child_node(dev, child) \
85 for (child = device_get_next_child_node(dev, NULL); child; \
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +010086 child = device_get_next_child_node(dev, child))
87
Mika Westerberg21ea73f2017-03-28 10:52:19 +030088struct fwnode_handle *fwnode_get_named_child_node(struct fwnode_handle *fwnode,
89 const char *childname);
Adam Thomson613e9722016-06-21 18:50:20 +010090struct fwnode_handle *device_get_named_child_node(struct device *dev,
91 const char *childname);
92
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +010093void fwnode_handle_put(struct fwnode_handle *fwnode);
94
95unsigned int device_get_child_node_count(struct device *dev);
96
Rafael J. Wysockib31384f2014-11-04 01:28:56 +010097static inline bool device_property_read_bool(struct device *dev,
98 const char *propname)
99{
100 return device_property_present(dev, propname);
101}
102
103static inline int device_property_read_u8(struct device *dev,
104 const char *propname, u8 *val)
105{
106 return device_property_read_u8_array(dev, propname, val, 1);
107}
108
109static inline int device_property_read_u16(struct device *dev,
110 const char *propname, u16 *val)
111{
112 return device_property_read_u16_array(dev, propname, val, 1);
113}
114
115static inline int device_property_read_u32(struct device *dev,
116 const char *propname, u32 *val)
117{
118 return device_property_read_u32_array(dev, propname, val, 1);
119}
120
121static inline int device_property_read_u64(struct device *dev,
122 const char *propname, u64 *val)
123{
124 return device_property_read_u64_array(dev, propname, val, 1);
125}
126
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100127static inline bool fwnode_property_read_bool(struct fwnode_handle *fwnode,
128 const char *propname)
129{
130 return fwnode_property_present(fwnode, propname);
131}
132
133static inline int fwnode_property_read_u8(struct fwnode_handle *fwnode,
134 const char *propname, u8 *val)
135{
136 return fwnode_property_read_u8_array(fwnode, propname, val, 1);
137}
138
139static inline int fwnode_property_read_u16(struct fwnode_handle *fwnode,
140 const char *propname, u16 *val)
141{
142 return fwnode_property_read_u16_array(fwnode, propname, val, 1);
143}
144
145static inline int fwnode_property_read_u32(struct fwnode_handle *fwnode,
146 const char *propname, u32 *val)
147{
148 return fwnode_property_read_u32_array(fwnode, propname, val, 1);
149}
150
151static inline int fwnode_property_read_u64(struct fwnode_handle *fwnode,
152 const char *propname, u64 *val)
153{
154 return fwnode_property_read_u64_array(fwnode, propname, val, 1);
155}
156
Rafael J. Wysocki16ba08d2015-04-03 16:05:11 +0200157/**
158 * struct property_entry - "Built-in" device property representation.
159 * @name: Name of the property.
Andy Shevchenko318a19712015-11-30 17:11:31 +0200160 * @length: Length of data making up the value.
Andy Shevchenko66586ba2015-11-30 17:11:32 +0200161 * @is_array: True when the property is an array.
162 * @is_string: True when property is a string.
163 * @pointer: Pointer to the property (an array of items of the given type).
164 * @value: Value of the property (when it is a single item of the given type).
Rafael J. Wysocki16ba08d2015-04-03 16:05:11 +0200165 */
166struct property_entry {
167 const char *name;
Andy Shevchenko318a19712015-11-30 17:11:31 +0200168 size_t length;
Andy Shevchenko66586ba2015-11-30 17:11:32 +0200169 bool is_array;
170 bool is_string;
Rafael J. Wysocki16ba08d2015-04-03 16:05:11 +0200171 union {
Andy Shevchenko66586ba2015-11-30 17:11:32 +0200172 union {
Dmitry Torokhov94269982017-02-02 17:41:26 -0800173 const void *raw_data;
174 const u8 *u8_data;
175 const u16 *u16_data;
176 const u32 *u32_data;
177 const u64 *u64_data;
178 const char * const *str;
Andy Shevchenko66586ba2015-11-30 17:11:32 +0200179 } pointer;
180 union {
181 unsigned long long raw_data;
182 u8 u8_data;
183 u16 u16_data;
184 u32 u32_data;
185 u64 u64_data;
186 const char *str;
187 } value;
188 };
Rafael J. Wysocki16ba08d2015-04-03 16:05:11 +0200189};
190
Andrew Mortond76eebf2016-01-01 02:07:09 +0100191/*
192 * Note: the below four initializers for the anonymous union are carefully
193 * crafted to avoid gcc-4.4.4's problems with initialization of anon unions
194 * and structs.
195 */
196
Heikki Krogerusa85f4202015-11-30 17:11:33 +0200197#define PROPERTY_ENTRY_INTEGER_ARRAY(_name_, _type_, _val_) \
198{ \
199 .name = _name_, \
200 .length = ARRAY_SIZE(_val_) * sizeof(_type_), \
201 .is_array = true, \
Andrew Mortond76eebf2016-01-01 02:07:09 +0100202 .is_string = false, \
John Youn37aa7272016-09-30 15:11:35 -0700203 { .pointer = { ._type_##_data = _val_ } }, \
Heikki Krogerusa85f4202015-11-30 17:11:33 +0200204}
205
206#define PROPERTY_ENTRY_U8_ARRAY(_name_, _val_) \
207 PROPERTY_ENTRY_INTEGER_ARRAY(_name_, u8, _val_)
208#define PROPERTY_ENTRY_U16_ARRAY(_name_, _val_) \
209 PROPERTY_ENTRY_INTEGER_ARRAY(_name_, u16, _val_)
210#define PROPERTY_ENTRY_U32_ARRAY(_name_, _val_) \
211 PROPERTY_ENTRY_INTEGER_ARRAY(_name_, u32, _val_)
212#define PROPERTY_ENTRY_U64_ARRAY(_name_, _val_) \
213 PROPERTY_ENTRY_INTEGER_ARRAY(_name_, u64, _val_)
214
215#define PROPERTY_ENTRY_STRING_ARRAY(_name_, _val_) \
216{ \
217 .name = _name_, \
218 .length = ARRAY_SIZE(_val_) * sizeof(const char *), \
219 .is_array = true, \
220 .is_string = true, \
Andrew Mortond76eebf2016-01-01 02:07:09 +0100221 { .pointer = { .str = _val_ } }, \
Heikki Krogerusa85f4202015-11-30 17:11:33 +0200222}
223
224#define PROPERTY_ENTRY_INTEGER(_name_, _type_, _val_) \
225{ \
226 .name = _name_, \
227 .length = sizeof(_type_), \
Andrew Mortond76eebf2016-01-01 02:07:09 +0100228 .is_string = false, \
229 { .value = { ._type_##_data = _val_ } }, \
Heikki Krogerusa85f4202015-11-30 17:11:33 +0200230}
231
232#define PROPERTY_ENTRY_U8(_name_, _val_) \
233 PROPERTY_ENTRY_INTEGER(_name_, u8, _val_)
234#define PROPERTY_ENTRY_U16(_name_, _val_) \
235 PROPERTY_ENTRY_INTEGER(_name_, u16, _val_)
236#define PROPERTY_ENTRY_U32(_name_, _val_) \
237 PROPERTY_ENTRY_INTEGER(_name_, u32, _val_)
238#define PROPERTY_ENTRY_U64(_name_, _val_) \
239 PROPERTY_ENTRY_INTEGER(_name_, u64, _val_)
240
241#define PROPERTY_ENTRY_STRING(_name_, _val_) \
242{ \
243 .name = _name_, \
244 .length = sizeof(_val_), \
245 .is_string = true, \
Andy Shevchenkoaace7362015-12-29 13:07:48 +0200246 { .value = { .str = _val_ } }, \
Heikki Krogerusa85f4202015-11-30 17:11:33 +0200247}
248
249#define PROPERTY_ENTRY_BOOL(_name_) \
250{ \
251 .name = _name_, \
252}
253
Dmitry Torokhov2d479e12017-02-02 17:41:27 -0800254struct property_entry *
255property_entries_dup(const struct property_entry *properties);
256
257void property_entries_free(const struct property_entry *properties);
258
Heikki Krogerusf4d05262016-03-29 14:52:23 +0300259int device_add_properties(struct device *dev,
Dmitry Torokhovbec84da2017-02-02 17:41:25 -0800260 const struct property_entry *properties);
Heikki Krogerusf4d05262016-03-29 14:52:23 +0300261void device_remove_properties(struct device *dev);
Rafael J. Wysocki16ba08d2015-04-03 16:05:11 +0200262
Suthikulpanit, Suraveee5e55862015-10-28 15:50:49 -0700263bool device_dma_supported(struct device *dev);
264
265enum dev_dma_attr device_get_dma_attr(struct device *dev);
266
Jeremy Linton4c96b7d2015-08-12 17:06:26 -0500267int device_get_phy_mode(struct device *dev);
268
269void *device_get_mac_address(struct device *dev, char *addr, int alen);
270
Mika Westerberg07bb80d2017-03-28 10:52:21 +0300271struct fwnode_handle *fwnode_graph_get_next_endpoint(
272 struct fwnode_handle *fwnode, struct fwnode_handle *prev);
273struct fwnode_handle *fwnode_graph_get_remote_port_parent(
274 struct fwnode_handle *fwnode);
275struct fwnode_handle *fwnode_graph_get_remote_port(
276 struct fwnode_handle *fwnode);
277struct fwnode_handle *fwnode_graph_get_remote_endpoint(
278 struct fwnode_handle *fwnode);
279
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100280#endif /* _LINUX_PROPERTY_H_ */