of.h 31.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef _LINUX_OF_H
#define _LINUX_OF_H
/*
 * Definitions for talking to the Open Firmware PROM on
 * Power Macintosh and other computers.
 *
 * Copyright (C) 1996-2005 Paul Mackerras.
 *
 * Updates for PPC64 by Peter Bergner & David Engebretsen, IBM Corp.
 * Updates for SPARC64 by David S. Miller
 * Derived from PowerPC and Sparc prom.h files by Stephen Rothwell, IBM Corp.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
 */
#include <linux/types.h>
J
Jiri Slaby 已提交
19
#include <linux/bitops.h>
K
Kalle Valo 已提交
20
#include <linux/errno.h>
21
#include <linux/kobject.h>
22
#include <linux/mod_devicetable.h>
23
#include <linux/spinlock.h>
P
Paul Mundt 已提交
24
#include <linux/topology.h>
25
#include <linux/notifier.h>
26
#include <linux/property.h>
27
#include <linux/list.h>
28

29
#include <asm/byteorder.h>
30
#include <asm/errno.h>
31

32 33 34 35 36 37 38 39 40 41
typedef u32 phandle;
typedef u32 ihandle;

struct property {
	char	*name;
	int	length;
	void	*value;
	struct property *next;
	unsigned long _flags;
	unsigned int unique_id;
42
	struct bin_attribute attr;
43 44
};

G
Grant Likely 已提交
45 46 47 48 49 50 51
#if defined(CONFIG_SPARC)
struct of_irq_controller;
#endif

struct device_node {
	const char *name;
	const char *type;
52
	phandle phandle;
53
	const char *full_name;
54
	struct fwnode_handle fwnode;
G
Grant Likely 已提交
55 56 57 58 59 60

	struct	property *properties;
	struct	property *deadprops;	/* removed properties */
	struct	device_node *parent;
	struct	device_node *child;
	struct	device_node *sibling;
61
	struct	kobject kobj;
G
Grant Likely 已提交
62 63 64
	unsigned long _flags;
	void	*data;
#if defined(CONFIG_SPARC)
65
	const char *path_component_name;
G
Grant Likely 已提交
66 67 68 69 70
	unsigned int unique_id;
	struct of_irq_controller *irq_trans;
#endif
};

A
Andreas Herrmann 已提交
71
#define MAX_PHANDLE_ARGS 16
72 73 74 75 76 77
struct of_phandle_args {
	struct device_node *np;
	int args_count;
	uint32_t args[MAX_PHANDLE_ARGS];
};

78 79 80 81 82 83
struct of_reconfig_data {
	struct device_node	*dn;
	struct property		*prop;
	struct property		*old_prop;
};

84 85 86 87 88
/* initialize a node */
extern struct kobj_type of_node_ktype;
static inline void of_node_init(struct device_node *node)
{
	kobject_init(&node->kobj, &of_node_ktype);
89
	node->fwnode.type = FWNODE_OF;
90 91 92 93 94 95 96 97 98 99 100 101 102 103
}

/* true when node is initialized */
static inline int of_node_is_initialized(struct device_node *node)
{
	return node && node->kobj.state_initialized;
}

/* true when node is attached (i.e. present on sysfs) */
static inline int of_node_is_attached(struct device_node *node)
{
	return node && node->kobj.state_in_sysfs;
}

104 105 106 107
#ifdef CONFIG_OF_DYNAMIC
extern struct device_node *of_node_get(struct device_node *node);
extern void of_node_put(struct device_node *node);
#else /* CONFIG_OF_DYNAMIC */
108 109 110 111 112
/* Dummy ref counting routines - to be implemented later */
static inline struct device_node *of_node_get(struct device_node *node)
{
	return node;
}
113 114
static inline void of_node_put(struct device_node *node) { }
#endif /* !CONFIG_OF_DYNAMIC */
115

116
/* Pointer for first entry in chain of all nodes. */
G
Grant Likely 已提交
117
extern struct device_node *of_root;
118
extern struct device_node *of_chosen;
119
extern struct device_node *of_aliases;
120
extern struct device_node *of_stdout;
121
extern raw_spinlock_t devtree_lock;
122

123 124 125 126 127 128
/* flag descriptions (need to be visible even when !CONFIG_OF) */
#define OF_DYNAMIC	1 /* node and properties were allocated via kmalloc */
#define OF_DETACHED	2 /* node has been detached from the device tree */
#define OF_POPULATED	3 /* device already created for the node */
#define OF_POPULATED_BUS	4 /* of_platform_populate recursed to children of this node */

129 130
#define OF_BAD_ADDR	((u64)-1)

131
#ifdef CONFIG_OF
132 133
void of_core_init(void);

