blob: ef20e6c23235c86565aab2c80ce1250816a96ff8 [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 +100033extern struct device_node *of_chosen;
34
Michael Ellermand3b814b2007-06-19 16:07:58 +100035static inline int of_node_check_flag(struct device_node *n, unsigned long flag)
36{
37 return test_bit(flag, &n->_flags);
38}
39
40static inline void of_node_set_flag(struct device_node *n, unsigned long flag)
41{
42 set_bit(flag, &n->_flags);
43}
44
Paul Mackerras9b6b5632005-10-06 12:06:20 +100045
46#define HAVE_ARCH_DEVTREE_FIXUPS
47
48static inline void set_node_proc_entry(struct device_node *dn, struct proc_dir_entry *de)
49{
50 dn->pde = de;
51}
52
53
Paul Mackerras9b6b5632005-10-06 12:06:20 +100054extern struct device_node *of_find_all_nodes(struct device_node *prev);
Paul Mackerras9b6b5632005-10-06 12:06:20 +100055extern struct device_node *of_node_get(struct device_node *node);
56extern void of_node_put(struct device_node *node);
57
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110058/* For scanning the flat device-tree at boot time */
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +110059extern int __init of_scan_flat_dt(int (*it)(unsigned long node,
60 const char *uname, int depth,
61 void *data),
62 void *data);
63extern void* __init of_get_flat_dt_prop(unsigned long node, const char *name,
64 unsigned long *size);
65extern int __init of_flat_dt_is_compatible(unsigned long node, const char *name);
66extern unsigned long __init of_get_flat_dt_root(void);
Benjamin Herrenschmidt3c726f82005-11-07 11:06:55 +110067
Paul Mackerras9b6b5632005-10-06 12:06:20 +100068/* For updating the device tree at runtime */
69extern void of_attach_node(struct device_node *);
Segher Boessenkool34f329d2007-07-20 15:58:38 +100070extern void of_detach_node(struct device_node *);
Paul Mackerras9b6b5632005-10-06 12:06:20 +100071
72/* Other Prototypes */
73extern void finish_device_tree(void);
74extern void unflatten_device_tree(void);
75extern void early_init_devtree(void *);
Paul Mackerras9b6b5632005-10-06 12:06:20 +100076extern int machine_is_compatible(const char *compat);
Paul Mackerras9b6b5632005-10-06 12:06:20 +100077extern void print_properties(struct device_node *node);
Paul Mackerras9b6b5632005-10-06 12:06:20 +100078extern int prom_n_intr_cells(struct device_node* np);
79extern void prom_get_irq_senses(unsigned char *senses, int off, int max);
Benjamin Herrenschmidt183d0202005-11-07 14:29:02 +110080extern int prom_add_property(struct device_node* np, struct property* prop);
Dave C Boutcher088186d2006-01-12 16:08:27 -060081extern int prom_remove_property(struct device_node *np, struct property *prop);
82extern int prom_update_property(struct device_node *np,
83 struct property *newprop,
84 struct property *oldprop);
Paul Mackerras9b6b5632005-10-06 12:06:20 +100085
Paul Mackerras40ef8cb2005-10-10 22:50:37 +100086#ifdef CONFIG_PPC32
Paul Mackerras9b6b5632005-10-06 12:06:20 +100087/*
88 * PCI <-> OF matching functions
89 * (XXX should these be here?)
90 */
91struct pci_bus;
92struct pci_dev;
93extern int pci_device_from_OF_node(struct device_node *node,
94 u8* bus, u8* devfn);
95extern struct device_node* pci_busdev_to_OF_node(struct pci_bus *, int);
96extern struct device_node* pci_device_to_OF_node(struct pci_dev *);
97extern void pci_create_OF_bus_map(void);
Paul Mackerras40ef8cb2005-10-10 22:50:37 +100098#endif
99
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000100extern struct resource *request_OF_resource(struct device_node* node,
101 int index, const char* name_postfix);
102extern int release_OF_resource(struct device_node* node, int index);
103
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100104
Benjamin Herrenschmidtd1405b82005-11-23 17:53:42 +1100105/*
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100106 * OF address retreival & translation
107 */
108
109
Paul Mackerrasa4dc7ff2006-09-19 14:06:27 +1000110/* Helper to read a big number; size is in cells (not bytes) */
Jeremy Kerrb5a1a9a2006-07-04 16:46:44 +1000111static inline u64 of_read_number(const u32 *cell, int size)
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000112{
113 u64 r = 0;
114 while (size--)
115 r = (r << 32) | *(cell++);
116 return r;
117}
118
Paul Mackerrasa4dc7ff2006-09-19 14:06:27 +1000119/* Like of_read_number, but we want an unsigned long result */
120#ifdef CONFIG_PPC32
121static inline unsigned long of_read_ulong(const u32 *cell, int size)
122{
123 return cell[size-1];
124}
125#else
126#define of_read_ulong(cell, size) of_read_number(cell, size)
127#endif
128
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100129/* Translate an OF address block into a CPU physical address
Benjamin Herrenschmidtd1405b82005-11-23 17:53:42 +1100130 */
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000131extern u64 of_translate_address(struct device_node *np, const u32 *addr);
Benjamin Herrenschmidtd1405b82005-11-23 17:53:42 +1100132
Benjamin Herrenschmidt837c54d2007-12-11 14:48:22 +1100133/* Translate a DMA address from device space to CPU space */
134extern u64 of_translate_dma_address(struct device_node *dev,
135 const u32 *in_addr);
136
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100137/* Extract an address from a device, returns the region size and
138 * the address space flags too. The PCI version uses a BAR number
139 * instead of an absolute index
140 */
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000141extern const u32 *of_get_address(struct device_node *dev, int index,
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100142 u64 *size, unsigned int *flags);
Anton Vorontsovff1f4ee2008-06-11 08:31:00 +1000143#ifdef CONFIG_PCI
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000144extern const u32 *of_get_pci_address(struct device_node *dev, int bar_no,
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100145 u64 *size, unsigned int *flags);
Anton Vorontsovff1f4ee2008-06-11 08:31:00 +1000146#else
147static inline const u32 *of_get_pci_address(struct device_node *dev,
148 int bar_no, u64 *size, unsigned int *flags)
149{
150 return NULL;
151}
152#endif /* CONFIG_PCI */
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100153
154/* Get an address as a resource. Note that if your address is
155 * a PIO address, the conversion will fail if the physical address
156 * can't be internally converted to an IO token with
157 * pci_address_to_pio(), that is because it's either called to early
158 * or it can't be matched to any host bridge IO space
159 */
160extern int of_address_to_resource(struct device_node *dev, int index,
161 struct resource *r);
Anton Vorontsovff1f4ee2008-06-11 08:31:00 +1000162#ifdef CONFIG_PCI
Benjamin Herrenschmidtd2dd4822005-11-30 16:57:28 +1100163extern int of_pci_address_to_resource(struct device_node *dev, int bar,
164 struct resource *r);
Anton Vorontsovff1f4ee2008-06-11 08:31:00 +1000165#else
166static inline int of_pci_address_to_resource(struct device_node *dev, int bar,
167 struct resource *r)
168{
169 return -ENOSYS;
170}
171#endif /* CONFIG_PCI */
Benjamin Herrenschmidtd1405b82005-11-23 17:53:42 +1100172
Jeremy Kerrd4ad66f2006-05-18 18:05:15 +1000173/* Parse the ibm,dma-window property of an OF node into the busno, phys and
174 * size parameters.
175 */
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000176void of_parse_dma_window(struct device_node *dn, const void *dma_window_prop,
Jeremy Kerrd4ad66f2006-05-18 18:05:15 +1000177 unsigned long *busno, unsigned long *phys, unsigned long *size);
178
Michael Ellermanb68239e2006-02-03 19:05:47 +1100179extern void kdump_move_device_tree(void);
180
Benjamin Herrenschmidtacf7d762006-06-19 20:33:16 +0200181/* CPU OF node matching */
182struct device_node *of_get_cpu_node(int cpu, unsigned int *thread);
183
Nathan Lynche523f722008-12-10 14:46:04 +0000184/* cache lookup */
185struct device_node *of_find_next_cache_node(struct device_node *np);
186
Timur Tabi29cfe6f2007-02-16 12:01:29 -0600187/* Get the MAC address */
188extern const void *of_get_mac_address(struct device_node *np);
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000189
190/*
191 * OF interrupt mapping
192 */
193
194/* This structure is returned when an interrupt is mapped. The controller
195 * field needs to be put() after use
196 */
197
198#define OF_MAX_IRQ_SPEC 4 /* We handle specifiers of at most 4 cells */
199
200struct of_irq {
201 struct device_node *controller; /* Interrupt controller node */
202 u32 size; /* Specifier size */
203 u32 specifier[OF_MAX_IRQ_SPEC]; /* Specifier copy */
204};
205
Michael Ellerman40681b92006-08-02 11:13:50 +1000206/**
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000207 * of_irq_map_init - Initialize the irq remapper
208 * @flags: flags defining workarounds to enable
209 *
210 * Some machines have bugs in the device-tree which require certain workarounds
211 * to be applied. Call this before any interrupt mapping attempts to enable
212 * those workarounds.
213 */
214#define OF_IMAP_OLDWORLD_MAC 0x00000001
215#define OF_IMAP_NO_PHANDLE 0x00000002
216
217extern void of_irq_map_init(unsigned int flags);
218
Michael Ellerman40681b92006-08-02 11:13:50 +1000219/**
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000220 * of_irq_map_raw - Low level interrupt tree parsing
221 * @parent: the device interrupt parent
222 * @intspec: interrupt specifier ("interrupts" property of the device)
Benjamin Herrenschmidt006b64d2006-08-25 14:46:23 +1000223 * @ointsize: size of the passed in interrupt specifier
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000224 * @addr: address specifier (start of "reg" property of the device)
225 * @out_irq: structure of_irq filled by this function
226 *
227 * Returns 0 on success and a negative number on error
228 *
229 * This function is a low-level interrupt tree walking function. It
230 * can be used to do a partial walk with synthetized reg and interrupts
231 * properties, for example when resolving PCI interrupts when no device
232 * node exist for the parent.
233 *
234 */
235
Jeremy Kerra7f67bd2006-07-12 15:35:54 +1000236extern int of_irq_map_raw(struct device_node *parent, const u32 *intspec,
Paul Mackerrasaa43f772006-08-31 15:45:48 +1000237 u32 ointsize, const u32 *addr,
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000238 struct of_irq *out_irq);
239
240
Michael Ellerman40681b92006-08-02 11:13:50 +1000241/**
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000242 * of_irq_map_one - Resolve an interrupt for a device
243 * @device: the device whose interrupt is to be resolved
244 * @index: index of the interrupt to resolve
245 * @out_irq: structure of_irq filled by this function
246 *
247 * This function resolves an interrupt, walking the tree, for a given
248 * device-tree node. It's the high level pendant to of_irq_map_raw().
249 * It also implements the workarounds for OldWolrd Macs.
250 */
251extern int of_irq_map_one(struct device_node *device, int index,
252 struct of_irq *out_irq);
253
Michael Ellerman40681b92006-08-02 11:13:50 +1000254/**
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000255 * of_irq_map_pci - Resolve the interrupt for a PCI device
256 * @pdev: the device whose interrupt is to be resolved
257 * @out_irq: structure of_irq filled by this function
258 *
259 * This function resolves the PCI interrupt for a given PCI device. If a
260 * device-node exists for a given pci_dev, it will use normal OF tree
261 * walking. If not, it will implement standard swizzling and walk up the
262 * PCI tree until an device-node is found, at which point it will finish
263 * resolving using the OF tree walking.
264 */
265struct pci_dev;
266extern int of_irq_map_pci(struct pci_dev *pdev, struct of_irq *out_irq);
267
Mathieu Desnoyersc0b3ae12007-02-06 12:03:31 +1100268extern int of_irq_to_resource(struct device_node *dev, int index,
269 struct resource *r);
Andy Fleminga9b14972006-10-19 19:52:26 -0500270
Christian Krafftc3e80112007-04-25 01:32:02 +1000271/**
272 * of_iomap - Maps the memory mapped IO for a given device_node
273 * @device: the device whose io range will be mapped
274 * @index: index of the io range
275 *
276 * Returns a pointer to the mapped memory
277 */
278extern void __iomem *of_iomap(struct device_node *device, int index);
Benjamin Herrenschmidtcc9fd712006-07-03 19:35:17 +1000279
Paul Mackerras9b6b5632005-10-06 12:06:20 +1000280#endif /* __KERNEL__ */
281#endif /* _POWERPC_PROM_H */