xref: /linux/arch/powerpc/sysdev/fsl_pci.c (revision 185000fc556372b7fb7f26516c325f212030dbd3)
1 /*
2  * MPC85xx/86xx PCI/PCIE support routing.
3  *
4  * Copyright 2007 Freescale Semiconductor, Inc
5  *
6  * Initial author: Xianghua Xiao <x.xiao@freescale.com>
7  * Recode: ZHANG WEI <wei.zhang@freescale.com>
8  * Rewrite the routing for Frescale PCI and PCI Express
9  * 	Roy Zang <tie-fei.zang@freescale.com>
10  *
11  * This program is free software; you can redistribute  it and/or modify it
12  * under  the terms of  the GNU General  Public License as published by the
13  * Free Software Foundation;  either version 2 of the  License, or (at your
14  * option) any later version.
15  */
16 #include <linux/kernel.h>
17 #include <linux/pci.h>
18 #include <linux/delay.h>
19 #include <linux/string.h>
20 #include <linux/init.h>
21 #include <linux/bootmem.h>
22 
23 #include <asm/io.h>
24 #include <asm/prom.h>
25 #include <asm/pci-bridge.h>
26 #include <asm/machdep.h>
27 #include <sysdev/fsl_soc.h>
28 #include <sysdev/fsl_pci.h>
29 
30 /* atmu setup for fsl pci/pcie controller */
31 void __init setup_pci_atmu(struct pci_controller *hose, struct resource *rsrc)
32 {
33 	struct ccsr_pci __iomem *pci;
34 	int i;
35 
36 	pr_debug("PCI memory map start 0x%016llx, size 0x%016llx\n",
37 		    (u64)rsrc->start, (u64)rsrc->end - (u64)rsrc->start + 1);
38 	pci = ioremap(rsrc->start, rsrc->end - rsrc->start + 1);
39 
40 	/* Disable all windows (except powar0 since its ignored) */
41 	for(i = 1; i < 5; i++)
42 		out_be32(&pci->pow[i].powar, 0);
43 	for(i = 0; i < 3; i++)
44 		out_be32(&pci->piw[i].piwar, 0);
45 
46 	/* Setup outbound MEM window */
47 	for(i = 0; i < 3; i++)
48 		if (hose->mem_resources[i].flags & IORESOURCE_MEM){
49 			resource_size_t pci_addr_start =
50 				 hose->mem_resources[i].start -
51 				 hose->pci_mem_offset;
52 			pr_debug("PCI MEM resource start 0x%016llx, size 0x%016llx.\n",
53 				(u64)hose->mem_resources[i].start,
54 				(u64)hose->mem_resources[i].end
55 				  - (u64)hose->mem_resources[i].start + 1);
56 			out_be32(&pci->pow[i+1].potar, (pci_addr_start >> 12));
57 			out_be32(&pci->pow[i+1].potear, 0);
58 			out_be32(&pci->pow[i+1].powbar,
59 				(hose->mem_resources[i].start >> 12));
60 			/* Enable, Mem R/W */
61 			out_be32(&pci->pow[i+1].powar, 0x80044000
62 				| (__ilog2(hose->mem_resources[i].end
63 				- hose->mem_resources[i].start + 1) - 1));
64 		}
65 
66 	/* Setup outbound IO window */
67 	if (hose->io_resource.flags & IORESOURCE_IO){
68 		pr_debug("PCI IO resource start 0x%016llx, size 0x%016llx, "
69 			 "phy base 0x%016llx.\n",
70 			(u64)hose->io_resource.start,
71 			(u64)hose->io_resource.end - (u64)hose->io_resource.start + 1,
72 			(u64)hose->io_base_phys);
73 		out_be32(&pci->pow[i+1].potar, (hose->io_resource.start >> 12));
74 		out_be32(&pci->pow[i+1].potear, 0);
75 		out_be32(&pci->pow[i+1].powbar, (hose->io_base_phys >> 12));
76 		/* Enable, IO R/W */
77 		out_be32(&pci->pow[i+1].powar, 0x80088000
78 			| (__ilog2(hose->io_resource.end
79 			- hose->io_resource.start + 1) - 1));
80 	}
81 
82 	/* Setup 2G inbound Memory Window @ 1 */
83 	out_be32(&pci->piw[2].pitar, 0x00000000);
84 	out_be32(&pci->piw[2].piwbar,0x00000000);
85 	out_be32(&pci->piw[2].piwar, PIWAR_2G);
86 }
87 
88 void __init setup_pci_cmd(struct pci_controller *hose)
89 {
90 	u16 cmd;
91 	int cap_x;
92 
93 	early_read_config_word(hose, 0, 0, PCI_COMMAND, &cmd);
94 	cmd |= PCI_COMMAND_SERR | PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY
95 		| PCI_COMMAND_IO;
96 	early_write_config_word(hose, 0, 0, PCI_COMMAND, cmd);
97 
98 	cap_x = early_find_capability(hose, 0, 0, PCI_CAP_ID_PCIX);
99 	if (cap_x) {
100 		int pci_x_cmd = cap_x + PCI_X_CMD;
101 		cmd = PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ
102 			| PCI_X_CMD_ERO | PCI_X_CMD_DPERR_E;
103 		early_write_config_word(hose, 0, 0, pci_x_cmd, cmd);
104 	} else {
105 		early_write_config_byte(hose, 0, 0, PCI_LATENCY_TIMER, 0x80);
106 	}
107 }
108 
109 static void __init setup_pci_pcsrbar(struct pci_controller *hose)
110 {
111 #ifdef CONFIG_PCI_MSI
112 	phys_addr_t immr_base;
113 
114 	immr_base = get_immrbase();
115 	early_write_config_dword(hose, 0, 0, PCI_BASE_ADDRESS_0, immr_base);
116 #endif
117 }
118 
119 static int fsl_pcie_bus_fixup;
120 
121 static void __init quirk_fsl_pcie_header(struct pci_dev *dev)
122 {
123 	/* if we aren't a PCIe don't bother */
124 	if (!pci_find_capability(dev, PCI_CAP_ID_EXP))
125 		return ;
126 
127 	dev->class = PCI_CLASS_BRIDGE_PCI << 8;
128 	fsl_pcie_bus_fixup = 1;
129 	return ;
130 }
131 
132 int __init fsl_pcie_check_link(struct pci_controller *hose)
133 {
134 	u32 val;
135 	early_read_config_dword(hose, 0, 0, PCIE_LTSSM, &val);
136 	if (val < PCIE_LTSSM_L0)
137 		return 1;
138 	return 0;
139 }
140 
141 void fsl_pcibios_fixup_bus(struct pci_bus *bus)
142 {
143 	struct pci_controller *hose = (struct pci_controller *) bus->sysdata;
144 	int i;
145 
146 	if ((bus->parent == hose->bus) &&
147 	    ((fsl_pcie_bus_fixup &&
148 	      early_find_capability(hose, 0, 0, PCI_CAP_ID_EXP)) ||
149 	     (hose->indirect_type & PPC_INDIRECT_TYPE_NO_PCIE_LINK)))
150 	{
151 		for (i = 0; i < 4; ++i) {
152 			struct resource *res = bus->resource[i];
153 			struct resource *par = bus->parent->resource[i];
154 			if (res) {
155 				res->start = 0;
156 				res->end   = 0;
157 				res->flags = 0;
158 			}
159 			if (res && par) {
160 				res->start = par->start;
161 				res->end   = par->end;
162 				res->flags = par->flags;
163 			}
164 		}
165 	}
166 }
167 
168 int __init fsl_add_bridge(struct device_node *dev, int is_primary)
169 {
170 	int len;
171 	struct pci_controller *hose;
172 	struct resource rsrc;
173 	const int *bus_range;
174 
175 	pr_debug("Adding PCI host bridge %s\n", dev->full_name);
176 
177 	/* Fetch host bridge registers address */
178 	if (of_address_to_resource(dev, 0, &rsrc)) {
179 		printk(KERN_WARNING "Can't get pci register base!");
180 		return -ENOMEM;
181 	}
182 
183 	/* Get bus range if any */
184 	bus_range = of_get_property(dev, "bus-range", &len);
185 	if (bus_range == NULL || len < 2 * sizeof(int))
186 		printk(KERN_WARNING "Can't get bus-range for %s, assume"
187 			" bus 0\n", dev->full_name);
188 
189 	ppc_pci_flags |= PPC_PCI_REASSIGN_ALL_BUS;
190 	hose = pcibios_alloc_controller(dev);
191 	if (!hose)
192 		return -ENOMEM;
193 
194 	hose->first_busno = bus_range ? bus_range[0] : 0x0;
195 	hose->last_busno = bus_range ? bus_range[1] : 0xff;
196 
197 	setup_indirect_pci(hose, rsrc.start, rsrc.start + 0x4,
198 		PPC_INDIRECT_TYPE_BIG_ENDIAN);
199 	setup_pci_cmd(hose);
200 
201 	/* check PCI express link status */
202 	if (early_find_capability(hose, 0, 0, PCI_CAP_ID_EXP)) {
203 		hose->indirect_type |= PPC_INDIRECT_TYPE_EXT_REG |
204 			PPC_INDIRECT_TYPE_SURPRESS_PRIMARY_BUS;
205 		if (fsl_pcie_check_link(hose))
206 			hose->indirect_type |= PPC_INDIRECT_TYPE_NO_PCIE_LINK;
207 	}
208 
209 	printk(KERN_INFO "Found FSL PCI host bridge at 0x%016llx. "
210 		"Firmware bus number: %d->%d\n",
211 		(unsigned long long)rsrc.start, hose->first_busno,
212 		hose->last_busno);
213 
214 	pr_debug(" ->Hose at 0x%p, cfg_addr=0x%p,cfg_data=0x%p\n",
215 		hose, hose->cfg_addr, hose->cfg_data);
216 
217 	/* Interpret the "ranges" property */
218 	/* This also maps the I/O region and sets isa_io/mem_base */
219 	pci_process_bridge_OF_ranges(hose, dev, is_primary);
220 
221 	/* Setup PEX window registers */
222 	setup_pci_atmu(hose, &rsrc);
223 
224 	/* Setup PEXCSRBAR */
225 	setup_pci_pcsrbar(hose);
226 	return 0;
227 }
228 
229 DECLARE_PCI_FIXUP_HEADER(0x1957, PCI_DEVICE_ID_MPC8548E, quirk_fsl_pcie_header);
230 DECLARE_PCI_FIXUP_HEADER(0x1957, PCI_DEVICE_ID_MPC8548, quirk_fsl_pcie_header);
231 DECLARE_PCI_FIXUP_HEADER(0x1957, PCI_DEVICE_ID_MPC8543E, quirk_fsl_pcie_header);
232 DECLARE_PCI_FIXUP_HEADER(0x1957, PCI_DEVICE_ID_MPC8543, quirk_fsl_pcie_header);
233 DECLARE_PCI_FIXUP_HEADER(0x1957, PCI_DEVICE_ID_MPC8547E, quirk_fsl_pcie_header);
234 DECLARE_PCI_FIXUP_HEADER(0x1957, PCI_DEVICE_ID_MPC8545E, quirk_fsl_pcie_header);
235 DECLARE_PCI_FIXUP_HEADER(0x1957, PCI_DEVICE_ID_MPC8545, quirk_fsl_pcie_header);
236 DECLARE_PCI_FIXUP_HEADER(0x1957, PCI_DEVICE_ID_MPC8568E, quirk_fsl_pcie_header);
237 DECLARE_PCI_FIXUP_HEADER(0x1957, PCI_DEVICE_ID_MPC8568, quirk_fsl_pcie_header);
238 DECLARE_PCI_FIXUP_HEADER(0x1957, PCI_DEVICE_ID_MPC8567E, quirk_fsl_pcie_header);
239 DECLARE_PCI_FIXUP_HEADER(0x1957, PCI_DEVICE_ID_MPC8567, quirk_fsl_pcie_header);
240 DECLARE_PCI_FIXUP_HEADER(0x1957, PCI_DEVICE_ID_MPC8533E, quirk_fsl_pcie_header);
241 DECLARE_PCI_FIXUP_HEADER(0x1957, PCI_DEVICE_ID_MPC8533, quirk_fsl_pcie_header);
242 DECLARE_PCI_FIXUP_HEADER(0x1957, PCI_DEVICE_ID_MPC8544E, quirk_fsl_pcie_header);
243 DECLARE_PCI_FIXUP_HEADER(0x1957, PCI_DEVICE_ID_MPC8544, quirk_fsl_pcie_header);
244 DECLARE_PCI_FIXUP_HEADER(0x1957, PCI_DEVICE_ID_MPC8572E, quirk_fsl_pcie_header);
245 DECLARE_PCI_FIXUP_HEADER(0x1957, PCI_DEVICE_ID_MPC8572, quirk_fsl_pcie_header);
246 DECLARE_PCI_FIXUP_HEADER(0x1957, PCI_DEVICE_ID_MPC8536E, quirk_fsl_pcie_header);
247 DECLARE_PCI_FIXUP_HEADER(0x1957, PCI_DEVICE_ID_MPC8536, quirk_fsl_pcie_header);
248 DECLARE_PCI_FIXUP_HEADER(0x1957, PCI_DEVICE_ID_MPC8641, quirk_fsl_pcie_header);
249 DECLARE_PCI_FIXUP_HEADER(0x1957, PCI_DEVICE_ID_MPC8641D, quirk_fsl_pcie_header);
250 DECLARE_PCI_FIXUP_HEADER(0x1957, PCI_DEVICE_ID_MPC8610, quirk_fsl_pcie_header);
251