prom.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:4k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: %F% %I% %G% %U% %#%
  3.  */
  4. /*
  5.  * Definitions for talking to the Open Firmware PROM on
  6.  * Power Macintosh computers.
  7.  *
  8.  * Copyright (C) 1996 Paul Mackerras.
  9.  */
  10. #ifdef __KERNEL__
  11. #ifndef _PPC_PROM_H
  12. #define _PPC_PROM_H
  13. #include <linux/config.h>
  14. typedef void *phandle;
  15. typedef void *ihandle;
  16. extern char *prom_display_paths[];
  17. extern unsigned int prom_num_displays;
  18. struct address_range {
  19. unsigned int space;
  20. unsigned int address;
  21. unsigned int size;
  22. };
  23. struct interrupt_info {
  24. int line;
  25. int sense; /* +ve/-ve logic, edge or level, etc. */
  26. };
  27. struct reg_property {
  28. unsigned int address;
  29. unsigned int size;
  30. };
  31. struct property {
  32. char *name;
  33. int length;
  34. unsigned char *value;
  35. struct property *next;
  36. };
  37. /*
  38.  * Note: don't change this structure for now or you'll break BootX !
  39.  */
  40. struct device_node {
  41. char *name;
  42. char *type;
  43. phandle node;
  44. int n_addrs;
  45. struct address_range *addrs;
  46. int n_intrs;
  47. struct interrupt_info *intrs;
  48. char *full_name;
  49. struct property *properties;
  50. struct device_node *parent;
  51. struct device_node *child;
  52. struct device_node *sibling;
  53. struct device_node *next; /* next device of same type */
  54. struct device_node *allnext; /* next in list of all nodes */
  55. };
  56. struct prom_args;
  57. typedef void (*prom_entry)(struct prom_args *);
  58. /* Prototypes */
  59. extern void abort(void);
  60. extern unsigned long prom_init(int, int, prom_entry);
  61. extern void prom_print(const char *msg);
  62. extern void relocate_nodes(void);
  63. extern void finish_device_tree(void);
  64. extern struct device_node *find_devices(const char *name);
  65. extern struct device_node *find_type_devices(const char *type);
  66. extern struct device_node *find_path_device(const char *path);
  67. extern struct device_node *find_compatible_devices(const char *type,
  68.    const char *compat);
  69. extern struct device_node *find_all_nodes(void);
  70. extern struct device_node *find_phandle(phandle);
  71. extern int device_is_compatible(struct device_node *device, const char *);
  72. extern int machine_is_compatible(const char *compat);
  73. extern unsigned char *get_property(struct device_node *node, const char *name,
  74.    int *lenp);
  75. extern void prom_add_property(struct device_node* np, struct property* prop);
  76. extern void prom_get_irq_senses(unsigned char *, int, int);
  77. extern int prom_n_addr_cells(struct device_node* np);
  78. extern int prom_n_size_cells(struct device_node* np);
  79. extern struct resource*
  80. request_OF_resource(struct device_node* node, int index, const char* name_postfix);
  81. extern int release_OF_resource(struct device_node* node, int index);
  82. extern void print_properties(struct device_node *node);
  83. extern int call_rtas(const char *service, int nargs, int nret,
  84.      unsigned long *outputs, ...);
  85. /*
  86.  * When we call back to the Open Firmware client interface, we usually
  87.  * have to do that before the kernel is relocated to its final location
  88.  * (this is because we can't use OF after we have overwritten the
  89.  * exception vectors with our exception handlers).  These macros assist
  90.  * in performing the address calculations that we need to do to access
  91.  * data when the kernel is running at an address that is different from
  92.  * the address that the kernel is linked at.  The reloc_offset() function
  93.  * returns the difference between these two addresses and the macros
  94.  * simplify the process of adding or subtracting this offset to/from
  95.  * pointer values.  See arch/ppc/kernel/prom.c for how these are used.
  96.  */
  97. extern unsigned long reloc_offset(void);
  98. extern unsigned long add_reloc_offset(unsigned long);
  99. extern unsigned long sub_reloc_offset(unsigned long);
  100. #define PTRRELOC(x) ((typeof(x))add_reloc_offset((unsigned long)(x)))
  101. #define PTRUNRELOC(x) ((typeof(x))sub_reloc_offset((unsigned long)(x)))
  102. #endif /* _PPC_PROM_H */
  103. #endif /* __KERNEL__ */