blob: b0a84ea5f8eda813441e1001105c699ce3c8093d [file] [log] [blame]
Grant Likely9d24c882009-10-15 10:57:44 -06001#include <linux/of.h> /* linux/of.h gets to determine #include ordering */
Paul Mackerras9b6b5632005-10-06 12:06:20 +10002#ifndef _POWERPC_PROM_H
3#define _POWERPC_PROM_H
4#ifdef __KERNEL__
5
6/*
7 * Definitions for talking to the Open Firmware PROM on
8 * Power Macintosh computers.
9 *
10 * Copyright (C) 1996-2005 Paul Mackerras.
11 *
12 * Updates for PPC64 by Peter Bergner & David Engebretsen, IBM Corp.
13 *
14 * This program is free software; you can redistribute it and/or
15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version
17 * 2 of the License, or (at your option) any later version.
18 */
19#include <linux/types.h>
20#include <linux/proc_fs.h>
Andy Fleminga9b14972006-10-19 19:52:26 -050021#include <linux/platform_device.h>
Andrew Morton99ddef92007-02-17 18:17:16 -070022#include <asm/irq.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100023#include <asm/atomic.h>
24
Stephen Rothwell97e873e2007-05-01 16:26:07 +100025#define OF_ROOT_NODE_ADDR_CELLS_DEFAULT 1
26#define OF_ROOT_NODE_SIZE_CELLS_DEFAULT 1
27
Scott Wood804ace82007-08-21 02:36:59 +100028#define of_compat_cmp(s1, s2, l) strcasecmp((s1), (s2))
Stephen Rothwell581b6052007-04-24 16:46:53 +100029#define of_prop_cmp(s1, s2) strcmp((s1), (s2))
Stephen Rothwell1ef4d422007-04-24 17:57:33 +100030#define of_node_cmp(s1, s2) strcasecmp((s1), (s2))
Stephen Rothwell0081cbc2007-05-01 16:29:19 +100031
Paul Mackerras9b6b5632005-10-06 12:06:20 +100032/* Definitions used by the flattened device tree */
33#define OF_DT_HEADER 0xd00dfeed /* marker */
34#define OF_DT_BEGIN_NODE 0x1 /* Start of node, full name */
35#define OF_DT_END_NODE 0x2 /* End node */
36#define OF_DT_PROP 0x3 /* Property: name off, size,
37 * content */
38#define OF_DT_NOP 0x4 /* nop */
39#define OF_DT_END 0x9
40
41#define OF_DT_VERSION 0x10
42
43/*
44 * This is what gets passed to the kernel by prom_init or kexec
45 *
46 * The dt struct contains the device tree structure, full pathes and
47 * property contents. The dt strings contain a separate block with just
48 * the strings for the property names, and is fully page aligned and
49 * self contained in a page, so that it can be kept around by the kernel,
50 * each property name appears only once in this page (cheap compression)
51 *
52 * the mem_rsvmap contains a map of reserved ranges of physical memory,
53 * passing it here instead of in the device-tree itself greatly simplifies
54 * the job of everybody. It's just a list of u64 pairs (base/size) that
55 * ends when size is 0
56 */
57struct boot_param_header
58{
59 u32 magic; /* magic word OF_DT_HEADER */
60 u32 totalsize; /* total size of DT block */
61 u32 off_dt_struct; /* offset to structure */
62 u32 off_dt_strings; /* offset to strings */
63 u32 off_mem_rsvmap; /* offset to memory reserve map */
64 u32 version; /* format version */
65 u32 last_comp_version; /* last compatible version */
66 /* version 2 fields below */
67 u32 boot_cpuid_phys; /* Physical CPU id we're booting on */
68 /* version 3 fields below */
69 u32 dt_strings_size; /* size of the DT strings block */
David Gibson0e0293c2007-03-14 11:50:40 +110070 /* version 17 fields below */
71 u32 dt_struct_size; /* size of the DT structure block */
Paul Mackerras9b6b5632005-10-06 12:06:20 +100072};
73
74
75
76typedef u32 phandle;
77typedef u32 ihandle;
78
Paul Mackerras9b6b5632005-10-06 12:06:20 +100079struct property {
80 char *name;
81 int length;
Stephen Rothwell1a381472007-04-03 10:58:52 +100082 void *value;
Paul Mackerras9b6b5632005-10-06 12:06:20 +100083 struct property *next;
84};
85
86struct device_node {
Jeremy Kerra7f67bd2006-07-12 15:35:54 +100087 const char *name;
88 const char *type;
Paul Mackerras9b6b5632005-10-06 12:06:20 +100089 phandle node;
90 phandle linux_phandle;
Paul Mackerras9b6b5632005-10-06 12:06:20 +100091 char *full_name;
92
93 struct property *properties;
Dave C Boutcher088186d2006-01-12 16:08:27 -060094 struct property *deadprops; /* removed properties */
Paul Mackerras9b6b5632005-10-06 12:06:20 +100095 struct device_node *parent;
96 struct device_node *child;
97 struct device_node *sibling;
98 struct device_node *next; /* next device of same type */
99 struct device_node *allnext; /* next in list of all nodes */
100 struct proc_dir_entry *pde; /* this node's proc directory */
101 struct kref kref;
102 unsigned long _flags;
103 void *data;
104};
105
106extern struct device_node *of_chosen;
107
Michael Ellermand3b814b2007-06-19 16:07:58 +1000108static inline int of_node_check_flag(struct device_node *n, unsigned long flag)
109{
110 return test_bit(flag, &n->_flags);
111}
112
113static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
114{
115 set_bit(flag, &n->_flags);
116}
117
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000118
119#define HAVE_ARCH_DEVTREE_FIXUPS
120
121static inline void set_node_proc_entry(struct device_node *dn, struct proc_dir_entry *de)
122{
123 dn->pde = de;
124}
125
126
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000127extern struct device_node *of_find_all_nodes(struct device_node *prev);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000128extern struct device_node *of_node_get(struct device_node *node);
129extern void of_node_put(struct device_node *node);
130
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100131/* For scanning the flat device-tree at boot time */
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100132extern int __init of_scan_flat_dt(int (*it)(unsigned long node,
133 const char *uname, int depth,
134 void *data),
135 void *data);
136extern void* __init of_get_flat_dt_prop(unsigned long node, const char *name,
137 unsigned long *size);
138extern int __init of_flat_dt_is_compatible(unsigned long node, const char *name);
139extern unsigned long __init of_get_flat_dt_root(void);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100140
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000141/* For updating the device tree at runtime */
142extern void of_attach_node(struct device_node *);
Segher Boessenkool34f329d2007-07-20 15:58:38 +1000143extern void of_detach_node(struct device_node *);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000144
145/* Other Prototypes */
146extern void finish_device_tree(void);
147extern void unflatten_device_tree(void);
148extern void early_init_devtree(void *);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000149extern int machine_is_compatible(const char *compat);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000150extern void print_properties(struct device_node *node);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000151extern int prom_n_intr_cells(struct device_node* np);
152extern void prom_get_irq_senses(unsigned char *senses, int off, int max);
Benjamin Herrenschmidt183d0202005-11-07 14:29:02 +1100153extern int prom_add_property(struct device_node* np, struct property* prop);
Dave C Boutcher088186d2006-01-12 16:08:27 -0600154extern int prom_remove_property(struct device_node *np, struct property *prop);
155extern int prom_update_property(struct device_node *np,
156 struct property *newprop,
157 struct property *oldprop);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000158
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000159#ifdef CONFIG_PPC32
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000160/*
161 * PCI <-> OF matching functions
162 * (XXX should these be here?)
163 */
164struct pci_bus;
165struct pci_dev;
166extern int pci_device_from_OF_node(struct device_node *node,
167 u8* bus, u8* devfn);
168extern struct device_node* pci_busdev_to_OF_node(struct pci_bus *, int);
169extern struct device_node* pci_device_to_OF_node(struct pci_dev *);
170extern void pci_create_OF_bus_map(void);
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000171#endif
172
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000173extern struct resource *request_OF_resource(struct device_node* node,
174 int index, const char* name_postfix);
175extern int release_OF_resource(struct device_node* node, int index);
176
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100177
Benjamin Herrenschmidtd1405b82005-11-23 17:53:42 +1100178/*
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100179 * OF address retreival & translation
180 */
181
182
Paul Mackerrasa4dc7ff2006-09-19 14:06:27 +1000183/* Helper to read a big number; size is in cells (not bytes) */
Jeremy Kerrb5a1a9a2006-07-04 16:46:44 +1000184static inline u64 of_read_number(const u32 *cell, int size)
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000185{
186 u64 r = 0;
187 while (size--)
188 r = (r << 32) | *(cell++);
189 return r;
190}
191
Paul Mackerrasa4dc7ff2006-09-19 14:06:27 +1000192/* Like of_read_number, but we want an unsigned long result */
193#ifdef CONFIG_PPC32
194static inline unsigned long of_read_ulong(const u32 *cell, int size)
195{
196 return cell[size-1];
197}
198#else
199#define of_read_ulong(cell, size) of_read_number(cell, size)
200#endif
201
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100202/* Translate an OF address block into a CPU physical address
Benjamin Herrenschmidtd1405b82005-11-23 17:53:42 +1100203 */
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000204extern u64 of_translate_address(struct device_node *np, const u32 *addr);
Benjamin Herrenschmidtd1405b82005-11-23 17:53:42 +1100205
Benjamin Herrenschmidt837c54d2007-12-11 14:48:22 +1100206/* Translate a DMA address from device space to CPU space */
207extern u64 of_translate_dma_address(struct device_node *dev,
208 const u32 *in_addr);
209
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100210/* Extract an address from a device, returns the region size and
211 * the address space flags too. The PCI version uses a BAR number
212 * instead of an absolute index
213 */
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000214extern const u32 *of_get_address(struct device_node *dev, int index,
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100215 u64 *size, unsigned int *flags);
Anton Vorontsovff1f4ee2008-06-11 08:31:00 +1000216#ifdef CONFIG_PCI
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000217extern const u32 *of_get_pci_address(struct device_node *dev, int bar_no,
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100218 u64 *size, unsigned int *flags);
Anton Vorontsovff1f4ee2008-06-11 08:31:00 +1000219#else
220static inline const u32 *of_get_pci_address(struct device_node *dev,
221 int bar_no, u64 *size, unsigned int *flags)
222{
223 return NULL;
224}
225#endif /* CONFIG_PCI */
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100226
227/* Get an address as a resource. Note that if your address is
228 * a PIO address, the conversion will fail if the physical address
229 * can't be internally converted to an IO token with
230 * pci_address_to_pio(), that is because it's either called to early
231 * or it can't be matched to any host bridge IO space
232 */
233extern int of_address_to_resource(struct device_node *dev, int index,
234 struct resource *r);
Anton Vorontsovff1f4ee2008-06-11 08:31:00 +1000235#ifdef CONFIG_PCI
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100236extern int of_pci_address_to_resource(struct device_node *dev, int bar,
237 struct resource *r);
Anton Vorontsovff1f4ee2008-06-11 08:31:00 +1000238#else
239static inline int of_pci_address_to_resource(struct device_node *dev, int bar,
240 struct resource *r)
241{
242 return -ENOSYS;
243}
244#endif /* CONFIG_PCI */
Benjamin Herrenschmidtd1405b82005-11-23 17:53:42 +1100245
Jeremy Kerrd4ad66f2006-05-18 18:05:15 +1000246/* Parse the ibm,dma-window property of an OF node into the busno, phys and
247 * size parameters.
248 */
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000249void of_parse_dma_window(struct device_node *dn, const void *dma_window_prop,
Jeremy Kerrd4ad66f2006-05-18 18:05:15 +1000250 unsigned long *busno, unsigned long *phys, unsigned long *size);
251
Michael Ellermanb68239e2006-02-03 19:05:47 +1100252extern void kdump_move_device_tree(void);
253
Benjamin Herrenschmidtacf7d762006-06-19 20:33:16 +0200254/* CPU OF node matching */
255struct device_node *of_get_cpu_node(int cpu, unsigned int *thread);
256
Nathan Lynche523f722008-12-10 14:46:04 +0000257/* cache lookup */
258struct device_node *of_find_next_cache_node(struct device_node *np);
259
Timur Tabi29cfe6f2007-02-16 12:01:29 -0600260/* Get the MAC address */
261extern const void *of_get_mac_address(struct device_node *np);
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000262
263/*
264 * OF interrupt mapping
265 */
266
267/* This structure is returned when an interrupt is mapped. The controller
268 * field needs to be put() after use
269 */
270
271#define OF_MAX_IRQ_SPEC 4 /* We handle specifiers of at most 4 cells */
272
273struct of_irq {
274 struct device_node *controller; /* Interrupt controller node */
275 u32 size; /* Specifier size */
276 u32 specifier[OF_MAX_IRQ_SPEC]; /* Specifier copy */
277};
278
Michael Ellerman40681b92006-08-02 11:13:50 +1000279/**
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000280 * of_irq_map_init - Initialize the irq remapper
281 * @flags: flags defining workarounds to enable
282 *
283 * Some machines have bugs in the device-tree which require certain workarounds
284 * to be applied. Call this before any interrupt mapping attempts to enable
285 * those workarounds.
286 */
287#define OF_IMAP_OLDWORLD_MAC 0x00000001
288#define OF_IMAP_NO_PHANDLE 0x00000002
289
290extern void of_irq_map_init(unsigned int flags);
291
Michael Ellerman40681b92006-08-02 11:13:50 +1000292/**
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000293 * of_irq_map_raw - Low level interrupt tree parsing
294 * @parent: the device interrupt parent
295 * @intspec: interrupt specifier ("interrupts" property of the device)
Benjamin Herrenschmidt006b64d2006-08-25 14:46:23 +1000296 * @ointsize: size of the passed in interrupt specifier
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000297 * @addr: address specifier (start of "reg" property of the device)
298 * @out_irq: structure of_irq filled by this function
299 *
300 * Returns 0 on success and a negative number on error
301 *
302 * This function is a low-level interrupt tree walking function. It
303 * can be used to do a partial walk with synthetized reg and interrupts
304 * properties, for example when resolving PCI interrupts when no device
305 * node exist for the parent.
306 *
307 */
308
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000309extern int of_irq_map_raw(struct device_node *parent, const u32 *intspec,
Paul Mackerrasaa43f772006-08-31 15:45:48 +1000310 u32 ointsize, const u32 *addr,
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000311 struct of_irq *out_irq);
312
313
Michael Ellerman40681b92006-08-02 11:13:50 +1000314/**
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000315 * of_irq_map_one - Resolve an interrupt for a device
316 * @device: the device whose interrupt is to be resolved
317 * @index: index of the interrupt to resolve
318 * @out_irq: structure of_irq filled by this function
319 *
320 * This function resolves an interrupt, walking the tree, for a given
321 * device-tree node. It's the high level pendant to of_irq_map_raw().
322 * It also implements the workarounds for OldWolrd Macs.
323 */
324extern int of_irq_map_one(struct device_node *device, int index,
325 struct of_irq *out_irq);
326
Michael Ellerman40681b92006-08-02 11:13:50 +1000327/**
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000328 * of_irq_map_pci - Resolve the interrupt for a PCI device
329 * @pdev: the device whose interrupt is to be resolved
330 * @out_irq: structure of_irq filled by this function
331 *
332 * This function resolves the PCI interrupt for a given PCI device. If a
333 * device-node exists for a given pci_dev, it will use normal OF tree
334 * walking. If not, it will implement standard swizzling and walk up the
335 * PCI tree until an device-node is found, at which point it will finish
336 * resolving using the OF tree walking.
337 */
338struct pci_dev;
339extern int of_irq_map_pci(struct pci_dev *pdev, struct of_irq *out_irq);
340
Mathieu Desnoyersc0b3ae12007-02-06 12:03:31 +1100341extern int of_irq_to_resource(struct device_node *dev, int index,
342 struct resource *r);
Andy Fleminga9b14972006-10-19 19:52:26 -0500343
Christian Krafftc3e80112007-04-25 01:32:02 +1000344/**
345 * of_iomap - Maps the memory mapped IO for a given device_node
346 * @device: the device whose io range will be mapped
347 * @index: index of the io range
348 *
349 * Returns a pointer to the mapped memory
350 */
351extern void __iomem *of_iomap(struct device_node *device, int index);
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000352
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000353#endif /* __KERNEL__ */
354#endif /* _POWERPC_PROM_H */