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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: ebus.h,v 1.10 2001/03/14 05:00:55 davem Exp $
  2.  * ebus.h: PCI to Ebus pseudo driver software state.
  3.  *
  4.  * Copyright (C) 1997 Eddie C. Dost (ecd@skynet.be)
  5.  * Copyright (C) 1999 David S. Miller (davem@redhat.com)
  6.  */
  7. #ifndef __SPARC64_EBUS_H
  8. #define __SPARC64_EBUS_H
  9. #include <asm/pbm.h>
  10. #include <asm/oplib.h>
  11. struct linux_ebus_child {
  12. struct linux_ebus_child *next;
  13. struct linux_ebus_device *parent;
  14. struct linux_ebus *bus;
  15. int  prom_node;
  16. char  prom_name[64];
  17. struct resource  resource[PROMREG_MAX];
  18. int  num_addrs;
  19. unsigned int  irqs[PROMINTR_MAX];
  20. int  num_irqs;
  21. };
  22. struct linux_ebus_device {
  23. struct linux_ebus_device *next;
  24. struct linux_ebus_child *children;
  25. struct linux_ebus *bus;
  26. int  prom_node;
  27. char  prom_name[64];
  28. struct resource  resource[PROMREG_MAX];
  29. int  num_addrs;
  30. unsigned int  irqs[PROMINTR_MAX];
  31. int  num_irqs;
  32. };
  33. struct linux_ebus {
  34. struct linux_ebus *next;
  35. struct linux_ebus_device *devices;
  36. struct pci_pbm_info *parent;
  37. struct pci_dev *self;
  38. int  index;
  39. int  is_rio;
  40. int  prom_node;
  41. char  prom_name[64];
  42. struct linux_prom_ebus_ranges  ebus_ranges[PROMREG_MAX];
  43. int  num_ebus_ranges;
  44. struct linux_prom_ebus_intmap  ebus_intmap[PROMREG_MAX];
  45. int  num_ebus_intmap;
  46. struct linux_prom_ebus_intmask  ebus_intmask;
  47. };
  48. struct linux_ebus_dma {
  49. unsigned int dcsr;
  50. unsigned int dacr;
  51. unsigned int dbcr;
  52. };
  53. #define EBUS_DCSR_INT_PEND 0x00000001
  54. #define EBUS_DCSR_ERR_PEND 0x00000002
  55. #define EBUS_DCSR_DRAIN 0x00000004
  56. #define EBUS_DCSR_INT_EN 0x00000010
  57. #define EBUS_DCSR_RESET 0x00000080
  58. #define EBUS_DCSR_WRITE 0x00000100
  59. #define EBUS_DCSR_EN_DMA 0x00000200
  60. #define EBUS_DCSR_CYC_PEND 0x00000400
  61. #define EBUS_DCSR_DIAG_RD_DONE 0x00000800
  62. #define EBUS_DCSR_DIAG_WR_DONE 0x00001000
  63. #define EBUS_DCSR_EN_CNT 0x00002000
  64. #define EBUS_DCSR_TC 0x00004000
  65. #define EBUS_DCSR_DIS_CSR_DRN 0x00010000
  66. #define EBUS_DCSR_BURST_SZ_MASK 0x000c0000
  67. #define EBUS_DCSR_BURST_SZ_1 0x00080000
  68. #define EBUS_DCSR_BURST_SZ_4 0x00000000
  69. #define EBUS_DCSR_BURST_SZ_8 0x00040000
  70. #define EBUS_DCSR_BURST_SZ_16 0x000c0000
  71. #define EBUS_DCSR_DIAG_EN 0x00100000
  72. #define EBUS_DCSR_DIS_ERR_PEND 0x00400000
  73. #define EBUS_DCSR_TCI_DIS 0x00800000
  74. #define EBUS_DCSR_EN_NEXT 0x01000000
  75. #define EBUS_DCSR_DMA_ON 0x02000000
  76. #define EBUS_DCSR_A_LOADED 0x04000000
  77. #define EBUS_DCSR_NA_LOADED 0x08000000
  78. #define EBUS_DCSR_DEV_ID_MASK 0xf0000000
  79. extern struct linux_ebus *ebus_chain;
  80. extern void ebus_init(void);
  81. #define for_each_ebus(bus)
  82.         for((bus) = ebus_chain; (bus); (bus) = (bus)->next)
  83. #define for_each_ebusdev(dev, bus)
  84.         for((dev) = (bus)->devices; (dev); (dev) = (dev)->next)
  85. #define for_each_edevchild(dev, child)
  86.         for((child) = (dev)->children; (child); (child) = (child)->next)
  87. #endif /* !(__SPARC64_EBUS_H) */