blob: 7181f8ac40f98df978f15bb43dfaaa2e38ee9efb [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>
Grant Likelyd8678b52009-10-15 10:57:53 -060020#include <linux/of_fdt.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100021#include <linux/proc_fs.h>
Andy Fleminga9b14972006-10-19 19:52:26 -050022#include <linux/platform_device.h>
Andrew Morton99ddef92007-02-17 18:17:16 -070023#include <asm/irq.h>
Paul Mackerras9b6b5632005-10-06 12:06:20 +100024#include <asm/atomic.h>
25
Stephen Rothwell97e873e2007-05-01 16:26:07 +100026#define OF_ROOT_NODE_ADDR_CELLS_DEFAULT 1
27#define OF_ROOT_NODE_SIZE_CELLS_DEFAULT 1
28
Scott Wood804ace82007-08-21 02:36:59 +100029#define of_compat_cmp(s1, s2, l) strcasecmp((s1), (s2))
Stephen Rothwell581b6052007-04-24 16:46:53 +100030#define of_prop_cmp(s1, s2) strcmp((s1), (s2))
Stephen Rothwell1ef4d422007-04-24 17:57:33 +100031#define of_node_cmp(s1, s2) strcasecmp((s1), (s2))
Stephen Rothwell0081cbc2007-05-01 16:29:19 +100032
Paul Mackerras9b6b5632005-10-06 12:06:20 +100033/*
34 * This is what gets passed to the kernel by prom_init or kexec
35 *
36 * The dt struct contains the device tree structure, full pathes and
37 * property contents. The dt strings contain a separate block with just
38 * the strings for the property names, and is fully page aligned and
39 * self contained in a page, so that it can be kept around by the kernel,
40 * each property name appears only once in this page (cheap compression)
41 *
42 * the mem_rsvmap contains a map of reserved ranges of physical memory,
43 * passing it here instead of in the device-tree itself greatly simplifies
44 * the job of everybody. It's just a list of u64 pairs (base/size) that
45 * ends when size is 0
46 */
47struct boot_param_header
48{
49 u32 magic; /* magic word OF_DT_HEADER */
50 u32 totalsize; /* total size of DT block */
51 u32 off_dt_struct; /* offset to structure */
52 u32 off_dt_strings; /* offset to strings */
53 u32 off_mem_rsvmap; /* offset to memory reserve map */
54 u32 version; /* format version */
55 u32 last_comp_version; /* last compatible version */
56 /* version 2 fields below */
57 u32 boot_cpuid_phys; /* Physical CPU id we're booting on */
58 /* version 3 fields below */
59 u32 dt_strings_size; /* size of the DT strings block */
David Gibson0e0293c2007-03-14 11:50:40 +110060 /* version 17 fields below */
61 u32 dt_struct_size; /* size of the DT structure block */
Paul Mackerras9b6b5632005-10-06 12:06:20 +100062};
63
Paul Mackerras9b6b5632005-10-06 12:06:20 +100064extern struct device_node *of_chosen;
65
Michael Ellermand3b814b2007-06-19 16:07:58 +100066static inline int of_node_check_flag(struct device_node *n, unsigned long flag)
67{
68 return test_bit(flag, &n->_flags);
69}
70
71static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
72{
73 set_bit(flag, &n->_flags);
74}
75
Paul Mackerras9b6b5632005-10-06 12:06:20 +100076
77#define HAVE_ARCH_DEVTREE_FIXUPS
78
79static inline void set_node_proc_entry(struct device_node *dn, struct proc_dir_entry *de)
80{
81 dn->pde = de;
82}
83
84
Paul Mackerras9b6b5632005-10-06 12:06:20 +100085extern struct device_node *of_find_all_nodes(struct device_node *prev);
Paul Mackerras9b6b5632005-10-06 12:06:20 +100086extern struct device_node *of_node_get(struct device_node *node);
87extern void of_node_put(struct device_node *node);
88
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110089/* For scanning the flat device-tree at boot time */
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +110090extern int __init of_scan_flat_dt(int (*it)(unsigned long node,
91 const char *uname, int depth,
92 void *data),
93 void *data);
94extern void* __init of_get_flat_dt_prop(unsigned long node, const char *name,
95 unsigned long *size);
96extern int __init of_flat_dt_is_compatible(unsigned long node, const char *name);
97extern unsigned long __init of_get_flat_dt_root(void);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110098
Paul Mackerras9b6b5632005-10-06 12:06:20 +100099/* For updating the device tree at runtime */
100extern void of_attach_node(struct device_node *);
Segher Boessenkool34f329d2007-07-20 15:58:38 +1000101extern void of_detach_node(struct device_node *);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000102
103/* Other Prototypes */
104extern void finish_device_tree(void);
105extern void unflatten_device_tree(void);
106extern void early_init_devtree(void *);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000107extern int machine_is_compatible(const char *compat);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000108extern void print_properties(struct device_node *node);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000109extern int prom_n_intr_cells(struct device_node* np);
110extern void prom_get_irq_senses(unsigned char *senses, int off, int max);
Benjamin Herrenschmidt183d0202005-11-07 14:29:02 +1100111extern int prom_add_property(struct device_node* np, struct property* prop);
Dave C Boutcher088186d2006-01-12 16:08:27 -0600112extern int prom_remove_property(struct device_node *np, struct property *prop);
113extern int prom_update_property(struct device_node *np,
114 struct property *newprop,
115 struct property *oldprop);
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000116
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000117#ifdef CONFIG_PPC32
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000118/*
119 * PCI <-> OF matching functions
120 * (XXX should these be here?)
121 */
122struct pci_bus;
123struct pci_dev;
124extern int pci_device_from_OF_node(struct device_node *node,
125 u8* bus, u8* devfn);
126extern struct device_node* pci_busdev_to_OF_node(struct pci_bus *, int);
127extern struct device_node* pci_device_to_OF_node(struct pci_dev *);
128extern void pci_create_OF_bus_map(void);
Paul Mackerras40ef8cb2005-10-10 22:50:37 +1000129#endif
130
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000131extern struct resource *request_OF_resource(struct device_node* node,
132 int index, const char* name_postfix);
133extern int release_OF_resource(struct device_node* node, int index);
134
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100135
Benjamin Herrenschmidtd1405b82005-11-23 17:53:42 +1100136/*
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100137 * OF address retreival & translation
138 */
139
140
Paul Mackerrasa4dc7ff2006-09-19 14:06:27 +1000141/* Helper to read a big number; size is in cells (not bytes) */
Jeremy Kerrb5a1a9a2006-07-04 16:46:44 +1000142static inline u64 of_read_number(const u32 *cell, int size)
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000143{
144 u64 r = 0;
145 while (size--)
146 r = (r << 32) | *(cell++);
147 return r;
148}
149
Paul Mackerrasa4dc7ff2006-09-19 14:06:27 +1000150/* Like of_read_number, but we want an unsigned long result */
151#ifdef CONFIG_PPC32
152static inline unsigned long of_read_ulong(const u32 *cell, int size)
153{
154 return cell[size-1];
155}
156#else
157#define of_read_ulong(cell, size) of_read_number(cell, size)
158#endif
159
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100160/* Translate an OF address block into a CPU physical address
Benjamin Herrenschmidtd1405b82005-11-23 17:53:42 +1100161 */
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000162extern u64 of_translate_address(struct device_node *np, const u32 *addr);
Benjamin Herrenschmidtd1405b82005-11-23 17:53:42 +1100163
Benjamin Herrenschmidt837c54d2007-12-11 14:48:22 +1100164/* Translate a DMA address from device space to CPU space */
165extern u64 of_translate_dma_address(struct device_node *dev,
166 const u32 *in_addr);
167
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100168/* Extract an address from a device, returns the region size and
169 * the address space flags too. The PCI version uses a BAR number
170 * instead of an absolute index
171 */
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000172extern const u32 *of_get_address(struct device_node *dev, int index,
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100173 u64 *size, unsigned int *flags);
Anton Vorontsovff1f4ee2008-06-11 08:31:00 +1000174#ifdef CONFIG_PCI
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000175extern const u32 *of_get_pci_address(struct device_node *dev, int bar_no,
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100176 u64 *size, unsigned int *flags);
Anton Vorontsovff1f4ee2008-06-11 08:31:00 +1000177#else
178static inline const u32 *of_get_pci_address(struct device_node *dev,
179 int bar_no, u64 *size, unsigned int *flags)
180{
181 return NULL;
182}
183#endif /* CONFIG_PCI */
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100184
185/* Get an address as a resource. Note that if your address is
186 * a PIO address, the conversion will fail if the physical address
187 * can't be internally converted to an IO token with
188 * pci_address_to_pio(), that is because it's either called to early
189 * or it can't be matched to any host bridge IO space
190 */
191extern int of_address_to_resource(struct device_node *dev, int index,
192 struct resource *r);
Anton Vorontsovff1f4ee2008-06-11 08:31:00 +1000193#ifdef CONFIG_PCI
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100194extern int of_pci_address_to_resource(struct device_node *dev, int bar,
195 struct resource *r);
Anton Vorontsovff1f4ee2008-06-11 08:31:00 +1000196#else
197static inline int of_pci_address_to_resource(struct device_node *dev, int bar,
198 struct resource *r)
199{
200 return -ENOSYS;
201}
202#endif /* CONFIG_PCI */
Benjamin Herrenschmidtd1405b82005-11-23 17:53:42 +1100203
Jeremy Kerrd4ad66f2006-05-18 18:05:15 +1000204/* Parse the ibm,dma-window property of an OF node into the busno, phys and
205 * size parameters.
206 */
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000207void of_parse_dma_window(struct device_node *dn, const void *dma_window_prop,
Jeremy Kerrd4ad66f2006-05-18 18:05:15 +1000208 unsigned long *busno, unsigned long *phys, unsigned long *size);
209
Michael Ellermanb68239e2006-02-03 19:05:47 +1100210extern void kdump_move_device_tree(void);
211
Benjamin Herrenschmidtacf7d762006-06-19 20:33:16 +0200212/* CPU OF node matching */
213struct device_node *of_get_cpu_node(int cpu, unsigned int *thread);
214
Nathan Lynche523f722008-12-10 14:46:04 +0000215/* cache lookup */
216struct device_node *of_find_next_cache_node(struct device_node *np);
217
Timur Tabi29cfe6f2007-02-16 12:01:29 -0600218/* Get the MAC address */
219extern const void *of_get_mac_address(struct device_node *np);
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000220
221/*
222 * OF interrupt mapping
223 */
224
225/* This structure is returned when an interrupt is mapped. The controller
226 * field needs to be put() after use
227 */
228
229#define OF_MAX_IRQ_SPEC 4 /* We handle specifiers of at most 4 cells */
230
231struct of_irq {
232 struct device_node *controller; /* Interrupt controller node */
233 u32 size; /* Specifier size */
234 u32 specifier[OF_MAX_IRQ_SPEC]; /* Specifier copy */
235};
236
Michael Ellerman40681b92006-08-02 11:13:50 +1000237/**
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000238 * of_irq_map_init - Initialize the irq remapper
239 * @flags: flags defining workarounds to enable
240 *
241 * Some machines have bugs in the device-tree which require certain workarounds
242 * to be applied. Call this before any interrupt mapping attempts to enable
243 * those workarounds.
244 */
245#define OF_IMAP_OLDWORLD_MAC 0x00000001
246#define OF_IMAP_NO_PHANDLE 0x00000002
247
248extern void of_irq_map_init(unsigned int flags);
249
Michael Ellerman40681b92006-08-02 11:13:50 +1000250/**
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000251 * of_irq_map_raw - Low level interrupt tree parsing
252 * @parent: the device interrupt parent
253 * @intspec: interrupt specifier ("interrupts" property of the device)
Benjamin Herrenschmidt006b64d2006-08-25 14:46:23 +1000254 * @ointsize: size of the passed in interrupt specifier
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000255 * @addr: address specifier (start of "reg" property of the device)
256 * @out_irq: structure of_irq filled by this function
257 *
258 * Returns 0 on success and a negative number on error
259 *
260 * This function is a low-level interrupt tree walking function. It
261 * can be used to do a partial walk with synthetized reg and interrupts
262 * properties, for example when resolving PCI interrupts when no device
263 * node exist for the parent.
264 *
265 */
266
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000267extern int of_irq_map_raw(struct device_node *parent, const u32 *intspec,
Paul Mackerrasaa43f772006-08-31 15:45:48 +1000268 u32 ointsize, const u32 *addr,
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000269 struct of_irq *out_irq);
270
271
Michael Ellerman40681b92006-08-02 11:13:50 +1000272/**
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000273 * of_irq_map_one - Resolve an interrupt for a device
274 * @device: the device whose interrupt is to be resolved
275 * @index: index of the interrupt to resolve
276 * @out_irq: structure of_irq filled by this function
277 *
278 * This function resolves an interrupt, walking the tree, for a given
279 * device-tree node. It's the high level pendant to of_irq_map_raw().
280 * It also implements the workarounds for OldWolrd Macs.
281 */
282extern int of_irq_map_one(struct device_node *device, int index,
283 struct of_irq *out_irq);
284
Michael Ellerman40681b92006-08-02 11:13:50 +1000285/**
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000286 * of_irq_map_pci - Resolve the interrupt for a PCI device
287 * @pdev: the device whose interrupt is to be resolved
288 * @out_irq: structure of_irq filled by this function
289 *
290 * This function resolves the PCI interrupt for a given PCI device. If a
291 * device-node exists for a given pci_dev, it will use normal OF tree
292 * walking. If not, it will implement standard swizzling and walk up the
293 * PCI tree until an device-node is found, at which point it will finish
294 * resolving using the OF tree walking.
295 */
296struct pci_dev;
297extern int of_irq_map_pci(struct pci_dev *pdev, struct of_irq *out_irq);
298
Mathieu Desnoyersc0b3ae12007-02-06 12:03:31 +1100299extern int of_irq_to_resource(struct device_node *dev, int index,
300 struct resource *r);
Andy Fleminga9b14972006-10-19 19:52:26 -0500301
Christian Krafftc3e80112007-04-25 01:32:02 +1000302/**
303 * of_iomap - Maps the memory mapped IO for a given device_node
304 * @device: the device whose io range will be mapped
305 * @index: index of the io range
306 *
307 * Returns a pointer to the mapped memory
308 */
309extern void __iomem *of_iomap(struct device_node *device, int index);
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000310
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000311#endif /* __KERNEL__ */
312#endif /* _POWERPC_PROM_H */