1*b8b572e1SStephen Rothwell #ifndef _POWERPC_PROM_H 2*b8b572e1SStephen Rothwell #define _POWERPC_PROM_H 3*b8b572e1SStephen Rothwell #ifdef __KERNEL__ 4*b8b572e1SStephen Rothwell 5*b8b572e1SStephen Rothwell /* 6*b8b572e1SStephen Rothwell * Definitions for talking to the Open Firmware PROM on 7*b8b572e1SStephen Rothwell * Power Macintosh computers. 8*b8b572e1SStephen Rothwell * 9*b8b572e1SStephen Rothwell * Copyright (C) 1996-2005 Paul Mackerras. 10*b8b572e1SStephen Rothwell * 11*b8b572e1SStephen Rothwell * Updates for PPC64 by Peter Bergner & David Engebretsen, IBM Corp. 12*b8b572e1SStephen Rothwell * 13*b8b572e1SStephen Rothwell * This program is free software; you can redistribute it and/or 14*b8b572e1SStephen Rothwell * modify it under the terms of the GNU General Public License 15*b8b572e1SStephen Rothwell * as published by the Free Software Foundation; either version 16*b8b572e1SStephen Rothwell * 2 of the License, or (at your option) any later version. 17*b8b572e1SStephen Rothwell */ 18*b8b572e1SStephen Rothwell #include <linux/types.h> 19*b8b572e1SStephen Rothwell #include <linux/proc_fs.h> 20*b8b572e1SStephen Rothwell #include <linux/platform_device.h> 21*b8b572e1SStephen Rothwell #include <asm/irq.h> 22*b8b572e1SStephen Rothwell #include <asm/atomic.h> 23*b8b572e1SStephen Rothwell 24*b8b572e1SStephen Rothwell #define OF_ROOT_NODE_ADDR_CELLS_DEFAULT 1 25*b8b572e1SStephen Rothwell #define OF_ROOT_NODE_SIZE_CELLS_DEFAULT 1 26*b8b572e1SStephen Rothwell 27*b8b572e1SStephen Rothwell #define of_compat_cmp(s1, s2, l) strcasecmp((s1), (s2)) 28*b8b572e1SStephen Rothwell #define of_prop_cmp(s1, s2) strcmp((s1), (s2)) 29*b8b572e1SStephen Rothwell #define of_node_cmp(s1, s2) strcasecmp((s1), (s2)) 30*b8b572e1SStephen Rothwell 31*b8b572e1SStephen Rothwell /* Definitions used by the flattened device tree */ 32*b8b572e1SStephen Rothwell #define OF_DT_HEADER 0xd00dfeed /* marker */ 33*b8b572e1SStephen Rothwell #define OF_DT_BEGIN_NODE 0x1 /* Start of node, full name */ 34*b8b572e1SStephen Rothwell #define OF_DT_END_NODE 0x2 /* End node */ 35*b8b572e1SStephen Rothwell #define OF_DT_PROP 0x3 /* Property: name off, size, 36*b8b572e1SStephen Rothwell * content */ 37*b8b572e1SStephen Rothwell #define OF_DT_NOP 0x4 /* nop */ 38*b8b572e1SStephen Rothwell #define OF_DT_END 0x9 39*b8b572e1SStephen Rothwell 40*b8b572e1SStephen Rothwell #define OF_DT_VERSION 0x10 41*b8b572e1SStephen Rothwell 42*b8b572e1SStephen Rothwell /* 43*b8b572e1SStephen Rothwell * This is what gets passed to the kernel by prom_init or kexec 44*b8b572e1SStephen Rothwell * 45*b8b572e1SStephen Rothwell * The dt struct contains the device tree structure, full pathes and 46*b8b572e1SStephen Rothwell * property contents. The dt strings contain a separate block with just 47*b8b572e1SStephen Rothwell * the strings for the property names, and is fully page aligned and 48*b8b572e1SStephen Rothwell * self contained in a page, so that it can be kept around by the kernel, 49*b8b572e1SStephen Rothwell * each property name appears only once in this page (cheap compression) 50*b8b572e1SStephen Rothwell * 51*b8b572e1SStephen Rothwell * the mem_rsvmap contains a map of reserved ranges of physical memory, 52*b8b572e1SStephen Rothwell * passing it here instead of in the device-tree itself greatly simplifies 53*b8b572e1SStephen Rothwell * the job of everybody. It's just a list of u64 pairs (base/size) that 54*b8b572e1SStephen Rothwell * ends when size is 0 55*b8b572e1SStephen Rothwell */ 56*b8b572e1SStephen Rothwell struct boot_param_header 57*b8b572e1SStephen Rothwell { 58*b8b572e1SStephen Rothwell u32 magic; /* magic word OF_DT_HEADER */ 59*b8b572e1SStephen Rothwell u32 totalsize; /* total size of DT block */ 60*b8b572e1SStephen Rothwell u32 off_dt_struct; /* offset to structure */ 61*b8b572e1SStephen Rothwell u32 off_dt_strings; /* offset to strings */ 62*b8b572e1SStephen Rothwell u32 off_mem_rsvmap; /* offset to memory reserve map */ 63*b8b572e1SStephen Rothwell u32 version; /* format version */ 64*b8b572e1SStephen Rothwell u32 last_comp_version; /* last compatible version */ 65*b8b572e1SStephen Rothwell /* version 2 fields below */ 66*b8b572e1SStephen Rothwell u32 boot_cpuid_phys; /* Physical CPU id we're booting on */ 67*b8b572e1SStephen Rothwell /* version 3 fields below */ 68*b8b572e1SStephen Rothwell u32 dt_strings_size; /* size of the DT strings block */ 69*b8b572e1SStephen Rothwell /* version 17 fields below */ 70*b8b572e1SStephen Rothwell u32 dt_struct_size; /* size of the DT structure block */ 71*b8b572e1SStephen Rothwell }; 72*b8b572e1SStephen Rothwell 73*b8b572e1SStephen Rothwell 74*b8b572e1SStephen Rothwell 75*b8b572e1SStephen Rothwell typedef u32 phandle; 76*b8b572e1SStephen Rothwell typedef u32 ihandle; 77*b8b572e1SStephen Rothwell 78*b8b572e1SStephen Rothwell struct property { 79*b8b572e1SStephen Rothwell char *name; 80*b8b572e1SStephen Rothwell int length; 81*b8b572e1SStephen Rothwell void *value; 82*b8b572e1SStephen Rothwell struct property *next; 83*b8b572e1SStephen Rothwell }; 84*b8b572e1SStephen Rothwell 85*b8b572e1SStephen Rothwell struct device_node { 86*b8b572e1SStephen Rothwell const char *name; 87*b8b572e1SStephen Rothwell const char *type; 88*b8b572e1SStephen Rothwell phandle node; 89*b8b572e1SStephen Rothwell phandle linux_phandle; 90*b8b572e1SStephen Rothwell char *full_name; 91*b8b572e1SStephen Rothwell 92*b8b572e1SStephen Rothwell struct property *properties; 93*b8b572e1SStephen Rothwell struct property *deadprops; /* removed properties */ 94*b8b572e1SStephen Rothwell struct device_node *parent; 95*b8b572e1SStephen Rothwell struct device_node *child; 96*b8b572e1SStephen Rothwell struct device_node *sibling; 97*b8b572e1SStephen Rothwell struct device_node *next; /* next device of same type */ 98*b8b572e1SStephen Rothwell struct device_node *allnext; /* next in list of all nodes */ 99*b8b572e1SStephen Rothwell struct proc_dir_entry *pde; /* this node's proc directory */ 100*b8b572e1SStephen Rothwell struct kref kref; 101*b8b572e1SStephen Rothwell unsigned long _flags; 102*b8b572e1SStephen Rothwell void *data; 103*b8b572e1SStephen Rothwell }; 104*b8b572e1SStephen Rothwell 105*b8b572e1SStephen Rothwell extern struct device_node *of_chosen; 106*b8b572e1SStephen Rothwell 107*b8b572e1SStephen Rothwell static inline int of_node_check_flag(struct device_node *n, unsigned long flag) 108*b8b572e1SStephen Rothwell { 109*b8b572e1SStephen Rothwell return test_bit(flag, &n->_flags); 110*b8b572e1SStephen Rothwell } 111*b8b572e1SStephen Rothwell 112*b8b572e1SStephen Rothwell static inline void of_node_set_flag(struct device_node *n, unsigned long flag) 113*b8b572e1SStephen Rothwell { 114*b8b572e1SStephen Rothwell set_bit(flag, &n->_flags); 115*b8b572e1SStephen Rothwell } 116*b8b572e1SStephen Rothwell 117*b8b572e1SStephen Rothwell 118*b8b572e1SStephen Rothwell #define HAVE_ARCH_DEVTREE_FIXUPS 119*b8b572e1SStephen Rothwell 120*b8b572e1SStephen Rothwell static inline void set_node_proc_entry(struct device_node *dn, struct proc_dir_entry *de) 121*b8b572e1SStephen Rothwell { 122*b8b572e1SStephen Rothwell dn->pde = de; 123*b8b572e1SStephen Rothwell } 124*b8b572e1SStephen Rothwell 125*b8b572e1SStephen Rothwell 126*b8b572e1SStephen Rothwell extern struct device_node *of_find_all_nodes(struct device_node *prev); 127*b8b572e1SStephen Rothwell extern struct device_node *of_node_get(struct device_node *node); 128*b8b572e1SStephen Rothwell extern void of_node_put(struct device_node *node); 129*b8b572e1SStephen Rothwell 130*b8b572e1SStephen Rothwell /* For scanning the flat device-tree at boot time */ 131*b8b572e1SStephen Rothwell extern int __init of_scan_flat_dt(int (*it)(unsigned long node, 132*b8b572e1SStephen Rothwell const char *uname, int depth, 133*b8b572e1SStephen Rothwell void *data), 134*b8b572e1SStephen Rothwell void *data); 135*b8b572e1SStephen Rothwell extern void* __init of_get_flat_dt_prop(unsigned long node, const char *name, 136*b8b572e1SStephen Rothwell unsigned long *size); 137*b8b572e1SStephen Rothwell extern int __init of_flat_dt_is_compatible(unsigned long node, const char *name); 138*b8b572e1SStephen Rothwell extern unsigned long __init of_get_flat_dt_root(void); 139*b8b572e1SStephen Rothwell 140*b8b572e1SStephen Rothwell /* For updating the device tree at runtime */ 141*b8b572e1SStephen Rothwell extern void of_attach_node(struct device_node *); 142*b8b572e1SStephen Rothwell extern void of_detach_node(struct device_node *); 143*b8b572e1SStephen Rothwell 144*b8b572e1SStephen Rothwell /* Other Prototypes */ 145*b8b572e1SStephen Rothwell extern void finish_device_tree(void); 146*b8b572e1SStephen Rothwell extern void unflatten_device_tree(void); 147*b8b572e1SStephen Rothwell extern void early_init_devtree(void *); 148*b8b572e1SStephen Rothwell extern int machine_is_compatible(const char *compat); 149*b8b572e1SStephen Rothwell extern void print_properties(struct device_node *node); 150*b8b572e1SStephen Rothwell extern int prom_n_intr_cells(struct device_node* np); 151*b8b572e1SStephen Rothwell extern void prom_get_irq_senses(unsigned char *senses, int off, int max); 152*b8b572e1SStephen Rothwell extern int prom_add_property(struct device_node* np, struct property* prop); 153*b8b572e1SStephen Rothwell extern int prom_remove_property(struct device_node *np, struct property *prop); 154*b8b572e1SStephen Rothwell extern int prom_update_property(struct device_node *np, 155*b8b572e1SStephen Rothwell struct property *newprop, 156*b8b572e1SStephen Rothwell struct property *oldprop); 157*b8b572e1SStephen Rothwell 158*b8b572e1SStephen Rothwell #ifdef CONFIG_PPC32 159*b8b572e1SStephen Rothwell /* 160*b8b572e1SStephen Rothwell * PCI <-> OF matching functions 161*b8b572e1SStephen Rothwell * (XXX should these be here?) 162*b8b572e1SStephen Rothwell */ 163*b8b572e1SStephen Rothwell struct pci_bus; 164*b8b572e1SStephen Rothwell struct pci_dev; 165*b8b572e1SStephen Rothwell extern int pci_device_from_OF_node(struct device_node *node, 166*b8b572e1SStephen Rothwell u8* bus, u8* devfn); 167*b8b572e1SStephen Rothwell extern struct device_node* pci_busdev_to_OF_node(struct pci_bus *, int); 168*b8b572e1SStephen Rothwell extern struct device_node* pci_device_to_OF_node(struct pci_dev *); 169*b8b572e1SStephen Rothwell extern void pci_create_OF_bus_map(void); 170*b8b572e1SStephen Rothwell #endif 171*b8b572e1SStephen Rothwell 172*b8b572e1SStephen Rothwell extern struct resource *request_OF_resource(struct device_node* node, 173*b8b572e1SStephen Rothwell int index, const char* name_postfix); 174*b8b572e1SStephen Rothwell extern int release_OF_resource(struct device_node* node, int index); 175*b8b572e1SStephen Rothwell 176*b8b572e1SStephen Rothwell 177*b8b572e1SStephen Rothwell /* 178*b8b572e1SStephen Rothwell * OF address retreival & translation 179*b8b572e1SStephen Rothwell */ 180*b8b572e1SStephen Rothwell 181*b8b572e1SStephen Rothwell 182*b8b572e1SStephen Rothwell /* Helper to read a big number; size is in cells (not bytes) */ 183*b8b572e1SStephen Rothwell static inline u64 of_read_number(const u32 *cell, int size) 184*b8b572e1SStephen Rothwell { 185*b8b572e1SStephen Rothwell u64 r = 0; 186*b8b572e1SStephen Rothwell while (size--) 187*b8b572e1SStephen Rothwell r = (r << 32) | *(cell++); 188*b8b572e1SStephen Rothwell return r; 189*b8b572e1SStephen Rothwell } 190*b8b572e1SStephen Rothwell 191*b8b572e1SStephen Rothwell /* Like of_read_number, but we want an unsigned long result */ 192*b8b572e1SStephen Rothwell #ifdef CONFIG_PPC32 193*b8b572e1SStephen Rothwell static inline unsigned long of_read_ulong(const u32 *cell, int size) 194*b8b572e1SStephen Rothwell { 195*b8b572e1SStephen Rothwell return cell[size-1]; 196*b8b572e1SStephen Rothwell } 197*b8b572e1SStephen Rothwell #else 198*b8b572e1SStephen Rothwell #define of_read_ulong(cell, size) of_read_number(cell, size) 199*b8b572e1SStephen Rothwell #endif 200*b8b572e1SStephen Rothwell 201*b8b572e1SStephen Rothwell /* Translate an OF address block into a CPU physical address 202*b8b572e1SStephen Rothwell */ 203*b8b572e1SStephen Rothwell extern u64 of_translate_address(struct device_node *np, const u32 *addr); 204*b8b572e1SStephen Rothwell 205*b8b572e1SStephen Rothwell /* Translate a DMA address from device space to CPU space */ 206*b8b572e1SStephen Rothwell extern u64 of_translate_dma_address(struct device_node *dev, 207*b8b572e1SStephen Rothwell const u32 *in_addr); 208*b8b572e1SStephen Rothwell 209*b8b572e1SStephen Rothwell /* Extract an address from a device, returns the region size and 210*b8b572e1SStephen Rothwell * the address space flags too. The PCI version uses a BAR number 211*b8b572e1SStephen Rothwell * instead of an absolute index 212*b8b572e1SStephen Rothwell */ 213*b8b572e1SStephen Rothwell extern const u32 *of_get_address(struct device_node *dev, int index, 214*b8b572e1SStephen Rothwell u64 *size, unsigned int *flags); 215*b8b572e1SStephen Rothwell #ifdef CONFIG_PCI 216*b8b572e1SStephen Rothwell extern const u32 *of_get_pci_address(struct device_node *dev, int bar_no, 217*b8b572e1SStephen Rothwell u64 *size, unsigned int *flags); 218*b8b572e1SStephen Rothwell #else 219*b8b572e1SStephen Rothwell static inline const u32 *of_get_pci_address(struct device_node *dev, 220*b8b572e1SStephen Rothwell int bar_no, u64 *size, unsigned int *flags) 221*b8b572e1SStephen Rothwell { 222*b8b572e1SStephen Rothwell return NULL; 223*b8b572e1SStephen Rothwell } 224*b8b572e1SStephen Rothwell #endif /* CONFIG_PCI */ 225*b8b572e1SStephen Rothwell 226*b8b572e1SStephen Rothwell /* Get an address as a resource. Note that if your address is 227*b8b572e1SStephen Rothwell * a PIO address, the conversion will fail if the physical address 228*b8b572e1SStephen Rothwell * can't be internally converted to an IO token with 229*b8b572e1SStephen Rothwell * pci_address_to_pio(), that is because it's either called to early 230*b8b572e1SStephen Rothwell * or it can't be matched to any host bridge IO space 231*b8b572e1SStephen Rothwell */ 232*b8b572e1SStephen Rothwell extern int of_address_to_resource(struct device_node *dev, int index, 233*b8b572e1SStephen Rothwell struct resource *r); 234*b8b572e1SStephen Rothwell #ifdef CONFIG_PCI 235*b8b572e1SStephen Rothwell extern int of_pci_address_to_resource(struct device_node *dev, int bar, 236*b8b572e1SStephen Rothwell struct resource *r); 237*b8b572e1SStephen Rothwell #else 238*b8b572e1SStephen Rothwell static inline int of_pci_address_to_resource(struct device_node *dev, int bar, 239*b8b572e1SStephen Rothwell struct resource *r) 240*b8b572e1SStephen Rothwell { 241*b8b572e1SStephen Rothwell return -ENOSYS; 242*b8b572e1SStephen Rothwell } 243*b8b572e1SStephen Rothwell #endif /* CONFIG_PCI */ 244*b8b572e1SStephen Rothwell 245*b8b572e1SStephen Rothwell /* Parse the ibm,dma-window property of an OF node into the busno, phys and 246*b8b572e1SStephen Rothwell * size parameters. 247*b8b572e1SStephen Rothwell */ 248*b8b572e1SStephen Rothwell void of_parse_dma_window(struct device_node *dn, const void *dma_window_prop, 249*b8b572e1SStephen Rothwell unsigned long *busno, unsigned long *phys, unsigned long *size); 250*b8b572e1SStephen Rothwell 251*b8b572e1SStephen Rothwell extern void kdump_move_device_tree(void); 252*b8b572e1SStephen Rothwell 253*b8b572e1SStephen Rothwell /* CPU OF node matching */ 254*b8b572e1SStephen Rothwell struct device_node *of_get_cpu_node(int cpu, unsigned int *thread); 255*b8b572e1SStephen Rothwell 256*b8b572e1SStephen Rothwell /* Get the MAC address */ 257*b8b572e1SStephen Rothwell extern const void *of_get_mac_address(struct device_node *np); 258*b8b572e1SStephen Rothwell 259*b8b572e1SStephen Rothwell /* 260*b8b572e1SStephen Rothwell * OF interrupt mapping 261*b8b572e1SStephen Rothwell */ 262*b8b572e1SStephen Rothwell 263*b8b572e1SStephen Rothwell /* This structure is returned when an interrupt is mapped. The controller 264*b8b572e1SStephen Rothwell * field needs to be put() after use 265*b8b572e1SStephen Rothwell */ 266*b8b572e1SStephen Rothwell 267*b8b572e1SStephen Rothwell #define OF_MAX_IRQ_SPEC 4 /* We handle specifiers of at most 4 cells */ 268*b8b572e1SStephen Rothwell 269*b8b572e1SStephen Rothwell struct of_irq { 270*b8b572e1SStephen Rothwell struct device_node *controller; /* Interrupt controller node */ 271*b8b572e1SStephen Rothwell u32 size; /* Specifier size */ 272*b8b572e1SStephen Rothwell u32 specifier[OF_MAX_IRQ_SPEC]; /* Specifier copy */ 273*b8b572e1SStephen Rothwell }; 274*b8b572e1SStephen Rothwell 275*b8b572e1SStephen Rothwell /** 276*b8b572e1SStephen Rothwell * of_irq_map_init - Initialize the irq remapper 277*b8b572e1SStephen Rothwell * @flags: flags defining workarounds to enable 278*b8b572e1SStephen Rothwell * 279*b8b572e1SStephen Rothwell * Some machines have bugs in the device-tree which require certain workarounds 280*b8b572e1SStephen Rothwell * to be applied. Call this before any interrupt mapping attempts to enable 281*b8b572e1SStephen Rothwell * those workarounds. 282*b8b572e1SStephen Rothwell */ 283*b8b572e1SStephen Rothwell #define OF_IMAP_OLDWORLD_MAC 0x00000001 284*b8b572e1SStephen Rothwell #define OF_IMAP_NO_PHANDLE 0x00000002 285*b8b572e1SStephen Rothwell 286*b8b572e1SStephen Rothwell extern void of_irq_map_init(unsigned int flags); 287*b8b572e1SStephen Rothwell 288*b8b572e1SStephen Rothwell /** 289*b8b572e1SStephen Rothwell * of_irq_map_raw - Low level interrupt tree parsing 290*b8b572e1SStephen Rothwell * @parent: the device interrupt parent 291*b8b572e1SStephen Rothwell * @intspec: interrupt specifier ("interrupts" property of the device) 292*b8b572e1SStephen Rothwell * @ointsize: size of the passed in interrupt specifier 293*b8b572e1SStephen Rothwell * @addr: address specifier (start of "reg" property of the device) 294*b8b572e1SStephen Rothwell * @out_irq: structure of_irq filled by this function 295*b8b572e1SStephen Rothwell * 296*b8b572e1SStephen Rothwell * Returns 0 on success and a negative number on error 297*b8b572e1SStephen Rothwell * 298*b8b572e1SStephen Rothwell * This function is a low-level interrupt tree walking function. It 299*b8b572e1SStephen Rothwell * can be used to do a partial walk with synthetized reg and interrupts 300*b8b572e1SStephen Rothwell * properties, for example when resolving PCI interrupts when no device 301*b8b572e1SStephen Rothwell * node exist for the parent. 302*b8b572e1SStephen Rothwell * 303*b8b572e1SStephen Rothwell */ 304*b8b572e1SStephen Rothwell 305*b8b572e1SStephen Rothwell extern int of_irq_map_raw(struct device_node *parent, const u32 *intspec, 306*b8b572e1SStephen Rothwell u32 ointsize, const u32 *addr, 307*b8b572e1SStephen Rothwell struct of_irq *out_irq); 308*b8b572e1SStephen Rothwell 309*b8b572e1SStephen Rothwell 310*b8b572e1SStephen Rothwell /** 311*b8b572e1SStephen Rothwell * of_irq_map_one - Resolve an interrupt for a device 312*b8b572e1SStephen Rothwell * @device: the device whose interrupt is to be resolved 313*b8b572e1SStephen Rothwell * @index: index of the interrupt to resolve 314*b8b572e1SStephen Rothwell * @out_irq: structure of_irq filled by this function 315*b8b572e1SStephen Rothwell * 316*b8b572e1SStephen Rothwell * This function resolves an interrupt, walking the tree, for a given 317*b8b572e1SStephen Rothwell * device-tree node. It's the high level pendant to of_irq_map_raw(). 318*b8b572e1SStephen Rothwell * It also implements the workarounds for OldWolrd Macs. 319*b8b572e1SStephen Rothwell */ 320*b8b572e1SStephen Rothwell extern int of_irq_map_one(struct device_node *device, int index, 321*b8b572e1SStephen Rothwell struct of_irq *out_irq); 322*b8b572e1SStephen Rothwell 323*b8b572e1SStephen Rothwell /** 324*b8b572e1SStephen Rothwell * of_irq_map_pci - Resolve the interrupt for a PCI device 325*b8b572e1SStephen Rothwell * @pdev: the device whose interrupt is to be resolved 326*b8b572e1SStephen Rothwell * @out_irq: structure of_irq filled by this function 327*b8b572e1SStephen Rothwell * 328*b8b572e1SStephen Rothwell * This function resolves the PCI interrupt for a given PCI device. If a 329*b8b572e1SStephen Rothwell * device-node exists for a given pci_dev, it will use normal OF tree 330*b8b572e1SStephen Rothwell * walking. If not, it will implement standard swizzling and walk up the 331*b8b572e1SStephen Rothwell * PCI tree until an device-node is found, at which point it will finish 332*b8b572e1SStephen Rothwell * resolving using the OF tree walking. 333*b8b572e1SStephen Rothwell */ 334*b8b572e1SStephen Rothwell struct pci_dev; 335*b8b572e1SStephen Rothwell extern int of_irq_map_pci(struct pci_dev *pdev, struct of_irq *out_irq); 336*b8b572e1SStephen Rothwell 337*b8b572e1SStephen Rothwell extern int of_irq_to_resource(struct device_node *dev, int index, 338*b8b572e1SStephen Rothwell struct resource *r); 339*b8b572e1SStephen Rothwell 340*b8b572e1SStephen Rothwell /** 341*b8b572e1SStephen Rothwell * of_iomap - Maps the memory mapped IO for a given device_node 342*b8b572e1SStephen Rothwell * @device: the device whose io range will be mapped 343*b8b572e1SStephen Rothwell * @index: index of the io range 344*b8b572e1SStephen Rothwell * 345*b8b572e1SStephen Rothwell * Returns a pointer to the mapped memory 346*b8b572e1SStephen Rothwell */ 347*b8b572e1SStephen Rothwell extern void __iomem *of_iomap(struct device_node *device, int index); 348*b8b572e1SStephen Rothwell 349*b8b572e1SStephen Rothwell /* 350*b8b572e1SStephen Rothwell * NB: This is here while we transition from using asm/prom.h 351*b8b572e1SStephen Rothwell * to linux/of.h 352*b8b572e1SStephen Rothwell */ 353*b8b572e1SStephen Rothwell #include <linux/of.h> 354*b8b572e1SStephen Rothwell 355*b8b572e1SStephen Rothwell #endif /* __KERNEL__ */ 356*b8b572e1SStephen Rothwell #endif /* _POWERPC_PROM_H */ 357