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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.qspan_pci.c 1.6 05/18/01 15:17:06 cort
  3.  */
  4. /*
  5.  * LinuxPPC arch/ppc/kernel/qspan_pci.c   Dan Malek (dmalek@jlc.net)
  6.  *
  7.  * QSpan Motorola bus to PCI bridge.  The config address register
  8.  * is located 0x500 from the base of the bridge control/status registers.
  9.  * The data register is located at 0x504.
  10.  * This is a two step operation.  First, the address register is written,
  11.  * then the data register is read/written as required.
  12.  * I don't know what to do about interrupts (yet).
  13.  */
  14. #include <linux/types.h>
  15. #include <linux/kernel.h>
  16. #include <linux/pci.h>
  17. #include <asm/mpc8xx.h>
  18. /*
  19.  * When reading the configuration space, if something does not respond
  20.  * the bus times out and we get a machine check interrupt.  So, the
  21.  * good ol' exception tables come to mind to trap it and return some
  22.  * value.
  23.  *
  24.  * On an error we just return a -1, since that is what the caller wants
  25.  * returned if nothing is present.  I copied this from __get_user_asm,
  26.  * with the only difference of returning -1 instead of EFAULT.
  27.  * There is an associated hack in the machine check trap code.
  28.  *
  29.  * The QSPAN is also a big endian device, that is it makes the PCI
  30.  * look big endian to us.  This presents a problem for the Linux PCI
  31.  * functions, which assume little endian.  For example, we see the
  32.  * first 32-bit word like this:
  33.  * ------------------------
  34.  * | Device ID | Vendor ID |
  35.  * ------------------------
  36.  * If we read/write as a double word, that's OK.  But in our world,
  37.  * when read as a word, device ID is at location 0, not location 2 as
  38.  * the little endian PCI would believe.  We have to switch bits in
  39.  * the PCI addresses given to us to get the data to/from the correct
  40.  * byte lanes.
  41.  *
  42.  * The QSPAN only supports 4 bits of "slot" in the dev_fn instead of 5.
  43.  * It always forces the MS bit to zero.  Therefore, dev_fn values
  44.  * greater than 128 are returned as "no device found" errors.
  45.  *
  46.  * The QSPAN can only perform long word (32-bit) configuration cycles.
  47.  * The "offset" must have the two LS bits set to zero.  Read operations
  48.  * require we read the entire word and then sort out what should be
  49.  * returned.  Write operations other than long word require that we
  50.  * read the long word, update the proper word or byte, then write the
  51.  * entire long word back.
  52.  *
  53.  * PCI Bridge hack.  We assume (correctly) that bus 0 is the primary
  54.  * PCI bus from the QSPAN.  If we are called with a bus number other
  55.  * than zero, we create a Type 1 configuration access that a downstream
  56.  * PCI bridge will interpret.
  57.  */
  58. #define __get_pci_config(x, addr, op)
  59. __asm__ __volatile__(
  60. "1: "op" %0,0(%1)n"
  61. " eieion"
  62. "2:n"
  63. ".section .fixup,"ax"n"
  64. "3: li %0,-1n"
  65. " b 2bn"
  66. ".section __ex_table,"a"n"
  67. " .align 2n"
  68. " .long 1b,3bn"
  69. ".text"
  70. : "=r"(x) : "r"(addr))
  71. #define QS_CONFIG_ADDR ((volatile uint *)(PCI_CSR_ADDR + 0x500))
  72. #define QS_CONFIG_DATA ((volatile uint *)(PCI_CSR_ADDR + 0x504))
  73. #define mk_config_addr(bus, dev, offset) 
  74. (((bus)<<16) | ((dev)<<8) | (offset & 0xfc))
  75. #define mk_config_type1(bus, dev, offset) 
  76. mk_config_addr(bus, dev, offset) | 1;
  77. /* Initialize the QSpan device registers after power up.
  78. */
  79. qspan_init()
  80. {
  81. uint *qptr;
  82. qptr = (uint *)PCI_CSR_ADDR;
  83. /* PCI Configuration/status.  Upper bits written to clear
  84.  * pending interrupt or status.  Lower bits enable QSPAN as
  85.  * PCI master, enable memory and I/O cycles, and enable PCI
  86.  * parity error checking.
  87.  * IMPORTANT:  The last two bits of this word enable PCI
  88.  * master cycles into the QBus.  The QSpan is broken and can't
  89.  * meet the timing specs of the PQ bus for this to work.  Therefore,
  90.  * if you don't have external bus arbitration, you can't use
  91.  * this function.
  92.  */
  93. #ifdef EXTERNAL_PQ_ARB
  94. qptr[1] = 0xf9000147;
  95. #else
  96. qptr[1] = 0xf9000144;
  97. #endif
  98. /* PCI Misc configuration.  Set PCI latency timer resolution
  99.  * of 8 cycles, set cache size to 4 x 32.
  100.  */
  101. qptr[3] = 0;
  102. /* Set up PCI Target address mapping.  Enable, Posted writes,
  103.  * 2Gbyte space (processor memory controller determines actual size).
  104.  */
  105. qptr[64] = 0x8f000080;
  106. /* Map processor 0x80000000 to PCI 0x00000000.
  107.  * Processor address bit 1 determines I/O type access (0x80000000)
  108.  * or memory type access (0xc0000000).
  109.  */
  110. qptr[65] = 0x80000000;
  111. /* Enable error logging and clear any pending error status.
  112. */
  113. qptr[80] = 0x90000000;
  114. qptr[512] = 0x000c0003;
  115. /* Set up Qbus slave image.
  116. */
  117. qptr[960] = 0x01000000;
  118. qptr[961] = 0x000000d1;
  119. qptr[964] = 0x00000000;
  120. qptr[965] = 0x000000d1;
  121. }
  122. /* Functions to support PCI bios-like features to read/write configuration
  123.  * space.  If the function fails for any reason, a -1 (0xffffffff) value
  124.  * must be returned.
  125.  */
  126. #define DEVICE_NOT_FOUND (-1)
  127. #define SUCCESSFUL 0
  128. int qs_pci_read_config_byte(unsigned char bus, unsigned char dev_fn,
  129.   unsigned char offset, unsigned char *val)
  130. {
  131. uint temp;
  132. u_char *cp;
  133. if ((bus > 7) || (dev_fn > 127)) {
  134. *val = 0xff;
  135. return DEVICE_NOT_FOUND;
  136. }
  137. if (bus == 0)
  138. *QS_CONFIG_ADDR = mk_config_addr(bus, dev_fn, offset);
  139. else
  140. *QS_CONFIG_ADDR = mk_config_type1(bus, dev_fn, offset);
  141. __get_pci_config(temp, QS_CONFIG_DATA, "lwz");
  142. offset ^= 0x03;
  143. cp = ((u_char *)&temp) + (offset & 0x03);
  144. *val = *cp;
  145. return SUCCESSFUL;
  146. }
  147. int qs_pci_read_config_word(unsigned char bus, unsigned char dev_fn,
  148.   unsigned char offset, unsigned short *val)
  149. {
  150. uint temp;
  151. ushort *sp;
  152. if ((bus > 7) || (dev_fn > 127)) {
  153. *val = 0xffff;
  154. return DEVICE_NOT_FOUND;
  155. }
  156. if (bus == 0)
  157. *QS_CONFIG_ADDR = mk_config_addr(bus, dev_fn, offset);
  158. else
  159. *QS_CONFIG_ADDR = mk_config_type1(bus, dev_fn, offset);
  160. __get_pci_config(temp, QS_CONFIG_DATA, "lwz");
  161. offset ^= 0x02;
  162. sp = ((ushort *)&temp) + ((offset >> 1) & 1);
  163. *val = *sp;
  164. return SUCCESSFUL;
  165. }
  166. int qs_pci_read_config_dword(unsigned char bus, unsigned char dev_fn,
  167.    unsigned char offset, unsigned int *val)
  168. {
  169. if ((bus > 7) || (dev_fn > 127)) {
  170. *val = 0xffffffff;
  171. return DEVICE_NOT_FOUND;
  172. }
  173. if (bus == 0)
  174. *QS_CONFIG_ADDR = mk_config_addr(bus, dev_fn, offset);
  175. else
  176. *QS_CONFIG_ADDR = mk_config_type1(bus, dev_fn, offset);
  177. __get_pci_config(*val, QS_CONFIG_DATA, "lwz");
  178. return SUCCESSFUL;
  179. }
  180. int qs_pci_write_config_byte(unsigned char bus, unsigned char dev_fn,
  181.    unsigned char offset, unsigned char val)
  182. {
  183. uint temp;
  184. u_char *cp;
  185. if ((bus > 7) || (dev_fn > 127))
  186. return DEVICE_NOT_FOUND;
  187. qs_pci_read_config_dword(bus, dev_fn, offset, &temp);
  188. offset ^= 0x03;
  189. cp = ((u_char *)&temp) + (offset & 0x03);
  190. *cp = val;
  191. if (bus == 0)
  192. *QS_CONFIG_ADDR = mk_config_addr(bus, dev_fn, offset);
  193. else
  194. *QS_CONFIG_ADDR = mk_config_type1(bus, dev_fn, offset);
  195. *QS_CONFIG_DATA = temp;
  196. return SUCCESSFUL;
  197. }
  198. int qs_pci_write_config_word(unsigned char bus, unsigned char dev_fn,
  199.    unsigned char offset, unsigned short val)
  200. {
  201. uint temp;
  202. ushort *sp;
  203. if ((bus > 7) || (dev_fn > 127))
  204. return DEVICE_NOT_FOUND;
  205. qs_pci_read_config_dword(bus, dev_fn, offset, &temp);
  206. offset ^= 0x02;
  207. sp = ((ushort *)&temp) + ((offset >> 1) & 1);
  208. *sp = val;
  209. if (bus == 0)
  210. *QS_CONFIG_ADDR = mk_config_addr(bus, dev_fn, offset);
  211. else
  212. *QS_CONFIG_ADDR = mk_config_type1(bus, dev_fn, offset);
  213. *QS_CONFIG_DATA = temp;
  214. return SUCCESSFUL;
  215. }
  216. int qs_pci_write_config_dword(unsigned char bus, unsigned char dev_fn,
  217.     unsigned char offset, unsigned int val)
  218. {
  219. if ((bus > 7) || (dev_fn > 127))
  220. return DEVICE_NOT_FOUND;
  221. if (bus == 0)
  222. *QS_CONFIG_ADDR = mk_config_addr(bus, dev_fn, offset);
  223. else
  224. *QS_CONFIG_ADDR = mk_config_type1(bus, dev_fn, offset);
  225. *(unsigned int *)QS_CONFIG_DATA = val;
  226. return SUCCESSFUL;
  227. }