pciu.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:5k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * FILE NAME
  3.  * arch/mips/vr41xx/common/pciu.h
  4.  *
  5.  * BRIEF MODULE DESCRIPTION
  6.  * Include file for PCI Control Unit of the NEC VR4100 series.
  7.  *
  8.  * Author: Yoichi Yuasa
  9.  *         yyuasa@mvista.com or source@mvista.com
  10.  *
  11.  * Copyright 2002 MontaVista Software Inc.
  12.  *
  13.  *  This program is free software; you can redistribute it and/or modify it
  14.  *  under the terms of the GNU General Public License as published by the
  15.  *  Free Software Foundation; either version 2 of the License, or (at your
  16.  *  option) any later version.
  17.  *
  18.  *  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  19.  *  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  20.  *  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  21.  *  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  22.  *  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  23.  *  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  24.  *  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  25.  *  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
  26.  *  TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  27.  *  USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  28.  *
  29.  *  You should have received a copy of the GNU General Public License along
  30.  *  with this program; if not, write to the Free Software Foundation, Inc.,
  31.  *  675 Mass Ave, Cambridge, MA 02139, USA.
  32.  */
  33. /*
  34.  * Changes:
  35.  *  MontaVista Software Inc. <yyuasa@mvista.com> or <source@mvista.com>
  36.  *  - New creation, NEC VR4122 and VR4131 are supported.
  37.  */
  38. #ifndef __VR41XX_PCIU_H
  39. #define __VR41XX_PCIU_H
  40. #include <linux/config.h>
  41. #include <asm/addrspace.h>
  42. #define BIT(x) (1 << (x))
  43. #define PCIMMAW1REG KSEG1ADDR(0x0f000c00)
  44. #define PCIMMAW2REG KSEG1ADDR(0x0f000c04)
  45. #define PCITAW1REG KSEG1ADDR(0x0f000c08)
  46. #define PCITAW2REG KSEG1ADDR(0x0f000c0c)
  47. #define PCIMIOAWREG KSEG1ADDR(0x0f000c10)
  48. #define INTERNAL_BUS_BASE_ADDRESS 0xff000000
  49. #define ADDRESS_MASK 0x000fe000
  50. #define PCI_ACCESS_ENABLE BIT(12)
  51. #define PCI_ADDRESS_SETTING 0x000000ff
  52. #define PCICONFDREG KSEG1ADDR(0x0f000c14)
  53. #define PCICONFAREG KSEG1ADDR(0x0f000c18)
  54. #define PCIMAILREG KSEG1ADDR(0x0f000c1c)
  55. #define BUSERRADREG KSEG1ADDR(0x0f000c24)
  56. #define ERROR_ADDRESS 0xfffffffc
  57. #define INTCNTSTAREG KSEG1ADDR(0x0f000c28)
  58. #define MABTCLR BIT(31)
  59. #define TRDYCLR BIT(30)
  60. #define PARCLR BIT(29)
  61. #define MBCLR BIT(28)
  62. #define SERRCLR BIT(27)
  63. #define PCIEXACCREG KSEG1ADDR(0x0f000c2c)
  64. #define UNLOCK BIT(1)
  65. #define EAREQ BIT(0)
  66. #define PCIRECONTREG KSEG1ADDR(0x0f000c30)
  67. #define RTRYCNT 0x000000ff
  68. #define PCIENREG KSEG1ADDR(0x0f000c34)
  69. #define CONFIG_DONE BIT(2)
  70. #define PCICLKSELREG KSEG1ADDR(0x0f000c38)
  71. #define EQUAL_VTCLOCK 0x00000002
  72. #define HALF_VTCLOCK 0x00000000
  73. #define QUARTER_VTCLOCK 0x00000001
  74. #define PCITRDYVREG KSEG1ADDR(0x0f000c3c)
  75. #define PCICLKRUNREG KSEG1ADDR(0x0f000c60)
  76. #define PCIU_CONFIGREGS_BASE KSEG1ADDR(0x0f000d00)
  77. #define VENDORIDREG KSEG1ADDR(0x0f000d00)
  78. #define DEVICEIDREG KSEG1ADDR(0x0f000d00)
  79. #define COMMANDREG KSEG1ADDR(0x0f000d04)
  80. #define STATUSREG KSEG1ADDR(0x0f000d04)
  81. #define REVIDREG KSEG1ADDR(0x0f000d08)
  82. #define CLASSREG KSEG1ADDR(0x0f000d08)
  83. #define CACHELSREG KSEG1ADDR(0x0f000d0c)
  84. #define LATTIMEREG KSEG1ADDR(0x0f000d0c)
  85. #define MAILBAREG KSEG1ADDR(0x0f000d10)
  86. #define PCIMBA1REG KSEG1ADDR(0x0f000d14)
  87. #define PCIMBA2REG KSEG1ADDR(0x0f000d18)
  88. #define INTLINEREG KSEG1ADDR(0x0f000d3c)
  89. #define INTPINREG KSEG1ADDR(0x0f000d3c)
  90. #define RETVALREG KSEG1ADDR(0x0f000d40)
  91. #define PCIAPCNTREG KSEG1ADDR(0x0f000d40)
  92. #define MPCIINTREG KSEG1ADDR(0x0f0000b2)
  93. #define MAX_PCI_CLOCK 33333333
  94. #define PCIU_CLOCK 0x0080
  95. #define PCI_CLOCK 0x2000
  96. static inline int pciu_read_config_byte(int where, u8 *val)
  97. {
  98. u32 data;
  99. data = readl(PCIU_CONFIGREGS_BASE + where);
  100. *val = (u8)(data >> ((where & 3) << 3));
  101. return PCIBIOS_SUCCESSFUL;
  102. }
  103. static inline int pciu_read_config_word(int where, u16 *val)
  104. {
  105. u32 data;
  106. if (where & 1)
  107. return PCIBIOS_BAD_REGISTER_NUMBER;
  108. data = readl(PCIU_CONFIGREGS_BASE + where);
  109. *val = (u16)(data >> ((where & 2) << 3));
  110. return PCIBIOS_SUCCESSFUL;
  111. }
  112. static inline int pciu_read_config_dword(int where, u32 *val)
  113. {
  114. if (where & 3)
  115. return PCIBIOS_BAD_REGISTER_NUMBER;
  116. *val = readl(PCIU_CONFIGREGS_BASE + where);
  117. return PCIBIOS_SUCCESSFUL;
  118. }
  119. static inline int pciu_write_config_byte(int where, u8 val)
  120. {
  121. writel(val, PCIU_CONFIGREGS_BASE + where);
  122. return 0;
  123. }
  124. static inline int pciu_write_config_word(int where, u16 val)
  125. {
  126. writel(val, PCIU_CONFIGREGS_BASE + where);
  127. return 0;
  128. }
  129. static inline int pciu_write_config_dword(int where, u32 val)
  130. {
  131. writel(val, PCIU_CONFIGREGS_BASE + where);
  132. return 0;
  133. }
  134. #endif /* __VR41XX_PCIU_H */