prom.h 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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. #include <linux/of.h> /* linux/of.h gets to determine #include ordering */
  15. #ifndef _ASM_MICROBLAZE_PROM_H
  16. #define _ASM_MICROBLAZE_PROM_H
  17. #ifdef __KERNEL__
  18. #ifndef __ASSEMBLY__
  19. #include <linux/types.h>
  20. #include <asm/irq.h>
  21. #include <asm/atomic.h>
  22. #define HAVE_ARCH_DEVTREE_FIXUPS
  23. /* Other Prototypes */
  24. extern int early_uartlite_console(void);
  25. #ifdef CONFIG_PCI
  26. /*
  27. * PCI <-> OF matching functions
  28. * (XXX should these be here?)
  29. */
  30. struct pci_bus;
  31. struct pci_dev;
  32. extern int pci_device_from_OF_node(struct device_node *node,
  33. u8 *bus, u8 *devfn);
  34. extern struct device_node *pci_busdev_to_OF_node(struct pci_bus *bus,
  35. int devfn);
  36. extern struct device_node *pci_device_to_OF_node(struct pci_dev *dev);
  37. extern void pci_create_OF_bus_map(void);
  38. #endif
  39. /*
  40. * OF address retreival & translation
  41. */
  42. #ifdef CONFIG_PCI
  43. extern unsigned long pci_address_to_pio(phys_addr_t address);
  44. #define pci_address_to_pio pci_address_to_pio
  45. #endif /* CONFIG_PCI */
  46. /* Parse the ibm,dma-window property of an OF node into the busno, phys and
  47. * size parameters.
  48. */
  49. void of_parse_dma_window(struct device_node *dn, const void *dma_window_prop,
  50. unsigned long *busno, unsigned long *phys, unsigned long *size);
  51. extern void kdump_move_device_tree(void);
  52. /* CPU OF node matching */
  53. struct device_node *of_get_cpu_node(int cpu, unsigned int *thread);
  54. /* Get the MAC address */
  55. extern const void *of_get_mac_address(struct device_node *np);
  56. /**
  57. * of_irq_map_pci - Resolve the interrupt for a PCI device
  58. * @pdev: the device whose interrupt is to be resolved
  59. * @out_irq: structure of_irq filled by this function
  60. *
  61. * This function resolves the PCI interrupt for a given PCI device. If a
  62. * device-node exists for a given pci_dev, it will use normal OF tree
  63. * walking. If not, it will implement standard swizzling and walk up the
  64. * PCI tree until an device-node is found, at which point it will finish
  65. * resolving using the OF tree walking.
  66. */
  67. struct pci_dev;
  68. struct of_irq;
  69. extern int of_irq_map_pci(struct pci_dev *pdev, struct of_irq *out_irq);
  70. #endif /* __ASSEMBLY__ */
  71. #endif /* __KERNEL__ */
  72. /* These includes are put at the bottom because they may contain things
  73. * that are overridden by this file. Ideally they shouldn't be included
  74. * by this file, but there are a bunch of .c files that currently depend
  75. * on it. Eventually they will be cleaned up. */
  76. #include <linux/of_fdt.h>
  77. #include <linux/of_irq.h>
  78. #include <linux/platform_device.h>
  79. #endif /* _ASM_MICROBLAZE_PROM_H */