134 135 136 137 138
static inline bool is_of_node(struct fwnode_handle *fwnode)
{
	return fwnode && fwnode->type == FWNODE_OF;
}

139
static inline struct device_node *to_of_node(struct fwnode_handle *fwnode)
140
{
141 142
	return is_of_node(fwnode) ?
		container_of(fwnode, struct device_node, fwnode) : NULL;
143 144
}

145 146
static inline bool of_have_populated_dt(void)
{
G
Grant Likely 已提交
147
	return of_root != NULL;
148 149
}

150 151 152 153 154
static inline bool of_node_is_root(const struct device_node *node)
{
	return node && (node->parent == NULL);
}

155 156 157 158 159
static inline int of_node_check_flag(struct device_node *n, unsigned long flag)
{
	return test_bit(flag, &n->_flags);
}

160 161 162 163 164 165
static inline int of_node_test_and_set_flag(struct device_node *n,
					    unsigned long flag)
{
	return test_and_set_bit(flag, &n->_flags);
}

166 167 168 169 170
static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
{
	set_bit(flag, &n->_flags);
}

171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
static inline void of_node_clear_flag(struct device_node *n, unsigned long flag)
{
	clear_bit(flag, &n->_flags);
}

static inline int of_property_check_flag(struct property *p, unsigned long flag)
{
	return test_bit(flag, &p->_flags);
}

static inline void of_property_set_flag(struct property *p, unsigned long flag)
{
	set_bit(flag, &p->_flags);
}

static inline void of_property_clear_flag(struct property *p, unsigned long flag)
{
	clear_bit(flag, &p->_flags);
}

G
Grant Likely 已提交
191
extern struct device_node *__of_find_all_nodes(struct device_node *prev);
192 193
extern struct device_node *of_find_all_nodes(struct device_node *prev);

194
/*
L
Lennert Buytenhek 已提交
195
 * OF address retrieval & translation
196 197 198
 */

/* Helper to read a big number; size is in cells (not bytes) */
199
static inline u64 of_read_number(const __be32 *cell, int size)
200 201 202
{
	u64 r = 0;
	while (size--)
203
		r = (r << 32) | be32_to_cpu(*(cell++));
204 205 206 207
	return r;
}

/* Like of_read_number, but we want an unsigned long result */
208
static inline unsigned long of_read_ulong(const __be32 *cell, int size)
209
{
210 211
	/* toss away upper bits if unsigned long is smaller than u64 */
	return of_read_number(cell, size);
212 213
}

R
Rob Herring 已提交
214
#if defined(CONFIG_SPARC)
215
#include <asm/prom.h>
R
Rob Herring 已提交
216
#endif
217

218 219 220 221 222 223 224 225
/* Default #address and #size cells.  Allow arch asm/prom.h to override */
#if !defined(OF_ROOT_NODE_ADDR_CELLS_DEFAULT)
#define OF_ROOT_NODE_ADDR_CELLS_DEFAULT 1
#define OF_ROOT_NODE_SIZE_CELLS_DEFAULT 1
#endif

/* Default string compare functions, Allow arch asm/prom.h to override */
#if !defined(of_compat_cmp)
226
#define of_compat_cmp(s1, s2, l)	strcasecmp((s1), (s2))
227 228 229 230
#define of_prop_cmp(s1, s2)		strcmp((s1), (s2))
#define of_node_cmp(s1, s2)		strcasecmp((s1), (s2))
#endif

231 232 233
#define OF_IS_DYNAMIC(x) test_bit(OF_DYNAMIC, &x->_flags)
#define OF_MARK_DYNAMIC(x) set_bit(OF_DYNAMIC, &x->_flags)

234
static inline const char *of_node_full_name(const struct device_node *np)
235 236 237 238
{
	return np ? np->full_name : "<no-node>";
}

G
Grant Likely 已提交
239 240 241
#define for_each_of_allnodes_from(from, dn) \
	for (dn = __of_find_all_nodes(from); dn; dn = __of_find_all_nodes(dn))
#define for_each_of_allnodes(dn) for_each_of_allnodes_from(NULL, dn)
242 243 244 245 246 247
extern struct device_node *of_find_node_by_name(struct device_node *from,
	const char *name);
extern struct device_node *of_find_node_by_type(struct device_node *from,
	const char *type);
extern struct device_node *of_find_compatible_node(struct device_node *from,
	const char *type, const char *compat);
248 249 250 251
extern struct device_node *of_find_matching_node_and_match(
	struct device_node *from,
	const struct of_device_id *matches,
	const struct of_device_id **match);
252

253 254 255 256 257 258 259
extern struct device_node *of_find_node_opts_by_path(const char *path,
	const char **opts);
