ops-tx3927.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. /*
  2. * Copyright 2001 MontaVista Software Inc.
  3. * Author: MontaVista Software, Inc.
  4. * ahennessy@mvista.com
  5. *
  6. * Copyright (C) 2000-2001 Toshiba Corporation
  7. * Copyright (C) 2004 by Ralf Baechle (ralf@linux-mips.org)
  8. *
  9. * Based on arch/mips/ddb5xxx/ddb5477/pci_ops.c
  10. *
  11. * Define the pci_ops for TX3927.
  12. *
  13. * Much of the code is derived from the original DDB5074 port by
  14. * Geert Uytterhoeven <geert@sonycom.com>
  15. *
  16. * This program is free software; you can redistribute it and/or modify it
  17. * under the terms of the GNU General Public License as published by the
  18. * Free Software Foundation; either version 2 of the License, or (at your
  19. * option) any later version.
  20. *
  21. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  22. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  23. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
  24. * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  25. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  26. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  27. * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  28. * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  30. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. *
  32. * You should have received a copy of the GNU General Public License along
  33. * with this program; if not, write to the Free Software Foundation, Inc.,
  34. * 675 Mass Ave, Cambridge, MA 02139, USA.
  35. */
  36. #include <linux/types.h>
  37. #include <linux/pci.h>
  38. #include <linux/kernel.h>
  39. #include <linux/init.h>
  40. #include <linux/interrupt.h>
  41. #include <asm/addrspace.h>
  42. #include <asm/txx9irq.h>
  43. #include <asm/txx9/pci.h>
  44. #include <asm/txx9/tx3927.h>
  45. static int mkaddr(struct pci_bus *bus, unsigned char devfn, unsigned char where)
  46. {
  47. if (bus->parent == NULL &&
  48. devfn >= PCI_DEVFN(TX3927_PCIC_MAX_DEVNU, 0))
  49. return -1;
  50. tx3927_pcicptr->ica =
  51. ((bus->number & 0xff) << 0x10) |
  52. ((devfn & 0xff) << 0x08) |
  53. (where & 0xfc) | (bus->parent ? 1 : 0);
  54. /* clear M_ABORT and Disable M_ABORT Int. */
  55. tx3927_pcicptr->pcistat |= PCI_STATUS_REC_MASTER_ABORT;
  56. tx3927_pcicptr->pcistatim &= ~PCI_STATUS_REC_MASTER_ABORT;
  57. return 0;
  58. }
  59. static inline int check_abort(void)
  60. {
  61. if (tx3927_pcicptr->pcistat & PCI_STATUS_REC_MASTER_ABORT) {
  62. tx3927_pcicptr->pcistat |= PCI_STATUS_REC_MASTER_ABORT;
  63. tx3927_pcicptr->pcistatim |= PCI_STATUS_REC_MASTER_ABORT;
  64. /* flush write buffer */
  65. iob();
  66. return PCIBIOS_DEVICE_NOT_FOUND;
  67. }
  68. return PCIBIOS_SUCCESSFUL;
  69. }
  70. static int tx3927_pci_read_config(struct pci_bus *bus, unsigned int devfn,
  71. int where, int size, u32 * val)
  72. {
  73. if (mkaddr(bus, devfn, where)) {
  74. *val = 0xffffffff;
  75. return PCIBIOS_DEVICE_NOT_FOUND;
  76. }
  77. switch (size) {
  78. case 1:
  79. *val = *(volatile u8 *) ((unsigned long) & tx3927_pcicptr->icd | (where & 3));
  80. break;
  81. case 2:
  82. *val = le16_to_cpu(*(volatile u16 *) ((unsigned long) & tx3927_pcicptr->icd | (where & 3)));
  83. break;
  84. case 4:
  85. *val = le32_to_cpu(tx3927_pcicptr->icd);
  86. break;
  87. }
  88. return check_abort();
  89. }
  90. static int tx3927_pci_write_config(struct pci_bus *bus, unsigned int devfn,
  91. int where, int size, u32 val)
  92. {
  93. if (mkaddr(bus, devfn, where))
  94. return PCIBIOS_DEVICE_NOT_FOUND;
  95. switch (size) {
  96. case 1:
  97. *(volatile u8 *) ((unsigned long) & tx3927_pcicptr->icd | (where & 3)) = val;
  98. break;
  99. case 2:
  100. *(volatile u16 *) ((unsigned long) & tx3927_pcicptr->icd | (where & 2)) =
  101. cpu_to_le16(val);
  102. break;
  103. case 4:
  104. tx3927_pcicptr->icd = cpu_to_le32(val);
  105. }
  106. return check_abort();
  107. }
  108. static struct pci_ops tx3927_pci_ops = {
  109. .read = tx3927_pci_read_config,
  110. .write = tx3927_pci_write_config,
  111. };
  112. void __init tx3927_pcic_setup(struct pci_controller *channel,
  113. unsigned long sdram_size, int extarb)
  114. {
  115. unsigned long flags;
  116. unsigned long io_base =
  117. channel->io_resource->start + mips_io_port_base - IO_BASE;
  118. unsigned long io_size =
  119. channel->io_resource->end - channel->io_resource->start;
  120. unsigned long io_pciaddr =
  121. channel->io_resource->start - channel->io_offset;
  122. unsigned long mem_base =
  123. channel->mem_resource->start;
  124. unsigned long mem_size =
  125. channel->mem_resource->end - channel->mem_resource->start;
  126. unsigned long mem_pciaddr =
  127. channel->mem_resource->start - channel->mem_offset;
  128. printk(KERN_INFO "TX3927 PCIC -- DID:%04x VID:%04x RID:%02x Arbiter:%s",
  129. tx3927_pcicptr->did, tx3927_pcicptr->vid,
  130. tx3927_pcicptr->rid,
  131. extarb ? "External" : "Internal");
  132. channel->pci_ops = &tx3927_pci_ops;
  133. local_irq_save(flags);
  134. /* Disable External PCI Config. Access */
  135. tx3927_pcicptr->lbc = TX3927_PCIC_LBC_EPCAD;
  136. #ifdef __BIG_ENDIAN
  137. tx3927_pcicptr->lbc |= TX3927_PCIC_LBC_IBSE |
  138. TX3927_PCIC_LBC_TIBSE |
  139. TX3927_PCIC_LBC_TMFBSE | TX3927_PCIC_LBC_MSDSE;
  140. #endif
  141. /* LB->PCI mappings */
  142. tx3927_pcicptr->iomas = ~(io_size - 1);
  143. tx3927_pcicptr->ilbioma = io_base;
  144. tx3927_pcicptr->ipbioma = io_pciaddr;
  145. tx3927_pcicptr->mmas = ~(mem_size - 1);
  146. tx3927_pcicptr->ilbmma = mem_base;
  147. tx3927_pcicptr->ipbmma = mem_pciaddr;
  148. /* PCI->LB mappings */
  149. tx3927_pcicptr->iobas = 0xffffffff;
  150. tx3927_pcicptr->ioba = 0;
  151. tx3927_pcicptr->tlbioma = 0;
  152. tx3927_pcicptr->mbas = ~(sdram_size - 1);
  153. tx3927_pcicptr->mba = 0;
  154. tx3927_pcicptr->tlbmma = 0;
  155. /* Enable Direct mapping Address Space Decoder */
  156. tx3927_pcicptr->lbc |= TX3927_PCIC_LBC_ILMDE | TX3927_PCIC_LBC_ILIDE;
  157. /* Clear All Local Bus Status */
  158. tx3927_pcicptr->lbstat = TX3927_PCIC_LBIM_ALL;
  159. /* Enable All Local Bus Interrupts */
  160. tx3927_pcicptr->lbim = TX3927_PCIC_LBIM_ALL;
  161. /* Clear All PCI Status Error */
  162. tx3927_pcicptr->pcistat = TX3927_PCIC_PCISTATIM_ALL;
  163. /* Enable All PCI Status Error Interrupts */
  164. tx3927_pcicptr->pcistatim = TX3927_PCIC_PCISTATIM_ALL;
  165. /* PCIC Int => IRC IRQ10 */
  166. tx3927_pcicptr->il = TX3927_IR_PCI;
  167. /* Target Control (per errata) */
  168. tx3927_pcicptr->tc = TX3927_PCIC_TC_OF8E | TX3927_PCIC_TC_IF8E;
  169. /* Enable Bus Arbiter */
  170. if (!extarb)
  171. tx3927_pcicptr->pbapmc = TX3927_PCIC_PBAPMC_PBAEN;
  172. tx3927_pcicptr->pcicmd = PCI_COMMAND_MASTER |
  173. PCI_COMMAND_MEMORY |
  174. PCI_COMMAND_IO |
  175. PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
  176. local_irq_restore(flags);
  177. }
  178. static irqreturn_t tx3927_pcierr_interrupt(int irq, void *dev_id)
  179. {
  180. struct pt_regs *regs = get_irq_regs();
  181. if (txx9_pci_err_action != TXX9_PCI_ERR_IGNORE) {
  182. printk(KERN_WARNING "PCI error interrupt at 0x%08lx.\n",
  183. regs->cp0_epc);
  184. printk(KERN_WARNING "pcistat:%02x, lbstat:%04lx\n",
  185. tx3927_pcicptr->pcistat, tx3927_pcicptr->lbstat);
  186. }
  187. if (txx9_pci_err_action != TXX9_PCI_ERR_PANIC) {
  188. /* clear all pci errors */
  189. tx3927_pcicptr->pcistat |= TX3927_PCIC_PCISTATIM_ALL;
  190. tx3927_pcicptr->istat = TX3927_PCIC_IIM_ALL;
  191. tx3927_pcicptr->tstat = TX3927_PCIC_TIM_ALL;
  192. tx3927_pcicptr->lbstat = TX3927_PCIC_LBIM_ALL;
  193. return IRQ_HANDLED;
  194. }
  195. console_verbose();
  196. panic("PCI error.");
  197. }
  198. void __init tx3927_setup_pcierr_irq(void)
  199. {
  200. if (request_irq(TXX9_IRQ_BASE + TX3927_IR_PCI,
  201. tx3927_pcierr_interrupt,
  202. IRQF_DISABLED, "PCI error",
  203. (void *)TX3927_PCIC_REG))
  204. printk(KERN_WARNING "Failed to request irq for PCIERR\n");
  205. }