blob: 2f482616a2f22e2e26192a0a47a1c1b22d2bf015 [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
Sakari Ailuse44bb0c2017-03-28 10:52:24 +030036struct fwnode_handle *dev_fwnode(struct device *dev);
37
Rafael J. Wysockib31384f2014-11-04 01:28:56 +010038bool device_property_present(struct device *dev, const char *propname);
39int device_property_read_u8_array(struct device *dev, const char *propname,
40 u8 *val, size_t nval);
41int device_property_read_u16_array(struct device *dev, const char *propname,
42 u16 *val, size_t nval);
43int device_property_read_u32_array(struct device *dev, const char *propname,
44 u32 *val, size_t nval);
45int device_property_read_u64_array(struct device *dev, const char *propname,
46 u64 *val, size_t nval);
47int device_property_read_string_array(struct device *dev, const char *propname,
48 const char **val, size_t nval);
49int device_property_read_string(struct device *dev, const char *propname,
50 const char **val);
Mika Westerberg3f5c8d32015-09-14 17:37:35 +030051int device_property_match_string(struct device *dev,
52 const char *propname, const char *string);
Rafael J. Wysockib31384f2014-11-04 01:28:56 +010053
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +010054bool fwnode_property_present(struct fwnode_handle *fwnode, const char *propname);
55int fwnode_property_read_u8_array(struct fwnode_handle *fwnode,
56 const char *propname, u8 *val,
57 size_t nval);
58int fwnode_property_read_u16_array(struct fwnode_handle *fwnode,
59 const char *propname, u16 *val,
60 size_t nval);
61int fwnode_property_read_u32_array(struct fwnode_handle *fwnode,
62 const char *propname, u32 *val,
63 size_t nval);
64int fwnode_property_read_u64_array(struct fwnode_handle *fwnode,
65 const char *propname, u64 *val,
66 size_t nval);
67int fwnode_property_read_string_array(struct fwnode_handle *fwnode,
68 const char *propname, const char **val,
69 size_t nval);
70int fwnode_property_read_string(struct fwnode_handle *fwnode,
71 const char *propname, const char **val);
Mika Westerberg3f5c8d32015-09-14 17:37:35 +030072int fwnode_property_match_string(struct fwnode_handle *fwnode,
73 const char *propname, const char *string);
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +010074
Mika Westerbergafaf26f2017-03-28 10:52:17 +030075struct fwnode_handle *fwnode_get_parent(struct fwnode_handle *fwnode);
Sakari Ailus23387252017-03-28 10:52:26 +030076struct fwnode_handle *fwnode_get_next_parent(struct fwnode_handle *fwnode);
Mika Westerberg34055192017-03-28 10:52:18 +030077struct fwnode_handle *fwnode_get_next_child_node(struct fwnode_handle *fwnode,
78 struct fwnode_handle *child);
79
80#define fwnode_for_each_child_node(fwnode, child) \
81 for (child = fwnode_get_next_child_node(fwnode, NULL); child; \
82 child = fwnode_get_next_child_node(fwnode, child))
Mika Westerbergafaf26f2017-03-28 10:52:17 +030083
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +010084struct fwnode_handle *device_get_next_child_node(struct device *dev,
85 struct fwnode_handle *child);
86
Andy Shevchenko1d656fb2015-11-30 17:11:34 +020087#define device_for_each_child_node(dev, child) \
88 for (child = device_get_next_child_node(dev, NULL); child; \
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +010089 child = device_get_next_child_node(dev, child))
90
Mika Westerberg21ea73f2017-03-28 10:52:19 +030091struct fwnode_handle *fwnode_get_named_child_node(struct fwnode_handle *fwnode,
92 const char *childname);
Adam Thomson613e9722016-06-21 18:50:20 +010093struct fwnode_handle *device_get_named_child_node(struct device *dev,
94 const char *childname);
95
Sakari Ailuse7887c22017-03-28 10:52:22 +030096void fwnode_handle_get(struct fwnode_handle *fwnode);
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +010097void fwnode_handle_put(struct fwnode_handle *fwnode);
98
99unsigned int device_get_child_node_count(struct device *dev);
100
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100101static inline bool device_property_read_bool(struct device *dev,
102 const char *propname)
103{
104 return device_property_present(dev, propname);
105}
106
107static inline int device_property_read_u8(struct device *dev,
108 const char *propname, u8 *val)
109{
110 return device_property_read_u8_array(dev, propname, val, 1);
111}
112
113static inline int device_property_read_u16(struct device *dev,
114 const char *propname, u16 *val)
115{
116 return device_property_read_u16_array(dev, propname, val, 1);
117}
118
119static inline int device_property_read_u32(struct device *dev,
120 const char *propname, u32 *val)
121{
122 return device_property_read_u32_array(dev, propname, val, 1);
123}
124
125static inline int device_property_read_u64(struct device *dev,
126 const char *propname, u64 *val)
127{
128 return device_property_read_u64_array(dev, propname, val, 1);
129}
130
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100131static inline bool fwnode_property_read_bool(struct fwnode_handle *fwnode,
132 const char *propname)
133{
134 return fwnode_property_present(fwnode, propname);
135}
136
137static inline int fwnode_property_read_u8(struct fwnode_handle *fwnode,
138 const char *propname, u8 *val)
139{
140 return fwnode_property_read_u8_array(fwnode, propname, val, 1);
141}
142
143static inline int fwnode_property_read_u16(struct fwnode_handle *fwnode,
144 const char *propname, u16 *val)
145{
146 return fwnode_property_read_u16_array(fwnode, propname, val, 1);
147}
148
149static inline int fwnode_property_read_u32(struct fwnode_handle *fwnode,
150 const char *propname, u32 *val)
151{
152 return fwnode_property_read_u32_array(fwnode, propname, val, 1);
153}
154
155static inline int fwnode_property_read_u64(struct fwnode_handle *fwnode,
156 const char *propname, u64 *val)
157{
158 return fwnode_property_read_u64_array(fwnode, propname, val, 1);
159}
160
Rafael J. Wysocki16ba08d2015-04-03 16:05:11 +0200161/**
162 * struct property_entry - "Built-in" device property representation.
163 * @name: Name of the property.
Andy Shevchenko318a19712015-11-30 17:11:31 +0200164 * @length: Length of data making up the value.
Andy Shevchenko66586ba2015-11-30 17:11:32 +0200165 * @is_array: True when the property is an array.
166 * @is_string: True when property is a string.
167 * @pointer: Pointer to the property (an array of items of the given type).
168 * @value: Value of the property (when it is a single item of the given type).
Rafael J. Wysocki16ba08d2015-04-03 16:05:11 +0200169 */
170struct property_entry {
171 const char *name;
Andy Shevchenko318a19712015-11-30 17:11:31 +0200172 size_t length;
Andy Shevchenko66586ba2015-11-30 17:11:32 +0200173 bool is_array;
174 bool is_string;
Rafael J. Wysocki16ba08d2015-04-03 16:05:11 +0200175 union {
Andy Shevchenko66586ba2015-11-30 17:11:32 +0200176 union {
Dmitry Torokhov94269982017-02-02 17:41:26 -0800177 const void *raw_data;
178 const u8 *u8_data;
179 const u16 *u16_data;
180 const u32 *u32_data;
181 const u64 *u64_data;
182 const char * const *str;
Andy Shevchenko66586ba2015-11-30 17:11:32 +0200183 } pointer;
184 union {
185 unsigned long long raw_data;
186 u8 u8_data;
187 u16 u16_data;
188 u32 u32_data;
189 u64 u64_data;
190 const char *str;
191 } value;
192 };
Rafael J. Wysocki16ba08d2015-04-03 16:05:11 +0200193};
194
Andrew Mortond76eebf2016-01-01 02:07:09 +0100195/*
196 * Note: the below four initializers for the anonymous union are carefully
197 * crafted to avoid gcc-4.4.4's problems with initialization of anon unions
198 * and structs.
199 */
200
Heikki Krogerusa85f4202015-11-30 17:11:33 +0200201#define PROPERTY_ENTRY_INTEGER_ARRAY(_name_, _type_, _val_) \
202{ \
203 .name = _name_, \
204 .length = ARRAY_SIZE(_val_) * sizeof(_type_), \
205 .is_array = true, \
Andrew Mortond76eebf2016-01-01 02:07:09 +0100206 .is_string = false, \
John Youn37aa7272016-09-30 15:11:35 -0700207 { .pointer = { ._type_##_data = _val_ } }, \
Heikki Krogerusa85f4202015-11-30 17:11:33 +0200208}
209
210#define PROPERTY_ENTRY_U8_ARRAY(_name_, _val_) \
211 PROPERTY_ENTRY_INTEGER_ARRAY(_name_, u8, _val_)
212#define PROPERTY_ENTRY_U16_ARRAY(_name_, _val_) \
213 PROPERTY_ENTRY_INTEGER_ARRAY(_name_, u16, _val_)
214#define PROPERTY_ENTRY_U32_ARRAY(_name_, _val_) \
215 PROPERTY_ENTRY_INTEGER_ARRAY(_name_, u32, _val_)
216#define PROPERTY_ENTRY_U64_ARRAY(_name_, _val_) \
217 PROPERTY_ENTRY_INTEGER_ARRAY(_name_, u64, _val_)
218
219#define PROPERTY_ENTRY_STRING_ARRAY(_name_, _val_) \
220{ \
221 .name = _name_, \
222 .length = ARRAY_SIZE(_val_) * sizeof(const char *), \
223 .is_array = true, \
224 .is_string = true, \
Andrew Mortond76eebf2016-01-01 02:07:09 +0100225 { .pointer = { .str = _val_ } }, \
Heikki Krogerusa85f4202015-11-30 17:11:33 +0200226}
227
228#define PROPERTY_ENTRY_INTEGER(_name_, _type_, _val_) \
229{ \
230 .name = _name_, \
231 .length = sizeof(_type_), \
Andrew Mortond76eebf2016-01-01 02:07:09 +0100232 .is_string = false, \
233 { .value = { ._type_##_data = _val_ } }, \
Heikki Krogerusa85f4202015-11-30 17:11:33 +0200234}
235
236#define PROPERTY_ENTRY_U8(_name_, _val_) \
237 PROPERTY_ENTRY_INTEGER(_name_, u8, _val_)
238#define PROPERTY_ENTRY_U16(_name_, _val_) \
239 PROPERTY_ENTRY_INTEGER(_name_, u16, _val_)
240#define PROPERTY_ENTRY_U32(_name_, _val_) \
241 PROPERTY_ENTRY_INTEGER(_name_, u32, _val_)
242#define PROPERTY_ENTRY_U64(_name_, _val_) \
243 PROPERTY_ENTRY_INTEGER(_name_, u64, _val_)
244
245#define PROPERTY_ENTRY_STRING(_name_, _val_) \
246{ \
247 .name = _name_, \
248 .length = sizeof(_val_), \
249 .is_string = true, \
Andy Shevchenkoaace7362015-12-29 13:07:48 +0200250 { .value = { .str = _val_ } }, \
Heikki Krogerusa85f4202015-11-30 17:11:33 +0200251}
252
253#define PROPERTY_ENTRY_BOOL(_name_) \
254{ \
255 .name = _name_, \
256}
257
Dmitry Torokhov2d479e12017-02-02 17:41:27 -0800258struct property_entry *
259property_entries_dup(const struct property_entry *properties);
260
261void property_entries_free(const struct property_entry *properties);
262
Heikki Krogerusf4d05262016-03-29 14:52:23 +0300263int device_add_properties(struct device *dev,
Dmitry Torokhovbec84da2017-02-02 17:41:25 -0800264 const struct property_entry *properties);
Heikki Krogerusf4d05262016-03-29 14:52:23 +0300265void device_remove_properties(struct device *dev);
Rafael J. Wysocki16ba08d2015-04-03 16:05:11 +0200266
Suthikulpanit, Suraveee5e55862015-10-28 15:50:49 -0700267bool device_dma_supported(struct device *dev);
268
269enum dev_dma_attr device_get_dma_attr(struct device *dev);
270
Jeremy Linton4c96b7d2015-08-12 17:06:26 -0500271int device_get_phy_mode(struct device *dev);
272
273void *device_get_mac_address(struct device *dev, char *addr, int alen);
274
Mika Westerberg07bb80d2017-03-28 10:52:21 +0300275struct fwnode_handle *fwnode_graph_get_next_endpoint(
276 struct fwnode_handle *fwnode, struct fwnode_handle *prev);
277struct fwnode_handle *fwnode_graph_get_remote_port_parent(
278 struct fwnode_handle *fwnode);
279struct fwnode_handle *fwnode_graph_get_remote_port(
280 struct fwnode_handle *fwnode);
281struct fwnode_handle *fwnode_graph_get_remote_endpoint(
282 struct fwnode_handle *fwnode);
283
Sakari Ailus2bd54522017-03-28 10:52:25 +0300284int fwnode_graph_parse_endpoint(struct fwnode_handle *fwnode,
285 struct fwnode_endpoint *endpoint);
286
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100287#endif /* _LINUX_PROPERTY_H_ */