blob: c918db535f08db3e9dff5ed40262a529f9a13633 [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
Paul Mackerras9b6b5632005-10-06 12:06:20 +100074extern struct device_node *of_chosen;
75
Michael Ellermand3b814b2007-06-19 16:07:58 +100076static inline int of_node_check_flag(struct device_node *n, unsigned long flag)
77{
78 return test_bit(flag, &n->_flags);
79}
80
81static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
82{
83 set_bit(flag, &n->_flags);
84}
85
Paul Mackerras9b6b5632005-10-06 12:06:20 +100086
87#define HAVE_ARCH_DEVTREE_FIXUPS
88
89static inline void set_node_proc_entry(struct device_node *dn, struct proc_dir_entry *de)
90{
91 dn->pde = de;
92}
93
94
Paul Mackerras9b6b5632005-10-06 12:06:20 +100095extern struct device_node *of_find_all_nodes(struct device_node *prev);
Paul Mackerras9b6b5632005-10-06 12:06:20 +100096extern struct device_node *of_node_get(struct device_node *node);
97extern void of_node_put(struct device_node *node);
98
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110099/* For scanning the flat device-tree at boot time */
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100100extern int __init of_scan_flat_dt(int (*it)(unsigned long node,
101 const char *uname, int depth,
102 void *data),
103 void *data);
104extern void* __init of_get_flat_dt_prop(unsigned long node, const char *name,
105 unsigned long *size);
106extern int __init of_flat_dt_is_compatible(unsigned long node, const char *name);
107extern unsigned long __init of_get_flat_dt_root(void);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +1100108
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000109/* For updating the device tree at runtime */
110extern void of_attach_node(struct device_node *);
Segher Boessenkool34f329d2007-07-20 15:58:38 +1000111extern void of_detach_node(struct device_node *);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000112
113/* Other Prototypes */
114extern void finish_device_tree(void);
115extern void unflatten_device_tree(void);
116extern void early_init_devtree(void *);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000117extern int machine_is_compatible(const char *compat);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000118extern void print_properties(struct device_node *node);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000119extern int prom_n_intr_cells(struct device_node* np);
120extern void prom_get_irq_senses(unsigned char *senses, int off, int max);
Benjamin Herrenschmidt183d0202005-11-07 14:29:02 +1100121extern int prom_add_property(struct device_node* np, struct property* prop);
Dave C Boutcher088186d2006-01-12 16:08:27 -0600122extern int prom_remove_property(struct device_node *np, struct property *prop);
123extern int prom_update_property(struct device_node *np,
124 struct property *newprop,
125 struct property *oldprop);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000126
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000127#ifdef CONFIG_PPC32
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000128/*
129 * PCI <-> OF matching functions
130 * (XXX should these be here?)
131 */
132struct pci_bus;
133struct pci_dev;
134extern int pci_device_from_OF_node(struct device_node *node,
135 u8* bus, u8* devfn);
136extern struct device_node* pci_busdev_to_OF_node(struct pci_bus *, int);
137extern struct device_node* pci_device_to_OF_node(struct pci_dev *);
138extern void pci_create_OF_bus_map(void);
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000139#endif
140
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000141extern struct resource *request_OF_resource(struct device_node* node,
142 int index, const char* name_postfix);
143extern int release_OF_resource(struct device_node* node, int index);
144
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100145
Benjamin Herrenschmidtd1405b82005-11-23 17:53:42 +1100146/*
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100147 * OF address retreival & translation
148 */
149
150
Paul Mackerrasa4dc7ff2006-09-19 14:06:27 +1000151/* Helper to read a big number; size is in cells (not bytes) */
Jeremy Kerrb5a1a9a2006-07-04 16:46:44 +1000152static inline u64 of_read_number(const u32 *cell, int size)
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000153{
154 u64 r = 0;
155 while (size--)
156 r = (r << 32) | *(cell++);
157 return r;
158}
159
Paul Mackerrasa4dc7ff2006-09-19 14:06:27 +1000160/* Like of_read_number, but we want an unsigned long result */
161#ifdef CONFIG_PPC32
162static inline unsigned long of_read_ulong(const u32 *cell, int size)
163{
164 return cell[size-1];
165}
166#else
167#define of_read_ulong(cell, size) of_read_number(cell, size)
168#endif
169
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100170/* Translate an OF address block into a CPU physical address
Benjamin Herrenschmidtd1405b82005-11-23 17:53:42 +1100171 */
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000172extern u64 of_translate_address(struct device_node *np, const u32 *addr);
Benjamin Herrenschmidtd1405b82005-11-23 17:53:42 +1100173
Benjamin Herrenschmidt837c54d2007-12-11 14:48:22 +1100174/* Translate a DMA address from device space to CPU space */
175extern u64 of_translate_dma_address(struct device_node *dev,
176 const u32 *in_addr);
177
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100178/* Extract an address from a device, returns the region size and
179 * the address space flags too. The PCI version uses a BAR number
180 * instead of an absolute index
181 */
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000182extern const u32 *of_get_address(struct device_node *dev, int index,
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100183 u64 *size, unsigned int *flags);
Anton Vorontsovff1f4ee2008-06-11 08:31:00 +1000184#ifdef CONFIG_PCI
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000185extern const u32 *of_get_pci_address(struct device_node *dev, int bar_no,
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100186 u64 *size, unsigned int *flags);
Anton Vorontsovff1f4ee2008-06-11 08:31:00 +1000187#else
188static inline const u32 *of_get_pci_address(struct device_node *dev,
189 int bar_no, u64 *size, unsigned int *flags)
190{
191 return NULL;
192}
193#endif /* CONFIG_PCI */
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100194
195/* Get an address as a resource. Note that if your address is
196 * a PIO address, the conversion will fail if the physical address
197 * can't be internally converted to an IO token with
198 * pci_address_to_pio(), that is because it's either called to early
199 * or it can't be matched to any host bridge IO space
200 */
201extern int of_address_to_resource(struct device_node *dev, int index,
202 struct resource *r);
Anton Vorontsovff1f4ee2008-06-11 08:31:00 +1000203#ifdef CONFIG_PCI
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100204extern int of_pci_address_to_resource(struct device_node *dev, int bar,
205 struct resource *r);
Anton Vorontsovff1f4ee2008-06-11 08:31:00 +1000206#else
207static inline int of_pci_address_to_resource(struct device_node *dev, int bar,
208 struct resource *r)
209{
210 return -ENOSYS;
211}
212#endif /* CONFIG_PCI */
Benjamin Herrenschmidtd1405b82005-11-23 17:53:42 +1100213
Jeremy Kerrd4ad66f2006-05-18 18:05:15 +1000214/* Parse the ibm,dma-window property of an OF node into the busno, phys and
215 * size parameters.
216 */
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000217void of_parse_dma_window(struct device_node *dn, const void *dma_window_prop,
Jeremy Kerrd4ad66f2006-05-18 18:05:15 +1000218 unsigned long *busno, unsigned long *phys, unsigned long *size);
219
Michael Ellermanb68239e2006-02-03 19:05:47 +1100220extern void kdump_move_device_tree(void);
221
Benjamin Herrenschmidtacf7d762006-06-19 20:33:16 +0200222/* CPU OF node matching */
223struct device_node *of_get_cpu_node(int cpu, unsigned int *thread);
224
Nathan Lynche523f722008-12-10 14:46:04 +0000225/* cache lookup */
226struct device_node *of_find_next_cache_node(struct device_node *np);
227
Timur Tabi29cfe6f2007-02-16 12:01:29 -0600228/* Get the MAC address */
229extern const void *of_get_mac_address(struct device_node *np);
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000230
231/*
232 * OF interrupt mapping
233 */
234
235/* This structure is returned when an interrupt is mapped. The controller
236 * field needs to be put() after use
237 */
238
239#define OF_MAX_IRQ_SPEC 4 /* We handle specifiers of at most 4 cells */
240
241struct of_irq {
242 struct device_node *controller; /* Interrupt controller node */
243 u32 size; /* Specifier size */
244 u32 specifier[OF_MAX_IRQ_SPEC]; /* Specifier copy */
245};
246
Michael Ellerman40681b92006-08-02 11:13:50 +1000247/**
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000248 * of_irq_map_init - Initialize the irq remapper
249 * @flags: flags defining workarounds to enable
250 *
251 * Some machines have bugs in the device-tree which require certain workarounds
252 * to be applied. Call this before any interrupt mapping attempts to enable
253 * those workarounds.
254 */
255#define OF_IMAP_OLDWORLD_MAC 0x00000001
256#define OF_IMAP_NO_PHANDLE 0x00000002
257
258extern void of_irq_map_init(unsigned int flags);
259
Michael Ellerman40681b92006-08-02 11:13:50 +1000260/**
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000261 * of_irq_map_raw - Low level interrupt tree parsing
262 * @parent: the device interrupt parent
263 * @intspec: interrupt specifier ("interrupts" property of the device)
Benjamin Herrenschmidt006b64d2006-08-25 14:46:23 +1000264 * @ointsize: size of the passed in interrupt specifier
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000265 * @addr: address specifier (start of "reg" property of the device)
266 * @out_irq: structure of_irq filled by this function
267 *
268 * Returns 0 on success and a negative number on error
269 *
270 * This function is a low-level interrupt tree walking function. It
271 * can be used to do a partial walk with synthetized reg and interrupts
272 * properties, for example when resolving PCI interrupts when no device
273 * node exist for the parent.
274 *
275 */
276
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000277extern int of_irq_map_raw(struct device_node *parent, const u32 *intspec,
Paul Mackerrasaa43f772006-08-31 15:45:48 +1000278 u32 ointsize, const u32 *addr,
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000279 struct of_irq *out_irq);
280
281
Michael Ellerman40681b92006-08-02 11:13:50 +1000282/**
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000283 * of_irq_map_one - Resolve an interrupt for a device
284 * @device: the device whose interrupt is to be resolved
285 * @index: index of the interrupt to resolve
286 * @out_irq: structure of_irq filled by this function
287 *
288 * This function resolves an interrupt, walking the tree, for a given
289 * device-tree node. It's the high level pendant to of_irq_map_raw().
290 * It also implements the workarounds for OldWolrd Macs.
291 */
292extern int of_irq_map_one(struct device_node *device, int index,
293 struct of_irq *out_irq);
294
Michael Ellerman40681b92006-08-02 11:13:50 +1000295/**
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000296 * of_irq_map_pci - Resolve the interrupt for a PCI device
297 * @pdev: the device whose interrupt is to be resolved
298 * @out_irq: structure of_irq filled by this function
299 *
300 * This function resolves the PCI interrupt for a given PCI device. If a
301 * device-node exists for a given pci_dev, it will use normal OF tree
302 * walking. If not, it will implement standard swizzling and walk up the
303 * PCI tree until an device-node is found, at which point it will finish
304 * resolving using the OF tree walking.
305 */
306struct pci_dev;
307extern int of_irq_map_pci(struct pci_dev *pdev, struct of_irq *out_irq);
308
Mathieu Desnoyersc0b3ae12007-02-06 12:03:31 +1100309extern int of_irq_to_resource(struct device_node *dev, int index,
310 struct resource *r);
Andy Fleminga9b14972006-10-19 19:52:26 -0500311
Christian Krafftc3e80112007-04-25 01:32:02 +1000312/**
313 * of_iomap - Maps the memory mapped IO for a given device_node
314 * @device: the device whose io range will be mapped
315 * @index: index of the io range
316 *
317 * Returns a pointer to the mapped memory
318 */
319extern void __iomem *of_iomap(struct device_node *device, int index);
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000320
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000321#endif /* __KERNEL__ */
322#endif /* _POWERPC_PROM_H */