static inline struct device_node *of_find_node_by_path(const char *path)
{
	return of_find_node_opts_by_path(path, NULL);
}

260 261
extern struct device_node *of_find_node_by_phandle(phandle handle);
extern struct device_node *of_get_parent(const struct device_node *node);
262
extern struct device_node *of_get_next_parent(struct device_node *node);
263 264
extern struct device_node *of_get_next_child(const struct device_node *node,
					     struct device_node *prev);
265 266 267
extern struct device_node *of_get_next_available_child(
	const struct device_node *node, struct device_node *prev);

268 269
extern struct device_node *of_get_child_by_name(const struct device_node *node,
					const char *name);
270

271 272
/* cache lookup */
extern struct device_node *of_find_next_cache_node(const struct device_node *);
273 274 275
extern struct device_node *of_find_node_with_property(
	struct device_node *from, const char *prop_name);

276 277 278
extern struct property *of_find_property(const struct device_node *np,
					 const char *name,
					 int *lenp);
279 280
extern int of_property_count_elems_of_size(const struct device_node *np,
				const char *propname, int elem_size);
281 282 283
extern int of_property_read_u32_index(const struct device_node *np,
				       const char *propname,
				       u32 index, u32 *out_value);
284 285 286 287
extern int of_property_read_u8_array(const struct device_node *np,
			const char *propname, u8 *out_values, size_t sz);
extern int of_property_read_u16_array(const struct device_node *np,
			const char *propname, u16 *out_values, size_t sz);
288
extern int of_property_read_u32_array(const struct device_node *np,
289
				      const char *propname,
290 291
				      u32 *out_values,
				      size_t sz);
292 293
extern int of_property_read_u64(const struct device_node *np,
				const char *propname, u64 *out_value);
294 295 296 297
extern int of_property_read_u64_array(const struct device_node *np,
				      const char *propname,
				      u64 *out_values,
				      size_t sz);
298

299
extern int of_property_read_string(const struct device_node *np,
300 301
				   const char *propname,
				   const char **out_string);
302
extern int of_property_match_string(const struct device_node *np,
303 304
				    const char *propname,
				    const char *string);
305
extern int of_property_read_string_helper(const struct device_node *np,
306 307
					      const char *propname,
					      const char **out_strs, size_t sz, int index);
308 309
extern int of_device_is_compatible(const struct device_node *device,
				   const char *);
310
extern bool of_device_is_available(const struct device_node *device);
311
extern bool of_device_is_big_endian(const struct device_node *device);
312 313 314
extern const void *of_get_property(const struct device_node *node,
				const char *name,
				int *lenp);
315
extern struct device_node *of_get_cpu_node(int cpu, unsigned int *thread);
316 317
#define for_each_property_of_node(dn, pp) \
	for (pp = dn->properties; pp != NULL; pp = pp->next)
318

319 320
extern int of_n_addr_cells(struct device_node *np);
extern int of_n_size_cells(struct device_node *np);
321 322
extern const struct of_device_id *of_match_node(
	const struct of_device_id *matches, const struct device_node *node);
323
extern int of_modalias_node(struct device_node *node, char *modalias, int len);
324
extern void of_print_phandle_args(const char *msg, const struct of_phandle_args *args);
325
extern struct device_node *of_parse_phandle(const struct device_node *np,
326 327
					    const char *phandle_name,
					    int index);
328
extern int of_parse_phandle_with_args(const struct device_node *np,
329
	const char *list_name, const char *cells_name, int index,
330
	struct of_phandle_args *out_args);
331 332 333
extern int of_parse_phandle_with_fixed_args(const struct device_node *np,
	const char *list_name, int cells_count, int index,
	struct of_phandle_args *out_args);
334 335
extern int of_count_phandle_with_args(const struct device_node *np,
	const char *list_name, const char *cells_name);
336

337 338
extern void of_alias_scan(void * (*dt_alloc)(u64 size, u64 align));
extern int of_alias_get_id(struct device_node *np, const char *stem);
339
extern int of_alias_get_highest_id(const char *stem);
340

341 342
extern int of_machine_is_compatible(const char *compat);

343 344 345
extern int of_add_property(struct device_node *np, struct property *prop);
extern int of_remove_property(struct device_node *np, struct property *prop);
extern int of_update_property(struct device_node *np, struct property *newprop);
346

347
/* For updating the device tree at runtime */
348 349 350 351 352 353 354 355
#define OF_RECONFIG_ATTACH_NODE		0x0001
#define OF_RECONFIG_DETACH_NODE		0x0002
#define OF_RECONFIG_ADD_PROPERTY	0x0003
#define OF_RECONFIG_REMOVE_PROPERTY	0x0004
#define OF_RECONFIG_UPDATE_PROPERTY	0x0005

