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

嵌入式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/config.h>
  6. #include <linux/stddef.h>
  7. #include <linux/kernel.h>
  8. #include <linux/sched.h>
  9. #include <linux/smp.h>
  10. #include <linux/init.h>
  11. #include <linux/delay.h>
  12. #include <linux/ioport.h>
  13. #include <asm/oplib.h>
  14. #include <asm/io.h>
  15. #include <asm/auxio.h>
  16. #include <asm/sbus.h>
  17. #include <asm/ebus.h>
  18. #include <asm/fhc.h>
  19. #include <asm/spitfire.h>
  20. #include <asm/starfire.h>
  21. /* Probe and map in the Auxiliary I/O register */
  22. unsigned long auxio_register = 0;
  23. void __init auxio_probe(void)
  24. {
  25.         struct sbus_bus *sbus;
  26.         struct sbus_dev *sdev = 0;
  27.         for_each_sbus(sbus) {
  28.                 for_each_sbusdev(sdev, sbus) {
  29.                         if(!strcmp(sdev->prom_name, "auxio"))
  30. goto found_sdev;
  31.                 }
  32.         }
  33. found_sdev:
  34. if (!sdev) {
  35. #ifdef CONFIG_PCI
  36. struct linux_ebus *ebus;
  37. struct linux_ebus_device *edev = 0;
  38. unsigned long led_auxio;
  39. for_each_ebus(ebus) {
  40. for_each_ebusdev(edev, ebus) {
  41. if (!strcmp(edev->prom_name, "auxio"))
  42. goto ebus_done;
  43. }
  44. }
  45. ebus_done:
  46. if (edev) {
  47. led_auxio = edev->resource[0].start;
  48. outl(0x01, led_auxio);
  49. return;
  50. }
  51. #endif
  52. auxio_register = 0UL;
  53. return;
  54. }
  55. /* Map the register both read and write */
  56. auxio_register = sbus_ioremap(&sdev->resource[0], 0,
  57.       sdev->reg_addrs[0].reg_size, "auxiliaryIO");
  58. TURN_ON_LED;
  59. }