prom.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.prom.h 1.21 12/01/01 20:09:11 benh
  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 int device_is_compatible(struct device_node *device, const char *);
  71. extern int machine_is_compatible(const char *compat);
  72. extern unsigned char *get_property(struct device_node *node, const char *name,
  73.    int *lenp);
  74. extern void prom_add_property(struct device_node* np, struct property* prop);
  75. extern void prom_get_irq_senses(unsigned char *, int, int);
  76. extern int prom_n_addr_cells(struct device_node* np);
  77. extern int prom_n_size_cells(struct device_node* np);
  78. extern struct resource*
  79. request_OF_resource(struct device_node* node, int index, const char* name_postfix);
  80. extern int release_OF_resource(struct device_node* node, int index);
  81. extern void print_properties(struct device_node *node);
  82. extern int call_rtas(const char *service, int nargs, int nret,
  83.      unsigned long *outputs, ...);
  84. /*
  85.  * When we call back to the Open Firmware client interface, we usually
  86.  * have to do that before the kernel is relocated to its final location
  87.  * (this is because we can't use OF after we have overwritten the
  88.  * exception vectors with our exception handlers).  These macros assist
  89.  * in performing the address calculations that we need to do to access
  90.  * data when the kernel is running at an address that is different from
  91.  * the address that the kernel is linked at.  The reloc_offset() function
  92.  * returns the difference between these two addresses and the macros
  93.  * simplify the process of adding or subtracting this offset to/from
  94.  * pointer values.  See arch/ppc/kernel/prom.c for how these are used.
  95.  */
  96. extern unsigned long reloc_offset(void);
  97. #define PTRRELOC(x) ((typeof(x))((unsigned long)(x) + offset))
  98. #define PTRUNRELOC(x) ((typeof(x))((unsigned long)(x) - offset))
  99. #define RELOC(x) (*PTRRELOC(&(x)))
  100. #endif /* _PPC_PROM_H */
  101. #endif /* __KERNEL__ */