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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* 
  2.  * Copyright (C) 2001 David J. Mckay (david.mckay@st.com)
  3.  *
  4.  * May be copied or modified under the terms of the GNU General Public
  5.  * License.  See linux/COPYING for more information.                            
  6.  *
  7.  * Defintions for the ST40 PCI hardware.
  8.  */
  9. #ifndef __PCI_ST40_H__
  10. #define __PCI_ST40_H__
  11. #define ST40PCI_VCR_STATUS    0x00
  12. #define ST40PCI_VCR_VERSION   0x08
  13. #define ST40PCI_CR            0x10
  14. #define CR_SOFT_RESET (1<<12)
  15. #define CR_PFCS       (1<<11)
  16. #define CR_PFE        (1<<9)
  17. #define CR_BMAM       (1<<6)
  18. #define CR_HOST       (1<<5)
  19. #define CR_CLKEN      (1<<4)
  20. #define CR_SOCS       (1<<3)
  21. #define CR_IOCS       (1<<2)
  22. #define CR_RSTCTL     (1<<1)
  23. #define CR_CFINT      (1<<0)
  24. #define CR_LOCK_MASK  0x5a000000
  25. #define ST40PCI_LSR0          0X14
  26. #define ST40PCI_LAR0          0x1c
  27. #define ST40PCI_INT           0x24
  28. #define INT_MADIM             (1<<2)
  29. #define ST40PCI_INTM          0x28
  30. #define ST40PCI_AIR           0x2c
  31. #define ST40PCI_CIR           0x30
  32. #define ST40PCI_AINT          0x40
  33. #define ST40PCI_AINTM         0x44
  34. #define ST40PCI_BMIR          0x48
  35. #define ST40PCI_PAR           0x4c
  36. #define ST40PCI_MBR           0x50
  37. #define ST40PCI_IOBR          0x54
  38. #define ST40PCI_PINT          0x58
  39. #define ST40PCI_PINTM         0x5c
  40. #define ST40PCI_MBMR          0x70
  41. #define ST40PCI_IOBMR         0x74
  42. #define ST40PCI_PDR           0x78
  43. /* These are configs space registers */
  44. #define ST40PCI_CSR_VID               0x10000
  45. #define ST40PCI_CSR_DID               0x10002
  46. #define ST40PCI_CSR_CMD               0x10004
  47. #define ST40PCI_CSR_STATUS            0x10006
  48. #define ST40PCI_CSR_MBAR0             0x10010
  49. #define ST40PCI_CSR_TRDY              0x10040
  50. #define ST40PCI_CSR_RETRY             0x10041
  51. #define ST40PCI_CSR_MIT               0x1000d
  52. #define ST40_IO_ADDR 0xb6000000       
  53. #endif /* __PCI_ST40_H__ */