pci.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  1. /*
  2. * CHRP pci routines.
  3. */
  4. #include <linux/kernel.h>
  5. #include <linux/pci.h>
  6. #include <linux/delay.h>
  7. #include <linux/string.h>
  8. #include <linux/init.h>
  9. #include <asm/io.h>
  10. #include <asm/pgtable.h>
  11. #include <asm/irq.h>
  12. #include <asm/hydra.h>
  13. #include <asm/prom.h>
  14. #include <asm/machdep.h>
  15. #include <asm/sections.h>
  16. #include <asm/pci-bridge.h>
  17. #include <asm/grackle.h>
  18. #include <asm/rtas.h>
  19. #include "chrp.h"
  20. #include "gg2.h"
  21. /* LongTrail */
  22. void __iomem *gg2_pci_config_base;
  23. /*
  24. * The VLSI Golden Gate II has only 512K of PCI configuration space, so we
  25. * limit the bus number to 3 bits
  26. */
  27. int gg2_read_config(struct pci_bus *bus, unsigned int devfn, int off,
  28. int len, u32 *val)
  29. {
  30. volatile void __iomem *cfg_data;
  31. struct pci_controller *hose = pci_bus_to_host(bus);
  32. if (bus->number > 7)
  33. return PCIBIOS_DEVICE_NOT_FOUND;
  34. /*
  35. * Note: the caller has already checked that off is
  36. * suitably aligned and that len is 1, 2 or 4.
  37. */
  38. cfg_data = hose->cfg_data + ((bus->number<<16) | (devfn<<8) | off);
  39. switch (len) {
  40. case 1:
  41. *val = in_8(cfg_data);
  42. break;
  43. case 2:
  44. *val = in_le16(cfg_data);
  45. break;
  46. default:
  47. *val = in_le32(cfg_data);
  48. break;
  49. }
  50. return PCIBIOS_SUCCESSFUL;
  51. }
  52. int gg2_write_config(struct pci_bus *bus, unsigned int devfn, int off,
  53. int len, u32 val)
  54. {
  55. volatile void __iomem *cfg_data;
  56. struct pci_controller *hose = pci_bus_to_host(bus);
  57. if (bus->number > 7)
  58. return PCIBIOS_DEVICE_NOT_FOUND;
  59. /*
  60. * Note: the caller has already checked that off is
  61. * suitably aligned and that len is 1, 2 or 4.
  62. */
  63. cfg_data = hose->cfg_data + ((bus->number<<16) | (devfn<<8) | off);
  64. switch (len) {
  65. case 1:
  66. out_8(cfg_data, val);
  67. break;
  68. case 2:
  69. out_le16(cfg_data, val);
  70. break;
  71. default:
  72. out_le32(cfg_data, val);
  73. break;
  74. }
  75. return PCIBIOS_SUCCESSFUL;
  76. }
  77. static struct pci_ops gg2_pci_ops =
  78. {
  79. .read = gg2_read_config,
  80. .write = gg2_write_config,
  81. };
  82. /*
  83. * Access functions for PCI config space using RTAS calls.
  84. */
  85. int rtas_read_config(struct pci_bus *bus, unsigned int devfn, int offset,
  86. int len, u32 *val)
  87. {
  88. struct pci_controller *hose = pci_bus_to_host(bus);
  89. unsigned long addr = (offset & 0xff) | ((devfn & 0xff) << 8)
  90. | (((bus->number - hose->first_busno) & 0xff) << 16)
  91. | (hose->global_number << 24);
  92. int ret = -1;
  93. int rval;
  94. rval = rtas_call(rtas_token("read-pci-config"), 2, 2, &ret, addr, len);
  95. *val = ret;
  96. return rval? PCIBIOS_DEVICE_NOT_FOUND: PCIBIOS_SUCCESSFUL;
  97. }
  98. int rtas_write_config(struct pci_bus *bus, unsigned int devfn, int offset,
  99. int len, u32 val)
  100. {
  101. struct pci_controller *hose = pci_bus_to_host(bus);
  102. unsigned long addr = (offset & 0xff) | ((devfn & 0xff) << 8)
  103. | (((bus->number - hose->first_busno) & 0xff) << 16)
  104. | (hose->global_number << 24);
  105. int rval;
  106. rval = rtas_call(rtas_token("write-pci-config"), 3, 1, NULL,
  107. addr, len, val);
  108. return rval? PCIBIOS_DEVICE_NOT_FOUND: PCIBIOS_SUCCESSFUL;
  109. }
  110. static struct pci_ops rtas_pci_ops =
  111. {
  112. .read = rtas_read_config,
  113. .write = rtas_write_config,
  114. };
  115. volatile struct Hydra __iomem *Hydra = NULL;
  116. int __init
  117. 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 (dev = root->child; dev != NULL; dev = dev->sibling) {
  207. if (dev->type == NULL || strcmp(dev->type, "pci") != 0)
  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 %s: no address\n",
  213. dev->full_name);
  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 %s\n",
  219. dev->full_name);
  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 %s", dev->full_name);
  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 %s\n",
  234. dev->full_name);
  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 %s (model %s), using RTAS\n",
  273. dev->full_name, 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. /* SL82C105 IDE Control/Status Register */
  288. #define SL82C105_IDECSR 0x40
  289. /* Fixup for Winbond ATA quirk, required for briq mostly because the
  290. * 8259 is configured for level sensitive IRQ 14 and so wants the
  291. * ATA controller to be set to fully native mode or bad things
  292. * will happen.
  293. */
  294. static void chrp_pci_fixup_winbond_ata(struct pci_dev *sl82c105)
  295. {
  296. u8 progif;
  297. /* If non-briq machines need that fixup too, please speak up */
  298. if (!machine_is(chrp) || _chrp_type != _CHRP_briq)
  299. return;
  300. if ((sl82c105->class & 5) != 5) {
  301. printk("W83C553: Switching SL82C105 IDE to PCI native mode\n");
  302. /* Enable SL82C105 PCI native IDE mode */
  303. pci_read_config_byte(sl82c105, PCI_CLASS_PROG, &progif);
  304. pci_write_config_byte(sl82c105, PCI_CLASS_PROG, progif | 0x05);
  305. sl82c105->class |= 0x05;
  306. /* Disable SL82C105 second port */
  307. pci_write_config_word(sl82c105, SL82C105_IDECSR, 0x0003);
  308. /* Clear IO BARs, they will be reassigned */
  309. pci_write_config_dword(sl82c105, PCI_BASE_ADDRESS_0, 0);
  310. pci_write_config_dword(sl82c105, PCI_BASE_ADDRESS_1, 0);
  311. pci_write_config_dword(sl82c105, PCI_BASE_ADDRESS_2, 0);
  312. pci_write_config_dword(sl82c105, PCI_BASE_ADDRESS_3, 0);
  313. }
  314. }
  315. DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_WINBOND, PCI_DEVICE_ID_WINBOND_82C105,
  316. chrp_pci_fixup_winbond_ata);
  317. /* Pegasos2 firmware version 20040810 configures the built-in IDE controller
  318. * in legacy mode, but sets the PCI registers to PCI native mode.
  319. * The chip can only operate in legacy mode, so force the PCI class into legacy
  320. * mode as well. The same fixup must be done to the class-code property in
  321. * the IDE node /pci@80000000/ide@C,1
  322. */
  323. static void chrp_pci_fixup_vt8231_ata(struct pci_dev *viaide)
  324. {
  325. u8 progif;
  326. struct pci_dev *viaisa;
  327. if (!machine_is(chrp) || _chrp_type != _CHRP_Pegasos)
  328. return;
  329. if (viaide->irq != 14)
  330. return;
  331. viaisa = pci_get_device(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_8231, NULL);
  332. if (!viaisa)
  333. return;
  334. dev_info(&viaide->dev, "Fixing VIA IDE, force legacy mode on\n");
  335. pci_read_config_byte(viaide, PCI_CLASS_PROG, &progif);
  336. pci_write_config_byte(viaide, PCI_CLASS_PROG, progif & ~0x5);
  337. viaide->class &= ~0x5;
  338. pci_dev_put(viaisa);
  339. }
  340. DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_VIA, PCI_DEVICE_ID_VIA_82C586_1, chrp_pci_fixup_vt8231_ata);