xref: /illumos-gate/usr/src/uts/sparc/io/pciex/pcieb_sparc.c (revision 32a6953793c636df949ca1ae3555438159bda3f6)
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 /* SPARC specific code used by the pcieb driver */
27 
28 #include <sys/types.h>
29 #include <sys/ddi.h>
30 #include <sys/kmem.h>
31 #include <sys/sysmacros.h>
32 #include <sys/sunddi.h>
33 #include <sys/sunndi.h>
34 #include <sys/pcie.h>
35 #include <sys/pci_cap.h>
36 #include <sys/pcie_impl.h>
37 #include <io/pciex/pcieb.h>
38 #include "pcieb_plx.h"
39 
40 /*LINTLIBRARY*/
41 
42 /* PLX specific functions */
43 #ifdef	PX_PLX
44 static void plx_ro_disable(pcieb_devstate_t *pcieb);
45 #ifdef	PRINT_PLX_SEEPROM_CRC
46 static void pcieb_print_plx_seeprom_crc_data(pcieb_devstate_t *pcieb_p);
47 #endif /* PRINT_PLX_SEEPROM_CRC */
48 #endif /* PX_PLX */
49 
50 int
51 pcieb_plat_peekpoke(dev_info_t *dip, dev_info_t *rdip, ddi_ctl_enum_t ctlop,
52     void *arg, void *result)
53 {
54 	return (ddi_ctlops(dip, rdip, ctlop, arg, result));
55 }
56 
57 /*ARGSUSED*/
58 void
59 pcieb_plat_attach_workaround(dev_info_t *dip)
60 {
61 }
62 
63 int
64 pcieb_plat_intr_ops(dev_info_t *dip, dev_info_t *rdip, ddi_intr_op_t intr_op,
65     ddi_intr_handle_impl_t *hdlp, void *result)
66 {
67 	dev_info_t	*cdip = rdip;
68 	pci_regspec_t	*pci_rp;
69 	int		reglen, len;
70 	uint32_t	d, intr;
71 
72 	if ((intr_op == DDI_INTROP_SUPPORTED_TYPES) ||
73 	    (hdlp->ih_type != DDI_INTR_TYPE_FIXED))
74 		goto done;
75 
76 	/*
77 	 * If the interrupt-map property is defined at this
78 	 * node, it will have performed the interrupt
79 	 * translation as part of the property, so no
80 	 * rotation needs to be done.
81 	 */
82 	if (ddi_getproplen(DDI_DEV_T_ANY, dip, DDI_PROP_DONTPASS,
83 	    "interrupt-map", &len) == DDI_PROP_SUCCESS)
84 		goto done;
85 
86 	cdip = pcie_get_my_childs_dip(dip, rdip);
87 
88 	/*
89 	 * Use the devices reg property to determine its
90 	 * PCI bus number and device number.
91 	 */
92 	if (ddi_getlongprop(DDI_DEV_T_ANY, cdip, DDI_PROP_DONTPASS,
93 	    "reg", (caddr_t)&pci_rp, &reglen) != DDI_SUCCESS)
94 		return (DDI_FAILURE);
95 
96 	intr = hdlp->ih_vector;
97 
98 	/* spin the interrupt */
99 	d = PCI_REG_DEV_G(pci_rp[0].pci_phys_hi);
100 	if ((intr >= PCI_INTA) && (intr <= PCI_INTD))
101 		hdlp->ih_vector = ((intr - 1 + (d % 4)) % 4 + 1);
102 	else
103 		cmn_err(CE_WARN, "%s%d: %s: PCI intr=%x out of range",
104 		    ddi_driver_name(rdip), ddi_get_instance(rdip),
105 		    ddi_driver_name(dip), intr);
106 
107 	kmem_free(pci_rp, reglen);
108 
109 done:
110 	/* Pass up the request to our parent. */
111 	return (i_ddi_intr_ops(dip, rdip, intr_op, hdlp, result));
112 }
113 
114 int
115 pcieb_plat_pcishpc_probe(dev_info_t *dip, ddi_acc_handle_t config_handle)
116 {
117 	uint16_t cap_ptr;
118 	if ((PCI_CAP_LOCATE(config_handle, PCI_CAP_ID_PCI_HOTPLUG, &cap_ptr)) !=
119 	    DDI_FAILURE) {
120 		return (DDI_SUCCESS);
121 	}
122 
123 	return (DDI_FAILURE);
124 }
125 
126 /*
127  *  Disable PM on PLX. For PLX Transitioning one port on this switch to
128  *  low power causes links on other ports on the same station to die.
129  *  Due to PLX erratum #34, we can't allow the downstream device go to
130  *  non-D0 state.
131  */
132 boolean_t
133 pcieb_plat_pwr_disable(dev_info_t *dip)
134 {
135 	uint16_t vendor_id = (PCIE_DIP2UPBUS(dip)->bus_dev_ven_id) & 0xFFFF;
136 	return (IS_PLX_VENDORID(vendor_id) ? B_TRUE : B_FALSE);
137 }
138 
139 /*ARGSUSED*/
140 boolean_t
141 pcieb_plat_msi_supported(dev_info_t *dip)
142 {
143 	return (B_TRUE);
144 }
145 
146 /*ARGSUSED*/
147 void
148 pcieb_plat_intr_attach(pcieb_devstate_t *pcieb)
149 {
150 }
151 
152 /*ARGSUSED*/
153 int
154 pcieb_plat_ctlops(dev_info_t *rdip, ddi_ctl_enum_t ctlop, void *arg)
155 {
156 	return (DDI_SUCCESS);
157 }
158 
159 /*ARGSUSED*/
160 void
161 pcieb_plat_ioctl_hotplug(dev_info_t *dip, int rv, int cmd)
162 {
163 }
164 
165 void
166 pcieb_plat_initchild(dev_info_t *child)
167 {
168 	intptr_t ppd = NULL;
169 	/*
170 	 * XXX set ppd to 1 to disable iommu BDF protection on SPARC.
171 	 * It relies on unused parent private data for PCI devices.
172 	 */
173 	if (ddi_prop_exists(DDI_DEV_T_NONE, child, DDI_PROP_DONTPASS,
174 	    "dvma-share"))
175 		ppd = 1;
176 
177 	ddi_set_parent_data(child, (void *)ppd);
178 }
179 
180 void
181 pcieb_plat_uninitchild(dev_info_t *child)
182 {
183 	/*
184 	 * XXX Clear parent private data used as a flag to disable
185 	 * iommu BDF protection
186 	 */
187 	if ((intptr_t)ddi_get_parent_data(child) == 1)
188 		ddi_set_parent_data(child, NULL);
189 }
190 
191 #ifdef PX_PLX
192 /*
193  * These are PLX specific workarounds needed during attach.
194  */
195 void
196 pcieb_attach_plx_workarounds(pcieb_devstate_t *pcieb)
197 {
198 	dev_info_t	*dip = pcieb->pcieb_dip;
199 	pcie_bus_t	*bus_p = PCIE_DIP2BUS(dip);
200 	ddi_acc_handle_t	config_handle = bus_p->bus_cfg_hdl;
201 	uint_t		bus_num, primary, secondary;
202 	uint8_t		dev_type = bus_p->bus_dev_type;
203 	uint16_t	vendor_id = bus_p->bus_dev_ven_id & 0xFFFF;
204 
205 	if (!IS_PLX_VENDORID(vendor_id))
206 		return;
207 
208 	/*
209 	 * Due to a PLX HW bug we need to disable the receiver error CE on all
210 	 * ports. To this end we create a property "pcie_ce_mask" with value
211 	 * set to PCIE_AER_CE_RECEIVER_ERR. The pcie module will check for this
212 	 * property before setting the AER CE mask.
213 	 */
214 	(void) ddi_prop_update_int(DDI_DEV_T_NONE, dip,
215 	    "pcie_ce_mask", PCIE_AER_CE_RECEIVER_ERR);
216 
217 	/*
218 	 * There is a bug in the PLX 8114 bridge, such that an 8-bit
219 	 * write to the secondary bus number register will corrupt an
220 	 * internal shadow copy of the primary bus number.  Reading
221 	 * out the registers and writing the same values back as
222 	 * 16-bits resolves the problem.  This bug was reported by
223 	 * PLX as errata #19.
224 	 */
225 	primary = pci_config_get8(config_handle, PCI_BCNF_PRIBUS);
226 	secondary = pci_config_get8(config_handle, PCI_BCNF_SECBUS);
227 	bus_num = (secondary << 8) | primary;
228 	pci_config_put16(config_handle, PCI_BCNF_PRIBUS, bus_num);
229 
230 	/*
231 	 * Workaround for a race condition between hotplug
232 	 * initialization and actual MSI interrupt registration
233 	 * for hotplug functionality. The hotplug initialization
234 	 * generates an INTx interrupt for hotplug events and this
235 	 * INTx interrupt may interfere with shared leaf drivers
236 	 * using same INTx interrupt, which may eventually block
237 	 * the leaf drivers.
238 	 */
239 	if ((dev_type == PCIE_PCIECAP_DEV_TYPE_DOWN) ||
240 	    (dev_type == PCIE_PCIECAP_DEV_TYPE_ROOT) ||
241 	    (dev_type == PCIE_PCIECAP_DEV_TYPE_PCIE2PCI) ||
242 	    (dev_type == PCIE_PCIECAP_DEV_TYPE_PCI2PCIE)) {
243 		pci_config_put16(config_handle, PCI_CONF_COMM,
244 		    pci_config_get16(config_handle, PCI_CONF_COMM) |
245 		    PCI_COMM_INTX_DISABLE);
246 	}
247 
248 	/*
249 	 * Disable PLX Special Relaxed Ordering
250 	 */
251 	plx_ro_disable(pcieb);
252 
253 #ifdef	PRINT_PLX_SEEPROM_CRC
254 	/* check seeprom CRC to ensure the platform config is right */
255 	(void) pcieb_print_plx_seeprom_crc_data(pcieb);
256 #endif /* PRINT_PLX_SEEPROM_CRC */
257 }
258 
259 /*
260  * These are PLX specific workarounds called during child's initchild.
261  */
262 int
263 pcieb_init_plx_workarounds(pcieb_devstate_t *pcieb, dev_info_t *child)
264 {
265 	int		i;
266 	int		result = DDI_FAILURE;
267 	uint16_t	reg = 0;
268 	ddi_acc_handle_t	config_handle;
269 	uint16_t	vendor_id =
270 	    (PCIE_DIP2UPBUS(pcieb->pcieb_dip))->bus_dev_ven_id & 0xFFFF;
271 
272 	if (!IS_PLX_VENDORID(vendor_id))
273 		return (DDI_SUCCESS);
274 
275 	/*
276 	 * Due to a PLX HW bug, a SW workaround to prevent the chip from
277 	 * wedging is needed.  SW just needs to tranfer 64 TLPs from
278 	 * the downstream port to the child device.
279 	 * The most benign way of doing this is to read the ID register
280 	 * 64 times.  This SW workaround should have minimum performance
281 	 * impact and shouldn't cause a problem for all other bridges
282 	 * and switches.
283 	 *
284 	 * The code needs to be written in a way to make sure it isn't
285 	 * optimized out.
286 	 */
287 	if (!pxb_tlp_count) {
288 		result = DDI_SUCCESS;
289 		goto done;
290 	}
291 
292 	if (pci_config_setup(child, &config_handle) != DDI_SUCCESS) {
293 		result = DDI_FAILURE;
294 		goto done;
295 	}
296 
297 	for (i = 0; i < pxb_tlp_count; i += 1)
298 		reg |= pci_config_get16(config_handle, PCI_CONF_VENID);
299 
300 	if (PCIE_IS_PCIE_BDG(PCIE_DIP2BUS(pcieb->pcieb_dip)))
301 		pcieb_set_pci_perf_parameters(child, config_handle);
302 
303 	pci_config_teardown(&config_handle);
304 	result = DDI_SUCCESS;
305 done:
306 	return (result);
307 }
308 
309 /*
310  * Disable PLX specific relaxed ordering mode.	Due to PLX
311  * erratum #6, use of this mode with Cut-Through Cancellation
312  * can result in dropped Completion type packets.
313  *
314  * Clear the Relaxed Ordering Mode on 8533 and 8548 switches.
315  * To disable RO, clear bit 5 in offset 0x664, an undocumented
316  * bit in the PLX spec, on Ports 0, 8 and 12.  Proprietary PLX
317  * registers are normally accessible only via memspace from Port
318  * 0.  If port 0 is attached go ahead and disable RO on Port 0,
319  * 8 and 12, if they exist.
320  */
321 static void
322 plx_ro_disable(pcieb_devstate_t *pcieb)
323 {
324 	pcie_bus_t		*bus_p = PCIE_DIP2BUS(pcieb->pcieb_dip);
325 	dev_info_t		*dip = pcieb->pcieb_dip;
326 	uint16_t		device_id = bus_p->bus_dev_ven_id >> 16;
327 	pci_regspec_t		*reg_spec, *addr_spec;
328 	int			rlen, alen;
329 	int			orig_rsize, new_rsize;
330 	uint_t			rnum, anum;
331 	ddi_device_acc_attr_t	attr;
332 	ddi_acc_handle_t	hdl;
333 	caddr_t			regsp;
334 	uint32_t		val, port_enable;
335 	char			*offset;
336 	char			*port_offset;
337 
338 	if (!((device_id == PXB_DEVICE_PLX_8533) ||
339 	    (device_id == PXB_DEVICE_PLX_8548)))
340 		return;
341 
342 	/* You can also only do this on Port 0 */
343 	val = PCIE_CAP_GET(32, bus_p, PCIE_LINKCAP);
344 	val = (val >> PCIE_LINKCAP_PORT_NUMBER_SHIFT) &
345 	    PCIE_LINKCAP_PORT_NUMBER_MASK;
346 
347 	PCIEB_DEBUG(DBG_ATTACH, dip, "PLX RO Disable : bdf=0x%x port=%d\n",
348 	    bus_p->bus_bdf, val);
349 
350 	if (val != 0)
351 		return;
352 
353 	/*
354 	 * Read the reg property, but allocate extra space incase we need to add
355 	 * a new entry later.
356 	 */
357 	if (ddi_getproplen(DDI_DEV_T_ANY, dip, DDI_PROP_DONTPASS, "reg",
358 	    &orig_rsize) != DDI_SUCCESS)
359 		return;
360 
361 	new_rsize = orig_rsize + sizeof (pci_regspec_t);
362 	reg_spec = kmem_alloc(new_rsize, KM_SLEEP);
363 
364 	if (ddi_getlongprop_buf(DDI_DEV_T_ANY, dip, DDI_PROP_DONTPASS, "reg",
365 	    (caddr_t)reg_spec, &orig_rsize) != DDI_SUCCESS)
366 		goto fail;
367 
368 	/* Find the mem32 reg property */
369 	rlen = orig_rsize / sizeof (pci_regspec_t);
370 	for (rnum = 0; rnum < rlen; rnum++) {
371 		if ((reg_spec[rnum].pci_phys_hi & PCI_ADDR_MASK) ==
372 		    PCI_ADDR_MEM32)
373 			goto fix;
374 	}
375 
376 	/*
377 	 * Mem32 reg property was not found.
378 	 * Look for it in assign-address property.
379 	 */
380 	addr_spec = bus_p->bus_assigned_addr;
381 	alen = bus_p->bus_assigned_entries;
382 	for (anum = 0; anum < alen; anum++) {
383 		if ((addr_spec[anum].pci_phys_hi & PCI_ADDR_MASK) ==
384 		    PCI_ADDR_MEM32)
385 			goto update;
386 	}
387 
388 	/* Unable to find mem space assigned address, give up. */
389 	goto fail;
390 
391 update:
392 	/*
393 	 * Add the mem32 access to the reg spec.
394 	 * Use the last entry which was previously allocated.
395 	 */
396 	reg_spec[rnum].pci_phys_hi = (addr_spec[anum].pci_phys_hi &
397 	    ~PCI_REG_REL_M);
398 	reg_spec[rnum].pci_phys_mid = 0;
399 	reg_spec[rnum].pci_phys_low = 0;
400 	reg_spec[rnum].pci_size_hi = addr_spec[anum].pci_size_hi;
401 	reg_spec[rnum].pci_size_low = addr_spec[anum].pci_size_low;
402 
403 	/* Create the new reg_spec data and update the property */
404 	if (ddi_prop_update_int_array(DDI_DEV_T_NONE, dip, "reg",
405 	    (int *)reg_spec, (new_rsize / sizeof (int))) != DDI_SUCCESS)
406 		goto fail;
407 
408 fix:
409 	attr.devacc_attr_version = DDI_DEVICE_ATTR_V0;
410 	attr.devacc_attr_endian_flags  = DDI_STRUCTURE_LE_ACC;
411 	attr.devacc_attr_dataorder = DDI_STRICTORDER_ACC;
412 
413 	if (ddi_regs_map_setup(dip, rnum, &regsp, 0, 0, &attr,
414 	    &hdl) != DDI_SUCCESS)
415 		goto fail;
416 
417 	/* Grab register which shows which ports are enabled */
418 	offset = (char *)regsp + PLX_INGRESS_PORT_ENABLE;
419 	port_enable = ddi_get32(hdl, (uint32_t *)offset);
420 
421 	if ((port_enable == 0xFFFFFFFF) || (port_enable == 0))
422 		goto done;
423 
424 	offset = (char *)regsp + PLX_INGRESS_CONTROL_SHADOW;
425 
426 	/* Disable RO on Port 0 */
427 	port_offset = 0x0 + offset;
428 	val = ddi_get32(hdl, (uint32_t *)port_offset);
429 	if (val & PLX_RO_MODE_BIT)
430 		val ^= PLX_RO_MODE_BIT;
431 	ddi_put32(hdl, (uint32_t *)port_offset, val);
432 
433 	/* Disable RO on Port 8, but make sure its enabled */
434 	if (!(port_enable & (1 << 8)))
435 		goto port12;
436 
437 	port_offset = (8 * 0x1000) + offset;
438 	val = ddi_get32(hdl, (uint32_t *)port_offset);
439 	if (val & PLX_RO_MODE_BIT)
440 		val ^= PLX_RO_MODE_BIT;
441 	ddi_put32(hdl, (uint32_t *)port_offset, val);
442 
443 port12:
444 	/* Disable RO on Port 12, but make sure it exists */
445 	if (!(port_enable & (1 << 12)))
446 		goto done;
447 
448 	port_offset = (12 * 0x1000) + offset;
449 	val = ddi_get32(hdl, (uint32_t *)port_offset);
450 	if (val & PLX_RO_MODE_BIT)
451 		val ^= PLX_RO_MODE_BIT;
452 	ddi_put32(hdl, (uint32_t *)port_offset, val);
453 
454 	goto done;
455 
456 done:
457 	ddi_regs_map_free(&hdl);
458 fail:
459 	kmem_free(reg_spec, new_rsize);
460 }
461 
462 #ifdef	PRINT_PLX_SEEPROM_CRC
463 static void
464 pcieb_print_plx_seeprom_crc_data(pcieb_devstate_t *pcieb_p)
465 {
466 	ddi_acc_handle_t h;
467 	dev_info_t *dip = pcieb_p->pcieb_dip;
468 	uint16_t vendorid = (PCIE_DIP2BUS(dip)->bus_dev_ven_id) & 0xFFFF;
469 	int nregs;
470 	caddr_t mp;
471 	off_t bar_size;
472 	ddi_device_acc_attr_t mattr = {
473 		DDI_DEVICE_ATTR_V0,
474 		DDI_STRUCTURE_LE_ACC,
475 		DDI_STRICTORDER_ACC
476 	};
477 	uint32_t addr_reg_off = 0x260, data_reg_off = 0x264, data = 0x6BE4;
478 
479 	if (vendorid != PXB_VENDOR_PLX)
480 		return;
481 	if (ddi_dev_nregs(dip, &nregs) != DDI_SUCCESS)
482 		return;
483 	if (nregs < 2)	/* check for CONF entry only, no BARs */
484 		return;
485 	if (ddi_dev_regsize(dip, 1, &bar_size) != DDI_SUCCESS)
486 		return;
487 	if (ddi_regs_map_setup(dip, 1, (caddr_t *)&mp, 0, bar_size,
488 	    &mattr, &h) != DDI_SUCCESS)
489 		return;
490 	ddi_put32(h, (uint32_t *)((uchar_t *)mp + addr_reg_off), data);
491 	delay(drv_usectohz(1000000));
492 	printf("%s#%d: EEPROM StatusReg = %x, CRC = %x\n",
493 	    ddi_driver_name(dip), ddi_get_instance(dip),
494 	    ddi_get32(h, (uint32_t *)((uchar_t *)mp + addr_reg_off)),
495 	    ddi_get32(h, (uint32_t *)((uchar_t *)mp + data_reg_off)));
496 #ifdef PLX_HOT_RESET_DISABLE
497 	/* prevent hot reset from propogating downstream. */
498 	data = ddi_get32(h, (uint32_t *)((uchar_t *)mp + 0x1DC));
499 	ddi_put32(h, (uint32_t *)((uchar_t *)mp + 0x1DC), data | 0x80000);
500 	delay(drv_usectohz(1000000));
501 	printf("%s#%d: EEPROM 0x1DC prewrite=%x postwrite=%x\n",
502 	    ddi_driver_name(dip), ddi_get_instance(dip), data,
503 	    ddi_get32(h, (uint32_t *)((uchar_t *)mp + 0x1DC)));
504 #endif /* PLX_HOT_RESET_DISABLE */
505 	ddi_regs_map_free(&h);
506 }
507 #endif /* PRINT_PLX_SEEPROM_CRC */
508 #endif /* PX_PLX */
509