extern int of_attach_node(struct device_node *);
extern int of_detach_node(struct device_node *);
356

B
Ben Dooks 已提交
357
#define of_match_ptr(_ptr)	(_ptr)
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377

/*
 * struct property *prop;
 * const __be32 *p;
 * u32 u;
 *
 * of_property_for_each_u32(np, "propname", prop, p, u)
 *         printk("U32 value: %x\n", u);
 */
const __be32 *of_prop_next_u32(struct property *prop, const __be32 *cur,
			       u32 *pu);
/*
 * struct property *prop;
 * const char *s;
 *
 * of_property_for_each_string(np, "propname", prop, s)
 *         printk("String value: %s\n", s);
 */
const char *of_prop_next_string(struct property *prop, const char *cur);

378
bool of_console_check(struct device_node *dn, char *name, int index);
379

380
#else /* CONFIG_OF */
381

382 383 384 385
static inline void of_core_init(void)
{
}

386 387 388 389 390
static inline bool is_of_node(struct fwnode_handle *fwnode)
{
	return false;
}

391
static inline struct device_node *to_of_node(struct fwnode_handle *fwnode)
392 393 394 395
{
	return NULL;
}

396
static inline const char* of_node_full_name(const struct device_node *np)
397 398 399 400
{
	return "<no-node>";
}

401 402 403 404 405 406
static inline struct device_node *of_find_node_by_name(struct device_node *from,
	const char *name)
{
	return NULL;
}

407 408
static inline struct device_node *of_find_node_by_type(struct device_node *from,
	const char *type)
409 410 411 412
{
	return NULL;
}

413 414 415 416
static inline struct device_node *of_find_matching_node_and_match(
	struct device_node *from,
	const struct of_device_id *matches,
	const struct of_device_id **match)
417
{
418
	return NULL;
419 420
}

421 422 423 424 425
static inline struct device_node *of_find_node_by_path(const char *path)
{
	return NULL;
}

426 427 428 429 430 431
static inline struct device_node *of_find_node_opts_by_path(const char *path,
	const char **opts)
{
	return NULL;
}

432 433 434 435 436
static inline struct device_node *of_find_node_by_phandle(phandle handle)
{
	return NULL;
}

437
static inline struct device_node *of_get_parent(const struct device_node *node)
438
{
439
	return NULL;
440 441
}

442 443 444 445 446
static inline struct device_node *of_get_next_child(
	const struct device_node *node, struct device_node *prev)
{
	return NULL;
}
447

448 449 450 451 452
static inline struct device_node *of_get_next_available_child(
	const struct device_node *node, struct device_node *prev)
{
	return NULL;
}
453

454 455
static inline struct device_node *of_find_node_with_property(
	struct device_node *from, const char *prop_name)
456 457 458 459
{
	return NULL;
}

460
static inline bool of_have_populated_dt(void)
461
{
462
	return false;
463 464
}

465 466 467
static inline struct device_node *of_get_child_by_name(
					const struct device_node *node,
					const char *name)
468
{
469
	return NULL;
470 471
}

472 473 474 475 476 477
static inline int of_device_is_compatible(const struct device_node *device,
					  const char *name)
{
	return 0;
}

478
static inline bool of_device_is_available(const struct device_node *device)
479
{
480
	return false;
481 482
}

483 484 485
static inline bool of_device_is_big_endian(const struct device_node *device)
{
	return false;
486 487
}

488 489 490 491 492 493 494
static inline struct property *of_find_property(const struct device_node *np,
						const char *name,
						int *lenp)
{
	return NULL;
}

495 496 497 498 499 500 501 502
static inline struct device_node *of_find_compatible_node(
						struct device_node *from,
						const char *type,
						const char *compat)
{
	return NULL;
}

503 504 505 506 507 508
static inline int of_property_count_elems_of_size(const struct device_node *np,
			const char *propname, int elem_size)
{
	return -ENOSYS;
}

509 510 511 512 513 514
static inline int of_property_read_u32_index(const struct device_node *np,
			const char *propname, u32 index, u32 *out_value)
{
	return -ENOSYS;
}

515 516 517 518 519 520 521 522 523 524 525 526
static inline int of_property_read_u8_array(const struct device_node *np,
			const char *propname, u8 *out_values, size_t sz)
{
	return -ENOSYS;
}

static inline int of_property_read_u16_array(const struct device_node *np,
			const char *propname, u16 *out_values, size_t sz)
{
	return -ENOSYS;
}

527
static inline int of_property_read_u32_array(const struct device_node *np,
528 529
					     const char *propname,
					     u32 *out_values, size_t sz)
530 531 532 533
{
	return -ENOSYS;
}

