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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * tree.c: PROM component device tree code.
  3.  *
  4.  * Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
  5.  *
  6.  * $Id: tree.c,v 1.1 1998/10/18 13:32:10 tsbogend Exp $
  7.  */
  8. #include <linux/init.h>
  9. #include <asm/sgialib.h>
  10. #define DEBUG_PROM_TREE
  11. pcomponent * __init prom_getsibling(pcomponent *this)
  12. {
  13. if(this == PROM_NULL_COMPONENT)
  14. return PROM_NULL_COMPONENT;
  15. return romvec->next_component(this);
  16. }
  17. pcomponent * __init prom_getchild(pcomponent *this)
  18. {
  19. return romvec->child_component(this);
  20. }
  21. pcomponent * __init prom_getparent(pcomponent *child)
  22. {
  23. if(child == PROM_NULL_COMPONENT)
  24. return PROM_NULL_COMPONENT;
  25. return romvec->parent_component(child);
  26. }
  27. long __init prom_getcdata(void *buffer, pcomponent *this)
  28. {
  29. return romvec->component_data(buffer, this);
  30. }
  31. pcomponent * __init prom_childadd(pcomponent *this, pcomponent *tmp, void *data)
  32. {
  33. return romvec->child_add(this, tmp, data);
  34. }
  35. long __init prom_delcomponent(pcomponent *this)
  36. {
  37. return romvec->comp_del(this);
  38. }
  39. pcomponent * __init prom_componentbypath(char *path)
  40. {
  41. return romvec->component_by_path(path);
  42. }
  43. #ifdef DEBUG_PROM_TREE
  44. static char *classes[] = {
  45. "system", "processor", "cache", "adapter", "controller", "peripheral",
  46. "memory"
  47. };
  48. static char *types[] = {
  49. "arc", "cpu", "fpu", "picache", "pdcache", "sicache", "sdcache", "sccache",
  50. "memdev", "eisa adapter", "tc adapter", "scsi adapter", "dti adapter",
  51. "multi-func adapter", "disk controller", "tp controller",
  52. "cdrom controller", "worm controller", "serial controller",
  53. "net controller", "display controller", "parallel controller",
  54. "pointer controller", "keyboard controller", "audio controller",
  55. "misc controller", "disk peripheral", "floppy peripheral",
  56. "tp peripheral", "modem peripheral", "monitor peripheral",
  57. "printer peripheral", "pointer peripheral", "keyboard peripheral",
  58. "terminal peripheral", "line peripheral", "net peripheral",
  59. "misc peripheral", "anonymous"
  60. };
  61. static char *iflags[] = {
  62. "bogus", "read only", "removable", "console in", "console out",
  63. "input", "output"
  64. };
  65. static void __init dump_component(pcomponent *p)
  66. {
  67. prom_printf("[%p]:class<%s>type<%s>flags<%s>ver<%d>rev<%d>",
  68.     p, classes[p->class], types[p->type],
  69.     iflags[p->iflags], p->vers, p->rev);
  70. prom_printf("key<%08lx>ntamask<%08lx>cdsize<%d>ilen<%d>iname<%s>n",
  71.     p->key, p->amask, (int)p->cdsize, (int)p->ilen, p->iname);
  72. }
  73. static void __init traverse(pcomponent *p, int op)
  74. {
  75. dump_component(p);
  76. if(prom_getchild(p))
  77. traverse(prom_getchild(p), 1);
  78. if(prom_getsibling(p) && op)
  79. traverse(prom_getsibling(p), 1);
  80. }
  81. void __init prom_testtree(void)
  82. {
  83. pcomponent *p;
  84. p = prom_getchild(PROM_NULL_COMPONENT);
  85. dump_component(p);
  86. p = prom_getchild(p);
  87. while(p) {
  88. dump_component(p);
  89. p = prom_getsibling(p);
  90. }
  91. prom_printf("press a keyn");
  92. prom_getchar();
  93. }
  94. #endif