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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id$
  2.  *
  3.  * This file is subject to the terms and conditions of the GNU General Public
  4.  * License.  See the file "COPYING" in the main directory of this archive
  5.  * for more details.
  6.  *
  7.  * Copyright (C) 1992 - 1997, 2000 Silicon Graphics, Inc.
  8.  * Copyright (C) 2000 by Colin Ngam
  9.  */
  10. #ifndef _ASM_SN_PCI_CVLINK_H
  11. #define _ASM_SN_PCI_CVLINK_H
  12. #define SET_PCIA64(dev) 
  13. (((struct sn1_device_sysdata *)((dev)->sysdata))->isa64) = 1
  14. #define IS_PCIA64(dev) (((dev)->dma_mask == 0xffffffffffffffffUL) || 
  15. (((struct sn1_device_sysdata *)((dev)->sysdata))->isa64))
  16. #define IS_PCI32G(dev) ((dev)->dma_mask >= 0xffffffff)
  17. #define IS_PCI32L(dev) ((dev)->dma_mask < 0xffffffff)
  18. struct sn1_widget_sysdata {
  19.         devfs_handle_t  vhdl;
  20. };
  21. struct sn1_device_sysdata {
  22.         devfs_handle_t  vhdl;
  23. int isa64;
  24. };
  25. struct sn1_dma_maps_s{
  26. struct pcibr_dmamap_s dma_map;
  27.         dma_addr_t      dma_addr;
  28. };
  29. struct ioports_to_tlbs_s {
  30. unsigned long p:1,
  31. rv_1:1,
  32. ma:3,
  33. a:1,
  34. d:1,
  35. pl:2,
  36. ar:3,
  37. ppn:38,
  38. rv_2:2,
  39. ed:1,
  40. ig:11;
  41. };
  42. #endif /* _ASM_SN_PCI_CVLINK_H */