534 535 536 537 538 539 540
static inline int of_property_read_u64_array(const struct device_node *np,
					     const char *propname,
					     u64 *out_values, size_t sz)
{
	return -ENOSYS;
}

541
static inline int of_property_read_string(const struct device_node *np,
542 543
					  const char *propname,
					  const char **out_string)
544 545 546 547
{
	return -ENOSYS;
}

548
static inline int of_property_read_string_helper(const struct device_node *np,
549 550
						 const char *propname,
						 const char **out_strs, size_t sz, int index)
551 552 553 554
{
	return -ENOSYS;
}

555 556 557 558 559 560 561
static inline const void *of_get_property(const struct device_node *node,
				const char *name,
				int *lenp)
{
	return NULL;
}

562 563 564 565 566 567
static inline struct device_node *of_get_cpu_node(int cpu,
					unsigned int *thread)
{
	return NULL;
}

568 569 570 571 572 573
static inline int of_property_read_u64(const struct device_node *np,
				       const char *propname, u64 *out_value)
{
	return -ENOSYS;
}

574
static inline int of_property_match_string(const struct device_node *np,
575 576 577 578 579 580
					   const char *propname,
					   const char *string)
{
	return -ENOSYS;
}

581
static inline struct device_node *of_parse_phandle(const struct device_node *np,
582 583 584 585 586 587
						   const char *phandle_name,
						   int index)
{
	return NULL;
}

588 589 590 591 592 593 594 595 596
static inline int of_parse_phandle_with_args(struct device_node *np,
					     const char *list_name,
					     const char *cells_name,
					     int index,
					     struct of_phandle_args *out_args)
{
	return -ENOSYS;
}

597 598 599 600 601 602 603
static inline int of_parse_phandle_with_fixed_args(const struct device_node *np,
	const char *list_name, int cells_count, int index,
	struct of_phandle_args *out_args)
{
	return -ENOSYS;
}

604 605 606 607 608 609 610
static inline int of_count_phandle_with_args(struct device_node *np,
					     const char *list_name,
					     const char *cells_name)
{
	return -ENOSYS;
}

611 612 613 614 615
static inline int of_alias_get_id(struct device_node *np, const char *stem)
{
	return -ENOSYS;
}

616 617 618 619 620
static inline int of_alias_get_highest_id(const char *stem)
{
	return -ENOSYS;
}

621 622 623 624 625
static inline int of_machine_is_compatible(const char *compat)
{
	return 0;
}

626
static inline bool of_console_check(const struct device_node *dn, const char *name, int index)
627
{
628
	return false;
629 630
}

631 632 633 634 635 636 637 638 639 640 641 642
static inline const __be32 *of_prop_next_u32(struct property *prop,
		const __be32 *cur, u32 *pu)
{
	return NULL;
}

static inline const char *of_prop_next_string(struct property *prop,
		const char *cur)
{
	return NULL;
}

643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674
static inline int of_node_check_flag(struct device_node *n, unsigned long flag)
{
	return 0;
}

static inline int of_node_test_and_set_flag(struct device_node *n,
					    unsigned long flag)
{
	return 0;
}

static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
{
}

static inline void of_node_clear_flag(struct device_node *n, unsigned long flag)
{
}

static inline int of_property_check_flag(struct property *p, unsigned long flag)
{
	return 0;
}

static inline void of_property_set_flag(struct property *p, unsigned long flag)
{
}

static inline void of_property_clear_flag(struct property *p, unsigned long flag)
{
}

B
Ben Dooks 已提交
675
#define of_match_ptr(_ptr)	NULL
676
#define of_match_node(_matches, _node)	NULL
677
#endif /* CONFIG_OF */
678

679 680 681
#if defined(CONFIG_OF) && defined(CONFIG_NUMA)
extern int of_node_to_nid(struct device_node *np);
#else
682 683 684 685
static inline int of_node_to_nid(struct device_node *device)
{
	return NUMA_NO_NODE;
}
P
Paul Mundt 已提交
686 687
#endif

688 689 690 691 692 693 694
static inline struct device_node *of_find_matching_node(
	struct device_node *from,
	const struct of_device_id *matches)
{
	return of_find_matching_node_and_match(from, matches, NULL);
}

695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762
/**
 * of_property_count_u8_elems - Count the number of u8 elements in a property
 *
 * @np:		device node from which the property value is to be read.
 * @propname:	name of the property to be searched.
 *
 * Search for a property in a device node and count the number of u8 elements
 * in it. Returns number of elements on sucess, -EINVAL if the property does
 * not exist or its length does not match a multiple of u8 and -ENODATA if the
 * property does not have a value.
 */
static inline int of_property_count_u8_elems(const struct device_node *np,
				const char *propname)
{
	return of_property_count_elems_of_size(np, propname, sizeof(u8));
}

