pci.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * CHRP pci routines.
  4. */
  5. #include <linux/kernel.h>
  6. #include <linux/pci.h>
  7. #include <linux/delay.h>
  8. #include <linux/string.h>
  9. #include <linux/init.h>
  10. #include <linux/pgtable.h>
  11. #include <linux/of_address.h>
  12. #include <asm/io.h>
  13. #include <asm/irq.h>
  14. #include <asm/hydra.h>
  15. #include <asm/machdep.h>
  16. #include <asm/sections.h>
  17. #include <asm/pci-bridge.h>
  18. #include <asm/grackle.h>
  19. #include <asm/rtas.h>
  20. #include "chrp.h"
  21. #include "gg2.h"
  22. /* LongTrail */
  23. void __iomem *gg2_pci_config_base;
  24. /*
  25. * The VLSI Golden Gate II has only 512K of PCI configuration space, so we
  26. * limit the bus number to 3 bits
  27. */
  28. static int gg2_read_config(struct pci_bus *bus, unsigned int devfn, int off,
  29. int len, u32 *val)
  30. {
  31. volatile void __iomem *cfg_data;
  32. struct pci_controller *hose = pci_bus_to_host(bus);
  33. if (bus->number > 7)
  34. return PCIBIOS_DEVICE_NOT_FOUND;
  35. /*
  36. * Note: the caller has already checked that off is
  37. * suitably aligned and that len is 1, 2 or 4.
  38. */
  39. cfg_data = hose->cfg_data + ((bus->number<<16) | (devfn<<8) | off);
  40. switch (len) {
  41. case 1:
  42. *val = in_8(cfg_data);
  43. break;
  44. case 2:
  45. *val = in_le16(cfg_data);
  46. break;
  47. default:
  48. *val = in_le32(cfg_data);
  49. break;
  50. }
  51. return PCIBIOS_SUCCESSFUL;
  52. }
  53. static int gg2_write_config(struct pci_bus *bus, unsigned int devfn, int off,
  54. int len, u32 val)
  55. {
  56. volatile void __iomem *cfg_data;
  57. struct pci_controller *hose = pci_bus_to_host(bus);
  58. if (bus->number > 7)
  59. return PCIBIOS_DEVICE_NOT_FOUND;
  60. /*
  61. * Note: the caller has already checked that off is
  62. * suitably aligned and that len is 1, 2 or 4.
  63. */
  64. cfg_data = hose->cfg_data + ((bus->number<<16) | (devfn<<8) | off);
  65. switch (len) {
  66. case 1:
  67. out_8(cfg_data, val);
  68. break;
  69. case 2:
  70. out_le16(cfg_data, val);
  71. break;
  72. default:
  73. out_le32(cfg_data, val);
  74. break;
  75. }
  76. return PCIBIOS_SUCCESSFUL;
  77. }
  78. static struct pci_ops gg2_pci_ops =
  79. {
  80. .read = gg2_read_config,
  81. .write = gg2_write_config,
  82. };
  83. /*
  84. * Access functions for PCI config space using RTAS calls.
  85. */
  86. static int rtas_read_config(struct pci_bus *bus, unsigned int devfn, int offset,
  87. int len, u32 *val)
  88. {
  89. struct pci_controller *hose = pci_bus_to_host(bus);
  90. unsigned long addr = (offset & 0xff) | ((devfn & 0xff) << 8)
  91. | (((bus->number - hose->first_busno) & 0xff) << 16)
  92. | (hose->global_number << 24);
  93. int ret = -1;
  94. int rval;
  95. rval = rtas_call(rtas_token("read-pci-config"), 2, 2, &ret, addr, len);
  96. *val = ret;
  97. return rval? PCIBIOS_DEVICE_NOT_FOUND: PCIBIOS_SUCCESSFUL;
  98. }
  99. static int rtas_write_config(struct pci_bus *bus, unsigned int devfn, int offset,
  100. int len, u32 val)
  101. {
  102. struct pci_controller *hose = pci_bus_to_host(bus);
  103. unsigned long addr = (offset & 0xff) | ((devfn & 0xff) << 8)
  104. | (((bus->number - hose->first_busno) & 0xff) << 16)
  105. | (hose->global_number << 24);
  106. int rval;
  107. rval = rtas_call(rtas_token("write-pci-config"), 3, 1, NULL,
  108. addr, len, val);
  109. return rval? PCIBIOS_DEVICE_NOT_FOUND: PCIBIOS_SUCCESSFUL;
  110. }
  111. static struct pci_ops rtas_pci_ops =
  112. {
  113. .read = rtas_read_config,
  114. .write = rtas_write_config,
  115. };
  116. volatile struct Hydra __iomem *Hydra = NULL;
  117. static int __init hydra_init(void)
  118. {
  119. struct device_node *np;
  120. struct resource r;
  121. np = of_find_node_by_name(NULL, "mac-io");
  122. if (np == NULL || of_address_to_resource(np, 0, &r)) {
  123. of_node_put(np);
  124. return 0;
  125. }
  126. of_node_put(np);
  127. Hydra = ioremap(r.start, resource_size(&r));
  128. printk("Hydra Mac I/O at %llx\n", (unsigned long long)r.start);
  129. printk("Hydra Feature_Control was %x",
  130. in_le32(&Hydra->Feature_Control));
  131. out_le32(&Hydra->Feature_Control, (HYDRA_FC_SCC_CELL_EN |
  132. HYDRA_FC_SCSI_CELL_EN |
  133. HYDRA_FC_SCCA_ENABLE |
  134. HYDRA_FC_SCCB_ENABLE |
  135. HYDRA_FC_ARB_BYPASS |
  136. HYDRA_FC_MPIC_ENABLE |
  137. HYDRA_FC_SLOW_SCC_PCLK |
  138. HYDRA_FC_MPIC_IS_MASTER));
  139. printk(", now %x\n", in_le32(&Hydra->Feature_Control));
  140. return 1;
  141. }
  142. #define PRG_CL_RESET_VALID 0x00010000
  143. static void __init
  144. setup_python(struct pci_controller *hose, struct device_node *dev)
  145. {
  146. u32 __iomem *reg;
  147. u32 val;
  148. struct resource r;
  149. if (of_address_to_resource(dev, 0, &r)) {
  150. printk(KERN_ERR "No address for Python PCI controller\n");
  151. return;
  152. }
  153. /* Clear the magic go-slow bit */
  154. reg = ioremap(r.start + 0xf6000, 0x40);
  155. BUG_ON(!reg);
  156. val = in_be32(&reg[12]);
  157. if (val & PRG_CL_RESET_VALID) {
  158. out_be32(&reg[12], val & ~PRG_CL_RESET_VALID);
  159. in_be32(&reg[12]);
  160. }
  161. iounmap(reg);
  162. setup_indirect_pci(hose, r.start + 0xf8000, r.start + 0xf8010, 0);
  163. }
  164. /* Marvell Discovery II based Pegasos 2 */
  165. static void __init setup_peg2(struct pci_controller *hose, struct device_node *dev)
  166. {
  167. struct device_node *root = of_find_node_by_path("/");
  168. struct device_node *rtas;
  169. rtas = of_find_node_by_name (root, "rtas");
  170. if (rtas) {
  171. hose->ops = &rtas_pci_ops;
  172. of_node_put(rtas);
  173. } else {
  174. printk ("RTAS supporting Pegasos OF not found, please upgrade"
  175. " your firmware\n");
  176. }
  177. pci_add_flags(PCI_REASSIGN_ALL_BUS);
  178. /* keep the reference to the root node */
  179. }
  180. void __init
  181. chrp_find_bridges(void)
  182. {
  183. struct device_node *dev;
  184. const int *bus_range;
  185. int len, index = -1;
  186. struct pci_controller *hose;
  187. const unsigned int *dma;
  188. const char *model, *machine;
  189. int is_longtrail = 0, is_mot = 0, is_pegasos = 0;
  190. struct device_node *root = of_find_node_by_path("/");
  191. struct resource r;
  192. /*
  193. * The PCI host bridge nodes on some machines don't have
  194. * properties to adequately identify them, so we have to
  195. * look at what sort of machine this is as well.
  196. */
  197. machine = of_get_property(root, "model", NULL);
  198. if (machine != NULL) {
  199. is_longtrail = strncmp(machine, "IBM,LongTrail", 13) == 0;
  200. is_mot = strncmp(machine, "MOT", 3) == 0;
  201. if (strncmp(machine, "Pegasos2", 8) == 0)
  202. is_pegasos = 2;
  203. else if (strncmp(machine, "Pegasos", 7) == 0)
  204. is_pegasos = 1;
  205. }
  206. for_each_child_of_node(root, dev) {
  207. if (!of_node_is_type(dev, "pci"))
  208. continue;
  209. ++index;
  210. /* The GG2 bridge on the LongTrail doesn't have an address */
  211. if (of_address_to_resource(dev, 0, &r) && !is_longtrail) {
  212. printk(KERN_WARNING "Can't use %pOF: no address\n",
  213. dev);
  214. continue;
  215. }
  216. bus_range = of_get_property(dev, "bus-range", &len);
  217. if (bus_range == NULL || len < 2 * sizeof(int)) {
  218. printk(KERN_WARNING "Can't get bus-range for %pOF\n",
  219. dev);
  220. continue;
  221. }
  222. if (bus_range[1] == bus_range[0])
  223. printk(KERN_INFO "PCI bus %d", bus_range[0]);
  224. else
  225. printk(KERN_INFO "PCI buses %d..%d",
  226. bus_range[0], bus_range[1]);
  227. printk(" controlled by %pOF", dev);
  228. if (!is_longtrail)
  229. printk(" at %llx", (unsigned long long)r.start);
  230. printk("\n");
  231. hose = pcibios_alloc_controller(dev);
  232. if (!hose) {
  233. printk("Can't allocate PCI controller structure for %pOF\n",
  234. dev);
  235. continue;
  236. }
  237. hose->first_busno = hose->self_busno = bus_range[0];
  238. hose->last_busno = bus_range[1];
  239. model = of_get_property(dev, "model", NULL);
  240. if (model == NULL)
  241. model = "<none>";
  242. if (strncmp(model, "IBM, Python", 11) == 0) {
  243. setup_python(hose, dev);
  244. } else if (is_mot
  245. || strncmp(model, "Motorola, Grackle", 17) == 0) {
  246. setup_grackle(hose);
  247. } else if (is_longtrail) {
  248. void __iomem *p = ioremap(GG2_PCI_CONFIG_BASE, 0x80000);
  249. hose->ops = &gg2_pci_ops;
  250. hose->cfg_data = p;
  251. gg2_pci_config_base = p;
  252. } else if (is_pegasos == 1) {
  253. setup_indirect_pci(hose, 0xfec00cf8, 0xfee00cfc, 0);
  254. } else if (is_pegasos == 2) {
  255. setup_peg2(hose, dev);
  256. } else if (!strncmp(model, "IBM,CPC710", 10)) {
  257. setup_indirect_pci(hose,
  258. r.start + 0x000f8000,
  259. r.start + 0x000f8010,
  260. 0);
  261. if (index == 0) {
  262. dma = of_get_property(dev, "system-dma-base",
  263. &len);
  264. if (dma && len >= sizeof(*dma)) {
  265. dma = (unsigned int *)
  266. (((unsigned long)dma) +
  267. len - sizeof(*dma));
  268. pci_dram_offset = *dma;
  269. }
  270. }
  271. } else {
  272. printk("No methods for %pOF (model %s), using RTAS\n",
  273. dev, model);
  274. hose->ops = &rtas_pci_ops;
  275. }
  276. pci_process_bridge_OF_ranges(hose, dev, index == 0);
  277. /* check the first bridge for a property that we can
  278. use to set pci_dram_offset */
  279. dma = of_get_property(dev, "ibm,dma-ranges", &len);
  280. if (index == 0 && dma != NULL && len >= 6 * sizeof(*dma)) {
  281. pci_dram_offset = dma[2] - dma[3];
  282. printk("pci_dram_offset = %lx\n", pci_dram_offset);
  283. }
  284. }
  285. of_node_put(root);
  286. /*
  287. * "Temporary" fixes for PCI devices.
  288. * -- Geert
  289. */
  290. hydra_init(); /* Mac I/O */
  291. pci_create_OF_bus_map();
  292. }
  293. /* SL82C105 IDE Control/Status Register */
  294. #define SL82C105_IDECSR 0x40
  295. /* Fixup for Winbond ATA quirk, required for briq mostly because the
  296. * 8259 is configured for level sensitive IRQ 14 and so wants the
  297. * ATA controller to be set to fully native mode or bad things
  298. * will happen.
  299. */
  300. static void chrp_pci_fixup_winbond_ata(struct pci_dev *sl82c105)
  301. {
  302. u8 progif;
  303. /* If non-briq machines need that fixup too, please speak up */
  304. if (!machine_is(chrp) || _chrp_type != _CHRP_briq)
  305. return;
  306. if ((sl82c105->class & 5) != 5) {
  307. printk("W83C553: Switching SL82C105 IDE to PCI native mode\n");
  308. /* Enable SL82C105 PCI native IDE mode */
  309. pci_read_config_byte(sl82c105, PCI_CLASS_PROG, &progif);
  310. pci_write_config_byte(sl82c105, PCI_CLASS_PROG, progif | 0x05);
  311. sl82c105->class |= 0x05;
  312. /* Disable SL82C105 second port */
  313. pci_write_config_word(sl82c105, SL82C105_IDECSR, 0x0003);
  314. /* Clear IO BARs, they will be reassigned */
  315. pci_write_config_dword(sl82c105, PCI_BASE_ADDRESS_0, 0);
  316. pci_write_config_dword(sl82c105, PCI_BASE_ADDRESS_1, 0);
  317. pci_write_config_dword(sl82c105, PCI_BASE_ADDRESS_2, 0);
  318. pci_write_config_dword(sl82c105, PCI_BASE_ADDRESS_3, 0);
  319. }
  320. }
  321. DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_WINBOND, PCI_DEVICE_ID_WINBOND_82C105,
  322. chrp_pci_fixup_winbond_ata);
  323. /* Pegasos2 firmware version 20040810 configures the built-in IDE controller
  324. * in legacy mode, but sets the PCI registers to PCI native mode.
  325. * The chip can only operate in legacy mode, so force the PCI class into legacy
  326. * mode as well. The same fixup must be done to the class-code property in
  327. * the IDE node /pci@80000000/ide@C,1
  328. */
  329. static void chrp_pci_fixup_vt8231_ata(struct pci_dev *viaide)
  330. {
  331. u8 progif;
  332. struct pci_dev *viaisa;
  333. if (!machine_is(chrp) || _chrp_type != _CHRP_Pegasos)
  334. return;
  335. if (viaide->irq != 14)
  336. return;
  337. viaisa = pci_get_device(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8231, NULL);
  338. if (!viaisa)
  339. return;
  340. dev_info(&viaide->dev, "Fixing VIA IDE, force legacy mode on\n");
  341. pci_read_config_byte(viaide, PCI_CLASS_PROG, &progif);
  342. pci_write_config_byte(viaide, PCI_CLASS_PROG, progif & ~0x5);
  343. viaide->class &= ~0x5;
  344. pci_dev_put(viaisa);
  345. }
  346. DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C586_1, chrp_pci_fixup_vt8231_ata);