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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: openprom.h,v 1.24 2000/06/04 06:23:53 anton Exp $ */
  2. #ifndef __SPARC_OPENPROM_H
  3. #define __SPARC_OPENPROM_H
  4. /* openprom.h:  Prom structures and defines for access to the OPENBOOT
  5.  *              prom routines and data areas.
  6.  *
  7.  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
  8.  */
  9. #include <asm/vaddrs.h>
  10. /* Empirical constants... */
  11. #define LINUX_OPPROM_MAGIC      0x10010407
  12. #ifndef __ASSEMBLY__
  13. /* V0 prom device operations. */
  14. struct linux_dev_v0_funcs {
  15. int (*v0_devopen)(char *device_str);
  16. int (*v0_devclose)(int dev_desc);
  17. int (*v0_rdblkdev)(int dev_desc, int num_blks, int blk_st, char *buf);
  18. int (*v0_wrblkdev)(int dev_desc, int num_blks, int blk_st, char *buf);
  19. int (*v0_wrnetdev)(int dev_desc, int num_bytes, char *buf);
  20. int (*v0_rdnetdev)(int dev_desc, int num_bytes, char *buf);
  21. int (*v0_rdchardev)(int dev_desc, int num_bytes, int dummy, char *buf);
  22. int (*v0_wrchardev)(int dev_desc, int num_bytes, int dummy, char *buf);
  23. int (*v0_seekdev)(int dev_desc, long logical_offst, int from);
  24. };
  25. /* V2 and later prom device operations. */
  26. struct linux_dev_v2_funcs {
  27. int (*v2_inst2pkg)(int d); /* Convert ihandle to phandle */
  28. char * (*v2_dumb_mem_alloc)(char *va, unsigned sz);
  29. void (*v2_dumb_mem_free)(char *va, unsigned sz);
  30. /* To map devices into virtual I/O space. */
  31. char * (*v2_dumb_mmap)(char *virta, int which_io, unsigned paddr, unsigned sz);
  32. void (*v2_dumb_munmap)(char *virta, unsigned size);
  33. int (*v2_dev_open)(char *devpath);
  34. void (*v2_dev_close)(int d);
  35. int (*v2_dev_read)(int d, char *buf, int nbytes);
  36. int (*v2_dev_write)(int d, char *buf, int nbytes);
  37. int (*v2_dev_seek)(int d, int hi, int lo);
  38. /* Never issued (multistage load support) */
  39. void (*v2_wheee2)(void);
  40. void (*v2_wheee3)(void);
  41. };
  42. struct linux_mlist_v0 {
  43. struct linux_mlist_v0 *theres_more;
  44. char *start_adr;
  45. unsigned num_bytes;
  46. };
  47. struct linux_mem_v0 {
  48. struct linux_mlist_v0 **v0_totphys;
  49. struct linux_mlist_v0 **v0_prommap;
  50. struct linux_mlist_v0 **v0_available; /* What we can use */
  51. };
  52. /* Arguments sent to the kernel from the boot prompt. */
  53. struct linux_arguments_v0 {
  54. char *argv[8];
  55. char args[100];
  56. char boot_dev[2];
  57. int boot_dev_ctrl;
  58. int boot_dev_unit;
  59. int dev_partition;
  60. char *kernel_file_name;
  61. void *aieee1;           /* XXX */
  62. };
  63. /* V2 and up boot things. */
  64. struct linux_bootargs_v2 {
  65. char **bootpath;
  66. char **bootargs;
  67. int *fd_stdin;
  68. int *fd_stdout;
  69. };
  70. /* The top level PROM vector. */
  71. struct linux_romvec {
  72. /* Version numbers. */
  73. unsigned int pv_magic_cookie;
  74. unsigned int pv_romvers;
  75. unsigned int pv_plugin_revision;
  76. unsigned int pv_printrev;
  77. /* Version 0 memory descriptors. */
  78. struct linux_mem_v0 pv_v0mem;
  79. /* Node operations. */
  80. struct linux_nodeops *pv_nodeops;
  81. char **pv_bootstr;
  82. struct linux_dev_v0_funcs pv_v0devops;
  83. char *pv_stdin;
  84. char *pv_stdout;
  85. #define PROMDEV_KBD 0 /* input from keyboard */
  86. #define PROMDEV_SCREEN 0 /* output to screen */
  87. #define PROMDEV_TTYA 1 /* in/out to ttya */
  88. #define PROMDEV_TTYB 2 /* in/out to ttyb */
  89. /* Blocking getchar/putchar.  NOT REENTRANT! (grr) */
  90. int (*pv_getchar)(void);
  91. void (*pv_putchar)(int ch);
  92. /* Non-blocking variants. */
  93. int (*pv_nbgetchar)(void);
  94. int (*pv_nbputchar)(int ch);
  95. void (*pv_putstr)(char *str, int len);
  96. /* Miscellany. */
  97. void (*pv_reboot)(char *bootstr);
  98. void (*pv_printf)(__const__ char *fmt, ...);
  99. void (*pv_abort)(void);
  100. __volatile__ int *pv_ticks;
  101. void (*pv_halt)(void);
  102. void (**pv_synchook)(void);
  103. /* Evaluate a forth string, not different proto for V0 and V2->up. */
  104. union {
  105. void (*v0_eval)(int len, char *str);
  106. void (*v2_eval)(char *str);
  107. } pv_fortheval;
  108. struct linux_arguments_v0 **pv_v0bootargs;
  109. /* Get ether address. */
  110. unsigned int (*pv_enaddr)(int d, char *enaddr);
  111. struct linux_bootargs_v2 pv_v2bootargs;
  112. struct linux_dev_v2_funcs pv_v2devops;
  113. int filler[15];
  114. /* This one is sun4c/sun4 only. */
  115. void (*pv_setctxt)(int ctxt, char *va, int pmeg);
  116. /* Prom version 3 Multiprocessor routines. This stuff is crazy.
  117.  * No joke. Calling these when there is only one cpu probably
  118.  * crashes the machine, have to test this. :-)
  119.  */
  120. /* v3_cpustart() will start the cpu 'whichcpu' in mmu-context
  121.  * 'thiscontext' executing at address 'prog_counter'
  122.  */
  123. int (*v3_cpustart)(unsigned int whichcpu, int ctxtbl_ptr,
  124.    int thiscontext, char *prog_counter);
  125. /* v3_cpustop() will cause cpu 'whichcpu' to stop executing
  126.  * until a resume cpu call is made.
  127.  */
  128. int (*v3_cpustop)(unsigned int whichcpu);
  129. /* v3_cpuidle() will idle cpu 'whichcpu' until a stop or
  130.  * resume cpu call is made.
  131.  */
  132. int (*v3_cpuidle)(unsigned int whichcpu);
  133. /* v3_cpuresume() will resume processor 'whichcpu' executing
  134.  * starting with whatever 'pc' and 'npc' were left at the
  135.  * last 'idle' or 'stop' call.
  136.  */
  137. int (*v3_cpuresume)(unsigned int whichcpu);
  138. };
  139. /* Routines for traversing the prom device tree. */
  140. struct linux_nodeops {
  141. int (*no_nextnode)(int node);
  142. int (*no_child)(int node);
  143. int (*no_proplen)(int node, char *name);
  144. int (*no_getprop)(int node, char *name, char *val);
  145. int (*no_setprop)(int node, char *name, char *val, int len);
  146. char * (*no_nextprop)(int node, char *name);
  147. };
  148. /* More fun PROM structures for device probing. */
  149. #define PROMREG_MAX     16
  150. #define PROMVADDR_MAX   16
  151. #define PROMINTR_MAX    15
  152. struct linux_prom_registers {
  153. unsigned int which_io;         /* is this in OBIO space? */
  154. unsigned int phys_addr;        /* The physical address of this register */
  155. unsigned int reg_size;         /* How many bytes does this register take up? */
  156. };
  157. struct linux_prom_irqs {
  158. int pri;    /* IRQ priority */
  159. int vector; /* This is foobar, what does it do? */
  160. };
  161. /* Element of the "ranges" vector */
  162. struct linux_prom_ranges {
  163. unsigned int ot_child_space;
  164. unsigned int ot_child_base; /* Bus feels this */
  165. unsigned int ot_parent_space;
  166. unsigned int ot_parent_base; /* CPU looks from here */
  167. unsigned int or_size;
  168. };
  169. /* Ranges and reg properties are a bit different for PCI. */
  170. struct linux_prom_pci_registers {
  171. /* 
  172.  * We don't know what information this field contain.
  173.  * We guess, PCI device function is in bits 15:8
  174.  * So, ...
  175.  */
  176. unsigned int which_io;  /* Let it be which_io */
  177. unsigned int phys_hi;
  178. unsigned int phys_lo;
  179. unsigned int size_hi;
  180. unsigned int size_lo;
  181. };
  182. struct linux_prom_pci_ranges {
  183. unsigned int child_phys_hi; /* Only certain bits are encoded here. */
  184. unsigned int child_phys_mid;
  185. unsigned int child_phys_lo;
  186. unsigned int parent_phys_hi;
  187. unsigned int parent_phys_lo;
  188. unsigned int size_hi;
  189. unsigned int size_lo;
  190. };
  191. struct linux_prom_pci_assigned_addresses {
  192. unsigned int which_io;
  193. unsigned int phys_hi;
  194. unsigned int phys_lo;
  195. unsigned int size_hi;
  196. unsigned int size_lo;
  197. };
  198. struct linux_prom_ebus_ranges {
  199. unsigned int child_phys_hi;
  200. unsigned int child_phys_lo;
  201. unsigned int parent_phys_hi;
  202. unsigned int parent_phys_mid;
  203. unsigned int parent_phys_lo;
  204. unsigned int size;
  205. };
  206. #endif /* !(__ASSEMBLY__) */
  207. #endif /* !(__SPARC_OPENPROM_H) */