/**
 * of_property_count_u16_elems - Count the number of u16 elements in a property
 *
 * @np:		device node from which the property value is to be read.
 * @propname:	name of the property to be searched.
 *
 * Search for a property in a device node and count the number of u16 elements
 * in it. Returns number of elements on sucess, -EINVAL if the property does
 * not exist or its length does not match a multiple of u16 and -ENODATA if the
 * property does not have a value.
 */
static inline int of_property_count_u16_elems(const struct device_node *np,
				const char *propname)
{
	return of_property_count_elems_of_size(np, propname, sizeof(u16));
}

/**
 * of_property_count_u32_elems - Count the number of u32 elements in a property
 *
 * @np:		device node from which the property value is to be read.
 * @propname:	name of the property to be searched.
 *
 * Search for a property in a device node and count the number of u32 elements
 * in it. Returns number of elements on sucess, -EINVAL if the property does
 * not exist or its length does not match a multiple of u32 and -ENODATA if the
 * property does not have a value.
 */
static inline int of_property_count_u32_elems(const struct device_node *np,
				const char *propname)
{
	return of_property_count_elems_of_size(np, propname, sizeof(u32));
}

/**
 * of_property_count_u64_elems - Count the number of u64 elements in a property
 *
 * @np:		device node from which the property value is to be read.
 * @propname:	name of the property to be searched.
 *
 * Search for a property in a device node and count the number of u64 elements
 * in it. Returns number of elements on sucess, -EINVAL if the property does
 * not exist or its length does not match a multiple of u64 and -ENODATA if the
 * property does not have a value.
 */
static inline int of_property_count_u64_elems(const struct device_node *np,
				const char *propname)
{
	return of_property_count_elems_of_size(np, propname, sizeof(u64));
}

763 764 765 766 767 768 769 770 771 772 773 774 775
/**
 * of_property_read_string_array() - Read an array of strings from a multiple
 * strings property.
 * @np:		device node from which the property value is to be read.
 * @propname:	name of the property to be searched.
 * @out_strs:	output array of string pointers.
 * @sz:		number of array elements to read.
 *
 * Search for a property in a device tree node and retrieve a list of
 * terminated string values (pointer to data, not a copy) in that property.
 *
 * If @out_strs is NULL, the number of strings in the property is returned.
 */
776
static inline int of_property_read_string_array(const struct device_node *np,
777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794
						const char *propname, const char **out_strs,
						size_t sz)
{
	return of_property_read_string_helper(np, propname, out_strs, sz, 0);
}

/**
 * of_property_count_strings() - Find and return the number of strings from a
 * multiple strings property.
 * @np:		device node from which the property value is to be read.
 * @propname:	name of the property to be searched.
 *
 * Search for a property in a device tree node and retrieve the number of null
 * terminated string contain in it. Returns the number of strings on
 * success, -EINVAL if the property does not exist, -ENODATA if property
 * does not have a value, and -EILSEQ if the string is not null-terminated
 * within the length of the property data.
 */
795
static inline int of_property_count_strings(const struct device_node *np,
796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818
					    const char *propname)
{
	return of_property_read_string_helper(np, propname, NULL, 0, 0);
}

/**
 * of_property_read_string_index() - Find and read a string from a multiple
 * strings property.
 * @np:		device node from which the property value is to be read.
 * @propname:	name of the property to be searched.
 * @index:	index of the string in the list of strings
 * @out_string:	pointer to null terminated return string, modified only if
 *		return value is 0.
 *
 * Search for a property in a device tree node and retrieve a null
 * terminated string value (pointer to data, not a copy) in the list of strings
 * contained in that property.
 * Returns 0 on success, -EINVAL if the property does not exist, -ENODATA if
 * property does not have a value, and -EILSEQ if the string is not
 * null-terminated within the length of the property data.
 *
 * The out_string pointer is modified only if a valid string can be decoded.
 */
819
static inline int of_property_read_string_index(const struct device_node *np,
820 821 822 823 824 825 826
						const char *propname,
						int index, const char **output)
{
	int rc = of_property_read_string_helper(np, propname, output, 1, index);
	return rc < 0 ? rc : 0;
}

827 828 829 830 831 832
/**
 * of_property_read_bool - Findfrom a property
 * @np:		device node from which the property value is to be read.
 * @propname:	name of the property to be searched.
 *
 * Search for a property in a device node.
833
 * Returns true if the property exists false otherwise.
834 835 836 837 838 839 840 841 842
 */
static inline bool of_property_read_bool(const struct device_node *np,
					 const char *propname)
{
	struct property *prop = of_find_property(np, propname, NULL);

	return prop ? true : false;
}

