]> git.karo-electronics.de Git - linux-beck.git/blob - arch/microblaze/include/asm/prom.h
8b1ebd39971a5b84427b042de5e4a6fe5930bc80
[linux-beck.git] / arch / microblaze / include / asm / prom.h
1 /*
2  * Definitions for talking to the Open Firmware PROM on
3  * Power Macintosh computers.
4  *
5  * Copyright (C) 1996-2005 Paul Mackerras.
6  *
7  * Updates for PPC64 by Peter Bergner & David Engebretsen, IBM Corp.
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; either version
12  * 2 of the License, or (at your option) any later version.
13  */
14
15 #include <linux/of.h>   /* linux/of.h gets to determine #include ordering */
16
17 #ifndef _ASM_MICROBLAZE_PROM_H
18 #define _ASM_MICROBLAZE_PROM_H
19 #ifdef __KERNEL__
20 #ifndef __ASSEMBLY__
21
22 #include <linux/types.h>
23 #include <linux/of_fdt.h>
24 #include <linux/proc_fs.h>
25 #include <linux/platform_device.h>
26 #include <asm/irq.h>
27 #include <asm/atomic.h>
28
29 extern struct device_node *of_chosen;
30
31 #define HAVE_ARCH_DEVTREE_FIXUPS
32
33 /* Other Prototypes */
34 extern int early_uartlite_console(void);
35
36 extern struct resource *request_OF_resource(struct device_node *node,
37                                 int index, const char *name_postfix);
38 extern int release_OF_resource(struct device_node *node, int index);
39
40 /*
41  * OF address retreival & translation
42  */
43
44 /* Translate an OF address block into a CPU physical address
45  */
46 extern u64 of_translate_address(struct device_node *np, const u32 *addr);
47
48 /* Extract an address from a device, returns the region size and
49  * the address space flags too. The PCI version uses a BAR number
50  * instead of an absolute index
51  */
52 extern const u32 *of_get_address(struct device_node *dev, int index,
53                         u64 *size, unsigned int *flags);
54 extern const u32 *of_get_pci_address(struct device_node *dev, int bar_no,
55                         u64 *size, unsigned int *flags);
56
57 /* Get an address as a resource. Note that if your address is
58  * a PIO address, the conversion will fail if the physical address
59  * can't be internally converted to an IO token with
60  * pci_address_to_pio(), that is because it's either called to early
61  * or it can't be matched to any host bridge IO space
62  */
63 extern int of_address_to_resource(struct device_node *dev, int index,
64                                 struct resource *r);
65 extern int of_pci_address_to_resource(struct device_node *dev, int bar,
66                                 struct resource *r);
67
68 /* Parse the ibm,dma-window property of an OF node into the busno, phys and
69  * size parameters.
70  */
71 void of_parse_dma_window(struct device_node *dn, const void *dma_window_prop,
72                 unsigned long *busno, unsigned long *phys, unsigned long *size);
73
74 extern void kdump_move_device_tree(void);
75
76 /* CPU OF node matching */
77 struct device_node *of_get_cpu_node(int cpu, unsigned int *thread);
78
79 /* Get the MAC address */
80 extern const void *of_get_mac_address(struct device_node *np);
81
82 /*
83  * OF interrupt mapping
84  */
85
86 /* This structure is returned when an interrupt is mapped. The controller
87  * field needs to be put() after use
88  */
89
90 #define OF_MAX_IRQ_SPEC         4 /* We handle specifiers of at most 4 cells */
91
92 struct of_irq {
93         struct device_node *controller; /* Interrupt controller node */
94         u32 size; /* Specifier size */
95         u32 specifier[OF_MAX_IRQ_SPEC]; /* Specifier copy */
96 };
97
98 /**
99  * of_irq_map_init - Initialize the irq remapper
100  * @flags:      flags defining workarounds to enable
101  *
102  * Some machines have bugs in the device-tree which require certain workarounds
103  * to be applied. Call this before any interrupt mapping attempts to enable
104  * those workarounds.
105  */
106 #define OF_IMAP_OLDWORLD_MAC    0x00000001
107 #define OF_IMAP_NO_PHANDLE      0x00000002
108
109 extern void of_irq_map_init(unsigned int flags);
110
111 /**
112  * of_irq_map_raw - Low level interrupt tree parsing
113  * @parent:     the device interrupt parent
114  * @intspec:    interrupt specifier ("interrupts" property of the device)
115  * @ointsize:   size of the passed in interrupt specifier
116  * @addr:       address specifier (start of "reg" property of the device)
117  * @out_irq:    structure of_irq filled by this function
118  *
119  * Returns 0 on success and a negative number on error
120  *
121  * This function is a low-level interrupt tree walking function. It
122  * can be used to do a partial walk with synthetized reg and interrupts
123  * properties, for example when resolving PCI interrupts when no device
124  * node exist for the parent.
125  *
126  */
127
128 extern int of_irq_map_raw(struct device_node *parent, const u32 *intspec,
129                         u32 ointsize, const u32 *addr,
130                         struct of_irq *out_irq);
131
132 /**
133  * of_irq_map_one - Resolve an interrupt for a device
134  * @device:     the device whose interrupt is to be resolved
135  * @index:      index of the interrupt to resolve
136  * @out_irq:    structure of_irq filled by this function
137  *
138  * This function resolves an interrupt, walking the tree, for a given
139  * device-tree node. It's the high level pendant to of_irq_map_raw().
140  * It also implements the workarounds for OldWolrd Macs.
141  */
142 extern int of_irq_map_one(struct device_node *device, int index,
143                         struct of_irq *out_irq);
144
145 /**
146  * of_irq_map_pci - Resolve the interrupt for a PCI device
147  * @pdev:       the device whose interrupt is to be resolved
148  * @out_irq:    structure of_irq filled by this function
149  *
150  * This function resolves the PCI interrupt for a given PCI device. If a
151  * device-node exists for a given pci_dev, it will use normal OF tree
152  * walking. If not, it will implement standard swizzling and walk up the
153  * PCI tree until an device-node is found, at which point it will finish
154  * resolving using the OF tree walking.
155  */
156 struct pci_dev;
157 extern int of_irq_map_pci(struct pci_dev *pdev, struct of_irq *out_irq);
158
159 extern int of_irq_to_resource(struct device_node *dev, int index,
160                         struct resource *r);
161
162 /**
163  * of_iomap - Maps the memory mapped IO for a given device_node
164  * @device:     the device whose io range will be mapped
165  * @index:      index of the io range
166  *
167  * Returns a pointer to the mapped memory
168  */
169 extern void __iomem *of_iomap(struct device_node *device, int index);
170
171 #endif /* __ASSEMBLY__ */
172 #endif /* __KERNEL__ */
173 #endif /* _ASM_MICROBLAZE_PROM_H */