blob: e4f29d8b9ceb15e540562d765754d1b34df0cad9 [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
73struct fwnode_handle *device_get_next_child_node(struct device *dev,
74 struct fwnode_handle *child);
75
76#define device_for_each_child_node(dev, child) \
77 for (child = device_get_next_child_node(dev, NULL); child; \
78 child = device_get_next_child_node(dev, child))
79
80void fwnode_handle_put(struct fwnode_handle *fwnode);
81
82unsigned int device_get_child_node_count(struct device *dev);
83
Rafael J. Wysockib31384f2014-11-04 01:28:56 +010084static inline bool device_property_read_bool(struct device *dev,
85 const char *propname)
86{
87 return device_property_present(dev, propname);
88}
89
90static inline int device_property_read_u8(struct device *dev,
91 const char *propname, u8 *val)
92{
93 return device_property_read_u8_array(dev, propname, val, 1);
94}
95
96static inline int device_property_read_u16(struct device *dev,
97 const char *propname, u16 *val)
98{
99 return device_property_read_u16_array(dev, propname, val, 1);
100}
101
102static inline int device_property_read_u32(struct device *dev,
103 const char *propname, u32 *val)
104{
105 return device_property_read_u32_array(dev, propname, val, 1);
106}
107
108static inline int device_property_read_u64(struct device *dev,
109 const char *propname, u64 *val)
110{
111 return device_property_read_u64_array(dev, propname, val, 1);
112}
113
Rafael J. Wysocki8a0662d2014-11-04 14:03:59 +0100114static inline bool fwnode_property_read_bool(struct fwnode_handle *fwnode,
115 const char *propname)
116{
117 return fwnode_property_present(fwnode, propname);
118}
119
120static inline int fwnode_property_read_u8(struct fwnode_handle *fwnode,
121 const char *propname, u8 *val)
122{
123 return fwnode_property_read_u8_array(fwnode, propname, val, 1);
124}
125
126static inline int fwnode_property_read_u16(struct fwnode_handle *fwnode,
127 const char *propname, u16 *val)
128{
129 return fwnode_property_read_u16_array(fwnode, propname, val, 1);
130}
131
132static inline int fwnode_property_read_u32(struct fwnode_handle *fwnode,
133 const char *propname, u32 *val)
134{
135 return fwnode_property_read_u32_array(fwnode, propname, val, 1);
136}
137
138static inline int fwnode_property_read_u64(struct fwnode_handle *fwnode,
139 const char *propname, u64 *val)
140{
141 return fwnode_property_read_u64_array(fwnode, propname, val, 1);
142}
143
Rafael J. Wysocki16ba08d2015-04-03 16:05:11 +0200144/**
145 * struct property_entry - "Built-in" device property representation.
146 * @name: Name of the property.
Andy Shevchenko318a19712015-11-30 17:11:31 +0200147 * @length: Length of data making up the value.
Andy Shevchenko66586ba2015-11-30 17:11:32 +0200148 * @is_array: True when the property is an array.
149 * @is_string: True when property is a string.
150 * @pointer: Pointer to the property (an array of items of the given type).
151 * @value: Value of the property (when it is a single item of the given type).
Rafael J. Wysocki16ba08d2015-04-03 16:05:11 +0200152 */
153struct property_entry {
154 const char *name;
Andy Shevchenko318a19712015-11-30 17:11:31 +0200155 size_t length;
Andy Shevchenko66586ba2015-11-30 17:11:32 +0200156 bool is_array;
157 bool is_string;
Rafael J. Wysocki16ba08d2015-04-03 16:05:11 +0200158 union {
Andy Shevchenko66586ba2015-11-30 17:11:32 +0200159 union {
160 void *raw_data;
161 u8 *u8_data;
162 u16 *u16_data;
163 u32 *u32_data;
164 u64 *u64_data;
165 const char **str;
166 } pointer;
167 union {
168 unsigned long long raw_data;
169 u8 u8_data;
170 u16 u16_data;
171 u32 u32_data;
172 u64 u64_data;
173 const char *str;
174 } value;
175 };
Rafael J. Wysocki16ba08d2015-04-03 16:05:11 +0200176};
177
Heikki Krogerusa85f4202015-11-30 17:11:33 +0200178#define PROPERTY_ENTRY_INTEGER_ARRAY(_name_, _type_, _val_) \
179{ \
180 .name = _name_, \
181 .length = ARRAY_SIZE(_val_) * sizeof(_type_), \
182 .is_array = true, \
183 .pointer._type_##_data = _val_, \
184}
185
186#define PROPERTY_ENTRY_U8_ARRAY(_name_, _val_) \
187 PROPERTY_ENTRY_INTEGER_ARRAY(_name_, u8, _val_)
188#define PROPERTY_ENTRY_U16_ARRAY(_name_, _val_) \
189 PROPERTY_ENTRY_INTEGER_ARRAY(_name_, u16, _val_)
190#define PROPERTY_ENTRY_U32_ARRAY(_name_, _val_) \
191 PROPERTY_ENTRY_INTEGER_ARRAY(_name_, u32, _val_)
192#define PROPERTY_ENTRY_U64_ARRAY(_name_, _val_) \
193 PROPERTY_ENTRY_INTEGER_ARRAY(_name_, u64, _val_)
194
195#define PROPERTY_ENTRY_STRING_ARRAY(_name_, _val_) \
196{ \
197 .name = _name_, \
198 .length = ARRAY_SIZE(_val_) * sizeof(const char *), \
199 .is_array = true, \
200 .is_string = true, \
201 .pointer.str = _val_, \
202}
203
204#define PROPERTY_ENTRY_INTEGER(_name_, _type_, _val_) \
205{ \
206 .name = _name_, \
207 .length = sizeof(_type_), \
208 .value._type_##_data = _val_, \
209}
210
211#define PROPERTY_ENTRY_U8(_name_, _val_) \
212 PROPERTY_ENTRY_INTEGER(_name_, u8, _val_)
213#define PROPERTY_ENTRY_U16(_name_, _val_) \
214 PROPERTY_ENTRY_INTEGER(_name_, u16, _val_)
215#define PROPERTY_ENTRY_U32(_name_, _val_) \
216 PROPERTY_ENTRY_INTEGER(_name_, u32, _val_)
217#define PROPERTY_ENTRY_U64(_name_, _val_) \
218 PROPERTY_ENTRY_INTEGER(_name_, u64, _val_)
219
220#define PROPERTY_ENTRY_STRING(_name_, _val_) \
221{ \
222 .name = _name_, \
223 .length = sizeof(_val_), \
224 .is_string = true, \
225 .value.str = _val_, \
226}
227
228#define PROPERTY_ENTRY_BOOL(_name_) \
229{ \
230 .name = _name_, \
231}
232
Rafael J. Wysocki16ba08d2015-04-03 16:05:11 +0200233/**
234 * struct property_set - Collection of "built-in" device properties.
235 * @fwnode: Handle to be pointed to by the fwnode field of struct device.
236 * @properties: Array of properties terminated with a null entry.
237 */
238struct property_set {
239 struct fwnode_handle fwnode;
240 struct property_entry *properties;
241};
242
243void device_add_property_set(struct device *dev, struct property_set *pset);
244
Suthikulpanit, Suraveee5e55862015-10-28 15:50:49 -0700245bool device_dma_supported(struct device *dev);
246
247enum dev_dma_attr device_get_dma_attr(struct device *dev);
248
Jeremy Linton4c96b7d2015-08-12 17:06:26 -0500249int device_get_phy_mode(struct device *dev);
250
251void *device_get_mac_address(struct device *dev, char *addr, int alen);
252
Rafael J. Wysockib31384f2014-11-04 01:28:56 +0100253#endif /* _LINUX_PROPERTY_H_ */