843 844 845 846 847 848 849 850 851 852 853 854 855 856
static inline int of_property_read_u8(const struct device_node *np,
				       const char *propname,
				       u8 *out_value)
{
	return of_property_read_u8_array(np, propname, out_value, 1);
}

static inline int of_property_read_u16(const struct device_node *np,
				       const char *propname,
				       u16 *out_value)
{
	return of_property_read_u16_array(np, propname, out_value, 1);
}

857
static inline int of_property_read_u32(const struct device_node *np,
858
				       const char *propname,
859 860 861 862 863
				       u32 *out_value)
{
	return of_property_read_u32_array(np, propname, out_value, 1);
}

864 865 866 867 868 869 870
static inline int of_property_read_s32(const struct device_node *np,
				       const char *propname,
				       s32 *out_value)
{
	return of_property_read_u32(np, propname, (u32*) out_value);
}

871 872 873 874 875 876 877 878 879 880 881 882
#define of_property_for_each_u32(np, propname, prop, p, u)	\
	for (prop = of_find_property(np, propname, NULL),	\
		p = of_prop_next_u32(prop, NULL, &u);		\
		p;						\
		p = of_prop_next_u32(prop, p, &u))

#define of_property_for_each_string(np, propname, prop, s)	\
	for (prop = of_find_property(np, propname, NULL),	\
		s = of_prop_next_string(prop, NULL);		\
		s;						\
		s = of_prop_next_string(prop, s))

883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931
#define for_each_node_by_name(dn, name) \
	for (dn = of_find_node_by_name(NULL, name); dn; \
	     dn = of_find_node_by_name(dn, name))
#define for_each_node_by_type(dn, type) \
	for (dn = of_find_node_by_type(NULL, type); dn; \
	     dn = of_find_node_by_type(dn, type))
#define for_each_compatible_node(dn, type, compatible) \
	for (dn = of_find_compatible_node(NULL, type, compatible); dn; \
	     dn = of_find_compatible_node(dn, type, compatible))
#define for_each_matching_node(dn, matches) \
	for (dn = of_find_matching_node(NULL, matches); dn; \
	     dn = of_find_matching_node(dn, matches))
#define for_each_matching_node_and_match(dn, matches, match) \
	for (dn = of_find_matching_node_and_match(NULL, matches, match); \
	     dn; dn = of_find_matching_node_and_match(dn, matches, match))

#define for_each_child_of_node(parent, child) \
	for (child = of_get_next_child(parent, NULL); child != NULL; \
	     child = of_get_next_child(parent, child))
#define for_each_available_child_of_node(parent, child) \
	for (child = of_get_next_available_child(parent, NULL); child != NULL; \
	     child = of_get_next_available_child(parent, child))

#define for_each_node_with_property(dn, prop_name) \
	for (dn = of_find_node_with_property(NULL, prop_name); dn; \
	     dn = of_find_node_with_property(dn, prop_name))

static inline int of_get_child_count(const struct device_node *np)
{
	struct device_node *child;
	int num = 0;

	for_each_child_of_node(np, child)
		num++;

	return num;
}

static inline int of_get_available_child_count(const struct device_node *np)
{
	struct device_node *child;
	int num = 0;

	for_each_available_child_of_node(np, child)
		num++;

	return num;
}

