pci-bcm1480.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. /*
  2. * Copyright (C) 2001,2002,2005 Broadcom Corporation
  3. * Copyright (C) 2004 by Ralf Baechle (ralf@linux-mips.org)
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version 2
  8. * of the License, or (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18. */
  19. /*
  20. * BCM1x80/1x55-specific PCI support
  21. *
  22. * This module provides the glue between Linux's PCI subsystem
  23. * and the hardware. We basically provide glue for accessing
  24. * configuration space, and set up the translation for I/O
  25. * space accesses.
  26. *
  27. * To access configuration space, we use ioremap. In the 32-bit
  28. * kernel, this consumes either 4 or 8 page table pages, and 16MB of
  29. * kernel mapped memory. Hopefully neither of these should be a huge
  30. * problem.
  31. *
  32. * XXX: AT THIS TIME, ONLY the NATIVE PCI-X INTERFACE IS SUPPORTED.
  33. */
  34. #include <linux/types.h>
  35. #include <linux/pci.h>
  36. #include <linux/kernel.h>
  37. #include <linux/init.h>
  38. #include <linux/mm.h>
  39. #include <linux/console.h>
  40. #include <linux/tty.h>
  41. #include <asm/sibyte/bcm1480_regs.h>
  42. #include <asm/sibyte/bcm1480_scd.h>
  43. #include <asm/sibyte/board.h>
  44. #include <asm/io.h>
  45. /*
  46. * Macros for calculating offsets into config space given a device
  47. * structure or dev/fun/reg
  48. */
  49. #define CFGOFFSET(bus, devfn, where) (((bus)<<16)+((devfn)<<8)+(where))
  50. #define CFGADDR(bus, devfn, where) CFGOFFSET((bus)->number, (devfn), where)
  51. static void *cfg_space;
  52. #define PCI_BUS_ENABLED 1
  53. #define PCI_DEVICE_MODE 2
  54. static int bcm1480_bus_status;
  55. #define PCI_BRIDGE_DEVICE 0
  56. /*
  57. * Read/write 32-bit values in config space.
  58. */
  59. static inline u32 READCFG32(u32 addr)
  60. {
  61. return *(u32 *)(cfg_space + (addr&~3));
  62. }
  63. static inline void WRITECFG32(u32 addr, u32 data)
  64. {
  65. *(u32 *)(cfg_space + (addr & ~3)) = data;
  66. }
  67. int pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
  68. {
  69. if (pin == 0)
  70. return -1;
  71. return K_BCM1480_INT_PCI_INTA - 1 + pin;
  72. }
  73. /* Do platform specific device initialization at pci_enable_device() time */
  74. int pcibios_plat_dev_init(struct pci_dev *dev)
  75. {
  76. return 0;
  77. }
  78. /*
  79. * Some checks before doing config cycles:
  80. * In PCI Device Mode, hide everything on bus 0 except the LDT host
  81. * bridge. Otherwise, access is controlled by bridge MasterEn bits.
  82. */
  83. static int bcm1480_pci_can_access(struct pci_bus *bus, int devfn)
  84. {
  85. u32 devno;
  86. if (!(bcm1480_bus_status & (PCI_BUS_ENABLED | PCI_DEVICE_MODE)))
  87. return 0;
  88. if (bus->number == 0) {
  89. devno = PCI_SLOT(devfn);
  90. if (bcm1480_bus_status & PCI_DEVICE_MODE)
  91. return 0;
  92. else
  93. return 1;
  94. } else
  95. return 1;
  96. }
  97. /*
  98. * Read/write access functions for various sizes of values
  99. * in config space. Return all 1's for disallowed accesses
  100. * for a kludgy but adequate simulation of master aborts.
  101. */
  102. static int bcm1480_pcibios_read(struct pci_bus *bus, unsigned int devfn,
  103. int where, int size, u32 * val)
  104. {
  105. u32 data = 0;
  106. if ((size == 2) && (where & 1))
  107. return PCIBIOS_BAD_REGISTER_NUMBER;
  108. else if ((size == 4) && (where & 3))
  109. return PCIBIOS_BAD_REGISTER_NUMBER;
  110. if (bcm1480_pci_can_access(bus, devfn))
  111. data = READCFG32(CFGADDR(bus, devfn, where));
  112. else
  113. data = 0xFFFFFFFF;
  114. if (size == 1)
  115. *val = (data >> ((where & 3) << 3)) & 0xff;
  116. else if (size == 2)
  117. *val = (data >> ((where & 3) << 3)) & 0xffff;
  118. else
  119. *val = data;
  120. return PCIBIOS_SUCCESSFUL;
  121. }
  122. static int bcm1480_pcibios_write(struct pci_bus *bus, unsigned int devfn,
  123. int where, int size, u32 val)
  124. {
  125. u32 cfgaddr = CFGADDR(bus, devfn, where);
  126. u32 data = 0;
  127. if ((size == 2) && (where & 1))
  128. return PCIBIOS_BAD_REGISTER_NUMBER;
  129. else if ((size == 4) && (where & 3))
  130. return PCIBIOS_BAD_REGISTER_NUMBER;
  131. if (!bcm1480_pci_can_access(bus, devfn))
  132. return PCIBIOS_BAD_REGISTER_NUMBER;
  133. data = READCFG32(cfgaddr);
  134. if (size == 1)
  135. data = (data & ~(0xff << ((where & 3) << 3))) |
  136. (val << ((where & 3) << 3));
  137. else if (size == 2)
  138. data = (data & ~(0xffff << ((where & 3) << 3))) |
  139. (val << ((where & 3) << 3));
  140. else
  141. data = val;
  142. WRITECFG32(cfgaddr, data);
  143. return PCIBIOS_SUCCESSFUL;
  144. }
  145. struct pci_ops bcm1480_pci_ops = {
  146. bcm1480_pcibios_read,
  147. bcm1480_pcibios_write,
  148. };
  149. static struct resource bcm1480_mem_resource = {
  150. .name = "BCM1480 PCI MEM",
  151. .start = A_BCM1480_PHYS_PCI_MEM_MATCH_BYTES,
  152. .end = A_BCM1480_PHYS_PCI_MEM_MATCH_BYTES + 0xfffffffUL,
  153. .flags = IORESOURCE_MEM,
  154. };
  155. static struct resource bcm1480_io_resource = {
  156. .name = "BCM1480 PCI I/O",
  157. .start = A_BCM1480_PHYS_PCI_IO_MATCH_BYTES,
  158. .end = A_BCM1480_PHYS_PCI_IO_MATCH_BYTES + 0x1ffffffUL,
  159. .flags = IORESOURCE_IO,
  160. };
  161. struct pci_controller bcm1480_controller = {
  162. .pci_ops = &bcm1480_pci_ops,
  163. .mem_resource = &bcm1480_mem_resource,
  164. .io_resource = &bcm1480_io_resource,
  165. .io_offset = A_BCM1480_PHYS_PCI_IO_MATCH_BYTES,
  166. };
  167. static int __init bcm1480_pcibios_init(void)
  168. {
  169. uint32_t cmdreg;
  170. uint64_t reg;
  171. /* CFE will assign PCI resources */
  172. pci_set_flags(PCI_PROBE_ONLY);
  173. /* Avoid ISA compat ranges. */
  174. PCIBIOS_MIN_IO = 0x00008000UL;
  175. PCIBIOS_MIN_MEM = 0x01000000UL;
  176. /* Set I/O resource limits. - unlimited for now to accommodate HT */
  177. ioport_resource.end = 0xffffffffUL;
  178. iomem_resource.end = 0xffffffffUL;
  179. cfg_space = ioremap(A_BCM1480_PHYS_PCI_CFG_MATCH_BITS, 16*1024*1024);
  180. /*
  181. * See if the PCI bus has been configured by the firmware.
  182. */
  183. reg = __raw_readq(IOADDR(A_SCD_SYSTEM_CFG));
  184. if (!(reg & M_BCM1480_SYS_PCI_HOST)) {
  185. bcm1480_bus_status |= PCI_DEVICE_MODE;
  186. } else {
  187. cmdreg = READCFG32(CFGOFFSET(0, PCI_DEVFN(PCI_BRIDGE_DEVICE, 0),
  188. PCI_COMMAND));
  189. if (!(cmdreg & PCI_COMMAND_MASTER)) {
  190. printk
  191. ("PCI: Skipping PCI probe. Bus is not initialized.\n");
  192. iounmap(cfg_space);
  193. return 1; /* XXX */
  194. }
  195. bcm1480_bus_status |= PCI_BUS_ENABLED;
  196. }
  197. /* turn on ExpMemEn */
  198. cmdreg = READCFG32(CFGOFFSET(0, PCI_DEVFN(PCI_BRIDGE_DEVICE, 0), 0x40));
  199. WRITECFG32(CFGOFFSET(0, PCI_DEVFN(PCI_BRIDGE_DEVICE, 0), 0x40),
  200. cmdreg | 0x10);
  201. cmdreg = READCFG32(CFGOFFSET(0, PCI_DEVFN(PCI_BRIDGE_DEVICE, 0), 0x40));
  202. /*
  203. * Establish mappings in KSEG2 (kernel virtual) to PCI I/O
  204. * space. Use "match bytes" policy to make everything look
  205. * little-endian. So, you need to also set
  206. * CONFIG_SWAP_IO_SPACE, but this is the combination that
  207. * works correctly with most of Linux's drivers.
  208. * XXX ehs: Should this happen in PCI Device mode?
  209. */
  210. bcm1480_controller.io_map_base = (unsigned long)
  211. ioremap(A_BCM1480_PHYS_PCI_IO_MATCH_BYTES, 65536);
  212. bcm1480_controller.io_map_base -= bcm1480_controller.io_offset;
  213. set_io_port_base(bcm1480_controller.io_map_base);
  214. register_pci_controller(&bcm1480_controller);
  215. #ifdef CONFIG_VGA_CONSOLE
  216. take_over_console(&vga_con, 0, MAX_NR_CONSOLES-1, 1);
  217. #endif
  218. return 0;
  219. }
  220. arch_initcall(bcm1480_pcibios_init);