xref: /illumos-gate/usr/src/uts/sun4/io/px/px.c (revision ca9327a6de44d69ddab3668cc1e143ce781387a3)
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 2008 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #pragma ident	"%Z%%M%	%I%	%E% SMI"
27 
28 /*
29  * PCI Express nexus driver interface
30  */
31 
32 #include <sys/types.h>
33 #include <sys/conf.h>		/* nulldev */
34 #include <sys/stat.h>		/* devctl */
35 #include <sys/kmem.h>
36 #include <sys/sunddi.h>
37 #include <sys/sunndi.h>
38 #include <sys/ddi_impldefs.h>
39 #include <sys/ddi_subrdefs.h>
40 #include <sys/spl.h>
41 #include <sys/epm.h>
42 #include <sys/iommutsb.h>
43 #include <sys/hotplug/pci/pcihp.h>
44 #include <sys/hotplug/pci/pciehpc.h>
45 #include "px_obj.h"
46 #include <sys/pci_tools.h>
47 #include "px_tools_ext.h"
48 #include "pcie_pwr.h"
49 
50 /*LINTLIBRARY*/
51 
52 /*
53  * function prototypes for dev ops routines:
54  */
55 static int px_attach(dev_info_t *dip, ddi_attach_cmd_t cmd);
56 static int px_detach(dev_info_t *dip, ddi_detach_cmd_t cmd);
57 static int px_info(dev_info_t *dip, ddi_info_cmd_t infocmd,
58 	void *arg, void **result);
59 static int px_cb_attach(px_t *);
60 static void px_cb_detach(px_t *);
61 static int px_pwr_setup(dev_info_t *dip);
62 static void px_pwr_teardown(dev_info_t *dip);
63 
64 extern errorq_t *pci_target_queue;
65 
66 /*
67  * function prototypes for hotplug routines:
68  */
69 static int px_init_hotplug(px_t *px_p);
70 static int px_uninit_hotplug(dev_info_t *dip);
71 
72 /*
73  * bus ops and dev ops structures:
74  */
75 static struct bus_ops px_bus_ops = {
76 	BUSO_REV,
77 	px_map,
78 	0,
79 	0,
80 	0,
81 	i_ddi_map_fault,
82 	px_dma_setup,
83 	px_dma_allochdl,
84 	px_dma_freehdl,
85 	px_dma_bindhdl,
86 	px_dma_unbindhdl,
87 	px_lib_dma_sync,
88 	px_dma_win,
89 	px_dma_ctlops,
90 	px_ctlops,
91 	ddi_bus_prop_op,
92 	ndi_busop_get_eventcookie,
93 	ndi_busop_add_eventcall,
94 	ndi_busop_remove_eventcall,
95 	ndi_post_event,
96 	NULL,
97 	NULL,			/* (*bus_config)(); */
98 	NULL,			/* (*bus_unconfig)(); */
99 	px_fm_init_child,	/* (*bus_fm_init)(); */
100 	NULL,			/* (*bus_fm_fini)(); */
101 	px_bus_enter,		/* (*bus_fm_access_enter)(); */
102 	px_bus_exit,		/* (*bus_fm_access_fini)(); */
103 	pcie_bus_power,		/* (*bus_power)(); */
104 	px_intr_ops		/* (*bus_intr_op)(); */
105 };
106 
107 extern struct cb_ops px_cb_ops;
108 
109 static struct dev_ops px_ops = {
110 	DEVO_REV,
111 	0,
112 	px_info,
113 	nulldev,
114 	0,
115 	px_attach,
116 	px_detach,
117 	nodev,
118 	&px_cb_ops,
119 	&px_bus_ops,
120 	nulldev
121 };
122 
123 /*
124  * module definitions:
125  */
126 #include <sys/modctl.h>
127 extern struct mod_ops mod_driverops;
128 
129 static struct modldrv modldrv = {
130 	&mod_driverops, 		/* Type of module - driver */
131 	"PCI Express nexus driver %I%",	/* Name of module. */
132 	&px_ops,			/* driver ops */
133 };
134 
135 static struct modlinkage modlinkage = {
136 	MODREV_1, (void *)&modldrv, NULL
137 };
138 
139 /* driver soft state */
140 void *px_state_p;
141 
142 int
143 _init(void)
144 {
145 	int e;
146 
147 	/*
148 	 * Initialize per-px bus soft state pointer.
149 	 */
150 	e = ddi_soft_state_init(&px_state_p, sizeof (px_t), 1);
151 	if (e != DDI_SUCCESS)
152 		return (e);
153 
154 	/*
155 	 * Install the module.
156 	 */
157 	e = mod_install(&modlinkage);
158 	if (e != DDI_SUCCESS)
159 		ddi_soft_state_fini(&px_state_p);
160 	return (e);
161 }
162 
163 int
164 _fini(void)
165 {
166 	int e;
167 
168 	/*
169 	 * Remove the module.
170 	 */
171 	e = mod_remove(&modlinkage);
172 	if (e != DDI_SUCCESS)
173 		return (e);
174 	/*
175 	 * Destroy pci_target_queue, and set it to NULL.
176 	 */
177 	if (pci_target_queue)
178 		errorq_destroy(pci_target_queue);
179 
180 	pci_target_queue = NULL;
181 
182 	/* Free px soft state */
183 	ddi_soft_state_fini(&px_state_p);
184 
185 	return (e);
186 }
187 
188 int
189 _info(struct modinfo *modinfop)
190 {
191 	return (mod_info(&modlinkage, modinfop));
192 }
193 
194 /* ARGSUSED */
195 static int
196 px_info(dev_info_t *dip, ddi_info_cmd_t infocmd, void *arg, void **result)
197 {
198 	int	instance = getminor((dev_t)arg);
199 	px_t	*px_p = INST_TO_STATE(instance);
200 
201 	/*
202 	 * Allow hotplug to deal with ones it manages
203 	 * Hot Plug will be done later.
204 	 */
205 	if (px_p && (px_p->px_dev_caps & PX_HOTPLUG_CAPABLE))
206 		return (pcihp_info(dip, infocmd, arg, result));
207 
208 	/* non-hotplug or not attached */
209 	switch (infocmd) {
210 	case DDI_INFO_DEVT2INSTANCE:
211 		*result = (void *)(intptr_t)instance;
212 		return (DDI_SUCCESS);
213 
214 	case DDI_INFO_DEVT2DEVINFO:
215 		if (px_p == NULL)
216 			return (DDI_FAILURE);
217 		*result = (void *)px_p->px_dip;
218 		return (DDI_SUCCESS);
219 
220 	default:
221 		return (DDI_FAILURE);
222 	}
223 }
224 
225 /* device driver entry points */
226 /*
227  * attach entry point:
228  */
229 /*ARGSUSED*/
230 static int
231 px_attach(dev_info_t *dip, ddi_attach_cmd_t cmd)
232 {
233 	px_t		*px_p;	/* per bus state pointer */
234 	int		instance = DIP_TO_INST(dip);
235 	int		ret = DDI_SUCCESS;
236 	devhandle_t	dev_hdl = NULL;
237 
238 	switch (cmd) {
239 	case DDI_ATTACH:
240 		DBG(DBG_ATTACH, dip, "DDI_ATTACH\n");
241 
242 		/*
243 		 * Allocate and get the per-px soft state structure.
244 		 */
245 		if (ddi_soft_state_zalloc(px_state_p, instance)
246 		    != DDI_SUCCESS) {
247 			cmn_err(CE_WARN, "%s%d: can't allocate px state",
248 			    ddi_driver_name(dip), instance);
249 			goto err_bad_px_softstate;
250 		}
251 		px_p = INST_TO_STATE(instance);
252 		px_p->px_dip = dip;
253 		mutex_init(&px_p->px_mutex, NULL, MUTEX_DRIVER, NULL);
254 		px_p->px_soft_state = PX_SOFT_STATE_CLOSED;
255 		px_p->px_open_count = 0;
256 
257 		(void) ddi_prop_update_string(DDI_DEV_T_NONE, dip,
258 		    "device_type", "pciex");
259 
260 		/* Initialize px_dbg for high pil printing */
261 		px_dbg_attach(dip, &px_p->px_dbg_hdl);
262 
263 		/*
264 		 * Get key properties of the pci bridge node and
265 		 * determine it's type (psycho, schizo, etc ...).
266 		 */
267 		if (px_get_props(px_p, dip) == DDI_FAILURE)
268 			goto err_bad_px_prop;
269 
270 		if (px_lib_dev_init(dip, &dev_hdl) != DDI_SUCCESS)
271 			goto err_bad_dev_init;
272 
273 		/* Initialize device handle */
274 		px_p->px_dev_hdl = dev_hdl;
275 
276 		/* Cache the BDF of the root port nexus */
277 		px_p->px_bdf = px_lib_get_bdf(px_p);
278 
279 		/*
280 		 * Initialize interrupt block.  Note that this
281 		 * initialize error handling for the PEC as well.
282 		 */
283 		if ((ret = px_ib_attach(px_p)) != DDI_SUCCESS)
284 			goto err_bad_ib;
285 
286 		if (px_cb_attach(px_p) != DDI_SUCCESS)
287 			goto err_bad_cb;
288 
289 		/*
290 		 * Start creating the modules.
291 		 * Note that attach() routines should
292 		 * register and enable their own interrupts.
293 		 */
294 
295 		if ((px_mmu_attach(px_p)) != DDI_SUCCESS)
296 			goto err_bad_mmu;
297 
298 		if ((px_msiq_attach(px_p)) != DDI_SUCCESS)
299 			goto err_bad_msiq;
300 
301 		if ((px_msi_attach(px_p)) != DDI_SUCCESS)
302 			goto err_bad_msi;
303 
304 		if ((px_pec_attach(px_p)) != DDI_SUCCESS)
305 			goto err_bad_pec;
306 
307 		if ((px_dma_attach(px_p)) != DDI_SUCCESS)
308 			goto err_bad_dma; /* nothing to uninitialize on DMA */
309 
310 		if ((px_fm_attach(px_p)) != DDI_SUCCESS)
311 			goto err_bad_dma;
312 
313 		/*
314 		 * All of the error handlers have been registered
315 		 * by now so it's time to activate the interrupt.
316 		 */
317 		if ((ret = px_err_add_intr(&px_p->px_fault)) != DDI_SUCCESS)
318 			goto err_bad_intr;
319 
320 		(void) px_init_hotplug(px_p);
321 
322 		/*
323 		 * Create the "devctl" node for hotplug and pcitool support.
324 		 * For non-hotplug bus, we still need ":devctl" to
325 		 * support DEVCTL_DEVICE_* and DEVCTL_BUS_* ioctls.
326 		 */
327 		if (ddi_create_minor_node(dip, "devctl", S_IFCHR,
328 		    PCIHP_AP_MINOR_NUM(instance, PCIHP_DEVCTL_MINOR),
329 		    DDI_NT_NEXUS, 0) != DDI_SUCCESS) {
330 			goto err_bad_devctl_node;
331 		}
332 
333 		if (pxtool_init(dip) != DDI_SUCCESS)
334 			goto err_bad_pcitool_node;
335 
336 		/*
337 		 * power management setup. Even if it fails, attach will
338 		 * succeed as this is a optional feature. Since we are
339 		 * always at full power, this is not critical.
340 		 */
341 		if (pwr_common_setup(dip) != DDI_SUCCESS) {
342 			DBG(DBG_PWR, dip, "pwr_common_setup failed\n");
343 		} else if (px_pwr_setup(dip) != DDI_SUCCESS) {
344 			DBG(DBG_PWR, dip, "px_pwr_setup failed \n");
345 			pwr_common_teardown(dip);
346 		}
347 
348 		/*
349 		 * add cpr callback
350 		 */
351 		px_cpr_add_callb(px_p);
352 
353 		ddi_report_dev(dip);
354 
355 		px_p->px_state = PX_ATTACHED;
356 		DBG(DBG_ATTACH, dip, "attach success\n");
357 		break;
358 
359 err_bad_pcitool_node:
360 		ddi_remove_minor_node(dip, "devctl");
361 err_bad_devctl_node:
362 		px_err_rem_intr(&px_p->px_fault);
363 err_bad_intr:
364 		px_fm_detach(px_p);
365 err_bad_dma:
366 		px_pec_detach(px_p);
367 err_bad_pec:
368 		px_msi_detach(px_p);
369 err_bad_msi:
370 		px_msiq_detach(px_p);
371 err_bad_msiq:
372 		px_mmu_detach(px_p);
373 err_bad_mmu:
374 		px_cb_detach(px_p);
375 err_bad_cb:
376 		px_ib_detach(px_p);
377 err_bad_ib:
378 		(void) px_lib_dev_fini(dip);
379 err_bad_dev_init:
380 		px_free_props(px_p);
381 err_bad_px_prop:
382 		px_dbg_detach(dip, &px_p->px_dbg_hdl);
383 		mutex_destroy(&px_p->px_mutex);
384 		ddi_soft_state_free(px_state_p, instance);
385 err_bad_px_softstate:
386 		ret = DDI_FAILURE;
387 		break;
388 
389 	case DDI_RESUME:
390 		DBG(DBG_ATTACH, dip, "DDI_RESUME\n");
391 
392 		px_p = INST_TO_STATE(instance);
393 
394 		mutex_enter(&px_p->px_mutex);
395 
396 		/* suspend might have not succeeded */
397 		if (px_p->px_state != PX_SUSPENDED) {
398 			DBG(DBG_ATTACH, px_p->px_dip,
399 			    "instance NOT suspended\n");
400 			ret = DDI_FAILURE;
401 			break;
402 		}
403 
404 		px_msiq_resume(px_p);
405 		px_lib_resume(dip);
406 		(void) pcie_pwr_resume(dip);
407 		px_p->px_state = PX_ATTACHED;
408 
409 		mutex_exit(&px_p->px_mutex);
410 
411 		break;
412 	default:
413 		DBG(DBG_ATTACH, dip, "unsupported attach op\n");
414 		ret = DDI_FAILURE;
415 		break;
416 	}
417 
418 	return (ret);
419 }
420 
421 /*
422  * detach entry point:
423  */
424 /*ARGSUSED*/
425 static int
426 px_detach(dev_info_t *dip, ddi_detach_cmd_t cmd)
427 {
428 	int instance = ddi_get_instance(dip);
429 	px_t *px_p = INST_TO_STATE(instance);
430 	int ret;
431 
432 	/*
433 	 * Make sure we are currently attached
434 	 */
435 	if (px_p->px_state != PX_ATTACHED) {
436 		DBG(DBG_DETACH, dip, "Instance not attached\n");
437 		return (DDI_FAILURE);
438 	}
439 
440 	mutex_enter(&px_p->px_mutex);
441 
442 	switch (cmd) {
443 	case DDI_DETACH:
444 		DBG(DBG_DETACH, dip, "DDI_DETACH\n");
445 
446 		/*
447 		 * remove cpr callback
448 		 */
449 		px_cpr_rem_callb(px_p);
450 
451 		if (px_p->px_dev_caps & PX_HOTPLUG_CAPABLE)
452 			if (px_uninit_hotplug(dip) != DDI_SUCCESS) {
453 				mutex_exit(&px_p->px_mutex);
454 				return (DDI_FAILURE);
455 			}
456 
457 		/*
458 		 * things which used to be done in obj_destroy
459 		 * are now in-lined here.
460 		 */
461 
462 		px_p->px_state = PX_DETACHED;
463 
464 		pxtool_uninit(dip);
465 
466 		ddi_remove_minor_node(dip, "devctl");
467 		px_err_rem_intr(&px_p->px_fault);
468 		px_fm_detach(px_p);
469 		px_pec_detach(px_p);
470 		px_pwr_teardown(dip);
471 		pwr_common_teardown(dip);
472 		px_msi_detach(px_p);
473 		px_msiq_detach(px_p);
474 		px_mmu_detach(px_p);
475 		px_cb_detach(px_p);
476 		px_ib_detach(px_p);
477 		(void) px_lib_dev_fini(dip);
478 
479 		/*
480 		 * Free the px soft state structure and the rest of the
481 		 * resources it's using.
482 		 */
483 		px_free_props(px_p);
484 		px_dbg_detach(dip, &px_p->px_dbg_hdl);
485 		mutex_exit(&px_p->px_mutex);
486 		mutex_destroy(&px_p->px_mutex);
487 
488 		/* Free the interrupt-priorities prop if we created it. */
489 		{
490 			int len;
491 
492 			if (ddi_getproplen(DDI_DEV_T_ANY, dip,
493 			    DDI_PROP_NOTPROM | DDI_PROP_DONTPASS,
494 			    "interrupt-priorities", &len) == DDI_PROP_SUCCESS)
495 				(void) ddi_prop_remove(DDI_DEV_T_NONE, dip,
496 				    "interrupt-priorities");
497 		}
498 
499 		px_p->px_dev_hdl = NULL;
500 		ddi_soft_state_free(px_state_p, instance);
501 
502 		return (DDI_SUCCESS);
503 
504 	case DDI_SUSPEND:
505 		if (pcie_pwr_suspend(dip) != DDI_SUCCESS) {
506 			mutex_exit(&px_p->px_mutex);
507 			return (DDI_FAILURE);
508 		}
509 		if ((ret = px_lib_suspend(dip)) == DDI_SUCCESS)
510 			px_p->px_state = PX_SUSPENDED;
511 		mutex_exit(&px_p->px_mutex);
512 
513 		return (ret);
514 
515 	default:
516 		DBG(DBG_DETACH, dip, "unsupported detach op\n");
517 		mutex_exit(&px_p->px_mutex);
518 		return (DDI_FAILURE);
519 	}
520 }
521 
522 int
523 px_cb_attach(px_t *px_p)
524 {
525 	px_fault_t	*fault_p = &px_p->px_cb_fault;
526 	dev_info_t	*dip = px_p->px_dip;
527 	sysino_t	sysino;
528 
529 	if (px_lib_intr_devino_to_sysino(dip,
530 	    px_p->px_inos[PX_INTR_XBC], &sysino) != DDI_SUCCESS)
531 		return (DDI_FAILURE);
532 
533 	fault_p->px_fh_dip = dip;
534 	fault_p->px_fh_sysino = sysino;
535 	fault_p->px_err_func = px_err_cb_intr;
536 	fault_p->px_intr_ino = px_p->px_inos[PX_INTR_XBC];
537 
538 	return (px_cb_add_intr(fault_p));
539 }
540 
541 void
542 px_cb_detach(px_t *px_p)
543 {
544 	px_cb_rem_intr(&px_p->px_cb_fault);
545 }
546 
547 /*
548  * power management related initialization specific to px
549  * called by px_attach()
550  */
551 static int
552 px_pwr_setup(dev_info_t *dip)
553 {
554 	pcie_pwr_t *pwr_p;
555 	int instance = ddi_get_instance(dip);
556 	px_t *px_p = INST_TO_STATE(instance);
557 	ddi_intr_handle_impl_t hdl;
558 
559 	ASSERT(PCIE_PMINFO(dip));
560 	pwr_p = PCIE_NEXUS_PMINFO(dip);
561 	ASSERT(pwr_p);
562 
563 	/*
564 	 * indicate support LDI (Layered Driver Interface)
565 	 * Create the property, if it is not already there
566 	 */
567 	if (!ddi_prop_exists(DDI_DEV_T_NONE, dip, DDI_PROP_DONTPASS,
568 	    DDI_KERNEL_IOCTL)) {
569 		if (ddi_prop_create(DDI_DEV_T_NONE, dip, DDI_PROP_CANSLEEP,
570 		    DDI_KERNEL_IOCTL, NULL, 0) != DDI_PROP_SUCCESS) {
571 			DBG(DBG_PWR, dip, "can't create kernel ioctl prop\n");
572 			return (DDI_FAILURE);
573 		}
574 	}
575 	/* No support for device PM. We are always at full power */
576 	pwr_p->pwr_func_lvl = PM_LEVEL_D0;
577 
578 	mutex_init(&px_p->px_l23ready_lock, NULL, MUTEX_DRIVER,
579 	    DDI_INTR_PRI(px_pwr_pil));
580 	cv_init(&px_p->px_l23ready_cv, NULL, CV_DRIVER, NULL);
581 
582 	/* Initialize handle */
583 	bzero(&hdl, sizeof (ddi_intr_handle_impl_t));
584 	hdl.ih_cb_arg1 = px_p;
585 	hdl.ih_ver = DDI_INTR_VERSION;
586 	hdl.ih_state = DDI_IHDL_STATE_ALLOC;
587 	hdl.ih_dip = dip;
588 	hdl.ih_pri = px_pwr_pil;
589 
590 	/* Add PME_TO_ACK message handler */
591 	hdl.ih_cb_func = (ddi_intr_handler_t *)px_pmeq_intr;
592 	if (px_add_msiq_intr(dip, dip, &hdl, MSG_REC,
593 	    (msgcode_t)PCIE_PME_ACK_MSG, &px_p->px_pm_msiq_id) != DDI_SUCCESS) {
594 		DBG(DBG_PWR, dip, "px_pwr_setup: couldn't add "
595 		    " PME_TO_ACK intr\n");
596 		goto pwr_setup_err1;
597 	}
598 	px_lib_msg_setmsiq(dip, PCIE_PME_ACK_MSG, px_p->px_pm_msiq_id);
599 	px_lib_msg_setvalid(dip, PCIE_PME_ACK_MSG, PCIE_MSG_VALID);
600 
601 	if (px_ib_update_intr_state(px_p, px_p->px_dip, hdl.ih_inum,
602 	    px_msiqid_to_devino(px_p, px_p->px_pm_msiq_id), px_pwr_pil,
603 	    PX_INTR_STATE_ENABLE, MSG_REC, PCIE_PME_ACK_MSG) != DDI_SUCCESS) {
604 		DBG(DBG_PWR, dip, "px_pwr_setup: PME_TO_ACK update interrupt"
605 		    " state failed\n");
606 		goto px_pwrsetup_err_state;
607 	}
608 
609 	return (DDI_SUCCESS);
610 
611 px_pwrsetup_err_state:
612 	px_lib_msg_setvalid(dip, PCIE_PME_ACK_MSG, PCIE_MSG_INVALID);
613 	(void) px_rem_msiq_intr(dip, dip, &hdl, MSG_REC, PCIE_PME_ACK_MSG,
614 	    px_p->px_pm_msiq_id);
615 pwr_setup_err1:
616 	mutex_destroy(&px_p->px_l23ready_lock);
617 	cv_destroy(&px_p->px_l23ready_cv);
618 
619 	return (DDI_FAILURE);
620 }
621 
622 /*
623  * undo whatever is done in px_pwr_setup. called by px_detach()
624  */
625 static void
626 px_pwr_teardown(dev_info_t *dip)
627 {
628 	int instance = ddi_get_instance(dip);
629 	px_t *px_p = INST_TO_STATE(instance);
630 	ddi_intr_handle_impl_t	hdl;
631 
632 	if (!PCIE_PMINFO(dip) || !PCIE_NEXUS_PMINFO(dip))
633 		return;
634 
635 	/* Initialize handle */
636 	bzero(&hdl, sizeof (ddi_intr_handle_impl_t));
637 	hdl.ih_ver = DDI_INTR_VERSION;
638 	hdl.ih_state = DDI_IHDL_STATE_ALLOC;
639 	hdl.ih_dip = dip;
640 	hdl.ih_pri = px_pwr_pil;
641 
642 	px_lib_msg_setvalid(dip, PCIE_PME_ACK_MSG, PCIE_MSG_INVALID);
643 	(void) px_rem_msiq_intr(dip, dip, &hdl, MSG_REC, PCIE_PME_ACK_MSG,
644 	    px_p->px_pm_msiq_id);
645 
646 	(void) px_ib_update_intr_state(px_p, px_p->px_dip, hdl.ih_inum,
647 	    px_msiqid_to_devino(px_p, px_p->px_pm_msiq_id), px_pwr_pil,
648 	    PX_INTR_STATE_DISABLE, MSG_REC, PCIE_PME_ACK_MSG);
649 
650 	px_p->px_pm_msiq_id = (msiqid_t)-1;
651 
652 	cv_destroy(&px_p->px_l23ready_cv);
653 	mutex_destroy(&px_p->px_l23ready_lock);
654 }
655 
656 /* bus driver entry points */
657 
658 /*
659  * bus map entry point:
660  *
661  * 	if map request is for an rnumber
662  *		get the corresponding regspec from device node
663  * 	build a new regspec in our parent's format
664  *	build a new map_req with the new regspec
665  *	call up the tree to complete the mapping
666  */
667 int
668 px_map(dev_info_t *dip, dev_info_t *rdip, ddi_map_req_t *mp,
669 	off_t off, off_t len, caddr_t *addrp)
670 {
671 	px_t *px_p = DIP_TO_STATE(dip);
672 	struct regspec p_regspec;
673 	ddi_map_req_t p_mapreq;
674 	int reglen, rval, r_no;
675 	pci_regspec_t reloc_reg, *rp = &reloc_reg;
676 
677 	DBG(DBG_MAP, dip, "rdip=%s%d:",
678 	    ddi_driver_name(rdip), ddi_get_instance(rdip));
679 
680 	if (mp->map_flags & DDI_MF_USER_MAPPING)
681 		return (DDI_ME_UNIMPLEMENTED);
682 
683 	switch (mp->map_type) {
684 	case DDI_MT_REGSPEC:
685 		reloc_reg = *(pci_regspec_t *)mp->map_obj.rp;	/* dup whole */
686 		break;
687 
688 	case DDI_MT_RNUMBER:
689 		r_no = mp->map_obj.rnumber;
690 		DBG(DBG_MAP | DBG_CONT, dip, " r#=%x", r_no);
691 
692 		if (ddi_getlongprop(DDI_DEV_T_ANY, rdip, DDI_PROP_DONTPASS,
693 		    "reg", (caddr_t)&rp, &reglen) != DDI_SUCCESS)
694 			return (DDI_ME_RNUMBER_RANGE);
695 
696 		if (r_no < 0 || r_no >= reglen / sizeof (pci_regspec_t)) {
697 			kmem_free(rp, reglen);
698 			return (DDI_ME_RNUMBER_RANGE);
699 		}
700 		rp += r_no;
701 		break;
702 
703 	default:
704 		return (DDI_ME_INVAL);
705 	}
706 	DBG(DBG_MAP | DBG_CONT, dip, "\n");
707 
708 	if ((rp->pci_phys_hi & PCI_REG_ADDR_M) == PCI_ADDR_CONFIG) {
709 		/*
710 		 * There may be a need to differentiate between PCI
711 		 * and PCI-Ex devices so the following range check is
712 		 * done correctly, depending on the implementation of
713 		 * px_pci bridge nexus driver.
714 		 */
715 		if ((off >= PCIE_CONF_HDR_SIZE) ||
716 		    (len > PCIE_CONF_HDR_SIZE) ||
717 		    (off + len > PCIE_CONF_HDR_SIZE))
718 			return (DDI_ME_INVAL);
719 		/*
720 		 * the following function returning a DDI_FAILURE assumes
721 		 * that there are no virtual config space access services
722 		 * defined in this layer. Otherwise it is availed right
723 		 * here and we return.
724 		 */
725 		rval = px_lib_map_vconfig(dip, mp, off, rp, addrp);
726 		if (rval == DDI_SUCCESS)
727 			goto done;
728 	}
729 
730 	/*
731 	 * No virtual config space services or we are mapping
732 	 * a region of memory mapped config/IO/memory space, so proceed
733 	 * to the parent.
734 	 */
735 
736 	/* relocate within 64-bit pci space through "assigned-addresses" */
737 	if (rval = px_reloc_reg(dip, rdip, px_p, rp))
738 		goto done;
739 
740 	if (len)	/* adjust regspec according to mapping request */
741 		rp->pci_size_low = len;	/* MIN ? */
742 	rp->pci_phys_low += off;
743 
744 	/* translate relocated pci regspec into parent space through "ranges" */
745 	if (rval = px_xlate_reg(px_p, rp, &p_regspec))
746 		goto done;
747 
748 	p_mapreq = *mp;		/* dup the whole structure */
749 	p_mapreq.map_type = DDI_MT_REGSPEC;
750 	p_mapreq.map_obj.rp = &p_regspec;
751 	px_lib_map_attr_check(&p_mapreq);
752 	rval = ddi_map(dip, &p_mapreq, 0, 0, addrp);
753 
754 	if (rval == DDI_SUCCESS) {
755 		/*
756 		 * Set-up access functions for FM access error capable drivers.
757 		 */
758 		if (DDI_FM_ACC_ERR_CAP(ddi_fm_capable(rdip)))
759 			px_fm_acc_setup(mp, rdip, rp);
760 	}
761 
762 done:
763 	if (mp->map_type == DDI_MT_RNUMBER)
764 		kmem_free(rp - r_no, reglen);
765 
766 	return (rval);
767 }
768 
769 /*
770  * bus dma map entry point
771  * return value:
772  *	DDI_DMA_PARTIAL_MAP	 1
773  *	DDI_DMA_MAPOK		 0
774  *	DDI_DMA_MAPPED		 0
775  *	DDI_DMA_NORESOURCES	-1
776  *	DDI_DMA_NOMAPPING	-2
777  *	DDI_DMA_TOOBIG		-3
778  */
779 int
780 px_dma_setup(dev_info_t *dip, dev_info_t *rdip, ddi_dma_req_t *dmareq,
781 	ddi_dma_handle_t *handlep)
782 {
783 	px_t *px_p = DIP_TO_STATE(dip);
784 	px_mmu_t *mmu_p = px_p->px_mmu_p;
785 	ddi_dma_impl_t *mp;
786 	int ret;
787 
788 	DBG(DBG_DMA_MAP, dip, "mapping - rdip=%s%d type=%s\n",
789 	    ddi_driver_name(rdip), ddi_get_instance(rdip),
790 	    handlep ? "alloc" : "advisory");
791 
792 	if (!(mp = px_dma_lmts2hdl(dip, rdip, mmu_p, dmareq)))
793 		return (DDI_DMA_NORESOURCES);
794 	if (mp == (ddi_dma_impl_t *)DDI_DMA_NOMAPPING)
795 		return (DDI_DMA_NOMAPPING);
796 	if (ret = px_dma_type(px_p, dmareq, mp))
797 		goto freehandle;
798 	if (ret = px_dma_pfn(px_p, dmareq, mp))
799 		goto freehandle;
800 
801 	switch (PX_DMA_TYPE(mp)) {
802 	case PX_DMAI_FLAGS_DVMA:	/* LINTED E_EQUALITY_NOT_ASSIGNMENT */
803 		if ((ret = px_dvma_win(px_p, dmareq, mp)) || !handlep)
804 			goto freehandle;
805 		if (!PX_DMA_CANCACHE(mp)) {	/* try fast track */
806 			if (PX_DMA_CANFAST(mp)) {
807 				if (!px_dvma_map_fast(mmu_p, mp))
808 					break;
809 			/* LINTED E_NOP_ELSE_STMT */
810 			} else {
811 				PX_DVMA_FASTTRAK_PROF(mp);
812 			}
813 		}
814 		if (ret = px_dvma_map(mp, dmareq, mmu_p))
815 			goto freehandle;
816 		break;
817 	case PX_DMAI_FLAGS_PTP:	/* LINTED E_EQUALITY_NOT_ASSIGNMENT */
818 		if ((ret = px_dma_physwin(px_p, dmareq, mp)) || !handlep)
819 			goto freehandle;
820 		break;
821 	case PX_DMAI_FLAGS_BYPASS:
822 	default:
823 		cmn_err(CE_PANIC, "%s%d: px_dma_setup: bad dma type 0x%x",
824 		    ddi_driver_name(rdip), ddi_get_instance(rdip),
825 		    PX_DMA_TYPE(mp));
826 		/*NOTREACHED*/
827 	}
828 	*handlep = (ddi_dma_handle_t)mp;
829 	mp->dmai_flags |= PX_DMAI_FLAGS_INUSE;
830 	px_dump_dma_handle(DBG_DMA_MAP, dip, mp);
831 
832 	return ((mp->dmai_nwin == 1) ? DDI_DMA_MAPPED : DDI_DMA_PARTIAL_MAP);
833 freehandle:
834 	if (ret == DDI_DMA_NORESOURCES)
835 		px_dma_freemp(mp); /* don't run_callback() */
836 	else
837 		(void) px_dma_freehdl(dip, rdip, (ddi_dma_handle_t)mp);
838 	return (ret);
839 }
840 
841 
842 /*
843  * bus dma alloc handle entry point:
844  */
845 int
846 px_dma_allochdl(dev_info_t *dip, dev_info_t *rdip, ddi_dma_attr_t *attrp,
847 	int (*waitfp)(caddr_t), caddr_t arg, ddi_dma_handle_t *handlep)
848 {
849 	px_t *px_p = DIP_TO_STATE(dip);
850 	ddi_dma_impl_t *mp;
851 	int rval;
852 
853 	DBG(DBG_DMA_ALLOCH, dip, "rdip=%s%d\n",
854 	    ddi_driver_name(rdip), ddi_get_instance(rdip));
855 
856 	if (attrp->dma_attr_version != DMA_ATTR_V0)
857 		return (DDI_DMA_BADATTR);
858 
859 	if (!(mp = px_dma_allocmp(dip, rdip, waitfp, arg)))
860 		return (DDI_DMA_NORESOURCES);
861 
862 	/*
863 	 * Save requestor's information
864 	 */
865 	mp->dmai_attr	= *attrp; /* whole object - augmented later  */
866 	*PX_DEV_ATTR(mp)	= *attrp; /* whole object - device orig attr */
867 	DBG(DBG_DMA_ALLOCH, dip, "mp=%p\n", mp);
868 
869 	/* check and convert dma attributes to handle parameters */
870 	if (rval = px_dma_attr2hdl(px_p, mp)) {
871 		px_dma_freehdl(dip, rdip, (ddi_dma_handle_t)mp);
872 		*handlep = NULL;
873 		return (rval);
874 	}
875 	*handlep = (ddi_dma_handle_t)mp;
876 	return (DDI_SUCCESS);
877 }
878 
879 
880 /*
881  * bus dma free handle entry point:
882  */
883 /*ARGSUSED*/
884 int
885 px_dma_freehdl(dev_info_t *dip, dev_info_t *rdip, ddi_dma_handle_t handle)
886 {
887 	DBG(DBG_DMA_FREEH, dip, "rdip=%s%d mp=%p\n",
888 	    ddi_driver_name(rdip), ddi_get_instance(rdip), handle);
889 	px_dma_freemp((ddi_dma_impl_t *)handle);
890 
891 	if (px_kmem_clid) {
892 		DBG(DBG_DMA_FREEH, dip, "run handle callback\n");
893 		ddi_run_callback(&px_kmem_clid);
894 	}
895 	return (DDI_SUCCESS);
896 }
897 
898 
899 /*
900  * bus dma bind handle entry point:
901  */
902 int
903 px_dma_bindhdl(dev_info_t *dip, dev_info_t *rdip,
904 	ddi_dma_handle_t handle, ddi_dma_req_t *dmareq,
905 	ddi_dma_cookie_t *cookiep, uint_t *ccountp)
906 {
907 	px_t *px_p = DIP_TO_STATE(dip);
908 	px_mmu_t *mmu_p = px_p->px_mmu_p;
909 	ddi_dma_impl_t *mp = (ddi_dma_impl_t *)handle;
910 	int ret;
911 
912 	DBG(DBG_DMA_BINDH, dip, "rdip=%s%d mp=%p dmareq=%p\n",
913 	    ddi_driver_name(rdip), ddi_get_instance(rdip), mp, dmareq);
914 
915 	if (mp->dmai_flags & PX_DMAI_FLAGS_INUSE)
916 		return (DDI_DMA_INUSE);
917 
918 	ASSERT((mp->dmai_flags & ~PX_DMAI_FLAGS_PRESERVE) == 0);
919 	mp->dmai_flags |= PX_DMAI_FLAGS_INUSE;
920 
921 	if (ret = px_dma_type(px_p, dmareq, mp))
922 		goto err;
923 	if (ret = px_dma_pfn(px_p, dmareq, mp))
924 		goto err;
925 
926 	switch (PX_DMA_TYPE(mp)) {
927 	case PX_DMAI_FLAGS_DVMA:
928 		if (ret = px_dvma_win(px_p, dmareq, mp))
929 			goto map_err;
930 		if (!PX_DMA_CANCACHE(mp)) {	/* try fast track */
931 			if (PX_DMA_CANFAST(mp)) {
932 				if (!px_dvma_map_fast(mmu_p, mp))
933 					goto mapped; /*LINTED E_NOP_ELSE_STMT*/
934 			} else {
935 				PX_DVMA_FASTTRAK_PROF(mp);
936 			}
937 		}
938 		if (ret = px_dvma_map(mp, dmareq, mmu_p))
939 			goto map_err;
940 mapped:
941 		*ccountp = 1;
942 		MAKE_DMA_COOKIE(cookiep, mp->dmai_mapping, mp->dmai_size);
943 		break;
944 	case PX_DMAI_FLAGS_BYPASS:
945 	case PX_DMAI_FLAGS_PTP:
946 		if (ret = px_dma_physwin(px_p, dmareq, mp))
947 			goto map_err;
948 		*ccountp = PX_WINLST(mp)->win_ncookies;
949 		*cookiep =
950 		    *(ddi_dma_cookie_t *)(PX_WINLST(mp) + 1); /* wholeobj */
951 		break;
952 	default:
953 		cmn_err(CE_PANIC, "%s%d: px_dma_bindhdl(%p): bad dma type",
954 		    ddi_driver_name(rdip), ddi_get_instance(rdip), mp);
955 		/*NOTREACHED*/
956 	}
957 	DBG(DBG_DMA_BINDH, dip, "cookie %" PRIx64 "+%x\n",
958 	    cookiep->dmac_address, cookiep->dmac_size);
959 	px_dump_dma_handle(DBG_DMA_MAP, dip, mp);
960 
961 	/* insert dma handle into FMA cache */
962 	if (mp->dmai_attr.dma_attr_flags & DDI_DMA_FLAGERR) {
963 		(void) ndi_fmc_insert(rdip, DMA_HANDLE, mp, NULL);
964 		mp->dmai_error.err_cf = px_err_dma_hdl_check;
965 	}
966 
967 	return (mp->dmai_nwin == 1 ? DDI_DMA_MAPPED : DDI_DMA_PARTIAL_MAP);
968 map_err:
969 	px_dma_freepfn(mp);
970 err:
971 	mp->dmai_flags &= PX_DMAI_FLAGS_PRESERVE;
972 	return (ret);
973 }
974 
975 
976 /*
977  * bus dma unbind handle entry point:
978  */
979 /*ARGSUSED*/
980 int
981 px_dma_unbindhdl(dev_info_t *dip, dev_info_t *rdip, ddi_dma_handle_t handle)
982 {
983 	ddi_dma_impl_t *mp = (ddi_dma_impl_t *)handle;
984 	px_t *px_p = DIP_TO_STATE(dip);
985 	px_mmu_t *mmu_p = px_p->px_mmu_p;
986 
987 	DBG(DBG_DMA_UNBINDH, dip, "rdip=%s%d, mp=%p\n",
988 	    ddi_driver_name(rdip), ddi_get_instance(rdip), handle);
989 	if ((mp->dmai_flags & PX_DMAI_FLAGS_INUSE) == 0) {
990 		DBG(DBG_DMA_UNBINDH, dip, "handle not inuse\n");
991 		return (DDI_FAILURE);
992 	}
993 
994 	/* remove dma handle from FMA cache */
995 	if (mp->dmai_attr.dma_attr_flags & DDI_DMA_FLAGERR) {
996 		if (DEVI(rdip)->devi_fmhdl != NULL &&
997 		    DDI_FM_DMA_ERR_CAP(DEVI(rdip)->devi_fmhdl->fh_cap)) {
998 			(void) ndi_fmc_remove(rdip, DMA_HANDLE, mp);
999 		}
1000 	}
1001 
1002 	/*
1003 	 * Here if the handle is using the iommu.  Unload all the iommu
1004 	 * translations.
1005 	 */
1006 	switch (PX_DMA_TYPE(mp)) {
1007 	case PX_DMAI_FLAGS_DVMA:
1008 		px_mmu_unmap_window(mmu_p, mp);
1009 		px_dvma_unmap(mmu_p, mp);
1010 		px_dma_freepfn(mp);
1011 		break;
1012 	case PX_DMAI_FLAGS_BYPASS:
1013 	case PX_DMAI_FLAGS_PTP:
1014 		px_dma_freewin(mp);
1015 		break;
1016 	default:
1017 		cmn_err(CE_PANIC, "%s%d: px_dma_unbindhdl:bad dma type %p",
1018 		    ddi_driver_name(rdip), ddi_get_instance(rdip), mp);
1019 		/*NOTREACHED*/
1020 	}
1021 	if (mmu_p->mmu_dvma_clid != 0) {
1022 		DBG(DBG_DMA_UNBINDH, dip, "run dvma callback\n");
1023 		ddi_run_callback(&mmu_p->mmu_dvma_clid);
1024 	}
1025 	if (px_kmem_clid) {
1026 		DBG(DBG_DMA_UNBINDH, dip, "run handle callback\n");
1027 		ddi_run_callback(&px_kmem_clid);
1028 	}
1029 	mp->dmai_flags &= PX_DMAI_FLAGS_PRESERVE;
1030 
1031 	return (DDI_SUCCESS);
1032 }
1033 
1034 /*
1035  * bus dma win entry point:
1036  */
1037 int
1038 px_dma_win(dev_info_t *dip, dev_info_t *rdip,
1039 	ddi_dma_handle_t handle, uint_t win, off_t *offp,
1040 	size_t *lenp, ddi_dma_cookie_t *cookiep, uint_t *ccountp)
1041 {
1042 	ddi_dma_impl_t	*mp = (ddi_dma_impl_t *)handle;
1043 	int		ret;
1044 
1045 	DBG(DBG_DMA_WIN, dip, "rdip=%s%d\n",
1046 	    ddi_driver_name(rdip), ddi_get_instance(rdip));
1047 
1048 	px_dump_dma_handle(DBG_DMA_WIN, dip, mp);
1049 	if (win >= mp->dmai_nwin) {
1050 		DBG(DBG_DMA_WIN, dip, "%x out of range\n", win);
1051 		return (DDI_FAILURE);
1052 	}
1053 
1054 	switch (PX_DMA_TYPE(mp)) {
1055 	case PX_DMAI_FLAGS_DVMA:
1056 		if (win != PX_DMA_CURWIN(mp)) {
1057 			px_t *px_p = DIP_TO_STATE(dip);
1058 			px_mmu_t *mmu_p = px_p->px_mmu_p;
1059 			px_mmu_unmap_window(mmu_p, mp);
1060 
1061 			/* map_window sets dmai_mapping/size/offset */
1062 			px_mmu_map_window(mmu_p, mp, win);
1063 			if ((ret = px_mmu_map_window(mmu_p,
1064 			    mp, win)) != DDI_SUCCESS)
1065 				return (ret);
1066 		}
1067 		if (cookiep)
1068 			MAKE_DMA_COOKIE(cookiep, mp->dmai_mapping,
1069 			    mp->dmai_size);
1070 		if (ccountp)
1071 			*ccountp = 1;
1072 		break;
1073 	case PX_DMAI_FLAGS_PTP:
1074 	case PX_DMAI_FLAGS_BYPASS: {
1075 		int i;
1076 		ddi_dma_cookie_t *ck_p;
1077 		px_dma_win_t *win_p = mp->dmai_winlst;
1078 
1079 		for (i = 0; i < win; win_p = win_p->win_next, i++) {};
1080 		ck_p = (ddi_dma_cookie_t *)(win_p + 1);
1081 		*cookiep = *ck_p;
1082 		mp->dmai_offset = win_p->win_offset;
1083 		mp->dmai_size   = win_p->win_size;
1084 		mp->dmai_mapping = ck_p->dmac_laddress;
1085 		mp->dmai_cookie = ck_p + 1;
1086 		win_p->win_curseg = 0;
1087 		if (ccountp)
1088 			*ccountp = win_p->win_ncookies;
1089 		}
1090 		break;
1091 	default:
1092 		cmn_err(CE_WARN, "%s%d: px_dma_win:bad dma type 0x%x",
1093 		    ddi_driver_name(rdip), ddi_get_instance(rdip),
1094 		    PX_DMA_TYPE(mp));
1095 		return (DDI_FAILURE);
1096 	}
1097 	if (cookiep)
1098 		DBG(DBG_DMA_WIN, dip,
1099 		    "cookie - dmac_address=%x dmac_size=%x\n",
1100 		    cookiep->dmac_address, cookiep->dmac_size);
1101 	if (offp)
1102 		*offp = (off_t)mp->dmai_offset;
1103 	if (lenp)
1104 		*lenp = mp->dmai_size;
1105 	return (DDI_SUCCESS);
1106 }
1107 
1108 #ifdef	DEBUG
1109 static char *px_dmactl_str[] = {
1110 	"DDI_DMA_FREE",
1111 	"DDI_DMA_SYNC",
1112 	"DDI_DMA_HTOC",
1113 	"DDI_DMA_KVADDR",
1114 	"DDI_DMA_MOVWIN",
1115 	"DDI_DMA_REPWIN",
1116 	"DDI_DMA_GETERR",
1117 	"DDI_DMA_COFF",
1118 	"DDI_DMA_NEXTWIN",
1119 	"DDI_DMA_NEXTSEG",
1120 	"DDI_DMA_SEGTOC",
1121 	"DDI_DMA_RESERVE",
1122 	"DDI_DMA_RELEASE",
1123 	"DDI_DMA_RESETH",
1124 	"DDI_DMA_CKSYNC",
1125 	"DDI_DMA_IOPB_ALLOC",
1126 	"DDI_DMA_IOPB_FREE",
1127 	"DDI_DMA_SMEM_ALLOC",
1128 	"DDI_DMA_SMEM_FREE",
1129 	"DDI_DMA_SET_SBUS64"
1130 };
1131 #endif	/* DEBUG */
1132 
1133 /*
1134  * bus dma control entry point:
1135  */
1136 /*ARGSUSED*/
1137 int
1138 px_dma_ctlops(dev_info_t *dip, dev_info_t *rdip, ddi_dma_handle_t handle,
1139 	enum ddi_dma_ctlops cmd, off_t *offp, size_t *lenp, caddr_t *objp,
1140 	uint_t cache_flags)
1141 {
1142 	ddi_dma_impl_t *mp = (ddi_dma_impl_t *)handle;
1143 
1144 #ifdef	DEBUG
1145 	DBG(DBG_DMA_CTL, dip, "%s: rdip=%s%d\n", px_dmactl_str[cmd],
1146 	    ddi_driver_name(rdip), ddi_get_instance(rdip));
1147 #endif	/* DEBUG */
1148 
1149 	switch (cmd) {
1150 	case DDI_DMA_FREE:
1151 		(void) px_dma_unbindhdl(dip, rdip, handle);
1152 		(void) px_dma_freehdl(dip, rdip, handle);
1153 		return (DDI_SUCCESS);
1154 	case DDI_DMA_RESERVE: {
1155 		px_t *px_p = DIP_TO_STATE(dip);
1156 		return (px_fdvma_reserve(dip, rdip, px_p,
1157 		    (ddi_dma_req_t *)offp, (ddi_dma_handle_t *)objp));
1158 		}
1159 	case DDI_DMA_RELEASE: {
1160 		px_t *px_p = DIP_TO_STATE(dip);
1161 		return (px_fdvma_release(dip, px_p, mp));
1162 		}
1163 	default:
1164 		break;
1165 	}
1166 
1167 	switch (PX_DMA_TYPE(mp)) {
1168 	case PX_DMAI_FLAGS_DVMA:
1169 		return (px_dvma_ctl(dip, rdip, mp, cmd, offp, lenp, objp,
1170 		    cache_flags));
1171 	case PX_DMAI_FLAGS_PTP:
1172 	case PX_DMAI_FLAGS_BYPASS:
1173 		return (px_dma_ctl(dip, rdip, mp, cmd, offp, lenp, objp,
1174 		    cache_flags));
1175 	default:
1176 		cmn_err(CE_PANIC, "%s%d: px_dma_ctlops(%x):bad dma type %x",
1177 		    ddi_driver_name(rdip), ddi_get_instance(rdip), cmd,
1178 		    mp->dmai_flags);
1179 		/*NOTREACHED*/
1180 	}
1181 	return (0);
1182 }
1183 
1184 /*
1185  * control ops entry point:
1186  *
1187  * Requests handled completely:
1188  *	DDI_CTLOPS_INITCHILD	see init_child() for details
1189  *	DDI_CTLOPS_UNINITCHILD
1190  *	DDI_CTLOPS_REPORTDEV	see report_dev() for details
1191  *	DDI_CTLOPS_IOMIN	cache line size if streaming otherwise 1
1192  *	DDI_CTLOPS_REGSIZE
1193  *	DDI_CTLOPS_NREGS
1194  *	DDI_CTLOPS_DVMAPAGESIZE
1195  *	DDI_CTLOPS_POKE
1196  *	DDI_CTLOPS_PEEK
1197  *
1198  * All others passed to parent.
1199  */
1200 int
1201 px_ctlops(dev_info_t *dip, dev_info_t *rdip,
1202 	ddi_ctl_enum_t op, void *arg, void *result)
1203 {
1204 	px_t *px_p = DIP_TO_STATE(dip);
1205 	struct detachspec *ds;
1206 	struct attachspec *as;
1207 
1208 	switch (op) {
1209 	case DDI_CTLOPS_INITCHILD:
1210 		return (px_init_child(px_p, (dev_info_t *)arg));
1211 
1212 	case DDI_CTLOPS_UNINITCHILD:
1213 		return (px_uninit_child(px_p, (dev_info_t *)arg));
1214 
1215 	case DDI_CTLOPS_ATTACH:
1216 		if (!pcie_is_child(dip, rdip))
1217 			return (DDI_SUCCESS);
1218 
1219 		as = (struct attachspec *)arg;
1220 		switch (as->when) {
1221 		case DDI_PRE:
1222 			if (as->cmd == DDI_ATTACH) {
1223 				DBG(DBG_PWR, dip, "PRE_ATTACH for %s@%d\n",
1224 				    ddi_driver_name(rdip),
1225 				    ddi_get_instance(rdip));
1226 				return (pcie_pm_hold(dip));
1227 			}
1228 			if (as->cmd == DDI_RESUME) {
1229 				DBG(DBG_PWR, dip, "PRE_RESUME for %s@%d\n",
1230 				    ddi_driver_name(rdip),
1231 				    ddi_get_instance(rdip));
1232 
1233 				pcie_clear_errors(rdip);
1234 			}
1235 			return (DDI_SUCCESS);
1236 
1237 		case DDI_POST:
1238 			DBG(DBG_PWR, dip, "POST_ATTACH for %s@%d\n",
1239 			    ddi_driver_name(rdip), ddi_get_instance(rdip));
1240 			if (as->cmd == DDI_ATTACH && as->result != DDI_SUCCESS)
1241 				pcie_pm_release(dip);
1242 
1243 			if (as->result == DDI_SUCCESS)
1244 				pf_init(rdip, (void *)px_p->px_fm_ibc, as->cmd);
1245 
1246 			(void) pcie_postattach_child(rdip);
1247 
1248 			return (DDI_SUCCESS);
1249 		default:
1250 			break;
1251 		}
1252 		break;
1253 
1254 	case DDI_CTLOPS_DETACH:
1255 		if (!pcie_is_child(dip, rdip))
1256 			return (DDI_SUCCESS);
1257 
1258 		ds = (struct detachspec *)arg;
1259 		switch (ds->when) {
1260 		case DDI_POST:
1261 			if (ds->cmd == DDI_DETACH &&
1262 			    ds->result == DDI_SUCCESS) {
1263 				DBG(DBG_PWR, dip, "POST_DETACH for %s@%d\n",
1264 				    ddi_driver_name(rdip),
1265 				    ddi_get_instance(rdip));
1266 				return (pcie_pm_remove_child(dip, rdip));
1267 			}
1268 			return (DDI_SUCCESS);
1269 		case DDI_PRE:
1270 			pf_fini(rdip, ds->cmd);
1271 			return (DDI_SUCCESS);
1272 		default:
1273 			break;
1274 		}
1275 		break;
1276 
1277 	case DDI_CTLOPS_REPORTDEV:
1278 		return (px_report_dev(rdip));
1279 
1280 	case DDI_CTLOPS_IOMIN:
1281 		return (DDI_SUCCESS);
1282 
1283 	case DDI_CTLOPS_REGSIZE:
1284 		*((off_t *)result) = px_get_reg_set_size(rdip, *((int *)arg));
1285 		return (*((off_t *)result) == 0 ? DDI_FAILURE : DDI_SUCCESS);
1286 
1287 	case DDI_CTLOPS_NREGS:
1288 		*((uint_t *)result) = px_get_nreg_set(rdip);
1289 		return (DDI_SUCCESS);
1290 
1291 	case DDI_CTLOPS_DVMAPAGESIZE:
1292 		*((ulong_t *)result) = MMU_PAGE_SIZE;
1293 		return (DDI_SUCCESS);
1294 
1295 	case DDI_CTLOPS_POKE:	/* platform dependent implementation. */
1296 		return (px_lib_ctlops_poke(dip, rdip,
1297 		    (peekpoke_ctlops_t *)arg));
1298 
1299 	case DDI_CTLOPS_PEEK:	/* platform dependent implementation. */
1300 		return (px_lib_ctlops_peek(dip, rdip,
1301 		    (peekpoke_ctlops_t *)arg, result));
1302 
1303 	case DDI_CTLOPS_POWER:
1304 	default:
1305 		break;
1306 	}
1307 
1308 	/*
1309 	 * Now pass the request up to our parent.
1310 	 */
1311 	DBG(DBG_CTLOPS, dip, "passing request to parent: rdip=%s%d\n",
1312 	    ddi_driver_name(rdip), ddi_get_instance(rdip));
1313 	return (ddi_ctlops(dip, rdip, op, arg, result));
1314 }
1315 
1316 /* ARGSUSED */
1317 int
1318 px_intr_ops(dev_info_t *dip, dev_info_t *rdip, ddi_intr_op_t intr_op,
1319     ddi_intr_handle_impl_t *hdlp, void *result)
1320 {
1321 	int	intr_types, ret = DDI_SUCCESS;
1322 
1323 	DBG(DBG_INTROPS, dip, "px_intr_ops: rdip=%s%d\n",
1324 	    ddi_driver_name(rdip), ddi_get_instance(rdip));
1325 
1326 	/* Process DDI_INTROP_SUPPORTED_TYPES request here */
1327 	if (intr_op == DDI_INTROP_SUPPORTED_TYPES) {
1328 		*(int *)result = i_ddi_get_intx_nintrs(rdip) ?
1329 		    DDI_INTR_TYPE_FIXED : 0;
1330 
1331 		if ((pci_msi_get_supported_type(rdip,
1332 		    &intr_types)) == DDI_SUCCESS) {
1333 			/*
1334 			 * Double check supported interrupt types vs.
1335 			 * what the host bridge supports.
1336 			 */
1337 			*(int *)result |= intr_types;
1338 		}
1339 
1340 		return (ret);
1341 	}
1342 
1343 	/*
1344 	 * PCI-E nexus driver supports fixed, MSI and MSI-X interrupts.
1345 	 * Return failure if interrupt type is not supported.
1346 	 */
1347 	switch (hdlp->ih_type) {
1348 	case DDI_INTR_TYPE_FIXED:
1349 		ret = px_intx_ops(dip, rdip, intr_op, hdlp, result);
1350 		break;
1351 	case DDI_INTR_TYPE_MSI:
1352 	case DDI_INTR_TYPE_MSIX:
1353 		ret = px_msix_ops(dip, rdip, intr_op, hdlp, result);
1354 		break;
1355 	default:
1356 		ret = DDI_ENOTSUP;
1357 		break;
1358 	}
1359 
1360 	return (ret);
1361 }
1362 
1363 static int
1364 px_init_hotplug(px_t *px_p)
1365 {
1366 	px_bus_range_t bus_range;
1367 	dev_info_t *dip;
1368 	pciehpc_regops_t regops;
1369 
1370 	dip = px_p->px_dip;
1371 
1372 	if (ddi_prop_exists(DDI_DEV_T_ANY, dip, DDI_PROP_DONTPASS,
1373 	    "hotplug-capable") == 0)
1374 		return (DDI_FAILURE);
1375 
1376 	/*
1377 	 * Before initializing hotplug - open up bus range.  The busra
1378 	 * module will initialize its pool of bus numbers from this.
1379 	 * "busra" will be the agent that keeps track of them during
1380 	 * hotplug.  Also, note, that busra will remove any bus numbers
1381 	 * already in use from boot time.
1382 	 */
1383 	if (ddi_prop_exists(DDI_DEV_T_ANY, dip, DDI_PROP_DONTPASS,
1384 	    "bus-range") == 0) {
1385 		cmn_err(CE_WARN, "%s%d: bus-range not found\n",
1386 		    ddi_driver_name(dip), ddi_get_instance(dip));
1387 #ifdef	DEBUG
1388 		bus_range.lo = 0x0;
1389 		bus_range.hi = 0xff;
1390 
1391 		if (ndi_prop_update_int_array(DDI_DEV_T_NONE,
1392 		    dip, "bus-range", (int *)&bus_range, 2)
1393 		    != DDI_PROP_SUCCESS) {
1394 			return (DDI_FAILURE);
1395 		}
1396 #else
1397 		return (DDI_FAILURE);
1398 #endif
1399 	}
1400 
1401 	if (px_lib_hotplug_init(dip, (void *)&regops) != DDI_SUCCESS)
1402 		return (DDI_FAILURE);
1403 
1404 	if (pciehpc_init(dip, &regops) != DDI_SUCCESS) {
1405 		px_lib_hotplug_uninit(dip);
1406 		return (DDI_FAILURE);
1407 	}
1408 
1409 	if (pcihp_init(dip) != DDI_SUCCESS) {
1410 		(void) pciehpc_uninit(dip);
1411 		px_lib_hotplug_uninit(dip);
1412 		return (DDI_FAILURE);
1413 	}
1414 
1415 	if (pcihp_get_cb_ops() != NULL) {
1416 		DBG(DBG_ATTACH, dip, "%s%d hotplug enabled",
1417 		    ddi_driver_name(dip), ddi_get_instance(dip));
1418 		px_p->px_dev_caps |= PX_HOTPLUG_CAPABLE;
1419 	}
1420 
1421 	return (DDI_SUCCESS);
1422 }
1423 
1424 static int
1425 px_uninit_hotplug(dev_info_t *dip)
1426 {
1427 	if (pcihp_uninit(dip) != DDI_SUCCESS)
1428 		return (DDI_FAILURE);
1429 
1430 	if (pciehpc_uninit(dip) != DDI_SUCCESS)
1431 		return (DDI_FAILURE);
1432 
1433 	px_lib_hotplug_uninit(dip);
1434 
1435 	return (DDI_SUCCESS);
1436 }
1437