932
#if defined(CONFIG_OF) && !defined(MODULE)
933 934 935 936 937 938
#define _OF_DECLARE(table, name, compat, fn, fn_type)			\
	static const struct of_device_id __of_table_##name		\
		__used __section(__##table##_of_table)			\
		 = { .compatible = compat,				\
		     .data = (fn == (fn_type)NULL) ? fn : fn  }
#else
939
#define _OF_DECLARE(table, name, compat, fn, fn_type)			\
940 941 942 943 944 945 946 947 948 949 950 951 952 953
	static const struct of_device_id __of_table_##name		\
		__attribute__((unused))					\
		 = { .compatible = compat,				\
		     .data = (fn == (fn_type)NULL) ? fn : fn }
#endif

typedef int (*of_init_fn_2)(struct device_node *, struct device_node *);
typedef void (*of_init_fn_1)(struct device_node *);

#define OF_DECLARE_1(table, name, compat, fn) \
		_OF_DECLARE(table, name, compat, fn, of_init_fn_1)
#define OF_DECLARE_2(table, name, compat, fn) \
		_OF_DECLARE(table, name, compat, fn, of_init_fn_2)

954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989
/**
 * struct of_changeset_entry	- Holds a changeset entry
 *
 * @node:	list_head for the log list
 * @action:	notifier action
 * @np:		pointer to the device node affected
 * @prop:	pointer to the property affected
 * @old_prop:	hold a pointer to the original property
 *
 * Every modification of the device tree during a changeset
 * is held in a list of of_changeset_entry structures.
 * That way we can recover from a partial application, or we can
 * revert the changeset
 */
struct of_changeset_entry {
	struct list_head node;
	unsigned long action;
	struct device_node *np;
	struct property *prop;
	struct property *old_prop;
};

/**
 * struct of_changeset - changeset tracker structure
 *
 * @entries:	list_head for the changeset entries
 *
 * changesets are a convenient way to apply bulk changes to the
 * live tree. In case of an error, changes are rolled-back.
 * changesets live on after initial application, and if not
 * destroyed after use, they can be reverted in one single call.
 */
struct of_changeset {
	struct list_head entries;
};

990 991 992 993 994 995
enum of_reconfig_change {
	OF_RECONFIG_NO_CHANGE = 0,
	OF_RECONFIG_CHANGE_ADD,
	OF_RECONFIG_CHANGE_REMOVE,
};

996
#ifdef CONFIG_OF_DYNAMIC
997 998
extern int of_reconfig_notifier_register(struct notifier_block *);
extern int of_reconfig_notifier_unregister(struct notifier_block *);
999 1000 1001
extern int of_reconfig_notify(unsigned long, struct of_reconfig_data *rd);
extern int of_reconfig_get_state_change(unsigned long action,
					struct of_reconfig_data *arg);
1002

1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
extern void of_changeset_init(struct of_changeset *ocs);
extern void of_changeset_destroy(struct of_changeset *ocs);
extern int of_changeset_apply(struct of_changeset *ocs);
extern int of_changeset_revert(struct of_changeset *ocs);
extern int of_changeset_action(struct of_changeset *ocs,
		unsigned long action, struct device_node *np,
		struct property *prop);

static inline int of_changeset_attach_node(struct of_changeset *ocs,
		struct device_node *np)
{
	return of_changeset_action(ocs, OF_RECONFIG_ATTACH_NODE, np, NULL);
}

static inline int of_changeset_detach_node(struct of_changeset *ocs,
		struct device_node *np)
{
	return of_changeset_action(ocs, OF_RECONFIG_DETACH_NODE, np, NULL);
}

static inline int of_changeset_add_property(struct of_changeset *ocs,
		struct device_node *np, struct property *prop)
{
	return of_changeset_action(ocs, OF_RECONFIG_ADD_PROPERTY, np, prop);
}

static inline int of_changeset_remove_property(struct of_changeset *ocs,
		struct device_node *np, struct property *prop)
{
	return of_changeset_action(ocs, OF_RECONFIG_REMOVE_PROPERTY, np, prop);
}

static inline int of_changeset_update_property(struct of_changeset *ocs,
		struct device_node *np, struct property *prop)
{
	return of_changeset_action(ocs, OF_RECONFIG_UPDATE_PROPERTY, np, prop);
}
1040 1041 1042 1043 1044 1045 1046 1047 1048
#else /* CONFIG_OF_DYNAMIC */
static inline int of_reconfig_notifier_register(struct notifier_block *nb)
{
	return -EINVAL;
}
static inline int of_reconfig_notifier_unregister(struct notifier_block *nb)
{
	return -EINVAL;
}
1049 1050
static inline int of_reconfig_notify(unsigned long action,
				     struct of_reconfig_data *arg)
1051 1052 1053
{
	return -EINVAL;
}
1054 1055
static inline int of_reconfig_get_state_change(unsigned long action,
						struct of_reconfig_data *arg)
1056 1057 1058 1059
{
	return -EINVAL;
}
#endif /* CONFIG_OF_DYNAMIC */
1060

1061 1062 1063
/* CONFIG_OF_RESOLVE api */
extern int of_resolve_phandles(struct device_node *tree);

1064
/**
1065
 * of_device_is_system_power_controller - Tells if system-power-controller is found for device_node
1066 1067 1068 1069
 * @np: Pointer to the given device_node
 *
 * return true if present false otherwise
 */
1070
static inline bool of_device_is_system_power_controller(const struct device_node *np)
1071
{
1072
	return of_property_read_bool(np, "system-power-controller");
1073 1074
}

1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104
/**
 * Overlay support
 */

#ifdef CONFIG_OF_OVERLAY

/* ID based overlays; the API for external users */
int of_overlay_create(struct device_node *tree);
int of_overlay_destroy(int id);
int of_overlay_destroy_all(void);

#else

static inline int of_overlay_create(struct device_node *tree)
{
	return -ENOTSUPP;
}

static inline int of_overlay_destroy(int id)
{
	return -ENOTSUPP;
}

static inline int of_overlay_destroy_all(void)
{
	return -ENOTSUPP;
}

#endif

1105
#endif /* _LINUX_OF_H */