blob: f1006b91bd1a40649f79a130ff728cabc9b389ef [file] [log] [blame]
Paul Mackerras9b6b5632005-10-06 12:06:20 +10001#ifndef _POWERPC_PROM_H
2#define _POWERPC_PROM_H
3#ifdef __KERNEL__
4
5/*
6 * Definitions for talking to the Open Firmware PROM on
7 * Power Macintosh computers.
8 *
9 * Copyright (C) 1996-2005 Paul Mackerras.
10 *
11 * Updates for PPC64 by Peter Bergner & David Engebretsen, IBM Corp.
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License
15 * as published by the Free Software Foundation; either version
16 * 2 of the License, or (at your option) any later version.
17 */
18#include <linux/types.h>
19#include <linux/proc_fs.h>
Andy Fleminga9b14972006-10-19 19:52:26 -050020#include <linux/platform_device.h>
Andrew Morton99ddef92007-02-17 18:17:16 -070021#include <asm/irq.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100022#include <asm/atomic.h>
23
24/* Definitions used by the flattened device tree */
25#define OF_DT_HEADER 0xd00dfeed /* marker */
26#define OF_DT_BEGIN_NODE 0x1 /* Start of node, full name */
27#define OF_DT_END_NODE 0x2 /* End node */
28#define OF_DT_PROP 0x3 /* Property: name off, size,
29 * content */
30#define OF_DT_NOP 0x4 /* nop */
31#define OF_DT_END 0x9
32
33#define OF_DT_VERSION 0x10
34
35/*
36 * This is what gets passed to the kernel by prom_init or kexec
37 *
38 * The dt struct contains the device tree structure, full pathes and
39 * property contents. The dt strings contain a separate block with just
40 * the strings for the property names, and is fully page aligned and
41 * self contained in a page, so that it can be kept around by the kernel,
42 * each property name appears only once in this page (cheap compression)
43 *
44 * the mem_rsvmap contains a map of reserved ranges of physical memory,
45 * passing it here instead of in the device-tree itself greatly simplifies
46 * the job of everybody. It's just a list of u64 pairs (base/size) that
47 * ends when size is 0
48 */
49struct boot_param_header
50{
51 u32 magic; /* magic word OF_DT_HEADER */
52 u32 totalsize; /* total size of DT block */
53 u32 off_dt_struct; /* offset to structure */
54 u32 off_dt_strings; /* offset to strings */
55 u32 off_mem_rsvmap; /* offset to memory reserve map */
56 u32 version; /* format version */
57 u32 last_comp_version; /* last compatible version */
58 /* version 2 fields below */
59 u32 boot_cpuid_phys; /* Physical CPU id we're booting on */
60 /* version 3 fields below */
61 u32 dt_strings_size; /* size of the DT strings block */
David Gibson0e0293c2007-03-14 11:50:40 +110062 /* version 17 fields below */
63 u32 dt_struct_size; /* size of the DT structure block */
Paul Mackerras9b6b5632005-10-06 12:06:20 +100064};
65
66
67
68typedef u32 phandle;
69typedef u32 ihandle;
70
Paul Mackerras9b6b5632005-10-06 12:06:20 +100071struct property {
72 char *name;
73 int length;
Stephen Rothwell1a381472007-04-03 10:58:52 +100074 void *value;
Paul Mackerras9b6b5632005-10-06 12:06:20 +100075 struct property *next;
76};
77
78struct device_node {
Jeremy Kerra7f67bd2006-07-12 15:35:54 +100079 const char *name;
80 const char *type;
Paul Mackerras9b6b5632005-10-06 12:06:20 +100081 phandle node;
82 phandle linux_phandle;
Paul Mackerras9b6b5632005-10-06 12:06:20 +100083 char *full_name;
84
85 struct property *properties;
Dave C Boutcher088186d2006-01-12 16:08:27 -060086 struct property *deadprops; /* removed properties */
Paul Mackerras9b6b5632005-10-06 12:06:20 +100087 struct device_node *parent;
88 struct device_node *child;
89 struct device_node *sibling;
90 struct device_node *next; /* next device of same type */
91 struct device_node *allnext; /* next in list of all nodes */
92 struct proc_dir_entry *pde; /* this node's proc directory */
93 struct kref kref;
94 unsigned long _flags;
95 void *data;
96};
97
98extern struct device_node *of_chosen;
99
100/* flag descriptions */
Michael Ellermand3b814b2007-06-19 16:07:58 +1000101#define OF_DYNAMIC 1 /* node and properties were allocated via kmalloc */
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000102
Michael Ellermand3b814b2007-06-19 16:07:58 +1000103static inline int of_node_check_flag(struct device_node *n, unsigned long flag)
104{
105 return test_bit(flag, &n->_flags);
106}
107
108static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
109{
110 set_bit(flag, &n->_flags);
111}
112
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000113
114#define HAVE_ARCH_DEVTREE_FIXUPS
115
116static inline void set_node_proc_entry(struct device_node *dn, struct proc_dir_entry *de)
117{
118 dn->pde = de;
119}
120
121
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000122/* New style node lookup */
123extern struct device_node *of_find_node_by_name(struct device_node *from,
124 const char *name);
Christoph Hellwige3385222006-03-08 16:47:00 +0100125#define for_each_node_by_name(dn, name) \
126 for (dn = of_find_node_by_name(NULL, name); dn; \
127 dn = of_find_node_by_name(dn, name))
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000128extern struct device_node *of_find_node_by_type(struct device_node *from,
129 const char *type);
Christoph Hellwige3385222006-03-08 16:47:00 +0100130#define for_each_node_by_type(dn, type) \
131 for (dn = of_find_node_by_type(NULL, type); dn; \
132 dn = of_find_node_by_type(dn, type))
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000133extern struct device_node *of_find_compatible_node(struct device_node *from,
134 const char *type, const char *compat);
Michael Ellermane3855fa2007-06-04 23:00:02 +1000135#define for_each_compatible_node(dn, type, compatible) \
136 for (dn = of_find_compatible_node(NULL, type, compatible); dn; \
137 dn = of_find_compatible_node(dn, type, compatible))
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000138extern struct device_node *of_find_node_by_path(const char *path);
139extern struct device_node *of_find_node_by_phandle(phandle handle);
140extern struct device_node *of_find_all_nodes(struct device_node *prev);
141extern struct device_node *of_get_parent(const struct device_node *node);
142extern struct device_node *of_get_next_child(const struct device_node *node,
143 struct device_node *prev);
Benjamin Herrenschmidte2100ef2006-10-20 11:49:54 +1000144extern struct property *of_find_property(const struct device_node *np,
Dave C Boutcherecaa8b02006-01-12 16:09:29 -0600145 const char *name,
146 int *lenp);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000147extern struct device_node *of_node_get(struct device_node *node);
148extern void of_node_put(struct device_node *node);
149
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100150/* For scanning the flat device-tree at boot time */
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100151extern int __init of_scan_flat_dt(int (*it)(unsigned long node,
152 const char *uname, int depth,
153 void *data),
154 void *data);
155extern void* __init of_get_flat_dt_prop(unsigned long node, const char *name,
156 unsigned long *size);
157extern int __init of_flat_dt_is_compatible(unsigned long node, const char *name);
158extern unsigned long __init of_get_flat_dt_root(void);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100159
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000160/* For updating the device tree at runtime */
161extern void of_attach_node(struct device_node *);
162extern void of_detach_node(const struct device_node *);
163
164/* Other Prototypes */
165extern void finish_device_tree(void);
166extern void unflatten_device_tree(void);
167extern void early_init_devtree(void *);
Stephen Rothwell7a92f742007-04-03 10:55:39 +1000168extern int of_device_is_compatible(const struct device_node *device,
Benjamin Herrenschmidte2100ef2006-10-20 11:49:54 +1000169 const char *);
Stephen Rothwell7a92f742007-04-03 10:55:39 +1000170#define device_is_compatible(d, c) of_device_is_compatible((d), (c))
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000171extern int machine_is_compatible(const char *compat);
Stephen Rothwell0e56efc2007-04-03 10:54:01 +1000172extern const void *of_get_property(const struct device_node *node,
Benjamin Herrenschmidte2100ef2006-10-20 11:49:54 +1000173 const char *name,
174 int *lenp);
Stephen Rothwell0e56efc2007-04-03 10:54:01 +1000175#define get_property(a, b, c) of_get_property((a), (b), (c))
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000176extern void print_properties(struct device_node *node);
Stephen Rothwella8bda5d2007-04-03 10:56:50 +1000177extern int of_n_addr_cells(struct device_node* np);
Stephen Rothwell9213fee2007-04-03 10:57:48 +1000178extern int of_n_size_cells(struct device_node* np);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000179extern int prom_n_intr_cells(struct device_node* np);
180extern void prom_get_irq_senses(unsigned char *senses, int off, int max);
Benjamin Herrenschmidt183d0202005-11-07 14:29:02 +1100181extern int prom_add_property(struct device_node* np, struct property* prop);
Dave C Boutcher088186d2006-01-12 16:08:27 -0600182extern int prom_remove_property(struct device_node *np, struct property *prop);
183extern int prom_update_property(struct device_node *np,
184 struct property *newprop,
185 struct property *oldprop);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000186
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000187#ifdef CONFIG_PPC32
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000188/*
189 * PCI <-> OF matching functions
190 * (XXX should these be here?)
191 */
192struct pci_bus;
193struct pci_dev;
194extern int pci_device_from_OF_node(struct device_node *node,
195 u8* bus, u8* devfn);
196extern struct device_node* pci_busdev_to_OF_node(struct pci_bus *, int);
197extern struct device_node* pci_device_to_OF_node(struct pci_dev *);
198extern void pci_create_OF_bus_map(void);
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000199#endif
200
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000201extern struct resource *request_OF_resource(struct device_node* node,
202 int index, const char* name_postfix);
203extern int release_OF_resource(struct device_node* node, int index);
204
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100205
Benjamin Herrenschmidtd1405b82005-11-23 17:53:42 +1100206/*
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100207 * OF address retreival & translation
208 */
209
210
Paul Mackerrasa4dc7ff2006-09-19 14:06:27 +1000211/* Helper to read a big number; size is in cells (not bytes) */
Jeremy Kerrb5a1a9a2006-07-04 16:46:44 +1000212static inline u64 of_read_number(const u32 *cell, int size)
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000213{
214 u64 r = 0;
215 while (size--)
216 r = (r << 32) | *(cell++);
217 return r;
218}
219
Paul Mackerrasa4dc7ff2006-09-19 14:06:27 +1000220/* Like of_read_number, but we want an unsigned long result */
221#ifdef CONFIG_PPC32
222static inline unsigned long of_read_ulong(const u32 *cell, int size)
223{
224 return cell[size-1];
225}
226#else
227#define of_read_ulong(cell, size) of_read_number(cell, size)
228#endif
229
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100230/* Translate an OF address block into a CPU physical address
Benjamin Herrenschmidtd1405b82005-11-23 17:53:42 +1100231 */
232#define OF_BAD_ADDR ((u64)-1)
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000233extern u64 of_translate_address(struct device_node *np, const u32 *addr);
Benjamin Herrenschmidtd1405b82005-11-23 17:53:42 +1100234
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100235/* Extract an address from a device, returns the region size and
236 * the address space flags too. The PCI version uses a BAR number
237 * instead of an absolute index
238 */
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000239extern const u32 *of_get_address(struct device_node *dev, int index,
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100240 u64 *size, unsigned int *flags);
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000241extern const u32 *of_get_pci_address(struct device_node *dev, int bar_no,
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100242 u64 *size, unsigned int *flags);
243
244/* Get an address as a resource. Note that if your address is
245 * a PIO address, the conversion will fail if the physical address
246 * can't be internally converted to an IO token with
247 * pci_address_to_pio(), that is because it's either called to early
248 * or it can't be matched to any host bridge IO space
249 */
250extern int of_address_to_resource(struct device_node *dev, int index,
251 struct resource *r);
252extern int of_pci_address_to_resource(struct device_node *dev, int bar,
253 struct resource *r);
Benjamin Herrenschmidtd1405b82005-11-23 17:53:42 +1100254
Jeremy Kerrd4ad66f2006-05-18 18:05:15 +1000255/* Parse the ibm,dma-window property of an OF node into the busno, phys and
256 * size parameters.
257 */
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000258void of_parse_dma_window(struct device_node *dn, const void *dma_window_prop,
Jeremy Kerrd4ad66f2006-05-18 18:05:15 +1000259 unsigned long *busno, unsigned long *phys, unsigned long *size);
260
Michael Ellermanb68239e2006-02-03 19:05:47 +1100261extern void kdump_move_device_tree(void);
262
Benjamin Herrenschmidtacf7d762006-06-19 20:33:16 +0200263/* CPU OF node matching */
264struct device_node *of_get_cpu_node(int cpu, unsigned int *thread);
265
Timur Tabi29cfe6f2007-02-16 12:01:29 -0600266/* Get the MAC address */
267extern const void *of_get_mac_address(struct device_node *np);
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000268
269/*
270 * OF interrupt mapping
271 */
272
273/* This structure is returned when an interrupt is mapped. The controller
274 * field needs to be put() after use
275 */
276
277#define OF_MAX_IRQ_SPEC 4 /* We handle specifiers of at most 4 cells */
278
279struct of_irq {
280 struct device_node *controller; /* Interrupt controller node */
281 u32 size; /* Specifier size */
282 u32 specifier[OF_MAX_IRQ_SPEC]; /* Specifier copy */
283};
284
Michael Ellerman40681b92006-08-02 11:13:50 +1000285/**
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000286 * of_irq_map_init - Initialize the irq remapper
287 * @flags: flags defining workarounds to enable
288 *
289 * Some machines have bugs in the device-tree which require certain workarounds
290 * to be applied. Call this before any interrupt mapping attempts to enable
291 * those workarounds.
292 */
293#define OF_IMAP_OLDWORLD_MAC 0x00000001
294#define OF_IMAP_NO_PHANDLE 0x00000002
295
296extern void of_irq_map_init(unsigned int flags);
297
Michael Ellerman40681b92006-08-02 11:13:50 +1000298/**
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000299 * of_irq_map_raw - Low level interrupt tree parsing
300 * @parent: the device interrupt parent
301 * @intspec: interrupt specifier ("interrupts" property of the device)
Benjamin Herrenschmidt006b64d2006-08-25 14:46:23 +1000302 * @ointsize: size of the passed in interrupt specifier
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000303 * @addr: address specifier (start of "reg" property of the device)
304 * @out_irq: structure of_irq filled by this function
305 *
306 * Returns 0 on success and a negative number on error
307 *
308 * This function is a low-level interrupt tree walking function. It
309 * can be used to do a partial walk with synthetized reg and interrupts
310 * properties, for example when resolving PCI interrupts when no device
311 * node exist for the parent.
312 *
313 */
314
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000315extern int of_irq_map_raw(struct device_node *parent, const u32 *intspec,
Paul Mackerrasaa43f772006-08-31 15:45:48 +1000316 u32 ointsize, const u32 *addr,
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000317 struct of_irq *out_irq);
318
319
Michael Ellerman40681b92006-08-02 11:13:50 +1000320/**
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000321 * of_irq_map_one - Resolve an interrupt for a device
322 * @device: the device whose interrupt is to be resolved
323 * @index: index of the interrupt to resolve
324 * @out_irq: structure of_irq filled by this function
325 *
326 * This function resolves an interrupt, walking the tree, for a given
327 * device-tree node. It's the high level pendant to of_irq_map_raw().
328 * It also implements the workarounds for OldWolrd Macs.
329 */
330extern int of_irq_map_one(struct device_node *device, int index,
331 struct of_irq *out_irq);
332
Michael Ellerman40681b92006-08-02 11:13:50 +1000333/**
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000334 * of_irq_map_pci - Resolve the interrupt for a PCI device
335 * @pdev: the device whose interrupt is to be resolved
336 * @out_irq: structure of_irq filled by this function
337 *
338 * This function resolves the PCI interrupt for a given PCI device. If a
339 * device-node exists for a given pci_dev, it will use normal OF tree
340 * walking. If not, it will implement standard swizzling and walk up the
341 * PCI tree until an device-node is found, at which point it will finish
342 * resolving using the OF tree walking.
343 */
344struct pci_dev;
345extern int of_irq_map_pci(struct pci_dev *pdev, struct of_irq *out_irq);
346
Mathieu Desnoyersc0b3ae12007-02-06 12:03:31 +1100347extern int of_irq_to_resource(struct device_node *dev, int index,
348 struct resource *r);
Andy Fleminga9b14972006-10-19 19:52:26 -0500349
Christian Krafftc3e80112007-04-25 01:32:02 +1000350/**
351 * of_iomap - Maps the memory mapped IO for a given device_node
352 * @device: the device whose io range will be mapped
353 * @index: index of the io range
354 *
355 * Returns a pointer to the mapped memory
356 */
357extern void __iomem *of_iomap(struct device_node *device, int index);
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000358
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000359#endif /* __KERNEL__ */
360#endif /* _POWERPC_PROM_H */