ops-tx3927.c 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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 <asm/addrspace.h>
  41. #include <asm/txx9/tx3927.h>
  42. static inline int mkaddr(unsigned char bus, unsigned char dev_fn,
  43. unsigned char where)
  44. {
  45. if (bus == 0 && dev_fn >= PCI_DEVFN(TX3927_PCIC_MAX_DEVNU, 0))
  46. return PCIBIOS_DEVICE_NOT_FOUND;
  47. tx3927_pcicptr->ica = ((bus & 0xff) << 0x10) |
  48. ((dev_fn & 0xff) << 0x08) |
  49. (where & 0xfc);
  50. /* clear M_ABORT and Disable M_ABORT Int. */
  51. tx3927_pcicptr->pcistat |= PCI_STATUS_REC_MASTER_ABORT;
  52. tx3927_pcicptr->pcistatim &= ~PCI_STATUS_REC_MASTER_ABORT;
  53. return PCIBIOS_SUCCESSFUL;
  54. }
  55. static inline int check_abort(void)
  56. {
  57. if (tx3927_pcicptr->pcistat & PCI_STATUS_REC_MASTER_ABORT)
  58. tx3927_pcicptr->pcistat |= PCI_STATUS_REC_MASTER_ABORT;
  59. tx3927_pcicptr->pcistatim |= PCI_STATUS_REC_MASTER_ABORT;
  60. return PCIBIOS_DEVICE_NOT_FOUND;
  61. return PCIBIOS_SUCCESSFUL;
  62. }
  63. static int tx3927_pci_read_config(struct pci_bus *bus, unsigned int devfn,
  64. int where, int size, u32 * val)
  65. {
  66. int ret;
  67. ret = mkaddr(bus->number, devfn, where);
  68. if (ret)
  69. return ret;
  70. switch (size) {
  71. case 1:
  72. *val = *(volatile u8 *) ((unsigned long) & tx3927_pcicptr->icd | (where & 3));
  73. break;
  74. case 2:
  75. *val = le16_to_cpu(*(volatile u16 *) ((unsigned long) & tx3927_pcicptr->icd | (where & 3)));
  76. break;
  77. case 4:
  78. *val = le32_to_cpu(tx3927_pcicptr->icd);
  79. break;
  80. }
  81. return check_abort();
  82. }
  83. static int tx3927_pci_write_config(struct pci_bus *bus, unsigned int devfn,
  84. int where, int size, u32 val)
  85. {
  86. int ret;
  87. ret = mkaddr(bus->number, devfn, where);
  88. if (ret)
  89. return ret;
  90. switch (size) {
  91. case 1:
  92. *(volatile u8 *) ((unsigned long) & tx3927_pcicptr->icd | (where & 3)) = val;
  93. break;
  94. case 2:
  95. *(volatile u16 *) ((unsigned long) & tx3927_pcicptr->icd | (where & 2)) =
  96. cpu_to_le16(val);
  97. break;
  98. case 4:
  99. tx3927_pcicptr->icd = cpu_to_le32(val);
  100. }
  101. if (tx3927_pcicptr->pcistat & PCI_STATUS_REC_MASTER_ABORT)
  102. tx3927_pcicptr->pcistat |= PCI_STATUS_REC_MASTER_ABORT;
  103. tx3927_pcicptr->pcistatim |= PCI_STATUS_REC_MASTER_ABORT;
  104. return PCIBIOS_DEVICE_NOT_FOUND;
  105. return check_abort();
  106. }
  107. static struct pci_ops tx3927_pci_ops = {
  108. .read = tx3927_pci_read_config,
  109. .write = tx3927_pci_write_config,
  110. };
  111. void __init tx3927_pcic_setup(struct pci_controller *channel,
  112. unsigned long sdram_size, int extarb)
  113. {
  114. unsigned long flags;
  115. unsigned long io_base =
  116. channel->io_resource->start + mips_io_port_base - IO_BASE;
  117. unsigned long io_size =
  118. channel->io_resource->end - channel->io_resource->start;
  119. unsigned long io_pciaddr =
  120. channel->io_resource->start - channel->io_offset;
  121. unsigned long mem_base =
  122. channel->mem_resource->start;
  123. unsigned long mem_size =
  124. channel->mem_resource->end - channel->mem_resource->start;
  125. unsigned long mem_pciaddr =
  126. channel->mem_resource->start - channel->mem_offset;
  127. printk(KERN_INFO "TX3927 PCIC -- DID:%04x VID:%04x RID:%02x Arbiter:%s",
  128. tx3927_pcicptr->did, tx3927_pcicptr->vid,
  129. tx3927_pcicptr->rid,
  130. extarb ? "External" : "Internal");
  131. channel->pci_ops = &tx3927_pci_ops;
  132. local_irq_save(flags);
  133. /* Disable External PCI Config. Access */
  134. tx3927_pcicptr->lbc = TX3927_PCIC_LBC_EPCAD;
  135. #ifdef __BIG_ENDIAN
  136. tx3927_pcicptr->lbc |= TX3927_PCIC_LBC_IBSE |
  137. TX3927_PCIC_LBC_TIBSE |
  138. TX3927_PCIC_LBC_TMFBSE | TX3927_PCIC_LBC_MSDSE;
  139. #endif
  140. /* LB->PCI mappings */
  141. tx3927_pcicptr->iomas = ~(io_size - 1);
  142. tx3927_pcicptr->ilbioma = io_base;
  143. tx3927_pcicptr->ipbioma = io_pciaddr;
  144. tx3927_pcicptr->mmas = ~(mem_size - 1);
  145. tx3927_pcicptr->ilbmma = mem_base;
  146. tx3927_pcicptr->ipbmma = mem_pciaddr;
  147. /* PCI->LB mappings */
  148. tx3927_pcicptr->iobas = 0xffffffff;
  149. tx3927_pcicptr->ioba = 0;
  150. tx3927_pcicptr->tlbioma = 0;
  151. tx3927_pcicptr->mbas = ~(sdram_size - 1);
  152. tx3927_pcicptr->mba = 0;
  153. tx3927_pcicptr->tlbmma = 0;
  154. /* Enable Direct mapping Address Space Decoder */
  155. tx3927_pcicptr->lbc |= TX3927_PCIC_LBC_ILMDE | TX3927_PCIC_LBC_ILIDE;
  156. /* Clear All Local Bus Status */
  157. tx3927_pcicptr->lbstat = TX3927_PCIC_LBIM_ALL;
  158. /* Enable All Local Bus Interrupts */
  159. tx3927_pcicptr->lbim = TX3927_PCIC_LBIM_ALL;
  160. /* Clear All PCI Status Error */
  161. tx3927_pcicptr->pcistat = TX3927_PCIC_PCISTATIM_ALL;
  162. /* Enable All PCI Status Error Interrupts */
  163. tx3927_pcicptr->pcistatim = TX3927_PCIC_PCISTATIM_ALL;
  164. /* PCIC Int => IRC IRQ10 */
  165. tx3927_pcicptr->il = TX3927_IR_PCI;
  166. /* Target Control (per errata) */
  167. tx3927_pcicptr->tc = TX3927_PCIC_TC_OF8E | TX3927_PCIC_TC_IF8E;
  168. /* Enable Bus Arbiter */
  169. if (!extarb)
  170. tx3927_pcicptr->pbapmc = TX3927_PCIC_PBAPMC_PBAEN;
  171. tx3927_pcicptr->pcicmd = PCI_COMMAND_MASTER |
  172. PCI_COMMAND_MEMORY |
  173. PCI_COMMAND_IO |
  174. PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
  175. local_irq_restore(flags);
  176. }