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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* auxio.c: Probing for the Sparc AUXIO register at boot time.
  2.  *
  3.  * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu)
  4.  */
  5. #include <linux/stddef.h>
  6. #include <linux/init.h>
  7. #include <linux/config.h>
  8. #include <asm/oplib.h>
  9. #include <asm/io.h>
  10. #include <asm/auxio.h>
  11. #include <asm/string.h> /* memset(), Linux has no bzero() */
  12. /* Probe and map in the Auxiliary I/O register */
  13. unsigned char *auxio_register;
  14. void __init auxio_probe(void)
  15. {
  16. int node, auxio_nd;
  17. struct linux_prom_registers auxregs[1];
  18. struct resource r;
  19. switch (sparc_cpu_model) {
  20. case sun4d:
  21. case sun4:
  22. auxio_register = 0;
  23. return;
  24. default:
  25. break;
  26. }
  27. node = prom_getchild(prom_root_node);
  28. auxio_nd = prom_searchsiblings(node, "auxiliary-io");
  29. if(!auxio_nd) {
  30. node = prom_searchsiblings(node, "obio");
  31. node = prom_getchild(node);
  32. auxio_nd = prom_searchsiblings(node, "auxio");
  33. if(!auxio_nd) {
  34. #ifdef CONFIG_PCI
  35. /* There may be auxio on Ebus */
  36. auxio_register = 0;
  37. return;
  38. #else
  39. if(prom_searchsiblings(node, "leds")) {
  40. /* VME chassis sun4m machine, no auxio exists. */
  41. auxio_register = 0;
  42. return;
  43. }
  44. prom_printf("Cannot find auxio node, cannot continue...n");
  45. prom_halt();
  46. #endif
  47. }
  48. }
  49. prom_getproperty(auxio_nd, "reg", (char *) auxregs, sizeof(auxregs));
  50. prom_apply_obio_ranges(auxregs, 0x1);
  51. /* Map the register both read and write */
  52. r.flags = auxregs[0].which_io & 0xF;
  53. r.start = auxregs[0].phys_addr;
  54. r.end = auxregs[0].phys_addr + auxregs[0].reg_size - 1;
  55. auxio_register = (unsigned char *) sbus_ioremap(&r, 0,
  56.     auxregs[0].reg_size, "auxio");
  57. /* Fix the address on sun4m and sun4c. */
  58. if((((unsigned long) auxregs[0].phys_addr) & 3) == 3 ||
  59.    sparc_cpu_model == sun4c)
  60. auxio_register = (unsigned char *) ((int)auxio_register | 3);
  61. TURN_ON_LED;
  62. }
  63. /* sun4m power control register (AUXIO2) */
  64. volatile unsigned char * auxio_power_register = NULL;
  65. void __init auxio_power_probe(void)
  66. {
  67. struct linux_prom_registers regs;
  68. int node;
  69. struct resource r;
  70. /* Attempt to find the sun4m power control node. */
  71. node = prom_getchild(prom_root_node);
  72. node = prom_searchsiblings(node, "obio");
  73. node = prom_getchild(node);
  74. node = prom_searchsiblings(node, "power");
  75. if (node == 0 || node == -1)
  76. return;
  77. /* Map the power control register. */
  78. prom_getproperty(node, "reg", (char *)&regs, sizeof(regs));
  79. prom_apply_obio_ranges(&regs, 1);
  80. memset(&r, 0, sizeof(r));
  81. r.flags = regs.which_io & 0xF;
  82. r.start = regs.phys_addr;
  83. r.end = regs.phys_addr + regs.reg_size - 1;
  84. auxio_power_register = (unsigned char *) sbus_ioremap(&r, 0,
  85.     regs.reg_size, "auxpower");
  86. /* Display a quick message on the console. */
  87. if (auxio_power_register)
  88. printk(KERN_INFO "Power off control detected.n");
  89. }