17c478bd9Sstevel@tonic-gate /* 27c478bd9Sstevel@tonic-gate * CDDL HEADER START 37c478bd9Sstevel@tonic-gate * 47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*19174f18Svikram * Common Development and Distribution License (the "License"). 6*19174f18Svikram * You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate * 87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate * and limitations under the License. 127c478bd9Sstevel@tonic-gate * 137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate * 197c478bd9Sstevel@tonic-gate * CDDL HEADER END 207c478bd9Sstevel@tonic-gate */ 217c478bd9Sstevel@tonic-gate /* 22*19174f18Svikram * Copyright 2007 Sun Microsystems, Inc. All rights reserved. 237c478bd9Sstevel@tonic-gate * Use is subject to license terms. 247c478bd9Sstevel@tonic-gate */ 257c478bd9Sstevel@tonic-gate 267c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 277c478bd9Sstevel@tonic-gate 287c478bd9Sstevel@tonic-gate #include <sys/types.h> 297c478bd9Sstevel@tonic-gate #include <sys/param.h> 307c478bd9Sstevel@tonic-gate #include <sys/systm.h> 317c478bd9Sstevel@tonic-gate #include <sys/buf.h> 327c478bd9Sstevel@tonic-gate #include <sys/uio.h> 337c478bd9Sstevel@tonic-gate #include <sys/cred.h> 347c478bd9Sstevel@tonic-gate #include <sys/poll.h> 357c478bd9Sstevel@tonic-gate #include <sys/mman.h> 367c478bd9Sstevel@tonic-gate #include <sys/kmem.h> 377c478bd9Sstevel@tonic-gate #include <sys/model.h> 387c478bd9Sstevel@tonic-gate #include <sys/file.h> 397c478bd9Sstevel@tonic-gate #include <sys/proc.h> 407c478bd9Sstevel@tonic-gate #include <sys/open.h> 417c478bd9Sstevel@tonic-gate #include <sys/user.h> 427c478bd9Sstevel@tonic-gate #include <sys/t_lock.h> 437c478bd9Sstevel@tonic-gate #include <sys/vm.h> 447c478bd9Sstevel@tonic-gate #include <sys/stat.h> 457c478bd9Sstevel@tonic-gate #include <vm/hat.h> 467c478bd9Sstevel@tonic-gate #include <vm/seg.h> 477c478bd9Sstevel@tonic-gate #include <vm/as.h> 487c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h> 497c478bd9Sstevel@tonic-gate #include <sys/debug.h> 507c478bd9Sstevel@tonic-gate #include <sys/avintr.h> 517c478bd9Sstevel@tonic-gate #include <sys/autoconf.h> 527c478bd9Sstevel@tonic-gate #include <sys/sunddi.h> 537c478bd9Sstevel@tonic-gate #include <sys/esunddi.h> 547c478bd9Sstevel@tonic-gate #include <sys/sunndi.h> 557c478bd9Sstevel@tonic-gate #include <sys/ddi.h> 567c478bd9Sstevel@tonic-gate #include <sys/kstat.h> 577c478bd9Sstevel@tonic-gate #include <sys/conf.h> 587c478bd9Sstevel@tonic-gate #include <sys/ddi_impldefs.h> /* include implementation structure defs */ 597c478bd9Sstevel@tonic-gate #include <sys/ndi_impldefs.h> 607c478bd9Sstevel@tonic-gate #include <sys/hwconf.h> 617c478bd9Sstevel@tonic-gate #include <sys/pathname.h> 627c478bd9Sstevel@tonic-gate #include <sys/modctl.h> 637c478bd9Sstevel@tonic-gate #include <sys/epm.h> 647c478bd9Sstevel@tonic-gate #include <sys/devctl.h> 657c478bd9Sstevel@tonic-gate #include <sys/callb.h> 667c478bd9Sstevel@tonic-gate #include <sys/bootconf.h> 677c478bd9Sstevel@tonic-gate #include <sys/dacf_impl.h> 687c478bd9Sstevel@tonic-gate #include <sys/nvpair.h> 697c478bd9Sstevel@tonic-gate #include <sys/sunmdi.h> 707c478bd9Sstevel@tonic-gate #include <sys/fs/dv_node.h> 717c478bd9Sstevel@tonic-gate 727c478bd9Sstevel@tonic-gate #ifdef __sparc 737c478bd9Sstevel@tonic-gate #include <sys/archsystm.h> /* getpil/setpil */ 747c478bd9Sstevel@tonic-gate #include <sys/membar.h> /* membar_sync */ 757c478bd9Sstevel@tonic-gate #endif 767c478bd9Sstevel@tonic-gate 777c478bd9Sstevel@tonic-gate /* 787c478bd9Sstevel@tonic-gate * ndi property handling 797c478bd9Sstevel@tonic-gate */ 807c478bd9Sstevel@tonic-gate int 817c478bd9Sstevel@tonic-gate ndi_prop_update_int(dev_t match_dev, dev_info_t *dip, 827c478bd9Sstevel@tonic-gate char *name, int data) 837c478bd9Sstevel@tonic-gate { 847c478bd9Sstevel@tonic-gate return (ddi_prop_update_common(match_dev, dip, 857c478bd9Sstevel@tonic-gate DDI_PROP_HW_DEF | DDI_PROP_TYPE_INT | DDI_PROP_DONTSLEEP, 867c478bd9Sstevel@tonic-gate name, &data, 1, ddi_prop_fm_encode_ints)); 877c478bd9Sstevel@tonic-gate } 887c478bd9Sstevel@tonic-gate 897c478bd9Sstevel@tonic-gate int 907c478bd9Sstevel@tonic-gate ndi_prop_update_int64(dev_t match_dev, dev_info_t *dip, 917c478bd9Sstevel@tonic-gate char *name, int64_t data) 927c478bd9Sstevel@tonic-gate { 937c478bd9Sstevel@tonic-gate return (ddi_prop_update_common(match_dev, dip, 947c478bd9Sstevel@tonic-gate DDI_PROP_HW_DEF | DDI_PROP_TYPE_INT64 | DDI_PROP_DONTSLEEP, 957c478bd9Sstevel@tonic-gate name, &data, 1, ddi_prop_fm_encode_int64)); 967c478bd9Sstevel@tonic-gate } 977c478bd9Sstevel@tonic-gate 987c478bd9Sstevel@tonic-gate int 997c478bd9Sstevel@tonic-gate ndi_prop_create_boolean(dev_t match_dev, dev_info_t *dip, 1007c478bd9Sstevel@tonic-gate char *name) 1017c478bd9Sstevel@tonic-gate { 1027c478bd9Sstevel@tonic-gate return (ddi_prop_update_common(match_dev, dip, 1037c478bd9Sstevel@tonic-gate DDI_PROP_HW_DEF | DDI_PROP_TYPE_ANY | DDI_PROP_DONTSLEEP, 1047c478bd9Sstevel@tonic-gate name, NULL, 0, ddi_prop_fm_encode_bytes)); 1057c478bd9Sstevel@tonic-gate } 1067c478bd9Sstevel@tonic-gate 1077c478bd9Sstevel@tonic-gate int 1087c478bd9Sstevel@tonic-gate ndi_prop_update_int_array(dev_t match_dev, dev_info_t *dip, 1097c478bd9Sstevel@tonic-gate char *name, int *data, uint_t nelements) 1107c478bd9Sstevel@tonic-gate { 1117c478bd9Sstevel@tonic-gate return (ddi_prop_update_common(match_dev, dip, 1127c478bd9Sstevel@tonic-gate DDI_PROP_HW_DEF | DDI_PROP_TYPE_INT | DDI_PROP_DONTSLEEP, 1137c478bd9Sstevel@tonic-gate name, data, nelements, ddi_prop_fm_encode_ints)); 1147c478bd9Sstevel@tonic-gate } 1157c478bd9Sstevel@tonic-gate 1167c478bd9Sstevel@tonic-gate int 1177c478bd9Sstevel@tonic-gate ndi_prop_update_int64_array(dev_t match_dev, dev_info_t *dip, 1187c478bd9Sstevel@tonic-gate char *name, int64_t *data, uint_t nelements) 1197c478bd9Sstevel@tonic-gate { 1207c478bd9Sstevel@tonic-gate return (ddi_prop_update_common(match_dev, dip, 1217c478bd9Sstevel@tonic-gate DDI_PROP_HW_DEF | DDI_PROP_TYPE_INT64 | DDI_PROP_DONTSLEEP, 1227c478bd9Sstevel@tonic-gate name, data, nelements, ddi_prop_fm_encode_int64)); 1237c478bd9Sstevel@tonic-gate } 1247c478bd9Sstevel@tonic-gate 1257c478bd9Sstevel@tonic-gate int 1267c478bd9Sstevel@tonic-gate ndi_prop_update_string(dev_t match_dev, dev_info_t *dip, 1277c478bd9Sstevel@tonic-gate char *name, char *data) 1287c478bd9Sstevel@tonic-gate { 1297c478bd9Sstevel@tonic-gate return (ddi_prop_update_common(match_dev, dip, 1307c478bd9Sstevel@tonic-gate DDI_PROP_HW_DEF | DDI_PROP_TYPE_STRING | DDI_PROP_DONTSLEEP, 1317c478bd9Sstevel@tonic-gate name, &data, 1, ddi_prop_fm_encode_string)); 1327c478bd9Sstevel@tonic-gate } 1337c478bd9Sstevel@tonic-gate 1347c478bd9Sstevel@tonic-gate int 1357c478bd9Sstevel@tonic-gate ndi_prop_update_string_array(dev_t match_dev, dev_info_t *dip, 1367c478bd9Sstevel@tonic-gate char *name, char **data, uint_t nelements) 1377c478bd9Sstevel@tonic-gate { 1387c478bd9Sstevel@tonic-gate return (ddi_prop_update_common(match_dev, dip, 1397c478bd9Sstevel@tonic-gate DDI_PROP_HW_DEF | DDI_PROP_TYPE_STRING | DDI_PROP_DONTSLEEP, 1407c478bd9Sstevel@tonic-gate name, data, nelements, 1417c478bd9Sstevel@tonic-gate ddi_prop_fm_encode_strings)); 1427c478bd9Sstevel@tonic-gate } 1437c478bd9Sstevel@tonic-gate 1447c478bd9Sstevel@tonic-gate int 1457c478bd9Sstevel@tonic-gate ndi_prop_update_byte_array(dev_t match_dev, dev_info_t *dip, 1467c478bd9Sstevel@tonic-gate char *name, uchar_t *data, uint_t nelements) 1477c478bd9Sstevel@tonic-gate { 1487c478bd9Sstevel@tonic-gate if (nelements == 0) 1497c478bd9Sstevel@tonic-gate return (DDI_PROP_INVAL_ARG); 1507c478bd9Sstevel@tonic-gate 1517c478bd9Sstevel@tonic-gate return (ddi_prop_update_common(match_dev, dip, 1527c478bd9Sstevel@tonic-gate DDI_PROP_HW_DEF | DDI_PROP_TYPE_BYTE | DDI_PROP_DONTSLEEP, 1537c478bd9Sstevel@tonic-gate name, data, nelements, ddi_prop_fm_encode_bytes)); 1547c478bd9Sstevel@tonic-gate } 1557c478bd9Sstevel@tonic-gate 1567c478bd9Sstevel@tonic-gate int 1577c478bd9Sstevel@tonic-gate ndi_prop_remove(dev_t dev, dev_info_t *dip, char *name) 1587c478bd9Sstevel@tonic-gate { 1597c478bd9Sstevel@tonic-gate return (ddi_prop_remove_common(dev, dip, name, DDI_PROP_HW_DEF)); 1607c478bd9Sstevel@tonic-gate } 1617c478bd9Sstevel@tonic-gate 1627c478bd9Sstevel@tonic-gate void 1637c478bd9Sstevel@tonic-gate ndi_prop_remove_all(dev_info_t *dip) 1647c478bd9Sstevel@tonic-gate { 1657c478bd9Sstevel@tonic-gate ddi_prop_remove_all_common(dip, (int)DDI_PROP_HW_DEF); 1667c478bd9Sstevel@tonic-gate } 1677c478bd9Sstevel@tonic-gate 1687c478bd9Sstevel@tonic-gate /* 1697c478bd9Sstevel@tonic-gate * Post an event notification to nexus driver responsible for handling 1707c478bd9Sstevel@tonic-gate * the event. The responsible nexus is defined in the cookie passed in as 1717c478bd9Sstevel@tonic-gate * the third parameter. 1727c478bd9Sstevel@tonic-gate * The dip parameter is an artifact of an older implementation in which all 1737c478bd9Sstevel@tonic-gate * requests to remove an eventcall would bubble up the tree. Today, this 1747c478bd9Sstevel@tonic-gate * parameter is ignored. 1757c478bd9Sstevel@tonic-gate * Input Parameters: 1767c478bd9Sstevel@tonic-gate * dip - Ignored. 1777c478bd9Sstevel@tonic-gate * rdip - device driver posting the event 1787c478bd9Sstevel@tonic-gate * cookie - valid ddi_eventcookie_t, obtained by caller prior to 1797c478bd9Sstevel@tonic-gate * invocation of this routine 1807c478bd9Sstevel@tonic-gate * impl_data - used by framework 1817c478bd9Sstevel@tonic-gate */ 1827c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 1837c478bd9Sstevel@tonic-gate int 1847c478bd9Sstevel@tonic-gate ndi_post_event(dev_info_t *dip, dev_info_t *rdip, 1857c478bd9Sstevel@tonic-gate ddi_eventcookie_t cookie, void *impl_data) 1867c478bd9Sstevel@tonic-gate { 1877c478bd9Sstevel@tonic-gate dev_info_t *ddip; 1887c478bd9Sstevel@tonic-gate 1897c478bd9Sstevel@tonic-gate ASSERT(cookie); 1907c478bd9Sstevel@tonic-gate ddip = NDI_EVENT_DDIP(cookie); 1917c478bd9Sstevel@tonic-gate 1927c478bd9Sstevel@tonic-gate /* 1937c478bd9Sstevel@tonic-gate * perform sanity checks. These conditions should never be true. 1947c478bd9Sstevel@tonic-gate */ 1957c478bd9Sstevel@tonic-gate 1967c478bd9Sstevel@tonic-gate ASSERT(DEVI(ddip)->devi_ops->devo_bus_ops != NULL); 1977c478bd9Sstevel@tonic-gate ASSERT(DEVI(ddip)->devi_ops->devo_bus_ops->busops_rev >= BUSO_REV_6); 1987c478bd9Sstevel@tonic-gate ASSERT(DEVI(ddip)->devi_ops->devo_bus_ops->bus_post_event != NULL); 1997c478bd9Sstevel@tonic-gate 2007c478bd9Sstevel@tonic-gate /* 2017c478bd9Sstevel@tonic-gate * post the event to the responsible ancestor 2027c478bd9Sstevel@tonic-gate */ 2037c478bd9Sstevel@tonic-gate return ((*(DEVI(ddip)->devi_ops->devo_bus_ops->bus_post_event)) 2047c478bd9Sstevel@tonic-gate (ddip, rdip, cookie, impl_data)); 2057c478bd9Sstevel@tonic-gate } 2067c478bd9Sstevel@tonic-gate 2077c478bd9Sstevel@tonic-gate /* 2087c478bd9Sstevel@tonic-gate * Calls the bus nexus driver's implementation of the 2097c478bd9Sstevel@tonic-gate * (*bus_remove_eventcall)() interface. 2107c478bd9Sstevel@tonic-gate */ 2117c478bd9Sstevel@tonic-gate int 2127c478bd9Sstevel@tonic-gate ndi_busop_remove_eventcall(dev_info_t *ddip, ddi_callback_id_t id) 2137c478bd9Sstevel@tonic-gate { 2147c478bd9Sstevel@tonic-gate 2157c478bd9Sstevel@tonic-gate ASSERT(id); 2167c478bd9Sstevel@tonic-gate /* check for a correct revno before calling up the device tree. */ 2177c478bd9Sstevel@tonic-gate ASSERT(DEVI(ddip)->devi_ops->devo_bus_ops != NULL); 2187c478bd9Sstevel@tonic-gate ASSERT(DEVI(ddip)->devi_ops->devo_bus_ops->busops_rev >= BUSO_REV_6); 2197c478bd9Sstevel@tonic-gate 2207c478bd9Sstevel@tonic-gate if (DEVI(ddip)->devi_ops->devo_bus_ops->bus_remove_eventcall == NULL) 2217c478bd9Sstevel@tonic-gate return (DDI_FAILURE); 2227c478bd9Sstevel@tonic-gate 2237c478bd9Sstevel@tonic-gate /* 2247c478bd9Sstevel@tonic-gate * request responsible nexus to remove the eventcall 2257c478bd9Sstevel@tonic-gate */ 2267c478bd9Sstevel@tonic-gate return ((*(DEVI(ddip)->devi_ops->devo_bus_ops->bus_remove_eventcall)) 2277c478bd9Sstevel@tonic-gate (ddip, id)); 2287c478bd9Sstevel@tonic-gate } 2297c478bd9Sstevel@tonic-gate 2307c478bd9Sstevel@tonic-gate /* 2317c478bd9Sstevel@tonic-gate * Calls the bus nexus driver's implementation of the 2327c478bd9Sstevel@tonic-gate * (*bus_add_eventcall)() interface. The dip parameter is an 2337c478bd9Sstevel@tonic-gate * artifact of an older implementation in which all requests to 2347c478bd9Sstevel@tonic-gate * add an eventcall would bubble up the tree. Today, this parameter is 2357c478bd9Sstevel@tonic-gate * ignored. 2367c478bd9Sstevel@tonic-gate */ 2377c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 2387c478bd9Sstevel@tonic-gate int 2397c478bd9Sstevel@tonic-gate ndi_busop_add_eventcall(dev_info_t *dip, dev_info_t *rdip, 2407c478bd9Sstevel@tonic-gate ddi_eventcookie_t cookie, void (*callback)(), void *arg, 2417c478bd9Sstevel@tonic-gate ddi_callback_id_t *cb_id) 2427c478bd9Sstevel@tonic-gate { 2437c478bd9Sstevel@tonic-gate dev_info_t *ddip = (dev_info_t *)NDI_EVENT_DDIP(cookie); 2447c478bd9Sstevel@tonic-gate 2457c478bd9Sstevel@tonic-gate /* 2467c478bd9Sstevel@tonic-gate * check for a correct revno before calling up the device tree. 2477c478bd9Sstevel@tonic-gate */ 2487c478bd9Sstevel@tonic-gate ASSERT(DEVI(ddip)->devi_ops->devo_bus_ops != NULL); 2497c478bd9Sstevel@tonic-gate ASSERT(DEVI(ddip)->devi_ops->devo_bus_ops->busops_rev >= BUSO_REV_6); 2507c478bd9Sstevel@tonic-gate 2517c478bd9Sstevel@tonic-gate if (DEVI(ddip)->devi_ops->devo_bus_ops->bus_add_eventcall == NULL) 2527c478bd9Sstevel@tonic-gate return (DDI_FAILURE); 2537c478bd9Sstevel@tonic-gate 2547c478bd9Sstevel@tonic-gate /* 2557c478bd9Sstevel@tonic-gate * request responsible ancestor to add the eventcall 2567c478bd9Sstevel@tonic-gate */ 2577c478bd9Sstevel@tonic-gate return ((*(DEVI(ddip)->devi_ops->devo_bus_ops->bus_add_eventcall)) 2587c478bd9Sstevel@tonic-gate (ddip, rdip, cookie, callback, arg, cb_id)); 2597c478bd9Sstevel@tonic-gate } 2607c478bd9Sstevel@tonic-gate 2617c478bd9Sstevel@tonic-gate /* 2627c478bd9Sstevel@tonic-gate * Calls the bus nexus driver's implementation of the 2637c478bd9Sstevel@tonic-gate * (*bus_get_eventcookie)() interface up the device tree hierarchy. 2647c478bd9Sstevel@tonic-gate */ 2657c478bd9Sstevel@tonic-gate int 2667c478bd9Sstevel@tonic-gate ndi_busop_get_eventcookie(dev_info_t *dip, dev_info_t *rdip, char *name, 2677c478bd9Sstevel@tonic-gate ddi_eventcookie_t *event_cookiep) 2687c478bd9Sstevel@tonic-gate { 2697c478bd9Sstevel@tonic-gate dev_info_t *pdip = (dev_info_t *)DEVI(dip)->devi_parent; 2707c478bd9Sstevel@tonic-gate 2717c478bd9Sstevel@tonic-gate /* Can not be called from rootnex. */ 2727c478bd9Sstevel@tonic-gate ASSERT(pdip); 2737c478bd9Sstevel@tonic-gate 2747c478bd9Sstevel@tonic-gate /* 2757c478bd9Sstevel@tonic-gate * check for a correct revno before calling up the device tree. 2767c478bd9Sstevel@tonic-gate */ 2777c478bd9Sstevel@tonic-gate ASSERT(DEVI(pdip)->devi_ops->devo_bus_ops != NULL); 2787c478bd9Sstevel@tonic-gate 2797c478bd9Sstevel@tonic-gate if ((DEVI(pdip)->devi_ops->devo_bus_ops->busops_rev < BUSO_REV_6) || 2807c478bd9Sstevel@tonic-gate (DEVI(pdip)->devi_ops->devo_bus_ops->bus_get_eventcookie == NULL)) { 2817c478bd9Sstevel@tonic-gate #ifdef DEBUG 2827c478bd9Sstevel@tonic-gate if ((DEVI(pdip)->devi_ops->devo_bus_ops->busops_rev >= 2837c478bd9Sstevel@tonic-gate BUSO_REV_3) && 2847c478bd9Sstevel@tonic-gate (DEVI(pdip)->devi_ops->devo_bus_ops->bus_get_eventcookie)) { 2857c478bd9Sstevel@tonic-gate cmn_err(CE_WARN, 2867c478bd9Sstevel@tonic-gate "Warning: %s%d busops_rev=%d no longer supported" 2877c478bd9Sstevel@tonic-gate " by the NDI event framework.\nBUSO_REV_6 or " 2887c478bd9Sstevel@tonic-gate "greater must be used.", 2897c478bd9Sstevel@tonic-gate DEVI(pdip)->devi_binding_name, 2907c478bd9Sstevel@tonic-gate DEVI(pdip)->devi_instance, 2917c478bd9Sstevel@tonic-gate DEVI(pdip)->devi_ops->devo_bus_ops->busops_rev); 2927c478bd9Sstevel@tonic-gate } 2937c478bd9Sstevel@tonic-gate #endif /* DEBUG */ 2947c478bd9Sstevel@tonic-gate 2957c478bd9Sstevel@tonic-gate return (ndi_busop_get_eventcookie(pdip, rdip, name, 2967c478bd9Sstevel@tonic-gate event_cookiep)); 2977c478bd9Sstevel@tonic-gate } 2987c478bd9Sstevel@tonic-gate 2997c478bd9Sstevel@tonic-gate return ((*(DEVI(pdip)->devi_ops->devo_bus_ops->bus_get_eventcookie)) 3007c478bd9Sstevel@tonic-gate (pdip, rdip, name, event_cookiep)); 3017c478bd9Sstevel@tonic-gate } 3027c478bd9Sstevel@tonic-gate 3037c478bd9Sstevel@tonic-gate /* 3047c478bd9Sstevel@tonic-gate * Copy in the devctl IOCTL data and return a handle to 3057c478bd9Sstevel@tonic-gate * the data. 3067c478bd9Sstevel@tonic-gate */ 3077c478bd9Sstevel@tonic-gate int 3087c478bd9Sstevel@tonic-gate ndi_dc_allochdl(void *iocarg, struct devctl_iocdata **rdcp) 3097c478bd9Sstevel@tonic-gate { 3107c478bd9Sstevel@tonic-gate struct devctl_iocdata *dcp; 3117c478bd9Sstevel@tonic-gate char *cpybuf; 3127c478bd9Sstevel@tonic-gate 3137c478bd9Sstevel@tonic-gate ASSERT(rdcp != NULL); 3147c478bd9Sstevel@tonic-gate 3157c478bd9Sstevel@tonic-gate dcp = kmem_zalloc(sizeof (*dcp), KM_SLEEP); 3167c478bd9Sstevel@tonic-gate 3177c478bd9Sstevel@tonic-gate if (get_udatamodel() == DATAMODEL_NATIVE) { 3187c478bd9Sstevel@tonic-gate if (copyin(iocarg, dcp, sizeof (*dcp)) != 0) { 3197c478bd9Sstevel@tonic-gate kmem_free(dcp, sizeof (*dcp)); 3207c478bd9Sstevel@tonic-gate return (NDI_FAULT); 3217c478bd9Sstevel@tonic-gate } 3227c478bd9Sstevel@tonic-gate } 3237c478bd9Sstevel@tonic-gate #ifdef _SYSCALL32_IMPL 3247c478bd9Sstevel@tonic-gate else { 3257c478bd9Sstevel@tonic-gate struct devctl_iocdata32 dcp32; 3267c478bd9Sstevel@tonic-gate 3277c478bd9Sstevel@tonic-gate if (copyin(iocarg, &dcp32, sizeof (dcp32)) != 0) { 3287c478bd9Sstevel@tonic-gate kmem_free(dcp, sizeof (*dcp)); 3297c478bd9Sstevel@tonic-gate return (NDI_FAULT); 3307c478bd9Sstevel@tonic-gate } 3317c478bd9Sstevel@tonic-gate dcp->cmd = (uint_t)dcp32.cmd; 3327c478bd9Sstevel@tonic-gate dcp->flags = (uint_t)dcp32.flags; 3337c478bd9Sstevel@tonic-gate dcp->cpyout_buf = (uint_t *)(uintptr_t)dcp32.cpyout_buf; 3347c478bd9Sstevel@tonic-gate dcp->nvl_user = (nvlist_t *)(uintptr_t)dcp32.nvl_user; 3357c478bd9Sstevel@tonic-gate dcp->nvl_usersz = (size_t)dcp32.nvl_usersz; 3367c478bd9Sstevel@tonic-gate dcp->c_nodename = (char *)(uintptr_t)dcp32.c_nodename; 3377c478bd9Sstevel@tonic-gate dcp->c_unitaddr = (char *)(uintptr_t)dcp32.c_unitaddr; 3387c478bd9Sstevel@tonic-gate } 3397c478bd9Sstevel@tonic-gate #endif 3407c478bd9Sstevel@tonic-gate if (dcp->c_nodename != NULL) { 3417c478bd9Sstevel@tonic-gate cpybuf = kmem_alloc(MAXNAMELEN, KM_SLEEP); 3427c478bd9Sstevel@tonic-gate if (copyinstr(dcp->c_nodename, cpybuf, MAXNAMELEN, 0) != 0) { 3437c478bd9Sstevel@tonic-gate kmem_free(cpybuf, MAXNAMELEN); 3447c478bd9Sstevel@tonic-gate kmem_free(dcp, sizeof (*dcp)); 3457c478bd9Sstevel@tonic-gate return (NDI_FAULT); 3467c478bd9Sstevel@tonic-gate } 3477c478bd9Sstevel@tonic-gate cpybuf[MAXNAMELEN - 1] = '\0'; 3487c478bd9Sstevel@tonic-gate dcp->c_nodename = cpybuf; 3497c478bd9Sstevel@tonic-gate } 3507c478bd9Sstevel@tonic-gate 3517c478bd9Sstevel@tonic-gate if (dcp->c_unitaddr != NULL) { 3527c478bd9Sstevel@tonic-gate cpybuf = kmem_alloc(MAXNAMELEN, KM_SLEEP); 3537c478bd9Sstevel@tonic-gate if (copyinstr(dcp->c_unitaddr, cpybuf, MAXNAMELEN, 0) != 0) { 3547c478bd9Sstevel@tonic-gate kmem_free(cpybuf, MAXNAMELEN); 3557c478bd9Sstevel@tonic-gate if (dcp->c_nodename != NULL) 3567c478bd9Sstevel@tonic-gate kmem_free(dcp->c_nodename, MAXNAMELEN); 3577c478bd9Sstevel@tonic-gate kmem_free(dcp, sizeof (*dcp)); 3587c478bd9Sstevel@tonic-gate return (NDI_FAULT); 3597c478bd9Sstevel@tonic-gate } 3607c478bd9Sstevel@tonic-gate cpybuf[MAXNAMELEN - 1] = '\0'; 3617c478bd9Sstevel@tonic-gate dcp->c_unitaddr = cpybuf; 3627c478bd9Sstevel@tonic-gate } 3637c478bd9Sstevel@tonic-gate 3647c478bd9Sstevel@tonic-gate /* 3657c478bd9Sstevel@tonic-gate * copyin and unpack a user defined nvlist if one was passed 3667c478bd9Sstevel@tonic-gate */ 3677c478bd9Sstevel@tonic-gate if (dcp->nvl_user != NULL) { 36892d20396Scth if (dcp->nvl_usersz == 0) { 36992d20396Scth if (dcp->c_nodename != NULL) 37092d20396Scth kmem_free(dcp->c_nodename, MAXNAMELEN); 37192d20396Scth if (dcp->c_unitaddr != NULL) 37292d20396Scth kmem_free(dcp->c_unitaddr, MAXNAMELEN); 37392d20396Scth kmem_free(dcp, sizeof (*dcp)); 37492d20396Scth return (NDI_FAILURE); 37592d20396Scth } 3767c478bd9Sstevel@tonic-gate cpybuf = kmem_alloc(dcp->nvl_usersz, KM_SLEEP); 3777c478bd9Sstevel@tonic-gate if (copyin(dcp->nvl_user, cpybuf, dcp->nvl_usersz) != 0) { 3787c478bd9Sstevel@tonic-gate kmem_free(cpybuf, dcp->nvl_usersz); 3797c478bd9Sstevel@tonic-gate if (dcp->c_nodename != NULL) 3807c478bd9Sstevel@tonic-gate kmem_free(dcp->c_nodename, MAXNAMELEN); 3817c478bd9Sstevel@tonic-gate if (dcp->c_unitaddr != NULL) 3827c478bd9Sstevel@tonic-gate kmem_free(dcp->c_unitaddr, MAXNAMELEN); 3837c478bd9Sstevel@tonic-gate kmem_free(dcp, sizeof (*dcp)); 3847c478bd9Sstevel@tonic-gate return (NDI_FAULT); 3857c478bd9Sstevel@tonic-gate } 3867c478bd9Sstevel@tonic-gate 3877c478bd9Sstevel@tonic-gate if (nvlist_unpack(cpybuf, dcp->nvl_usersz, &dcp->nvl_user, 3887c478bd9Sstevel@tonic-gate KM_SLEEP)) { 3897c478bd9Sstevel@tonic-gate kmem_free(cpybuf, dcp->nvl_usersz); 3907c478bd9Sstevel@tonic-gate if (dcp->c_nodename != NULL) 3917c478bd9Sstevel@tonic-gate kmem_free(dcp->c_nodename, MAXNAMELEN); 3927c478bd9Sstevel@tonic-gate if (dcp->c_unitaddr != NULL) 3937c478bd9Sstevel@tonic-gate kmem_free(dcp->c_unitaddr, MAXNAMELEN); 3947c478bd9Sstevel@tonic-gate kmem_free(dcp, sizeof (*dcp)); 3957c478bd9Sstevel@tonic-gate return (NDI_FAULT); 3967c478bd9Sstevel@tonic-gate } 3977c478bd9Sstevel@tonic-gate /* 3987c478bd9Sstevel@tonic-gate * free the buffer containing the packed nvlist 3997c478bd9Sstevel@tonic-gate */ 4007c478bd9Sstevel@tonic-gate kmem_free(cpybuf, dcp->nvl_usersz); 4017c478bd9Sstevel@tonic-gate 4027c478bd9Sstevel@tonic-gate } 4037c478bd9Sstevel@tonic-gate 4047c478bd9Sstevel@tonic-gate *rdcp = dcp; 4057c478bd9Sstevel@tonic-gate return (NDI_SUCCESS); 4067c478bd9Sstevel@tonic-gate } 4077c478bd9Sstevel@tonic-gate 4087c478bd9Sstevel@tonic-gate /* 4097c478bd9Sstevel@tonic-gate * free all space allocated to a handle. 4107c478bd9Sstevel@tonic-gate */ 4117c478bd9Sstevel@tonic-gate void 4127c478bd9Sstevel@tonic-gate ndi_dc_freehdl(struct devctl_iocdata *dcp) 4137c478bd9Sstevel@tonic-gate { 4147c478bd9Sstevel@tonic-gate ASSERT(dcp != NULL); 4157c478bd9Sstevel@tonic-gate 4167c478bd9Sstevel@tonic-gate if (dcp->c_nodename != NULL) 4177c478bd9Sstevel@tonic-gate kmem_free(dcp->c_nodename, MAXNAMELEN); 4187c478bd9Sstevel@tonic-gate 4197c478bd9Sstevel@tonic-gate if (dcp->c_unitaddr != NULL) 4207c478bd9Sstevel@tonic-gate kmem_free(dcp->c_unitaddr, MAXNAMELEN); 4217c478bd9Sstevel@tonic-gate 4227c478bd9Sstevel@tonic-gate if (dcp->nvl_user != NULL) 4237c478bd9Sstevel@tonic-gate nvlist_free(dcp->nvl_user); 4247c478bd9Sstevel@tonic-gate 4257c478bd9Sstevel@tonic-gate kmem_free(dcp, sizeof (*dcp)); 4267c478bd9Sstevel@tonic-gate } 4277c478bd9Sstevel@tonic-gate 4287c478bd9Sstevel@tonic-gate char * 4297c478bd9Sstevel@tonic-gate ndi_dc_getname(struct devctl_iocdata *dcp) 4307c478bd9Sstevel@tonic-gate { 4317c478bd9Sstevel@tonic-gate ASSERT(dcp != NULL); 4327c478bd9Sstevel@tonic-gate return (dcp->c_nodename); 4337c478bd9Sstevel@tonic-gate 4347c478bd9Sstevel@tonic-gate } 4357c478bd9Sstevel@tonic-gate 4367c478bd9Sstevel@tonic-gate char * 4377c478bd9Sstevel@tonic-gate ndi_dc_getaddr(struct devctl_iocdata *dcp) 4387c478bd9Sstevel@tonic-gate { 4397c478bd9Sstevel@tonic-gate ASSERT(dcp != NULL); 4407c478bd9Sstevel@tonic-gate return (dcp->c_unitaddr); 4417c478bd9Sstevel@tonic-gate } 4427c478bd9Sstevel@tonic-gate 4437c478bd9Sstevel@tonic-gate nvlist_t * 4447c478bd9Sstevel@tonic-gate ndi_dc_get_ap_data(struct devctl_iocdata *dcp) 4457c478bd9Sstevel@tonic-gate { 4467c478bd9Sstevel@tonic-gate ASSERT(dcp != NULL); 4477c478bd9Sstevel@tonic-gate 4487c478bd9Sstevel@tonic-gate return (dcp->nvl_user); 4497c478bd9Sstevel@tonic-gate } 4507c478bd9Sstevel@tonic-gate 4517c478bd9Sstevel@tonic-gate /* 4527c478bd9Sstevel@tonic-gate * Transition the child named by "devname@devaddr" to the online state. 4537c478bd9Sstevel@tonic-gate * For use by a driver's DEVCTL_DEVICE_ONLINE handler. 4547c478bd9Sstevel@tonic-gate */ 4557c478bd9Sstevel@tonic-gate int 4567c478bd9Sstevel@tonic-gate ndi_devctl_device_online(dev_info_t *dip, struct devctl_iocdata *dcp, 4577c478bd9Sstevel@tonic-gate uint_t flags) 4587c478bd9Sstevel@tonic-gate { 4597c478bd9Sstevel@tonic-gate int rval; 4607c478bd9Sstevel@tonic-gate char *name; 4617c478bd9Sstevel@tonic-gate dev_info_t *rdip; 4627c478bd9Sstevel@tonic-gate 4637c478bd9Sstevel@tonic-gate if (ndi_dc_getname(dcp) == NULL || ndi_dc_getaddr(dcp) == NULL) 4647c478bd9Sstevel@tonic-gate return (EINVAL); 4657c478bd9Sstevel@tonic-gate 4667c478bd9Sstevel@tonic-gate name = kmem_alloc(MAXNAMELEN, KM_SLEEP); 4677c478bd9Sstevel@tonic-gate (void) snprintf(name, MAXNAMELEN, "%s@%s", 4687c478bd9Sstevel@tonic-gate ndi_dc_getname(dcp), ndi_dc_getaddr(dcp)); 4697c478bd9Sstevel@tonic-gate 4707c478bd9Sstevel@tonic-gate if ((rval = ndi_devi_config_one(dip, name, &rdip, 4717c478bd9Sstevel@tonic-gate flags | NDI_DEVI_ONLINE | NDI_CONFIG)) == NDI_SUCCESS) { 4727c478bd9Sstevel@tonic-gate ndi_rele_devi(rdip); 4737c478bd9Sstevel@tonic-gate 4747c478bd9Sstevel@tonic-gate /* 4757c478bd9Sstevel@tonic-gate * Invalidate devfs cached directory contents. For the checks 4767c478bd9Sstevel@tonic-gate * in the "if" condition see the comment in ndi_devi_online(). 4777c478bd9Sstevel@tonic-gate */ 478737d277aScth if (i_ddi_devi_attached(dip) && !DEVI_BUSY_OWNED(dip)) 4797c478bd9Sstevel@tonic-gate (void) devfs_clean(dip, NULL, 0); 4807c478bd9Sstevel@tonic-gate 4817c478bd9Sstevel@tonic-gate } else if (rval == NDI_BUSY) { 4827c478bd9Sstevel@tonic-gate rval = EBUSY; 4837c478bd9Sstevel@tonic-gate } else if (rval == NDI_FAILURE) { 4847c478bd9Sstevel@tonic-gate rval = EIO; 4857c478bd9Sstevel@tonic-gate } 4867c478bd9Sstevel@tonic-gate 4877c478bd9Sstevel@tonic-gate NDI_DEBUG(flags, (CE_CONT, "%s%d: online: %s: %s\n", 4887c478bd9Sstevel@tonic-gate ddi_driver_name(dip), ddi_get_instance(dip), name, 4897c478bd9Sstevel@tonic-gate ((rval == NDI_SUCCESS) ? "ok" : "failed"))); 4907c478bd9Sstevel@tonic-gate 4917c478bd9Sstevel@tonic-gate kmem_free(name, MAXNAMELEN); 4927c478bd9Sstevel@tonic-gate 4937c478bd9Sstevel@tonic-gate return (rval); 4947c478bd9Sstevel@tonic-gate } 4957c478bd9Sstevel@tonic-gate 4967c478bd9Sstevel@tonic-gate /* 4977c478bd9Sstevel@tonic-gate * Transition the child named by "devname@devaddr" to the offline state. 4987c478bd9Sstevel@tonic-gate * For use by a driver's DEVCTL_DEVICE_OFFLINE handler. 4997c478bd9Sstevel@tonic-gate */ 5007c478bd9Sstevel@tonic-gate int 5017c478bd9Sstevel@tonic-gate ndi_devctl_device_offline(dev_info_t *dip, struct devctl_iocdata *dcp, 5027c478bd9Sstevel@tonic-gate uint_t flags) 5037c478bd9Sstevel@tonic-gate { 5047c478bd9Sstevel@tonic-gate int rval; 5057c478bd9Sstevel@tonic-gate char *name; 5067c478bd9Sstevel@tonic-gate 5077c478bd9Sstevel@tonic-gate if (ndi_dc_getname(dcp) == NULL || ndi_dc_getaddr(dcp) == NULL) 5087c478bd9Sstevel@tonic-gate return (EINVAL); 5097c478bd9Sstevel@tonic-gate 5107c478bd9Sstevel@tonic-gate name = kmem_alloc(MAXNAMELEN, KM_SLEEP); 5117c478bd9Sstevel@tonic-gate (void) snprintf(name, MAXNAMELEN, "%s@%s", 5127c478bd9Sstevel@tonic-gate ndi_dc_getname(dcp), ndi_dc_getaddr(dcp)); 5137c478bd9Sstevel@tonic-gate 514*19174f18Svikram (void) devfs_clean(dip, name, DV_CLEAN_FORCE); 5157c478bd9Sstevel@tonic-gate rval = ndi_devi_unconfig_one(dip, name, NULL, 5167c478bd9Sstevel@tonic-gate flags | NDI_DEVI_OFFLINE); 5177c478bd9Sstevel@tonic-gate 5187c478bd9Sstevel@tonic-gate if (rval == NDI_BUSY) { 5197c478bd9Sstevel@tonic-gate rval = EBUSY; 5207c478bd9Sstevel@tonic-gate } else if (rval == NDI_FAILURE) { 5217c478bd9Sstevel@tonic-gate rval = EIO; 5227c478bd9Sstevel@tonic-gate } 5237c478bd9Sstevel@tonic-gate 5247c478bd9Sstevel@tonic-gate NDI_DEBUG(flags, (CE_CONT, "%s%d: offline: %s: %s\n", 5257c478bd9Sstevel@tonic-gate ddi_driver_name(dip), ddi_get_instance(dip), name, 5267c478bd9Sstevel@tonic-gate (rval == NDI_SUCCESS) ? "ok" : "failed")); 5277c478bd9Sstevel@tonic-gate 5287c478bd9Sstevel@tonic-gate kmem_free(name, MAXNAMELEN); 5297c478bd9Sstevel@tonic-gate 5307c478bd9Sstevel@tonic-gate return (rval); 5317c478bd9Sstevel@tonic-gate } 5327c478bd9Sstevel@tonic-gate 5337c478bd9Sstevel@tonic-gate /* 5347c478bd9Sstevel@tonic-gate * Remove the child named by "devname@devaddr". 5357c478bd9Sstevel@tonic-gate * For use by a driver's DEVCTL_DEVICE_REMOVE handler. 5367c478bd9Sstevel@tonic-gate */ 5377c478bd9Sstevel@tonic-gate int 5387c478bd9Sstevel@tonic-gate ndi_devctl_device_remove(dev_info_t *dip, struct devctl_iocdata *dcp, 5397c478bd9Sstevel@tonic-gate uint_t flags) 5407c478bd9Sstevel@tonic-gate { 5417c478bd9Sstevel@tonic-gate int rval; 5427c478bd9Sstevel@tonic-gate char *name; 5437c478bd9Sstevel@tonic-gate 5447c478bd9Sstevel@tonic-gate if (ndi_dc_getname(dcp) == NULL || ndi_dc_getaddr(dcp) == NULL) 5457c478bd9Sstevel@tonic-gate return (EINVAL); 5467c478bd9Sstevel@tonic-gate 5477c478bd9Sstevel@tonic-gate name = kmem_alloc(MAXNAMELEN, KM_SLEEP); 5487c478bd9Sstevel@tonic-gate (void) snprintf(name, MAXNAMELEN, "%s@%s", 5497c478bd9Sstevel@tonic-gate ndi_dc_getname(dcp), ndi_dc_getaddr(dcp)); 5507c478bd9Sstevel@tonic-gate 5517c478bd9Sstevel@tonic-gate (void) devfs_clean(dip, name, DV_CLEAN_FORCE); 5527c478bd9Sstevel@tonic-gate 5537c478bd9Sstevel@tonic-gate rval = ndi_devi_unconfig_one(dip, name, NULL, flags | NDI_DEVI_REMOVE); 5547c478bd9Sstevel@tonic-gate 5557c478bd9Sstevel@tonic-gate if (rval == NDI_BUSY) { 5567c478bd9Sstevel@tonic-gate rval = EBUSY; 5577c478bd9Sstevel@tonic-gate } else if (rval == NDI_FAILURE) { 5587c478bd9Sstevel@tonic-gate rval = EIO; 5597c478bd9Sstevel@tonic-gate } 5607c478bd9Sstevel@tonic-gate 5617c478bd9Sstevel@tonic-gate NDI_DEBUG(flags, (CE_CONT, "%s%d: remove: %s: %s\n", 5627c478bd9Sstevel@tonic-gate ddi_driver_name(dip), ddi_get_instance(dip), name, 5637c478bd9Sstevel@tonic-gate (rval == NDI_SUCCESS) ? "ok" : "failed")); 5647c478bd9Sstevel@tonic-gate 5657c478bd9Sstevel@tonic-gate kmem_free(name, MAXNAMELEN); 5667c478bd9Sstevel@tonic-gate 5677c478bd9Sstevel@tonic-gate return (rval); 5687c478bd9Sstevel@tonic-gate } 5697c478bd9Sstevel@tonic-gate 5707c478bd9Sstevel@tonic-gate /* 5717c478bd9Sstevel@tonic-gate * Return devctl state of the child named by "name@addr". 5727c478bd9Sstevel@tonic-gate * For use by a driver's DEVCTL_DEVICE_GETSTATE handler. 5737c478bd9Sstevel@tonic-gate */ 5747c478bd9Sstevel@tonic-gate int 5757c478bd9Sstevel@tonic-gate ndi_devctl_device_getstate(dev_info_t *parent, struct devctl_iocdata *dcp, 5767c478bd9Sstevel@tonic-gate uint_t *state) 5777c478bd9Sstevel@tonic-gate { 5787c478bd9Sstevel@tonic-gate dev_info_t *dip; 5797c478bd9Sstevel@tonic-gate char *name, *addr; 5807c478bd9Sstevel@tonic-gate char *devname; 5817c478bd9Sstevel@tonic-gate int devnamelen; 5827c478bd9Sstevel@tonic-gate int circ; 5837c478bd9Sstevel@tonic-gate 5847c478bd9Sstevel@tonic-gate if (parent == NULL || 5857c478bd9Sstevel@tonic-gate ((name = ndi_dc_getname(dcp)) == NULL) || 5867c478bd9Sstevel@tonic-gate ((addr = ndi_dc_getaddr(dcp)) == NULL)) 5877c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 5887c478bd9Sstevel@tonic-gate 5897c478bd9Sstevel@tonic-gate devnamelen = strlen(name) + strlen(addr) + 2; 5907c478bd9Sstevel@tonic-gate devname = kmem_alloc(devnamelen, KM_SLEEP); 5917c478bd9Sstevel@tonic-gate if (strlen(addr) > 0) { 5927c478bd9Sstevel@tonic-gate (void) snprintf(devname, devnamelen, "%s@%s", name, addr); 5937c478bd9Sstevel@tonic-gate } else { 5947c478bd9Sstevel@tonic-gate (void) snprintf(devname, devnamelen, "%s", name); 5957c478bd9Sstevel@tonic-gate } 5967c478bd9Sstevel@tonic-gate 5977c478bd9Sstevel@tonic-gate ndi_devi_enter(parent, &circ); 5987c478bd9Sstevel@tonic-gate 5997c478bd9Sstevel@tonic-gate dip = ndi_devi_findchild(parent, devname); 6007c478bd9Sstevel@tonic-gate kmem_free(devname, devnamelen); 6017c478bd9Sstevel@tonic-gate 6027c478bd9Sstevel@tonic-gate if (dip == NULL) { 6037c478bd9Sstevel@tonic-gate ndi_devi_exit(parent, circ); 6047c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 6057c478bd9Sstevel@tonic-gate } 6067c478bd9Sstevel@tonic-gate 6077c478bd9Sstevel@tonic-gate mutex_enter(&(DEVI(dip)->devi_lock)); 6087c478bd9Sstevel@tonic-gate if (DEVI_IS_DEVICE_OFFLINE(dip)) { 6097c478bd9Sstevel@tonic-gate *state = DEVICE_OFFLINE; 6107c478bd9Sstevel@tonic-gate } else if (DEVI_IS_DEVICE_DOWN(dip)) { 6117c478bd9Sstevel@tonic-gate *state = DEVICE_DOWN; 6127c478bd9Sstevel@tonic-gate } else { 6137c478bd9Sstevel@tonic-gate *state = DEVICE_ONLINE; 6147c478bd9Sstevel@tonic-gate if (devi_stillreferenced(dip) == DEVI_REFERENCED) 6157c478bd9Sstevel@tonic-gate *state |= DEVICE_BUSY; 6167c478bd9Sstevel@tonic-gate } 6177c478bd9Sstevel@tonic-gate 6187c478bd9Sstevel@tonic-gate mutex_exit(&(DEVI(dip)->devi_lock)); 6197c478bd9Sstevel@tonic-gate ndi_devi_exit(parent, circ); 6207c478bd9Sstevel@tonic-gate 6217c478bd9Sstevel@tonic-gate return (NDI_SUCCESS); 6227c478bd9Sstevel@tonic-gate } 6237c478bd9Sstevel@tonic-gate 6247c478bd9Sstevel@tonic-gate /* 6257c478bd9Sstevel@tonic-gate * return the current state of the device "dip" 6267c478bd9Sstevel@tonic-gate * 6277c478bd9Sstevel@tonic-gate * recommend using ndi_devctl_ioctl() or 6287c478bd9Sstevel@tonic-gate * ndi_devctl_device_getstate() instead 6297c478bd9Sstevel@tonic-gate */ 6307c478bd9Sstevel@tonic-gate int 6317c478bd9Sstevel@tonic-gate ndi_dc_return_dev_state(dev_info_t *dip, struct devctl_iocdata *dcp) 6327c478bd9Sstevel@tonic-gate { 6337c478bd9Sstevel@tonic-gate dev_info_t *pdip; 6347c478bd9Sstevel@tonic-gate uint_t devstate = 0; 6357c478bd9Sstevel@tonic-gate int circ; 6367c478bd9Sstevel@tonic-gate 6377c478bd9Sstevel@tonic-gate if ((dip == NULL) || (dcp == NULL)) 6387c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 6397c478bd9Sstevel@tonic-gate 6407c478bd9Sstevel@tonic-gate pdip = ddi_get_parent(dip); 6417c478bd9Sstevel@tonic-gate 6427c478bd9Sstevel@tonic-gate ndi_devi_enter(pdip, &circ); 6437c478bd9Sstevel@tonic-gate mutex_enter(&(DEVI(dip)->devi_lock)); 6447c478bd9Sstevel@tonic-gate if (DEVI_IS_DEVICE_OFFLINE(dip)) { 6457c478bd9Sstevel@tonic-gate devstate = DEVICE_OFFLINE; 6467c478bd9Sstevel@tonic-gate } else if (DEVI_IS_DEVICE_DOWN(dip)) { 6477c478bd9Sstevel@tonic-gate devstate = DEVICE_DOWN; 6487c478bd9Sstevel@tonic-gate } else { 6497c478bd9Sstevel@tonic-gate devstate = DEVICE_ONLINE; 6507c478bd9Sstevel@tonic-gate if (devi_stillreferenced(dip) == DEVI_REFERENCED) 6517c478bd9Sstevel@tonic-gate devstate |= DEVICE_BUSY; 6527c478bd9Sstevel@tonic-gate } 6537c478bd9Sstevel@tonic-gate 6547c478bd9Sstevel@tonic-gate mutex_exit(&(DEVI(dip)->devi_lock)); 6557c478bd9Sstevel@tonic-gate ndi_devi_exit(pdip, circ); 6567c478bd9Sstevel@tonic-gate 6577c478bd9Sstevel@tonic-gate if (copyout(&devstate, dcp->cpyout_buf, sizeof (uint_t)) != 0) 6587c478bd9Sstevel@tonic-gate return (NDI_FAULT); 6597c478bd9Sstevel@tonic-gate 6607c478bd9Sstevel@tonic-gate return (NDI_SUCCESS); 6617c478bd9Sstevel@tonic-gate } 6627c478bd9Sstevel@tonic-gate 6637c478bd9Sstevel@tonic-gate /* 6647c478bd9Sstevel@tonic-gate * Return device's bus state 6657c478bd9Sstevel@tonic-gate * For use by a driver's DEVCTL_BUS_GETSTATE handler. 6667c478bd9Sstevel@tonic-gate */ 6677c478bd9Sstevel@tonic-gate int 6687c478bd9Sstevel@tonic-gate ndi_devctl_bus_getstate(dev_info_t *dip, struct devctl_iocdata *dcp, 6697c478bd9Sstevel@tonic-gate uint_t *state) 6707c478bd9Sstevel@tonic-gate { 6717c478bd9Sstevel@tonic-gate if ((dip == NULL) || (dcp == NULL)) 6727c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 6737c478bd9Sstevel@tonic-gate 6747c478bd9Sstevel@tonic-gate return (ndi_get_bus_state(dip, state)); 6757c478bd9Sstevel@tonic-gate } 6767c478bd9Sstevel@tonic-gate 6777c478bd9Sstevel@tonic-gate /* 6787c478bd9Sstevel@tonic-gate * Generic devctl ioctl handler 6797c478bd9Sstevel@tonic-gate */ 6807c478bd9Sstevel@tonic-gate int 6817c478bd9Sstevel@tonic-gate ndi_devctl_ioctl(dev_info_t *dip, int cmd, intptr_t arg, int mode, uint_t flags) 6827c478bd9Sstevel@tonic-gate { 6837c478bd9Sstevel@tonic-gate _NOTE(ARGUNUSED(mode)) 6847c478bd9Sstevel@tonic-gate struct devctl_iocdata *dcp; 6857c478bd9Sstevel@tonic-gate uint_t state; 6867c478bd9Sstevel@tonic-gate int rval = ENOTTY; 6877c478bd9Sstevel@tonic-gate 6887c478bd9Sstevel@tonic-gate /* 6897c478bd9Sstevel@tonic-gate * read devctl ioctl data 6907c478bd9Sstevel@tonic-gate */ 6917c478bd9Sstevel@tonic-gate if (ndi_dc_allochdl((void *)arg, &dcp) != NDI_SUCCESS) 6927c478bd9Sstevel@tonic-gate return (EFAULT); 6937c478bd9Sstevel@tonic-gate 6947c478bd9Sstevel@tonic-gate switch (cmd) { 6957c478bd9Sstevel@tonic-gate 6967c478bd9Sstevel@tonic-gate case DEVCTL_BUS_GETSTATE: 6977c478bd9Sstevel@tonic-gate rval = ndi_devctl_bus_getstate(dip, dcp, &state); 6987c478bd9Sstevel@tonic-gate if (rval == NDI_SUCCESS) { 6997c478bd9Sstevel@tonic-gate if (copyout(&state, dcp->cpyout_buf, 7007c478bd9Sstevel@tonic-gate sizeof (uint_t)) != 0) 7017c478bd9Sstevel@tonic-gate rval = NDI_FAULT; 7027c478bd9Sstevel@tonic-gate } 7037c478bd9Sstevel@tonic-gate break; 7047c478bd9Sstevel@tonic-gate 7057c478bd9Sstevel@tonic-gate case DEVCTL_DEVICE_ONLINE: 7067c478bd9Sstevel@tonic-gate rval = ndi_devctl_device_online(dip, dcp, flags); 7077c478bd9Sstevel@tonic-gate break; 7087c478bd9Sstevel@tonic-gate 7097c478bd9Sstevel@tonic-gate case DEVCTL_DEVICE_OFFLINE: 7107c478bd9Sstevel@tonic-gate rval = ndi_devctl_device_offline(dip, dcp, flags); 7117c478bd9Sstevel@tonic-gate break; 7127c478bd9Sstevel@tonic-gate 7137c478bd9Sstevel@tonic-gate case DEVCTL_DEVICE_GETSTATE: 7147c478bd9Sstevel@tonic-gate rval = ndi_devctl_device_getstate(dip, dcp, &state); 7157c478bd9Sstevel@tonic-gate if (rval == NDI_SUCCESS) { 7167c478bd9Sstevel@tonic-gate if (copyout(&state, dcp->cpyout_buf, 7177c478bd9Sstevel@tonic-gate sizeof (uint_t)) != 0) 7187c478bd9Sstevel@tonic-gate rval = NDI_FAULT; 7197c478bd9Sstevel@tonic-gate } 7207c478bd9Sstevel@tonic-gate break; 7217c478bd9Sstevel@tonic-gate 7227c478bd9Sstevel@tonic-gate case DEVCTL_DEVICE_REMOVE: 7237c478bd9Sstevel@tonic-gate rval = ndi_devctl_device_remove(dip, dcp, flags); 7247c478bd9Sstevel@tonic-gate break; 7257c478bd9Sstevel@tonic-gate 7267c478bd9Sstevel@tonic-gate case DEVCTL_BUS_DEV_CREATE: 7277c478bd9Sstevel@tonic-gate rval = ndi_dc_devi_create(dcp, dip, 0, NULL); 7287c478bd9Sstevel@tonic-gate break; 7297c478bd9Sstevel@tonic-gate 7307c478bd9Sstevel@tonic-gate /* 7317c478bd9Sstevel@tonic-gate * ioctls for which a generic implementation makes no sense 7327c478bd9Sstevel@tonic-gate */ 7337c478bd9Sstevel@tonic-gate case DEVCTL_BUS_RESET: 7347c478bd9Sstevel@tonic-gate case DEVCTL_BUS_RESETALL: 7357c478bd9Sstevel@tonic-gate case DEVCTL_DEVICE_RESET: 7367c478bd9Sstevel@tonic-gate case DEVCTL_AP_CONNECT: 7377c478bd9Sstevel@tonic-gate case DEVCTL_AP_DISCONNECT: 7387c478bd9Sstevel@tonic-gate case DEVCTL_AP_INSERT: 7397c478bd9Sstevel@tonic-gate case DEVCTL_AP_REMOVE: 7407c478bd9Sstevel@tonic-gate case DEVCTL_AP_CONFIGURE: 7417c478bd9Sstevel@tonic-gate case DEVCTL_AP_UNCONFIGURE: 7427c478bd9Sstevel@tonic-gate case DEVCTL_AP_GETSTATE: 7437c478bd9Sstevel@tonic-gate case DEVCTL_AP_CONTROL: 7447c478bd9Sstevel@tonic-gate case DEVCTL_BUS_QUIESCE: 7457c478bd9Sstevel@tonic-gate case DEVCTL_BUS_UNQUIESCE: 7467c478bd9Sstevel@tonic-gate rval = ENOTSUP; 7477c478bd9Sstevel@tonic-gate break; 7487c478bd9Sstevel@tonic-gate } 7497c478bd9Sstevel@tonic-gate 7507c478bd9Sstevel@tonic-gate ndi_dc_freehdl(dcp); 7517c478bd9Sstevel@tonic-gate return (rval); 7527c478bd9Sstevel@tonic-gate } 7537c478bd9Sstevel@tonic-gate 7547c478bd9Sstevel@tonic-gate /* 7557c478bd9Sstevel@tonic-gate * Copyout the state of the Attachment Point "ap" to the requesting 7567c478bd9Sstevel@tonic-gate * user process. 7577c478bd9Sstevel@tonic-gate */ 7587c478bd9Sstevel@tonic-gate int 7597c478bd9Sstevel@tonic-gate ndi_dc_return_ap_state(devctl_ap_state_t *ap, struct devctl_iocdata *dcp) 7607c478bd9Sstevel@tonic-gate { 7617c478bd9Sstevel@tonic-gate if ((ap == NULL) || (dcp == NULL)) 7627c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 7637c478bd9Sstevel@tonic-gate 7647c478bd9Sstevel@tonic-gate 7657c478bd9Sstevel@tonic-gate if (get_udatamodel() == DATAMODEL_NATIVE) { 7667c478bd9Sstevel@tonic-gate if (copyout(ap, dcp->cpyout_buf, 7677c478bd9Sstevel@tonic-gate sizeof (devctl_ap_state_t)) != 0) 7687c478bd9Sstevel@tonic-gate return (NDI_FAULT); 7697c478bd9Sstevel@tonic-gate } 7707c478bd9Sstevel@tonic-gate #ifdef _SYSCALL32_IMPL 7717c478bd9Sstevel@tonic-gate else { 7727c478bd9Sstevel@tonic-gate struct devctl_ap_state32 ap_state32; 7737c478bd9Sstevel@tonic-gate 7747c478bd9Sstevel@tonic-gate ap_state32.ap_rstate = ap->ap_rstate; 7757c478bd9Sstevel@tonic-gate ap_state32.ap_ostate = ap->ap_ostate; 7767c478bd9Sstevel@tonic-gate ap_state32.ap_condition = ap->ap_condition; 7777c478bd9Sstevel@tonic-gate ap_state32.ap_error_code = ap->ap_error_code; 7787c478bd9Sstevel@tonic-gate ap_state32.ap_in_transition = ap->ap_in_transition; 7797c478bd9Sstevel@tonic-gate ap_state32.ap_last_change = (time32_t)ap->ap_last_change; 7807c478bd9Sstevel@tonic-gate if (copyout(&ap_state32, dcp->cpyout_buf, 7817c478bd9Sstevel@tonic-gate sizeof (devctl_ap_state32_t)) != 0) 7827c478bd9Sstevel@tonic-gate return (NDI_FAULT); 7837c478bd9Sstevel@tonic-gate } 7847c478bd9Sstevel@tonic-gate #endif 7857c478bd9Sstevel@tonic-gate 7867c478bd9Sstevel@tonic-gate return (NDI_SUCCESS); 7877c478bd9Sstevel@tonic-gate } 7887c478bd9Sstevel@tonic-gate 7897c478bd9Sstevel@tonic-gate /* 7907c478bd9Sstevel@tonic-gate * Copyout the bus state of the bus nexus device "dip" to the requesting 7917c478bd9Sstevel@tonic-gate * user process. 7927c478bd9Sstevel@tonic-gate */ 7937c478bd9Sstevel@tonic-gate int 7947c478bd9Sstevel@tonic-gate ndi_dc_return_bus_state(dev_info_t *dip, struct devctl_iocdata *dcp) 7957c478bd9Sstevel@tonic-gate { 7967c478bd9Sstevel@tonic-gate uint_t devstate = 0; 7977c478bd9Sstevel@tonic-gate 7987c478bd9Sstevel@tonic-gate if ((dip == NULL) || (dcp == NULL)) 7997c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 8007c478bd9Sstevel@tonic-gate 8017c478bd9Sstevel@tonic-gate if (ndi_get_bus_state(dip, &devstate) != NDI_SUCCESS) 8027c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 8037c478bd9Sstevel@tonic-gate 8047c478bd9Sstevel@tonic-gate if (copyout(&devstate, dcp->cpyout_buf, sizeof (uint_t)) != 0) 8057c478bd9Sstevel@tonic-gate return (NDI_FAULT); 8067c478bd9Sstevel@tonic-gate 8077c478bd9Sstevel@tonic-gate return (NDI_SUCCESS); 8087c478bd9Sstevel@tonic-gate } 8097c478bd9Sstevel@tonic-gate 8107c478bd9Sstevel@tonic-gate static int 8117c478bd9Sstevel@tonic-gate i_dc_devi_create(struct devctl_iocdata *, dev_info_t *, dev_info_t **); 8127c478bd9Sstevel@tonic-gate 8137c478bd9Sstevel@tonic-gate /* 8147c478bd9Sstevel@tonic-gate * create a child device node given the property definitions 8157c478bd9Sstevel@tonic-gate * supplied by the userland process 8167c478bd9Sstevel@tonic-gate */ 8177c478bd9Sstevel@tonic-gate int 8187c478bd9Sstevel@tonic-gate ndi_dc_devi_create(struct devctl_iocdata *dcp, dev_info_t *pdip, int flags, 8197c478bd9Sstevel@tonic-gate dev_info_t **rdip) 8207c478bd9Sstevel@tonic-gate { 8217c478bd9Sstevel@tonic-gate dev_info_t *cdip; 8227c478bd9Sstevel@tonic-gate int rv, circular = 0; 8237c478bd9Sstevel@tonic-gate char devnm[MAXNAMELEN]; 8247c478bd9Sstevel@tonic-gate int nmlen; 8257c478bd9Sstevel@tonic-gate 8267c478bd9Sstevel@tonic-gate /* 8277c478bd9Sstevel@tonic-gate * The child device may have been pre-constructed by an earlier 8287c478bd9Sstevel@tonic-gate * call to this function with the flag DEVCTL_CONSTRUCT set. 8297c478bd9Sstevel@tonic-gate */ 8307c478bd9Sstevel@tonic-gate 8317c478bd9Sstevel@tonic-gate if ((cdip = (rdip != NULL) ? *rdip : NULL) == NULL) 8327c478bd9Sstevel@tonic-gate if ((rv = i_dc_devi_create(dcp, pdip, &cdip)) != 0) 8337c478bd9Sstevel@tonic-gate return (rv); 8347c478bd9Sstevel@tonic-gate 8357c478bd9Sstevel@tonic-gate ASSERT(cdip != NULL); 8367c478bd9Sstevel@tonic-gate 8377c478bd9Sstevel@tonic-gate /* 8387c478bd9Sstevel@tonic-gate * Return the device node partially constructed if the 8397c478bd9Sstevel@tonic-gate * DEVCTL_CONSTRUCT flag is set. 8407c478bd9Sstevel@tonic-gate */ 8417c478bd9Sstevel@tonic-gate if (flags & DEVCTL_CONSTRUCT) { 8427c478bd9Sstevel@tonic-gate if (rdip == NULL) { 8437c478bd9Sstevel@tonic-gate (void) ndi_devi_free(cdip); 8447c478bd9Sstevel@tonic-gate return (EINVAL); 8457c478bd9Sstevel@tonic-gate } 8467c478bd9Sstevel@tonic-gate *rdip = cdip; 8477c478bd9Sstevel@tonic-gate return (0); 8487c478bd9Sstevel@tonic-gate } 8497c478bd9Sstevel@tonic-gate 8507c478bd9Sstevel@tonic-gate /* 8517c478bd9Sstevel@tonic-gate * Bring the node up to a named but OFFLINE state. The calling 8527c478bd9Sstevel@tonic-gate * application will need to manage the node from here on. 8537c478bd9Sstevel@tonic-gate */ 8547c478bd9Sstevel@tonic-gate if (dcp->flags & DEVCTL_OFFLINE) { 8557c478bd9Sstevel@tonic-gate /* 8567c478bd9Sstevel@tonic-gate * hand set the OFFLINE flag to prevent any asynchronous 8577c478bd9Sstevel@tonic-gate * autoconfiguration operations from attaching this node. 8587c478bd9Sstevel@tonic-gate */ 85916747f41Scth mutex_enter(&(DEVI(cdip)->devi_lock)); 86016747f41Scth DEVI_SET_DEVICE_OFFLINE(cdip); 86116747f41Scth mutex_exit(&(DEVI(cdip)->devi_lock)); 86216747f41Scth 8637c478bd9Sstevel@tonic-gate rv = ndi_devi_bind_driver(cdip, flags); 8647c478bd9Sstevel@tonic-gate if (rv != NDI_SUCCESS) { 8657c478bd9Sstevel@tonic-gate (void) ndi_devi_offline(cdip, NDI_DEVI_REMOVE); 8667c478bd9Sstevel@tonic-gate return (ENXIO); 8677c478bd9Sstevel@tonic-gate } 8687c478bd9Sstevel@tonic-gate 8697c478bd9Sstevel@tonic-gate /* 8707c478bd9Sstevel@tonic-gate * remove the dev_info node if it failed to bind to a 8717c478bd9Sstevel@tonic-gate * driver above. 8727c478bd9Sstevel@tonic-gate */ 8737c478bd9Sstevel@tonic-gate if (i_ddi_node_state(cdip) < DS_BOUND) { 8747c478bd9Sstevel@tonic-gate (void) ndi_devi_offline(cdip, NDI_DEVI_REMOVE); 8757c478bd9Sstevel@tonic-gate return (ENXIO); 8767c478bd9Sstevel@tonic-gate } 8777c478bd9Sstevel@tonic-gate 8787c478bd9Sstevel@tonic-gate /* 8797c478bd9Sstevel@tonic-gate * add the node to the per-driver list and INITCHILD it 8807c478bd9Sstevel@tonic-gate * to give it a name. 8817c478bd9Sstevel@tonic-gate */ 8827c478bd9Sstevel@tonic-gate ndi_devi_enter(pdip, &circular); 8837c478bd9Sstevel@tonic-gate if ((rv = ddi_initchild(pdip, cdip)) != DDI_SUCCESS) { 8847c478bd9Sstevel@tonic-gate (void) ndi_devi_offline(cdip, NDI_DEVI_REMOVE); 8857c478bd9Sstevel@tonic-gate ndi_devi_exit(pdip, circular); 8867c478bd9Sstevel@tonic-gate return (EINVAL); 8877c478bd9Sstevel@tonic-gate } 8887c478bd9Sstevel@tonic-gate ndi_devi_exit(pdip, circular); 8897c478bd9Sstevel@tonic-gate 8907c478bd9Sstevel@tonic-gate } else { 8917c478bd9Sstevel@tonic-gate /* 8927c478bd9Sstevel@tonic-gate * Attempt to bring the device ONLINE. If the request to 8937c478bd9Sstevel@tonic-gate * fails, remove the dev_info node. 8947c478bd9Sstevel@tonic-gate */ 8957c478bd9Sstevel@tonic-gate if (ndi_devi_online(cdip, NDI_ONLINE_ATTACH) != NDI_SUCCESS) { 8967c478bd9Sstevel@tonic-gate (void) ndi_devi_offline(cdip, NDI_DEVI_REMOVE); 8977c478bd9Sstevel@tonic-gate return (ENXIO); 8987c478bd9Sstevel@tonic-gate } 8997c478bd9Sstevel@tonic-gate 9007c478bd9Sstevel@tonic-gate /* 9017c478bd9Sstevel@tonic-gate * if the node was successfully added but there was 9027c478bd9Sstevel@tonic-gate * no driver available for the device, remove the node 9037c478bd9Sstevel@tonic-gate */ 9047c478bd9Sstevel@tonic-gate if (i_ddi_node_state(cdip) < DS_BOUND) { 9057c478bd9Sstevel@tonic-gate (void) ndi_devi_offline(cdip, NDI_DEVI_REMOVE); 9067c478bd9Sstevel@tonic-gate return (ENODEV); 9077c478bd9Sstevel@tonic-gate } 9087c478bd9Sstevel@tonic-gate } 9097c478bd9Sstevel@tonic-gate 9107c478bd9Sstevel@tonic-gate /* 9117c478bd9Sstevel@tonic-gate * return a handle to the child device 9127c478bd9Sstevel@tonic-gate * copy out the name of the newly attached child device if 9137c478bd9Sstevel@tonic-gate * the IOCTL request has provided a copyout buffer. 9147c478bd9Sstevel@tonic-gate */ 9157c478bd9Sstevel@tonic-gate if (rdip != NULL) 9167c478bd9Sstevel@tonic-gate *rdip = cdip; 9177c478bd9Sstevel@tonic-gate 9187c478bd9Sstevel@tonic-gate if (dcp->cpyout_buf == NULL) 9197c478bd9Sstevel@tonic-gate return (0); 9207c478bd9Sstevel@tonic-gate 9217c478bd9Sstevel@tonic-gate ASSERT(ddi_node_name(cdip) != NULL); 9227c478bd9Sstevel@tonic-gate ASSERT(ddi_get_name_addr(cdip) != NULL); 9237c478bd9Sstevel@tonic-gate 9247c478bd9Sstevel@tonic-gate nmlen = snprintf(devnm, MAXNAMELEN, "%s@%s", 9257c478bd9Sstevel@tonic-gate ddi_node_name(cdip), ddi_get_name_addr(cdip)); 9267c478bd9Sstevel@tonic-gate 9277c478bd9Sstevel@tonic-gate if (copyout(&devnm, dcp->cpyout_buf, nmlen) != 0) { 9287c478bd9Sstevel@tonic-gate (void) ndi_devi_offline(cdip, NDI_DEVI_REMOVE); 9297c478bd9Sstevel@tonic-gate return (EFAULT); 9307c478bd9Sstevel@tonic-gate } 9317c478bd9Sstevel@tonic-gate return (0); 9327c478bd9Sstevel@tonic-gate } 9337c478bd9Sstevel@tonic-gate 9347c478bd9Sstevel@tonic-gate static int 9357c478bd9Sstevel@tonic-gate i_dc_devi_create(struct devctl_iocdata *dcp, dev_info_t *pdip, 9367c478bd9Sstevel@tonic-gate dev_info_t **rdip) 9377c478bd9Sstevel@tonic-gate { 9387c478bd9Sstevel@tonic-gate 9397c478bd9Sstevel@tonic-gate dev_info_t *cdip; 9407c478bd9Sstevel@tonic-gate char *cname = NULL; 9417c478bd9Sstevel@tonic-gate nvlist_t *nvlp = dcp->nvl_user; 9427c478bd9Sstevel@tonic-gate nvpair_t *npp; 9437c478bd9Sstevel@tonic-gate char *np; 9447c478bd9Sstevel@tonic-gate int rv = 0; 9457c478bd9Sstevel@tonic-gate 9467c478bd9Sstevel@tonic-gate ASSERT(rdip != NULL && *rdip == NULL); 9477c478bd9Sstevel@tonic-gate 9487c478bd9Sstevel@tonic-gate if ((nvlp == NULL) || 9497c478bd9Sstevel@tonic-gate (nvlist_lookup_string(nvlp, DC_DEVI_NODENAME, &cname) != 0)) 9507c478bd9Sstevel@tonic-gate return (EINVAL); 9517c478bd9Sstevel@tonic-gate 9527c478bd9Sstevel@tonic-gate /* 9537c478bd9Sstevel@tonic-gate * construct a new dev_info node with a user-provided nodename 9547c478bd9Sstevel@tonic-gate */ 955fa9e4066Sahrens ndi_devi_alloc_sleep(pdip, cname, (pnode_t)DEVI_SID_NODEID, &cdip); 9567c478bd9Sstevel@tonic-gate 9577c478bd9Sstevel@tonic-gate /* 9587c478bd9Sstevel@tonic-gate * create hardware properties for each member in the property 9597c478bd9Sstevel@tonic-gate * list. 9607c478bd9Sstevel@tonic-gate */ 9617c478bd9Sstevel@tonic-gate for (npp = nvlist_next_nvpair(nvlp, NULL); (npp != NULL && !rv); 9627c478bd9Sstevel@tonic-gate npp = nvlist_next_nvpair(nvlp, npp)) { 9637c478bd9Sstevel@tonic-gate 9647c478bd9Sstevel@tonic-gate np = nvpair_name(npp); 9657c478bd9Sstevel@tonic-gate 9667c478bd9Sstevel@tonic-gate /* 9677c478bd9Sstevel@tonic-gate * skip the nodename property 9687c478bd9Sstevel@tonic-gate */ 9697c478bd9Sstevel@tonic-gate if (strcmp(np, DC_DEVI_NODENAME) == 0) 9707c478bd9Sstevel@tonic-gate continue; 9717c478bd9Sstevel@tonic-gate 9727c478bd9Sstevel@tonic-gate switch (nvpair_type(npp)) { 9737c478bd9Sstevel@tonic-gate 9747c478bd9Sstevel@tonic-gate case DATA_TYPE_INT32: { 9757c478bd9Sstevel@tonic-gate int32_t prop_val; 9767c478bd9Sstevel@tonic-gate 9777c478bd9Sstevel@tonic-gate if ((rv = nvpair_value_int32(npp, &prop_val)) != 0) 9787c478bd9Sstevel@tonic-gate break; 9797c478bd9Sstevel@tonic-gate 9807c478bd9Sstevel@tonic-gate (void) ndi_prop_update_int(DDI_DEV_T_NONE, cdip, np, 9817c478bd9Sstevel@tonic-gate (int)prop_val); 9827c478bd9Sstevel@tonic-gate break; 9837c478bd9Sstevel@tonic-gate } 9847c478bd9Sstevel@tonic-gate 9857c478bd9Sstevel@tonic-gate case DATA_TYPE_STRING: { 9867c478bd9Sstevel@tonic-gate char *prop_val; 9877c478bd9Sstevel@tonic-gate 9887c478bd9Sstevel@tonic-gate if ((rv = nvpair_value_string(npp, &prop_val)) != 0) 9897c478bd9Sstevel@tonic-gate break; 9907c478bd9Sstevel@tonic-gate 9917c478bd9Sstevel@tonic-gate (void) ndi_prop_update_string(DDI_DEV_T_NONE, cdip, 9927c478bd9Sstevel@tonic-gate np, prop_val); 9937c478bd9Sstevel@tonic-gate break; 9947c478bd9Sstevel@tonic-gate } 9957c478bd9Sstevel@tonic-gate 9967c478bd9Sstevel@tonic-gate case DATA_TYPE_BYTE_ARRAY: { 9977c478bd9Sstevel@tonic-gate uchar_t *val; 9987c478bd9Sstevel@tonic-gate uint_t nelms; 9997c478bd9Sstevel@tonic-gate 10007c478bd9Sstevel@tonic-gate if ((rv = nvpair_value_byte_array(npp, &val, 10017c478bd9Sstevel@tonic-gate &nelms)) != 0) 10027c478bd9Sstevel@tonic-gate break; 10037c478bd9Sstevel@tonic-gate 10047c478bd9Sstevel@tonic-gate (void) ndi_prop_update_byte_array(DDI_DEV_T_NONE, 10057c478bd9Sstevel@tonic-gate cdip, np, (uchar_t *)val, nelms); 10067c478bd9Sstevel@tonic-gate break; 10077c478bd9Sstevel@tonic-gate } 10087c478bd9Sstevel@tonic-gate 10097c478bd9Sstevel@tonic-gate case DATA_TYPE_INT32_ARRAY: { 10107c478bd9Sstevel@tonic-gate int32_t *val; 10117c478bd9Sstevel@tonic-gate uint_t nelms; 10127c478bd9Sstevel@tonic-gate 10137c478bd9Sstevel@tonic-gate if ((rv = nvpair_value_int32_array(npp, &val, 10147c478bd9Sstevel@tonic-gate &nelms)) != 0) 10157c478bd9Sstevel@tonic-gate break; 10167c478bd9Sstevel@tonic-gate 10177c478bd9Sstevel@tonic-gate (void) ndi_prop_update_int_array(DDI_DEV_T_NONE, 10187c478bd9Sstevel@tonic-gate cdip, np, val, nelms); 10197c478bd9Sstevel@tonic-gate break; 10207c478bd9Sstevel@tonic-gate } 10217c478bd9Sstevel@tonic-gate 10227c478bd9Sstevel@tonic-gate case DATA_TYPE_STRING_ARRAY: { 10237c478bd9Sstevel@tonic-gate char **val; 10247c478bd9Sstevel@tonic-gate uint_t nelms; 10257c478bd9Sstevel@tonic-gate 10267c478bd9Sstevel@tonic-gate if ((rv = nvpair_value_string_array(npp, &val, 10277c478bd9Sstevel@tonic-gate &nelms)) != 0) 10287c478bd9Sstevel@tonic-gate break; 10297c478bd9Sstevel@tonic-gate 10307c478bd9Sstevel@tonic-gate (void) ndi_prop_update_string_array(DDI_DEV_T_NONE, 10317c478bd9Sstevel@tonic-gate cdip, np, val, nelms); 10327c478bd9Sstevel@tonic-gate break; 10337c478bd9Sstevel@tonic-gate } 10347c478bd9Sstevel@tonic-gate 10357c478bd9Sstevel@tonic-gate /* 10367c478bd9Sstevel@tonic-gate * unsupported property data type 10377c478bd9Sstevel@tonic-gate */ 10387c478bd9Sstevel@tonic-gate default: 10397c478bd9Sstevel@tonic-gate rv = EINVAL; 10407c478bd9Sstevel@tonic-gate } 10417c478bd9Sstevel@tonic-gate } 10427c478bd9Sstevel@tonic-gate 10437c478bd9Sstevel@tonic-gate /* 10447c478bd9Sstevel@tonic-gate * something above failed 10457c478bd9Sstevel@tonic-gate * destroy the partially child device and abort the request 10467c478bd9Sstevel@tonic-gate */ 10477c478bd9Sstevel@tonic-gate if (rv != 0) { 10487c478bd9Sstevel@tonic-gate (void) ndi_devi_free(cdip); 10497c478bd9Sstevel@tonic-gate return (rv); 10507c478bd9Sstevel@tonic-gate } 10517c478bd9Sstevel@tonic-gate 10527c478bd9Sstevel@tonic-gate *rdip = cdip; 10537c478bd9Sstevel@tonic-gate return (0); 10547c478bd9Sstevel@tonic-gate } 10557c478bd9Sstevel@tonic-gate 10567c478bd9Sstevel@tonic-gate /* 10577c478bd9Sstevel@tonic-gate * return current soft bus state of bus nexus "dip" 10587c478bd9Sstevel@tonic-gate */ 10597c478bd9Sstevel@tonic-gate int 10607c478bd9Sstevel@tonic-gate ndi_get_bus_state(dev_info_t *dip, uint_t *rstate) 10617c478bd9Sstevel@tonic-gate { 10627c478bd9Sstevel@tonic-gate if (dip == NULL || rstate == NULL) 10637c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 10647c478bd9Sstevel@tonic-gate 10657c478bd9Sstevel@tonic-gate if (DEVI(dip)->devi_ops->devo_bus_ops == NULL) 10667c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 10677c478bd9Sstevel@tonic-gate 10687c478bd9Sstevel@tonic-gate mutex_enter(&(DEVI(dip)->devi_lock)); 10697c478bd9Sstevel@tonic-gate if (DEVI_IS_BUS_QUIESCED(dip)) 10707c478bd9Sstevel@tonic-gate *rstate = BUS_QUIESCED; 10717c478bd9Sstevel@tonic-gate else if (DEVI_IS_BUS_DOWN(dip)) 10727c478bd9Sstevel@tonic-gate *rstate = BUS_SHUTDOWN; 10737c478bd9Sstevel@tonic-gate else 10747c478bd9Sstevel@tonic-gate *rstate = BUS_ACTIVE; 10757c478bd9Sstevel@tonic-gate mutex_exit(&(DEVI(dip)->devi_lock)); 10767c478bd9Sstevel@tonic-gate return (NDI_SUCCESS); 10777c478bd9Sstevel@tonic-gate } 10787c478bd9Sstevel@tonic-gate 10797c478bd9Sstevel@tonic-gate /* 10807c478bd9Sstevel@tonic-gate * Set the soft state of bus nexus "dip" 10817c478bd9Sstevel@tonic-gate */ 10827c478bd9Sstevel@tonic-gate int 10837c478bd9Sstevel@tonic-gate ndi_set_bus_state(dev_info_t *dip, uint_t state) 10847c478bd9Sstevel@tonic-gate { 10857c478bd9Sstevel@tonic-gate int rv = NDI_SUCCESS; 10867c478bd9Sstevel@tonic-gate 10877c478bd9Sstevel@tonic-gate if (dip == NULL) 10887c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 10897c478bd9Sstevel@tonic-gate 10907c478bd9Sstevel@tonic-gate mutex_enter(&(DEVI(dip)->devi_lock)); 10917c478bd9Sstevel@tonic-gate 10927c478bd9Sstevel@tonic-gate switch (state) { 10937c478bd9Sstevel@tonic-gate case BUS_QUIESCED: 10947c478bd9Sstevel@tonic-gate DEVI_SET_BUS_QUIESCE(dip); 10957c478bd9Sstevel@tonic-gate break; 10967c478bd9Sstevel@tonic-gate 10977c478bd9Sstevel@tonic-gate case BUS_ACTIVE: 10987c478bd9Sstevel@tonic-gate DEVI_SET_BUS_ACTIVE(dip); 10997c478bd9Sstevel@tonic-gate DEVI_SET_BUS_UP(dip); 11007c478bd9Sstevel@tonic-gate break; 11017c478bd9Sstevel@tonic-gate 11027c478bd9Sstevel@tonic-gate case BUS_SHUTDOWN: 11037c478bd9Sstevel@tonic-gate DEVI_SET_BUS_DOWN(dip); 11047c478bd9Sstevel@tonic-gate break; 11057c478bd9Sstevel@tonic-gate 11067c478bd9Sstevel@tonic-gate default: 11077c478bd9Sstevel@tonic-gate rv = NDI_FAILURE; 11087c478bd9Sstevel@tonic-gate } 11097c478bd9Sstevel@tonic-gate 11107c478bd9Sstevel@tonic-gate mutex_exit(&(DEVI(dip)->devi_lock)); 11117c478bd9Sstevel@tonic-gate return (rv); 11127c478bd9Sstevel@tonic-gate } 11137c478bd9Sstevel@tonic-gate 11147c478bd9Sstevel@tonic-gate /* 11157c478bd9Sstevel@tonic-gate * These dummy functions are obsolete and may be removed. 11167c478bd9Sstevel@tonic-gate * Retained for existing driver compatibility only. 11177c478bd9Sstevel@tonic-gate * Drivers should be fixed not to use these functions. 11187c478bd9Sstevel@tonic-gate * Don't write new code using these obsolete interfaces. 11197c478bd9Sstevel@tonic-gate */ 11207c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 11217c478bd9Sstevel@tonic-gate void 11227c478bd9Sstevel@tonic-gate i_ndi_block_device_tree_changes(uint_t *lkcnt) /* obsolete */ 11237c478bd9Sstevel@tonic-gate { 11247c478bd9Sstevel@tonic-gate /* obsolete dummy function */ 11257c478bd9Sstevel@tonic-gate } 11267c478bd9Sstevel@tonic-gate 11277c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 11287c478bd9Sstevel@tonic-gate void 11297c478bd9Sstevel@tonic-gate i_ndi_allow_device_tree_changes(uint_t lkcnt) /* obsolete */ 11307c478bd9Sstevel@tonic-gate { 11317c478bd9Sstevel@tonic-gate /* obsolete dummy function */ 11327c478bd9Sstevel@tonic-gate } 11337c478bd9Sstevel@tonic-gate 11347c478bd9Sstevel@tonic-gate /* 11357c478bd9Sstevel@tonic-gate * Single thread entry into per-driver list 11367c478bd9Sstevel@tonic-gate */ 11377c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 11387c478bd9Sstevel@tonic-gate void 11397c478bd9Sstevel@tonic-gate e_ddi_enter_driver_list(struct devnames *dnp, int *listcnt) /* obsolete */ 11407c478bd9Sstevel@tonic-gate { 11417c478bd9Sstevel@tonic-gate /* obsolete dummy function */ 11427c478bd9Sstevel@tonic-gate } 11437c478bd9Sstevel@tonic-gate 11447c478bd9Sstevel@tonic-gate /* 11457c478bd9Sstevel@tonic-gate * release the per-driver list 11467c478bd9Sstevel@tonic-gate */ 11477c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 11487c478bd9Sstevel@tonic-gate void 11497c478bd9Sstevel@tonic-gate e_ddi_exit_driver_list(struct devnames *dnp, int listcnt) /* obsolete */ 11507c478bd9Sstevel@tonic-gate { 11517c478bd9Sstevel@tonic-gate /* obsolete dummy function */ 11527c478bd9Sstevel@tonic-gate } 11537c478bd9Sstevel@tonic-gate 11547c478bd9Sstevel@tonic-gate /* 11557c478bd9Sstevel@tonic-gate * Attempt to enter driver list 11567c478bd9Sstevel@tonic-gate */ 11577c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 11587c478bd9Sstevel@tonic-gate int 11597c478bd9Sstevel@tonic-gate e_ddi_tryenter_driver_list(struct devnames *dnp, int *listcnt) /* obsolete */ 11607c478bd9Sstevel@tonic-gate { 11617c478bd9Sstevel@tonic-gate return (1); /* obsolete dummy function */ 11627c478bd9Sstevel@tonic-gate } 11637c478bd9Sstevel@tonic-gate 11647c478bd9Sstevel@tonic-gate /* 11657c478bd9Sstevel@tonic-gate * ndi event handling support functions: 11667c478bd9Sstevel@tonic-gate * The NDI event support model is as follows: 11677c478bd9Sstevel@tonic-gate * 11687c478bd9Sstevel@tonic-gate * The nexus driver defines a set of events using some static structures (so 11697c478bd9Sstevel@tonic-gate * these structures can be shared by all instances of the nexus driver). 11707c478bd9Sstevel@tonic-gate * The nexus driver allocates an event handle and binds the event set 11717c478bd9Sstevel@tonic-gate * to this handle. The nexus driver's event busop functions can just 11727c478bd9Sstevel@tonic-gate * call the appropriate NDI event support function using this handle 11737c478bd9Sstevel@tonic-gate * as the first argument. 11747c478bd9Sstevel@tonic-gate * 11757c478bd9Sstevel@tonic-gate * The reasoning for tying events to the device tree is that the entity 11767c478bd9Sstevel@tonic-gate * generating the callback will typically be one of the device driver's 11777c478bd9Sstevel@tonic-gate * ancestors in the tree. 11787c478bd9Sstevel@tonic-gate */ 11797c478bd9Sstevel@tonic-gate static int ndi_event_debug = 0; 11807c478bd9Sstevel@tonic-gate 11817c478bd9Sstevel@tonic-gate #ifdef DEBUG 11827c478bd9Sstevel@tonic-gate #define NDI_EVENT_DEBUG ndi_event_debug 11837c478bd9Sstevel@tonic-gate #endif /* DEBUG */ 11847c478bd9Sstevel@tonic-gate 11857c478bd9Sstevel@tonic-gate /* 11867c478bd9Sstevel@tonic-gate * allocate a new ndi event handle 11877c478bd9Sstevel@tonic-gate */ 11887c478bd9Sstevel@tonic-gate int 11897c478bd9Sstevel@tonic-gate ndi_event_alloc_hdl(dev_info_t *dip, ddi_iblock_cookie_t cookie, 11907c478bd9Sstevel@tonic-gate ndi_event_hdl_t *handle, uint_t flag) 11917c478bd9Sstevel@tonic-gate { 11927c478bd9Sstevel@tonic-gate struct ndi_event_hdl *ndi_event_hdl; 11937c478bd9Sstevel@tonic-gate 11947c478bd9Sstevel@tonic-gate ndi_event_hdl = kmem_zalloc(sizeof (struct ndi_event_hdl), 11957c478bd9Sstevel@tonic-gate ((flag & NDI_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP)); 11967c478bd9Sstevel@tonic-gate 11977c478bd9Sstevel@tonic-gate if (!ndi_event_hdl) { 11987c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 11997c478bd9Sstevel@tonic-gate } 12007c478bd9Sstevel@tonic-gate 12017c478bd9Sstevel@tonic-gate ndi_event_hdl->ndi_evthdl_dip = dip; 12027c478bd9Sstevel@tonic-gate ndi_event_hdl->ndi_evthdl_iblock_cookie = cookie; 12037c478bd9Sstevel@tonic-gate mutex_init(&ndi_event_hdl->ndi_evthdl_mutex, NULL, 12047c478bd9Sstevel@tonic-gate MUTEX_DRIVER, (void *)cookie); 12057c478bd9Sstevel@tonic-gate 12067c478bd9Sstevel@tonic-gate mutex_init(&ndi_event_hdl->ndi_evthdl_cb_mutex, NULL, 12077c478bd9Sstevel@tonic-gate MUTEX_DRIVER, (void *)cookie); 12087c478bd9Sstevel@tonic-gate 12097c478bd9Sstevel@tonic-gate *handle = (ndi_event_hdl_t)ndi_event_hdl; 12107c478bd9Sstevel@tonic-gate 12117c478bd9Sstevel@tonic-gate return (NDI_SUCCESS); 12127c478bd9Sstevel@tonic-gate } 12137c478bd9Sstevel@tonic-gate 12147c478bd9Sstevel@tonic-gate /* 12157c478bd9Sstevel@tonic-gate * free the ndi event handle 12167c478bd9Sstevel@tonic-gate */ 12177c478bd9Sstevel@tonic-gate int 12187c478bd9Sstevel@tonic-gate ndi_event_free_hdl(ndi_event_hdl_t handle) 12197c478bd9Sstevel@tonic-gate { 12207c478bd9Sstevel@tonic-gate struct ndi_event_hdl *ndi_event_hdl = (struct ndi_event_hdl *)handle; 12217c478bd9Sstevel@tonic-gate ndi_event_cookie_t *cookie; 12227c478bd9Sstevel@tonic-gate ndi_event_cookie_t *free; 12237c478bd9Sstevel@tonic-gate 12247c478bd9Sstevel@tonic-gate ASSERT(handle); 12257c478bd9Sstevel@tonic-gate 12267c478bd9Sstevel@tonic-gate mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex); 12277c478bd9Sstevel@tonic-gate mutex_enter(&ndi_event_hdl->ndi_evthdl_cb_mutex); 12287c478bd9Sstevel@tonic-gate 12297c478bd9Sstevel@tonic-gate cookie = ndi_event_hdl->ndi_evthdl_cookie_list; 12307c478bd9Sstevel@tonic-gate 12317c478bd9Sstevel@tonic-gate /* deallocate all defined cookies */ 12327c478bd9Sstevel@tonic-gate while (cookie != NULL) { 12337c478bd9Sstevel@tonic-gate ASSERT(cookie->callback_list == NULL); 12347c478bd9Sstevel@tonic-gate free = cookie; 12357c478bd9Sstevel@tonic-gate cookie = cookie->next_cookie; 12367c478bd9Sstevel@tonic-gate 12377c478bd9Sstevel@tonic-gate kmem_free(free, sizeof (ndi_event_cookie_t)); 12387c478bd9Sstevel@tonic-gate } 12397c478bd9Sstevel@tonic-gate 12407c478bd9Sstevel@tonic-gate 12417c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_cb_mutex); 12427c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 12437c478bd9Sstevel@tonic-gate 12447c478bd9Sstevel@tonic-gate /* destroy mutexes */ 12457c478bd9Sstevel@tonic-gate mutex_destroy(&ndi_event_hdl->ndi_evthdl_mutex); 12467c478bd9Sstevel@tonic-gate mutex_destroy(&ndi_event_hdl->ndi_evthdl_cb_mutex); 12477c478bd9Sstevel@tonic-gate 12487c478bd9Sstevel@tonic-gate /* free event handle */ 12497c478bd9Sstevel@tonic-gate kmem_free(ndi_event_hdl, sizeof (struct ndi_event_hdl)); 12507c478bd9Sstevel@tonic-gate 12517c478bd9Sstevel@tonic-gate return (NDI_SUCCESS); 12527c478bd9Sstevel@tonic-gate } 12537c478bd9Sstevel@tonic-gate 12547c478bd9Sstevel@tonic-gate 12557c478bd9Sstevel@tonic-gate /* 12567c478bd9Sstevel@tonic-gate * ndi_event_bind_set() adds a set of events to the NDI event 12577c478bd9Sstevel@tonic-gate * handle. 12587c478bd9Sstevel@tonic-gate * 12597c478bd9Sstevel@tonic-gate * Events generated by high level interrupts should not 12607c478bd9Sstevel@tonic-gate * be mixed in the same event set with events generated by 12617c478bd9Sstevel@tonic-gate * normal interrupts or kernel events. 12627c478bd9Sstevel@tonic-gate * 12637c478bd9Sstevel@tonic-gate * This function can be called multiple times to bind 12647c478bd9Sstevel@tonic-gate * additional sets to the event handle. 12657c478bd9Sstevel@tonic-gate * However, events generated by high level interrupts cannot 12667c478bd9Sstevel@tonic-gate * be bound to a handle that already has bound events generated 12677c478bd9Sstevel@tonic-gate * by normal interrupts or from kernel context and vice versa. 12687c478bd9Sstevel@tonic-gate */ 12697c478bd9Sstevel@tonic-gate int 12707c478bd9Sstevel@tonic-gate ndi_event_bind_set(ndi_event_hdl_t handle, 12717c478bd9Sstevel@tonic-gate ndi_event_set_t *ndi_events, 12727c478bd9Sstevel@tonic-gate uint_t flag) 12737c478bd9Sstevel@tonic-gate { 12747c478bd9Sstevel@tonic-gate struct ndi_event_hdl *ndi_event_hdl; 12757c478bd9Sstevel@tonic-gate ndi_event_cookie_t *next, *prev, *new_cookie; 12767c478bd9Sstevel@tonic-gate uint_t i, len; 12777c478bd9Sstevel@tonic-gate uint_t dup = 0; 12787c478bd9Sstevel@tonic-gate uint_t high_plevels, other_plevels; 12797c478bd9Sstevel@tonic-gate ndi_event_definition_t *ndi_event_defs; 12807c478bd9Sstevel@tonic-gate 12817c478bd9Sstevel@tonic-gate int km_flag = ((flag & NDI_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP); 12827c478bd9Sstevel@tonic-gate 12837c478bd9Sstevel@tonic-gate ASSERT(handle); 12847c478bd9Sstevel@tonic-gate ASSERT(ndi_events); 12857c478bd9Sstevel@tonic-gate 12867c478bd9Sstevel@tonic-gate /* 12877c478bd9Sstevel@tonic-gate * binding must be performed during attach/detach 12887c478bd9Sstevel@tonic-gate */ 12897c478bd9Sstevel@tonic-gate if (!DEVI_IS_ATTACHING(handle->ndi_evthdl_dip) && 12907c478bd9Sstevel@tonic-gate !DEVI_IS_DETACHING(handle->ndi_evthdl_dip)) { 12917c478bd9Sstevel@tonic-gate cmn_err(CE_WARN, "ndi_event_bind_set must be called within " 12927c478bd9Sstevel@tonic-gate "attach or detach"); 12937c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 12947c478bd9Sstevel@tonic-gate } 12957c478bd9Sstevel@tonic-gate 12967c478bd9Sstevel@tonic-gate /* 12977c478bd9Sstevel@tonic-gate * if it is not the correct version or the event set is 12987c478bd9Sstevel@tonic-gate * empty, bail out 12997c478bd9Sstevel@tonic-gate */ 13007c478bd9Sstevel@tonic-gate if (ndi_events->ndi_events_version != NDI_EVENTS_REV1) 13017c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 13027c478bd9Sstevel@tonic-gate 13037c478bd9Sstevel@tonic-gate ndi_event_hdl = (struct ndi_event_hdl *)handle; 13047c478bd9Sstevel@tonic-gate ndi_event_defs = ndi_events->ndi_event_defs; 13057c478bd9Sstevel@tonic-gate high_plevels = other_plevels = 0; 13067c478bd9Sstevel@tonic-gate 13077c478bd9Sstevel@tonic-gate mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex); 13087c478bd9Sstevel@tonic-gate 13097c478bd9Sstevel@tonic-gate /* check for mixing events at high level with the other types */ 13107c478bd9Sstevel@tonic-gate for (i = 0; i < ndi_events->ndi_n_events; i++) { 13117c478bd9Sstevel@tonic-gate if (ndi_event_defs[i].ndi_event_plevel == EPL_HIGHLEVEL) { 13127c478bd9Sstevel@tonic-gate high_plevels++; 13137c478bd9Sstevel@tonic-gate } else { 13147c478bd9Sstevel@tonic-gate other_plevels++; 13157c478bd9Sstevel@tonic-gate } 13167c478bd9Sstevel@tonic-gate } 13177c478bd9Sstevel@tonic-gate 13187c478bd9Sstevel@tonic-gate /* 13197c478bd9Sstevel@tonic-gate * bail out if high level events are mixed with other types in this 13207c478bd9Sstevel@tonic-gate * event set or the set is incompatible with the set in the handle 13217c478bd9Sstevel@tonic-gate */ 13227c478bd9Sstevel@tonic-gate if ((high_plevels && other_plevels) || 13237c478bd9Sstevel@tonic-gate (other_plevels && ndi_event_hdl->ndi_evthdl_high_plevels) || 13247c478bd9Sstevel@tonic-gate (high_plevels && ndi_event_hdl->ndi_evthdl_other_plevels)) { 13257c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 13267c478bd9Sstevel@tonic-gate 13277c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 13287c478bd9Sstevel@tonic-gate } 13297c478bd9Sstevel@tonic-gate 13307c478bd9Sstevel@tonic-gate /* 13317c478bd9Sstevel@tonic-gate * check for duplicate events in both the existing handle 13327c478bd9Sstevel@tonic-gate * and the event set, add events if not duplicates 13337c478bd9Sstevel@tonic-gate */ 13347c478bd9Sstevel@tonic-gate next = ndi_event_hdl->ndi_evthdl_cookie_list; 13357c478bd9Sstevel@tonic-gate for (i = 0; i < ndi_events->ndi_n_events; i++) { 13367c478bd9Sstevel@tonic-gate while (next != NULL) { 13377c478bd9Sstevel@tonic-gate len = strlen(NDI_EVENT_NAME(next)) + 1; 13387c478bd9Sstevel@tonic-gate if (strncmp(NDI_EVENT_NAME(next), 13397c478bd9Sstevel@tonic-gate ndi_event_defs[i].ndi_event_name, len) == 0) { 13407c478bd9Sstevel@tonic-gate dup = 1; 13417c478bd9Sstevel@tonic-gate break; 13427c478bd9Sstevel@tonic-gate } 13437c478bd9Sstevel@tonic-gate 13447c478bd9Sstevel@tonic-gate prev = next; 13457c478bd9Sstevel@tonic-gate next = next->next_cookie; 13467c478bd9Sstevel@tonic-gate } 13477c478bd9Sstevel@tonic-gate 13487c478bd9Sstevel@tonic-gate if (dup == 0) { 13497c478bd9Sstevel@tonic-gate new_cookie = kmem_zalloc(sizeof (ndi_event_cookie_t), 13507c478bd9Sstevel@tonic-gate km_flag); 13517c478bd9Sstevel@tonic-gate 13527c478bd9Sstevel@tonic-gate if (!new_cookie) 13537c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 13547c478bd9Sstevel@tonic-gate 13557c478bd9Sstevel@tonic-gate if (ndi_event_hdl->ndi_evthdl_n_events == 0) { 13567c478bd9Sstevel@tonic-gate ndi_event_hdl->ndi_evthdl_cookie_list = 13577c478bd9Sstevel@tonic-gate new_cookie; 13587c478bd9Sstevel@tonic-gate } else { 13597c478bd9Sstevel@tonic-gate prev->next_cookie = new_cookie; 13607c478bd9Sstevel@tonic-gate } 13617c478bd9Sstevel@tonic-gate 13627c478bd9Sstevel@tonic-gate ndi_event_hdl->ndi_evthdl_n_events++; 13637c478bd9Sstevel@tonic-gate 13647c478bd9Sstevel@tonic-gate /* 13657c478bd9Sstevel@tonic-gate * set up new cookie 13667c478bd9Sstevel@tonic-gate */ 13677c478bd9Sstevel@tonic-gate new_cookie->definition = &ndi_event_defs[i]; 13687c478bd9Sstevel@tonic-gate new_cookie->ddip = ndi_event_hdl->ndi_evthdl_dip; 13697c478bd9Sstevel@tonic-gate 13707c478bd9Sstevel@tonic-gate } else { 13717c478bd9Sstevel@tonic-gate /* 13727c478bd9Sstevel@tonic-gate * event not added, must correct plevel numbers 13737c478bd9Sstevel@tonic-gate */ 13747c478bd9Sstevel@tonic-gate if (ndi_event_defs[i].ndi_event_plevel == 13757c478bd9Sstevel@tonic-gate EPL_HIGHLEVEL) { 13767c478bd9Sstevel@tonic-gate high_plevels--; 13777c478bd9Sstevel@tonic-gate } else { 13787c478bd9Sstevel@tonic-gate other_plevels--; 13797c478bd9Sstevel@tonic-gate } 13807c478bd9Sstevel@tonic-gate } 13817c478bd9Sstevel@tonic-gate 13827c478bd9Sstevel@tonic-gate dup = 0; 13837c478bd9Sstevel@tonic-gate next = ndi_event_hdl->ndi_evthdl_cookie_list; 13847c478bd9Sstevel@tonic-gate prev = NULL; 13857c478bd9Sstevel@tonic-gate 13867c478bd9Sstevel@tonic-gate } 13877c478bd9Sstevel@tonic-gate 13887c478bd9Sstevel@tonic-gate ndi_event_hdl->ndi_evthdl_high_plevels += high_plevels; 13897c478bd9Sstevel@tonic-gate ndi_event_hdl->ndi_evthdl_other_plevels += other_plevels; 13907c478bd9Sstevel@tonic-gate 13917c478bd9Sstevel@tonic-gate ASSERT((ndi_event_hdl->ndi_evthdl_high_plevels == 0) || 13927c478bd9Sstevel@tonic-gate (ndi_event_hdl->ndi_evthdl_other_plevels == 0)); 13937c478bd9Sstevel@tonic-gate 13947c478bd9Sstevel@tonic-gate #ifdef NDI_EVENT_DEBUG 13957c478bd9Sstevel@tonic-gate if (ndi_event_debug) { 13967c478bd9Sstevel@tonic-gate ndi_event_dump_hdl(ndi_event_hdl, "ndi_event_bind_set"); 13977c478bd9Sstevel@tonic-gate } 13987c478bd9Sstevel@tonic-gate #endif /* NDI_EVENT_DEBUG */ 13997c478bd9Sstevel@tonic-gate 14007c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 14017c478bd9Sstevel@tonic-gate 14027c478bd9Sstevel@tonic-gate return (NDI_SUCCESS); 14037c478bd9Sstevel@tonic-gate } 14047c478bd9Sstevel@tonic-gate 14057c478bd9Sstevel@tonic-gate /* 14067c478bd9Sstevel@tonic-gate * ndi_event_unbind_set() unbinds a set of events, previously 14077c478bd9Sstevel@tonic-gate * bound using ndi_event_bind_set(), from the NDI event 14087c478bd9Sstevel@tonic-gate * handle. 14097c478bd9Sstevel@tonic-gate * 14107c478bd9Sstevel@tonic-gate * This routine will unbind all events in the event set. If an event, 14117c478bd9Sstevel@tonic-gate * specified in the event set, is not found in the handle, this 14127c478bd9Sstevel@tonic-gate * routine will proceed onto the next member of the set as if the event 14137c478bd9Sstevel@tonic-gate * was never specified. 14147c478bd9Sstevel@tonic-gate * 14157c478bd9Sstevel@tonic-gate * The event set may be a subset of the set of events that 14167c478bd9Sstevel@tonic-gate * was previously bound to the handle. For example, events 14177c478bd9Sstevel@tonic-gate * can be individually unbound. 14187c478bd9Sstevel@tonic-gate * 14197c478bd9Sstevel@tonic-gate * An event cannot be unbound if callbacks are still 14207c478bd9Sstevel@tonic-gate * registered against the event. 14217c478bd9Sstevel@tonic-gate */ 14227c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 14237c478bd9Sstevel@tonic-gate int 14247c478bd9Sstevel@tonic-gate ndi_event_unbind_set(ndi_event_hdl_t handle, ndi_event_set_t *ndi_events, 14257c478bd9Sstevel@tonic-gate uint_t flag) 14267c478bd9Sstevel@tonic-gate { 14277c478bd9Sstevel@tonic-gate ndi_event_definition_t *ndi_event_defs; 14287c478bd9Sstevel@tonic-gate int len; 14297c478bd9Sstevel@tonic-gate uint_t i; 14307c478bd9Sstevel@tonic-gate int rval; 14317c478bd9Sstevel@tonic-gate ndi_event_cookie_t *cookie_list; 14327c478bd9Sstevel@tonic-gate ndi_event_cookie_t *prev = NULL; 14337c478bd9Sstevel@tonic-gate 14347c478bd9Sstevel@tonic-gate ASSERT(ndi_events); 14357c478bd9Sstevel@tonic-gate ASSERT(handle); 14367c478bd9Sstevel@tonic-gate 14377c478bd9Sstevel@tonic-gate /* 14387c478bd9Sstevel@tonic-gate * binding must be performed during attach/detac 14397c478bd9Sstevel@tonic-gate */ 14407c478bd9Sstevel@tonic-gate if (!DEVI_IS_ATTACHING(handle->ndi_evthdl_dip) && 14417c478bd9Sstevel@tonic-gate !DEVI_IS_DETACHING(handle->ndi_evthdl_dip)) { 14427c478bd9Sstevel@tonic-gate cmn_err(CE_WARN, "ndi_event_bind_set must be called within " 14437c478bd9Sstevel@tonic-gate "attach or detach"); 14447c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 14457c478bd9Sstevel@tonic-gate } 14467c478bd9Sstevel@tonic-gate 14477c478bd9Sstevel@tonic-gate /* bail out if ndi_event_set is outdated */ 14487c478bd9Sstevel@tonic-gate if (ndi_events->ndi_events_version != NDI_EVENTS_REV1) { 14497c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 14507c478bd9Sstevel@tonic-gate } 14517c478bd9Sstevel@tonic-gate 14527c478bd9Sstevel@tonic-gate ASSERT(ndi_events->ndi_event_defs); 14537c478bd9Sstevel@tonic-gate 14547c478bd9Sstevel@tonic-gate ndi_event_defs = ndi_events->ndi_event_defs; 14557c478bd9Sstevel@tonic-gate 14567c478bd9Sstevel@tonic-gate mutex_enter(&handle->ndi_evthdl_mutex); 14577c478bd9Sstevel@tonic-gate mutex_enter(&handle->ndi_evthdl_cb_mutex); 14587c478bd9Sstevel@tonic-gate 14597c478bd9Sstevel@tonic-gate /* 14607c478bd9Sstevel@tonic-gate * Verify that all events in the event set are eligible 14617c478bd9Sstevel@tonic-gate * for unbinding(ie. there are no outstanding callbacks). 14627c478bd9Sstevel@tonic-gate * If any one of the events are ineligible, fail entire 14637c478bd9Sstevel@tonic-gate * operation. 14647c478bd9Sstevel@tonic-gate */ 14657c478bd9Sstevel@tonic-gate 14667c478bd9Sstevel@tonic-gate for (i = 0; i < ndi_events->ndi_n_events; i++) { 14677c478bd9Sstevel@tonic-gate cookie_list = handle->ndi_evthdl_cookie_list; 14687c478bd9Sstevel@tonic-gate while (cookie_list != NULL) { 14697c478bd9Sstevel@tonic-gate len = strlen(NDI_EVENT_NAME(cookie_list)) + 1; 14707c478bd9Sstevel@tonic-gate if (strncmp(NDI_EVENT_NAME(cookie_list), 14717c478bd9Sstevel@tonic-gate ndi_event_defs[i].ndi_event_name, len) == 0) { 14727c478bd9Sstevel@tonic-gate 14737c478bd9Sstevel@tonic-gate ASSERT(cookie_list->callback_list == NULL); 14747c478bd9Sstevel@tonic-gate if (cookie_list->callback_list) { 14757c478bd9Sstevel@tonic-gate rval = NDI_FAILURE; 14767c478bd9Sstevel@tonic-gate goto done; 14777c478bd9Sstevel@tonic-gate } 14787c478bd9Sstevel@tonic-gate break; 14797c478bd9Sstevel@tonic-gate } else { 14807c478bd9Sstevel@tonic-gate cookie_list = cookie_list->next_cookie; 14817c478bd9Sstevel@tonic-gate } 14827c478bd9Sstevel@tonic-gate } 14837c478bd9Sstevel@tonic-gate } 14847c478bd9Sstevel@tonic-gate 14857c478bd9Sstevel@tonic-gate /* 14867c478bd9Sstevel@tonic-gate * remove all events found within the handle 14877c478bd9Sstevel@tonic-gate * If an event is not found, this function will proceed as if the event 14887c478bd9Sstevel@tonic-gate * was never specified. 14897c478bd9Sstevel@tonic-gate */ 14907c478bd9Sstevel@tonic-gate 14917c478bd9Sstevel@tonic-gate for (i = 0; i < ndi_events->ndi_n_events; i++) { 14927c478bd9Sstevel@tonic-gate cookie_list = handle->ndi_evthdl_cookie_list; 14937c478bd9Sstevel@tonic-gate prev = NULL; 14947c478bd9Sstevel@tonic-gate while (cookie_list != NULL) { 14957c478bd9Sstevel@tonic-gate len = strlen(NDI_EVENT_NAME(cookie_list)) + 1; 14967c478bd9Sstevel@tonic-gate if (strncmp(NDI_EVENT_NAME(cookie_list), 14977c478bd9Sstevel@tonic-gate ndi_event_defs[i].ndi_event_name, len) == 0) { 14987c478bd9Sstevel@tonic-gate 14997c478bd9Sstevel@tonic-gate /* 15007c478bd9Sstevel@tonic-gate * can not unbind an event definition with 15017c478bd9Sstevel@tonic-gate * outstanding callbacks 15027c478bd9Sstevel@tonic-gate */ 15037c478bd9Sstevel@tonic-gate if (cookie_list->callback_list) { 15047c478bd9Sstevel@tonic-gate rval = NDI_FAILURE; 15057c478bd9Sstevel@tonic-gate goto done; 15067c478bd9Sstevel@tonic-gate } 15077c478bd9Sstevel@tonic-gate 15087c478bd9Sstevel@tonic-gate /* remove this cookie from the list */ 15097c478bd9Sstevel@tonic-gate if (prev != NULL) { 15107c478bd9Sstevel@tonic-gate prev->next_cookie = 15117c478bd9Sstevel@tonic-gate cookie_list->next_cookie; 15127c478bd9Sstevel@tonic-gate } else { 15137c478bd9Sstevel@tonic-gate handle->ndi_evthdl_cookie_list = 15147c478bd9Sstevel@tonic-gate cookie_list->next_cookie; 15157c478bd9Sstevel@tonic-gate } 15167c478bd9Sstevel@tonic-gate 15177c478bd9Sstevel@tonic-gate /* adjust plevel counts */ 15187c478bd9Sstevel@tonic-gate if (NDI_EVENT_PLEVEL(cookie_list) == 15197c478bd9Sstevel@tonic-gate EPL_HIGHLEVEL) { 15207c478bd9Sstevel@tonic-gate handle->ndi_evthdl_high_plevels--; 15217c478bd9Sstevel@tonic-gate } else { 15227c478bd9Sstevel@tonic-gate handle->ndi_evthdl_other_plevels--; 15237c478bd9Sstevel@tonic-gate } 15247c478bd9Sstevel@tonic-gate 15257c478bd9Sstevel@tonic-gate /* adjust cookie count */ 15267c478bd9Sstevel@tonic-gate handle->ndi_evthdl_n_events--; 15277c478bd9Sstevel@tonic-gate 15287c478bd9Sstevel@tonic-gate /* free the cookie */ 15297c478bd9Sstevel@tonic-gate kmem_free(cookie_list, 15307c478bd9Sstevel@tonic-gate sizeof (ndi_event_cookie_t)); 15317c478bd9Sstevel@tonic-gate 15327c478bd9Sstevel@tonic-gate cookie_list = handle->ndi_evthdl_cookie_list; 15337c478bd9Sstevel@tonic-gate break; 15347c478bd9Sstevel@tonic-gate 15357c478bd9Sstevel@tonic-gate } else { 15367c478bd9Sstevel@tonic-gate prev = cookie_list; 15377c478bd9Sstevel@tonic-gate cookie_list = cookie_list->next_cookie; 15387c478bd9Sstevel@tonic-gate } 15397c478bd9Sstevel@tonic-gate 15407c478bd9Sstevel@tonic-gate } 15417c478bd9Sstevel@tonic-gate 15427c478bd9Sstevel@tonic-gate } 15437c478bd9Sstevel@tonic-gate 15447c478bd9Sstevel@tonic-gate #ifdef NDI_EVENT_DEBUG 15457c478bd9Sstevel@tonic-gate if (ndi_event_debug) { 15467c478bd9Sstevel@tonic-gate ndi_event_dump_hdl(handle, "ndi_event_unbind_set"); 15477c478bd9Sstevel@tonic-gate } 15487c478bd9Sstevel@tonic-gate #endif /* NDI_EVENT_DEBUG */ 15497c478bd9Sstevel@tonic-gate 15507c478bd9Sstevel@tonic-gate rval = NDI_SUCCESS; 15517c478bd9Sstevel@tonic-gate 15527c478bd9Sstevel@tonic-gate done: 15537c478bd9Sstevel@tonic-gate mutex_exit(&handle->ndi_evthdl_cb_mutex); 15547c478bd9Sstevel@tonic-gate mutex_exit(&handle->ndi_evthdl_mutex); 15557c478bd9Sstevel@tonic-gate 15567c478bd9Sstevel@tonic-gate return (rval); 15577c478bd9Sstevel@tonic-gate } 15587c478bd9Sstevel@tonic-gate 15597c478bd9Sstevel@tonic-gate /* 15607c478bd9Sstevel@tonic-gate * ndi_event_retrieve_cookie(): 15617c478bd9Sstevel@tonic-gate * Return an event cookie for eventname if this nexus driver 15627c478bd9Sstevel@tonic-gate * has defined the named event. The event cookie returned 15637c478bd9Sstevel@tonic-gate * by this function is used to register callback handlers 15647c478bd9Sstevel@tonic-gate * for the event. 15657c478bd9Sstevel@tonic-gate * 15667c478bd9Sstevel@tonic-gate * ndi_event_retrieve_cookie() is intended to be used in the 15677c478bd9Sstevel@tonic-gate * nexus driver's bus_get_eventcookie busop routine. 15687c478bd9Sstevel@tonic-gate * 15697c478bd9Sstevel@tonic-gate * If the event is not defined by this bus nexus driver, and flag 15707c478bd9Sstevel@tonic-gate * does not include NDI_EVENT_NOPASS, then ndi_event_retrieve_cookie() 15717c478bd9Sstevel@tonic-gate * will pass the request up the device tree hierarchy by calling 15727c478bd9Sstevel@tonic-gate * ndi_busop_get_eventcookie(9N). 15737c478bd9Sstevel@tonic-gate * If the event is not defined by this bus nexus driver, and flag 15747c478bd9Sstevel@tonic-gate * does include NDI_EVENT_NOPASS, ndi_event_retrieve_cookie() 15757c478bd9Sstevel@tonic-gate * will return NDI_FAILURE. The caller may then determine what further 15767c478bd9Sstevel@tonic-gate * action to take, such as using a different handle, passing the 15777c478bd9Sstevel@tonic-gate * request up the device tree using ndi_busop_get_eventcookie(9N), 15787c478bd9Sstevel@tonic-gate * or returning the failure to the caller, thus blocking the 15797c478bd9Sstevel@tonic-gate * progress of the request up the tree. 15807c478bd9Sstevel@tonic-gate */ 15817c478bd9Sstevel@tonic-gate int 15827c478bd9Sstevel@tonic-gate ndi_event_retrieve_cookie(ndi_event_hdl_t handle, 15837c478bd9Sstevel@tonic-gate dev_info_t *rdip, 15847c478bd9Sstevel@tonic-gate char *eventname, 15857c478bd9Sstevel@tonic-gate ddi_eventcookie_t *cookiep, 15867c478bd9Sstevel@tonic-gate uint_t flag) 15877c478bd9Sstevel@tonic-gate { 15887c478bd9Sstevel@tonic-gate struct ndi_event_hdl *ndi_event_hdl = (struct ndi_event_hdl *)handle; 15897c478bd9Sstevel@tonic-gate int len; 15907c478bd9Sstevel@tonic-gate ndi_event_cookie_t *cookie_list; 15917c478bd9Sstevel@tonic-gate 15927c478bd9Sstevel@tonic-gate mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex); 15937c478bd9Sstevel@tonic-gate 15947c478bd9Sstevel@tonic-gate cookie_list = ndi_event_hdl->ndi_evthdl_cookie_list; 15957c478bd9Sstevel@tonic-gate /* 15967c478bd9Sstevel@tonic-gate * search the cookie list for the event name and return 15977c478bd9Sstevel@tonic-gate * cookie if found. 15987c478bd9Sstevel@tonic-gate */ 15997c478bd9Sstevel@tonic-gate while (cookie_list != NULL) { 16007c478bd9Sstevel@tonic-gate 16017c478bd9Sstevel@tonic-gate len = strlen(NDI_EVENT_NAME(cookie_list)) + 1; 16027c478bd9Sstevel@tonic-gate if (strncmp(NDI_EVENT_NAME(cookie_list), eventname, 16037c478bd9Sstevel@tonic-gate len) == 0) { 16047c478bd9Sstevel@tonic-gate *cookiep = (ddi_eventcookie_t)cookie_list; 16057c478bd9Sstevel@tonic-gate 16067c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 16077c478bd9Sstevel@tonic-gate return (NDI_SUCCESS); 16087c478bd9Sstevel@tonic-gate } 16097c478bd9Sstevel@tonic-gate 16107c478bd9Sstevel@tonic-gate cookie_list = cookie_list->next_cookie; 16117c478bd9Sstevel@tonic-gate } 16127c478bd9Sstevel@tonic-gate 16137c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 16147c478bd9Sstevel@tonic-gate /* 16157c478bd9Sstevel@tonic-gate * event was not found, pass up or return failure 16167c478bd9Sstevel@tonic-gate */ 16177c478bd9Sstevel@tonic-gate if ((flag & NDI_EVENT_NOPASS) == 0) { 16187c478bd9Sstevel@tonic-gate return (ndi_busop_get_eventcookie( 16197c478bd9Sstevel@tonic-gate ndi_event_hdl->ndi_evthdl_dip, rdip, 16207c478bd9Sstevel@tonic-gate eventname, cookiep)); 16217c478bd9Sstevel@tonic-gate } else { 16227c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 16237c478bd9Sstevel@tonic-gate } 16247c478bd9Sstevel@tonic-gate } 16257c478bd9Sstevel@tonic-gate 16267c478bd9Sstevel@tonic-gate /* 16277c478bd9Sstevel@tonic-gate * check whether this nexus defined this event and look up attributes 16287c478bd9Sstevel@tonic-gate */ 16297c478bd9Sstevel@tonic-gate static int 16307c478bd9Sstevel@tonic-gate ndi_event_is_defined(ndi_event_hdl_t handle, 16317c478bd9Sstevel@tonic-gate ddi_eventcookie_t cookie, int *attributes) 16327c478bd9Sstevel@tonic-gate { 16337c478bd9Sstevel@tonic-gate 16347c478bd9Sstevel@tonic-gate struct ndi_event_hdl *ndi_event_hdl = (struct ndi_event_hdl *)handle; 16357c478bd9Sstevel@tonic-gate ndi_event_cookie_t *cookie_list; 16367c478bd9Sstevel@tonic-gate 16377c478bd9Sstevel@tonic-gate ASSERT(mutex_owned(&handle->ndi_evthdl_mutex)); 16387c478bd9Sstevel@tonic-gate 16397c478bd9Sstevel@tonic-gate cookie_list = ndi_event_hdl->ndi_evthdl_cookie_list; 16407c478bd9Sstevel@tonic-gate while (cookie_list != NULL) { 16417c478bd9Sstevel@tonic-gate if (cookie_list == NDI_EVENT(cookie)) { 16427c478bd9Sstevel@tonic-gate if (attributes) 16437c478bd9Sstevel@tonic-gate *attributes = 16447c478bd9Sstevel@tonic-gate NDI_EVENT_ATTRIBUTES(cookie_list); 16457c478bd9Sstevel@tonic-gate 16467c478bd9Sstevel@tonic-gate return (NDI_SUCCESS); 16477c478bd9Sstevel@tonic-gate } 16487c478bd9Sstevel@tonic-gate 16497c478bd9Sstevel@tonic-gate cookie_list = cookie_list->next_cookie; 16507c478bd9Sstevel@tonic-gate } 16517c478bd9Sstevel@tonic-gate 16527c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 16537c478bd9Sstevel@tonic-gate } 16547c478bd9Sstevel@tonic-gate 16557c478bd9Sstevel@tonic-gate /* 16567c478bd9Sstevel@tonic-gate * ndi_event_add_callback(): adds an event callback registration 16577c478bd9Sstevel@tonic-gate * to the event cookie defining this event. 16587c478bd9Sstevel@tonic-gate * 16597c478bd9Sstevel@tonic-gate * Refer also to bus_add_eventcall(9n) and ndi_busop_add_eventcall(9n). 16607c478bd9Sstevel@tonic-gate * 16617c478bd9Sstevel@tonic-gate * ndi_event_add_callback(9n) is intended to be used in 16627c478bd9Sstevel@tonic-gate * the nexus driver's bus_add_eventcall(9n) busop function. 16637c478bd9Sstevel@tonic-gate * 16647c478bd9Sstevel@tonic-gate * If the event is not defined by this bus nexus driver, 16657c478bd9Sstevel@tonic-gate * ndi_event_add_callback() will return NDI_FAILURE. 16667c478bd9Sstevel@tonic-gate */ 16677c478bd9Sstevel@tonic-gate int 16687c478bd9Sstevel@tonic-gate ndi_event_add_callback(ndi_event_hdl_t handle, dev_info_t *child_dip, 16697c478bd9Sstevel@tonic-gate ddi_eventcookie_t cookie, 16707c478bd9Sstevel@tonic-gate void (*event_callback)(dev_info_t *, 16717c478bd9Sstevel@tonic-gate ddi_eventcookie_t, void *arg, void *impldata), 16727c478bd9Sstevel@tonic-gate void *arg, 16737c478bd9Sstevel@tonic-gate uint_t flag, 16747c478bd9Sstevel@tonic-gate ddi_callback_id_t *cb_id) 16757c478bd9Sstevel@tonic-gate { 16767c478bd9Sstevel@tonic-gate struct ndi_event_hdl *ndi_event_hdl = (struct ndi_event_hdl *)handle; 16777c478bd9Sstevel@tonic-gate int km_flag = ((flag & NDI_NOSLEEP) ? KM_NOSLEEP : KM_SLEEP); 16787c478bd9Sstevel@tonic-gate ndi_event_callbacks_t *cb; 16797c478bd9Sstevel@tonic-gate 16807c478bd9Sstevel@tonic-gate mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex); 16817c478bd9Sstevel@tonic-gate 16827c478bd9Sstevel@tonic-gate /* 16837c478bd9Sstevel@tonic-gate * if the event was not bound to this handle, return failure 16847c478bd9Sstevel@tonic-gate */ 16857c478bd9Sstevel@tonic-gate if (ndi_event_is_defined(handle, cookie, NULL) != NDI_SUCCESS) { 16867c478bd9Sstevel@tonic-gate 16877c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 16887c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 16897c478bd9Sstevel@tonic-gate 16907c478bd9Sstevel@tonic-gate } 16917c478bd9Sstevel@tonic-gate 16927c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 16937c478bd9Sstevel@tonic-gate 16947c478bd9Sstevel@tonic-gate /* 16957c478bd9Sstevel@tonic-gate * allocate space for a callback structure 16967c478bd9Sstevel@tonic-gate */ 16977c478bd9Sstevel@tonic-gate cb = kmem_zalloc(sizeof (ndi_event_callbacks_t), km_flag); 16987c478bd9Sstevel@tonic-gate if (cb == NULL) { 16997c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 17007c478bd9Sstevel@tonic-gate } 17017c478bd9Sstevel@tonic-gate 17027c478bd9Sstevel@tonic-gate mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex); 17037c478bd9Sstevel@tonic-gate 17047c478bd9Sstevel@tonic-gate /* initialize callback structure */ 17057c478bd9Sstevel@tonic-gate cb->ndi_evtcb_dip = child_dip; 17067c478bd9Sstevel@tonic-gate cb->ndi_evtcb_callback = event_callback; 17077c478bd9Sstevel@tonic-gate cb->ndi_evtcb_arg = arg; 17087c478bd9Sstevel@tonic-gate cb->ndi_evtcb_cookie = cookie; 17097c478bd9Sstevel@tonic-gate cb->devname = (char *)ddi_driver_name(child_dip); 17107c478bd9Sstevel@tonic-gate 17117c478bd9Sstevel@tonic-gate *cb_id = (ddi_callback_id_t)cb; 17127c478bd9Sstevel@tonic-gate mutex_enter(&ndi_event_hdl->ndi_evthdl_cb_mutex); 17137c478bd9Sstevel@tonic-gate 17147c478bd9Sstevel@tonic-gate /* add this callback structure to the list */ 17157c478bd9Sstevel@tonic-gate if (NDI_EVENT(cookie)->callback_list) { 17167c478bd9Sstevel@tonic-gate cb->ndi_evtcb_next = NDI_EVENT(cookie)->callback_list; 17177c478bd9Sstevel@tonic-gate NDI_EVENT(cookie)->callback_list->ndi_evtcb_prev = cb; 17187c478bd9Sstevel@tonic-gate NDI_EVENT(cookie)->callback_list = cb; 17197c478bd9Sstevel@tonic-gate } else { 17207c478bd9Sstevel@tonic-gate NDI_EVENT(cookie)->callback_list = cb; 17217c478bd9Sstevel@tonic-gate } 17227c478bd9Sstevel@tonic-gate #ifdef NDI_EVENT_DEBUG 17237c478bd9Sstevel@tonic-gate if (ndi_event_debug) { 17247c478bd9Sstevel@tonic-gate ndi_event_dump_hdl(ndi_event_hdl, "ndi_event_add_callback"); 17257c478bd9Sstevel@tonic-gate } 17267c478bd9Sstevel@tonic-gate #endif /* NDI_EVENT_DEBUG */ 17277c478bd9Sstevel@tonic-gate 17287c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_cb_mutex); 17297c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 17307c478bd9Sstevel@tonic-gate 17317c478bd9Sstevel@tonic-gate return (NDI_SUCCESS); 17327c478bd9Sstevel@tonic-gate } 17337c478bd9Sstevel@tonic-gate 17347c478bd9Sstevel@tonic-gate /* 17357c478bd9Sstevel@tonic-gate * ndi_event_remove_callback(): 17367c478bd9Sstevel@tonic-gate * 17377c478bd9Sstevel@tonic-gate * ndi_event_remove_callback() removes a callback that was 17387c478bd9Sstevel@tonic-gate * previously registered using ndi_event_add_callback(9N). 17397c478bd9Sstevel@tonic-gate * Refer also to bus_remove_eventcall(9n) and 17407c478bd9Sstevel@tonic-gate * ndi_busop_remove_eventcall(9n). 17417c478bd9Sstevel@tonic-gate * ndi_event_remove_callback(9n) is intended to be used in 17427c478bd9Sstevel@tonic-gate * the nexus driver's bus_remove_eventcall (9n) busop function. 17437c478bd9Sstevel@tonic-gate * If the event is not defined by this bus nexus driver, 17447c478bd9Sstevel@tonic-gate * ndi_event_remove_callback() will return NDI_FAILURE. 17457c478bd9Sstevel@tonic-gate */ 17467c478bd9Sstevel@tonic-gate static void do_ndi_event_remove_callback(struct ndi_event_hdl *ndi_event_hdl, 17477c478bd9Sstevel@tonic-gate ddi_callback_id_t cb_id); 17487c478bd9Sstevel@tonic-gate 17497c478bd9Sstevel@tonic-gate int 17507c478bd9Sstevel@tonic-gate ndi_event_remove_callback(ndi_event_hdl_t handle, ddi_callback_id_t cb_id) 17517c478bd9Sstevel@tonic-gate { 17527c478bd9Sstevel@tonic-gate struct ndi_event_hdl *ndi_event_hdl = (struct ndi_event_hdl *)handle; 17537c478bd9Sstevel@tonic-gate 17547c478bd9Sstevel@tonic-gate ASSERT(cb_id); 17557c478bd9Sstevel@tonic-gate 17567c478bd9Sstevel@tonic-gate mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex); 17577c478bd9Sstevel@tonic-gate mutex_enter(&ndi_event_hdl->ndi_evthdl_cb_mutex); 17587c478bd9Sstevel@tonic-gate 17597c478bd9Sstevel@tonic-gate do_ndi_event_remove_callback(ndi_event_hdl, cb_id); 17607c478bd9Sstevel@tonic-gate 17617c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_cb_mutex); 17627c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 17637c478bd9Sstevel@tonic-gate 17647c478bd9Sstevel@tonic-gate return (NDI_SUCCESS); 17657c478bd9Sstevel@tonic-gate } 17667c478bd9Sstevel@tonic-gate 17677c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 17687c478bd9Sstevel@tonic-gate static void 17697c478bd9Sstevel@tonic-gate do_ndi_event_remove_callback(struct ndi_event_hdl *ndi_event_hdl, 17707c478bd9Sstevel@tonic-gate ddi_callback_id_t cb_id) 17717c478bd9Sstevel@tonic-gate { 17727c478bd9Sstevel@tonic-gate ndi_event_callbacks_t *cb = (ndi_event_callbacks_t *)cb_id; 17737c478bd9Sstevel@tonic-gate ASSERT(cb); 17747c478bd9Sstevel@tonic-gate 17757c478bd9Sstevel@tonic-gate ASSERT(mutex_owned(&ndi_event_hdl->ndi_evthdl_mutex)); 17767c478bd9Sstevel@tonic-gate ASSERT(mutex_owned(&ndi_event_hdl->ndi_evthdl_cb_mutex)); 17777c478bd9Sstevel@tonic-gate 17787c478bd9Sstevel@tonic-gate /* remove from callback linked list */ 17797c478bd9Sstevel@tonic-gate if (cb->ndi_evtcb_prev) { 17807c478bd9Sstevel@tonic-gate cb->ndi_evtcb_prev->ndi_evtcb_next = cb->ndi_evtcb_next; 17817c478bd9Sstevel@tonic-gate } 17827c478bd9Sstevel@tonic-gate 17837c478bd9Sstevel@tonic-gate if (cb->ndi_evtcb_next) { 17847c478bd9Sstevel@tonic-gate cb->ndi_evtcb_next->ndi_evtcb_prev = cb->ndi_evtcb_prev; 17857c478bd9Sstevel@tonic-gate } 17867c478bd9Sstevel@tonic-gate 17877c478bd9Sstevel@tonic-gate if (NDI_EVENT(cb->ndi_evtcb_cookie)->callback_list == cb) { 17887c478bd9Sstevel@tonic-gate NDI_EVENT(cb->ndi_evtcb_cookie)->callback_list = 17897c478bd9Sstevel@tonic-gate cb->ndi_evtcb_next; 17907c478bd9Sstevel@tonic-gate } 17917c478bd9Sstevel@tonic-gate 17927c478bd9Sstevel@tonic-gate kmem_free(cb, sizeof (ndi_event_callbacks_t)); 17937c478bd9Sstevel@tonic-gate } 17947c478bd9Sstevel@tonic-gate 17957c478bd9Sstevel@tonic-gate /* 17967c478bd9Sstevel@tonic-gate * ndi_event_run_callbacks() performs event callbacks for the event 17977c478bd9Sstevel@tonic-gate * specified by cookie, if this is among those bound to the 17987c478bd9Sstevel@tonic-gate * supplied handle. 17997c478bd9Sstevel@tonic-gate * If the event is among those bound to the handle, none, 18007c478bd9Sstevel@tonic-gate * some, or all of the handlers registered for the event 18017c478bd9Sstevel@tonic-gate * will be called, according to the delivery attributes of 18027c478bd9Sstevel@tonic-gate * the event. 18037c478bd9Sstevel@tonic-gate * If the event attributes include NDI_EVENT_POST_TO_ALL 18047c478bd9Sstevel@tonic-gate * (the default), all the handlers for the event will be 18057c478bd9Sstevel@tonic-gate * called in an unspecified order. 18067c478bd9Sstevel@tonic-gate * If the event attributes include NDI_EVENT_POST_TO_TGT, only 18077c478bd9Sstevel@tonic-gate * the handlers (if any) registered by the driver identified by 18087c478bd9Sstevel@tonic-gate * rdip will be called. 18097c478bd9Sstevel@tonic-gate * If the event identified by cookie is not bound to the handle, 18107c478bd9Sstevel@tonic-gate * NDI_FAILURE will be returned. 18117c478bd9Sstevel@tonic-gate */ 18127c478bd9Sstevel@tonic-gate int 18137c478bd9Sstevel@tonic-gate ndi_event_run_callbacks(ndi_event_hdl_t handle, dev_info_t *child_dip, 18147c478bd9Sstevel@tonic-gate ddi_eventcookie_t cookie, void *bus_impldata) 18157c478bd9Sstevel@tonic-gate { 18167c478bd9Sstevel@tonic-gate struct ndi_event_hdl *ndi_event_hdl = (struct ndi_event_hdl *)handle; 18177c478bd9Sstevel@tonic-gate ndi_event_callbacks_t *next, *cb; 18187c478bd9Sstevel@tonic-gate int attributes; 18197c478bd9Sstevel@tonic-gate 18207c478bd9Sstevel@tonic-gate mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex); 18217c478bd9Sstevel@tonic-gate 18227c478bd9Sstevel@tonic-gate /* if this is not our event, fail */ 18237c478bd9Sstevel@tonic-gate if (ndi_event_is_defined(handle, cookie, &attributes) != 18247c478bd9Sstevel@tonic-gate NDI_SUCCESS) { 18257c478bd9Sstevel@tonic-gate 18267c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 18277c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 18287c478bd9Sstevel@tonic-gate } 18297c478bd9Sstevel@tonic-gate 18307c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 18317c478bd9Sstevel@tonic-gate 18327c478bd9Sstevel@tonic-gate #ifdef NDI_EVENT_DEBUG 18337c478bd9Sstevel@tonic-gate if (ndi_event_debug) { 18347c478bd9Sstevel@tonic-gate cmn_err(CE_CONT, "ndi_event_run_callbacks:\n\t" 18357c478bd9Sstevel@tonic-gate "producer dip=%p (%s%d): cookie = %p, name = %s\n", 18367c478bd9Sstevel@tonic-gate (void *)ndi_event_hdl->ndi_evthdl_dip, 18377c478bd9Sstevel@tonic-gate ddi_node_name(ndi_event_hdl->ndi_evthdl_dip), 18387c478bd9Sstevel@tonic-gate ddi_get_instance(ndi_event_hdl->ndi_evthdl_dip), 18397c478bd9Sstevel@tonic-gate (void *)cookie, 18407c478bd9Sstevel@tonic-gate ndi_event_cookie_to_name(handle, cookie)); 18417c478bd9Sstevel@tonic-gate } 18427c478bd9Sstevel@tonic-gate #endif /* #ifdef NDI_EVENT_DEBUG */ 18437c478bd9Sstevel@tonic-gate 18447c478bd9Sstevel@tonic-gate 18457c478bd9Sstevel@tonic-gate /* 18467c478bd9Sstevel@tonic-gate * The callback handlers may call conversion functions. The conversion 18477c478bd9Sstevel@tonic-gate * functions may hold the ndi_evthdl_mutex during execution. Thus, to 18487c478bd9Sstevel@tonic-gate * avoid a recursive mutex problem, only the ndi_evthdl_cb_mutex is 18497c478bd9Sstevel@tonic-gate * held. The ndi_evthdl_mutex is not held when running the callbacks. 18507c478bd9Sstevel@tonic-gate */ 18517c478bd9Sstevel@tonic-gate mutex_enter(&ndi_event_hdl->ndi_evthdl_cb_mutex); 18527c478bd9Sstevel@tonic-gate 18537c478bd9Sstevel@tonic-gate /* perform callbacks */ 18547c478bd9Sstevel@tonic-gate next = NDI_EVENT(cookie)->callback_list; 18557c478bd9Sstevel@tonic-gate while (next != NULL) { 18567c478bd9Sstevel@tonic-gate 18577c478bd9Sstevel@tonic-gate cb = next; 18587c478bd9Sstevel@tonic-gate next = next->ndi_evtcb_next; 18597c478bd9Sstevel@tonic-gate 18607c478bd9Sstevel@tonic-gate ASSERT(cb->ndi_evtcb_cookie == cookie); 18617c478bd9Sstevel@tonic-gate 18627c478bd9Sstevel@tonic-gate if (attributes == NDI_EVENT_POST_TO_TGT && 18637c478bd9Sstevel@tonic-gate child_dip != cb->ndi_evtcb_dip) { 18647c478bd9Sstevel@tonic-gate continue; 18657c478bd9Sstevel@tonic-gate } 18667c478bd9Sstevel@tonic-gate 18677c478bd9Sstevel@tonic-gate cb->ndi_evtcb_callback(cb->ndi_evtcb_dip, cb->ndi_evtcb_cookie, 18687c478bd9Sstevel@tonic-gate cb->ndi_evtcb_arg, bus_impldata); 18697c478bd9Sstevel@tonic-gate 18707c478bd9Sstevel@tonic-gate #ifdef NDI_EVENT_DEBUG 18717c478bd9Sstevel@tonic-gate if (ndi_event_debug) { 18727c478bd9Sstevel@tonic-gate cmn_err(CE_CONT, 18737c478bd9Sstevel@tonic-gate "\t\tconsumer dip=%p (%s%d)\n", 18747c478bd9Sstevel@tonic-gate (void *)cb->ndi_evtcb_dip, 18757c478bd9Sstevel@tonic-gate ddi_node_name(cb->ndi_evtcb_dip), 18767c478bd9Sstevel@tonic-gate ddi_get_instance(cb->ndi_evtcb_dip)); 18777c478bd9Sstevel@tonic-gate } 18787c478bd9Sstevel@tonic-gate #endif 18797c478bd9Sstevel@tonic-gate 18807c478bd9Sstevel@tonic-gate } 18817c478bd9Sstevel@tonic-gate 18827c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_cb_mutex); 18837c478bd9Sstevel@tonic-gate 18847c478bd9Sstevel@tonic-gate #ifdef NDI_EVENT_DEBUG 18857c478bd9Sstevel@tonic-gate if (ndi_event_debug) { 18867c478bd9Sstevel@tonic-gate mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex); 18877c478bd9Sstevel@tonic-gate ndi_event_dump_hdl(ndi_event_hdl, "ndi_event_run_callbacks"); 18887c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 18897c478bd9Sstevel@tonic-gate } 18907c478bd9Sstevel@tonic-gate #endif /* NDI_EVENT_DEBUG */ 18917c478bd9Sstevel@tonic-gate 18927c478bd9Sstevel@tonic-gate return (NDI_SUCCESS); 18937c478bd9Sstevel@tonic-gate } 18947c478bd9Sstevel@tonic-gate 18957c478bd9Sstevel@tonic-gate 18967c478bd9Sstevel@tonic-gate /* 18977c478bd9Sstevel@tonic-gate * perform one callback for a specified cookie and just one target 18987c478bd9Sstevel@tonic-gate */ 18997c478bd9Sstevel@tonic-gate int 19007c478bd9Sstevel@tonic-gate ndi_event_do_callback(ndi_event_hdl_t handle, dev_info_t *child_dip, 19017c478bd9Sstevel@tonic-gate ddi_eventcookie_t cookie, void *bus_impldata) 19027c478bd9Sstevel@tonic-gate { 19037c478bd9Sstevel@tonic-gate struct ndi_event_hdl *ndi_event_hdl = (struct ndi_event_hdl *)handle; 19047c478bd9Sstevel@tonic-gate ndi_event_callbacks_t *next, *cb; 19057c478bd9Sstevel@tonic-gate int attributes; 19067c478bd9Sstevel@tonic-gate 19077c478bd9Sstevel@tonic-gate mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex); 19087c478bd9Sstevel@tonic-gate 19097c478bd9Sstevel@tonic-gate /* if this is not our event, fail */ 19107c478bd9Sstevel@tonic-gate if (ndi_event_is_defined(handle, cookie, &attributes) != 19117c478bd9Sstevel@tonic-gate NDI_SUCCESS) { 19127c478bd9Sstevel@tonic-gate 19137c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 19147c478bd9Sstevel@tonic-gate 19157c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 19167c478bd9Sstevel@tonic-gate } 19177c478bd9Sstevel@tonic-gate 19187c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 19197c478bd9Sstevel@tonic-gate 19207c478bd9Sstevel@tonic-gate #ifdef NDI_EVENT_DEBUG 19217c478bd9Sstevel@tonic-gate if (ndi_event_debug) { 19227c478bd9Sstevel@tonic-gate cmn_err(CE_CONT, "ndi_event_run_callbacks:\n\t" 19237c478bd9Sstevel@tonic-gate "producer dip=%p (%s%d): cookie = %p, name = %s\n", 19247c478bd9Sstevel@tonic-gate (void *)ndi_event_hdl->ndi_evthdl_dip, 19257c478bd9Sstevel@tonic-gate ddi_node_name(ndi_event_hdl->ndi_evthdl_dip), 19267c478bd9Sstevel@tonic-gate ddi_get_instance(ndi_event_hdl->ndi_evthdl_dip), 19277c478bd9Sstevel@tonic-gate (void *)cookie, 19287c478bd9Sstevel@tonic-gate ndi_event_cookie_to_name(handle, cookie)); 19297c478bd9Sstevel@tonic-gate } 19307c478bd9Sstevel@tonic-gate #endif 19317c478bd9Sstevel@tonic-gate 19327c478bd9Sstevel@tonic-gate 19337c478bd9Sstevel@tonic-gate /* 19347c478bd9Sstevel@tonic-gate * we only grab the cb mutex because the callback handlers 19357c478bd9Sstevel@tonic-gate * may call the conversion functions which would cause a recursive 19367c478bd9Sstevel@tonic-gate * mutex problem 19377c478bd9Sstevel@tonic-gate */ 19387c478bd9Sstevel@tonic-gate mutex_enter(&ndi_event_hdl->ndi_evthdl_cb_mutex); 19397c478bd9Sstevel@tonic-gate 19407c478bd9Sstevel@tonic-gate /* perform callbacks */ 19417c478bd9Sstevel@tonic-gate for (next = NDI_EVENT(cookie)->callback_list; next != NULL; ) { 19427c478bd9Sstevel@tonic-gate cb = next; 19437c478bd9Sstevel@tonic-gate next = next->ndi_evtcb_next; 19447c478bd9Sstevel@tonic-gate 19457c478bd9Sstevel@tonic-gate if (cb->ndi_evtcb_dip == child_dip) { 19467c478bd9Sstevel@tonic-gate cb->ndi_evtcb_callback(cb->ndi_evtcb_dip, 19477c478bd9Sstevel@tonic-gate cb->ndi_evtcb_cookie, cb->ndi_evtcb_arg, 19487c478bd9Sstevel@tonic-gate bus_impldata); 19497c478bd9Sstevel@tonic-gate 19507c478bd9Sstevel@tonic-gate #ifdef NDI_EVENT_DEBUG 19517c478bd9Sstevel@tonic-gate if (ndi_event_debug) { 19527c478bd9Sstevel@tonic-gate cmn_err(CE_CONT, 19537c478bd9Sstevel@tonic-gate "\t\tconsumer dip=%p (%s%d)\n", 19547c478bd9Sstevel@tonic-gate (void *)cb->ndi_evtcb_dip, 19557c478bd9Sstevel@tonic-gate ddi_node_name(cb->ndi_evtcb_dip), 19567c478bd9Sstevel@tonic-gate ddi_get_instance(cb->ndi_evtcb_dip)); 19577c478bd9Sstevel@tonic-gate } 19587c478bd9Sstevel@tonic-gate #endif 19597c478bd9Sstevel@tonic-gate break; 19607c478bd9Sstevel@tonic-gate } 19617c478bd9Sstevel@tonic-gate } 19627c478bd9Sstevel@tonic-gate 19637c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_cb_mutex); 19647c478bd9Sstevel@tonic-gate 19657c478bd9Sstevel@tonic-gate #ifdef NDI_EVENT_DEBUG 19667c478bd9Sstevel@tonic-gate if (ndi_event_debug) { 19677c478bd9Sstevel@tonic-gate mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex); 19687c478bd9Sstevel@tonic-gate ndi_event_dump_hdl(ndi_event_hdl, "ndi_event_run_callbacks"); 19697c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 19707c478bd9Sstevel@tonic-gate } 19717c478bd9Sstevel@tonic-gate #endif /* NDI_EVENT_DEBUG */ 19727c478bd9Sstevel@tonic-gate 19737c478bd9Sstevel@tonic-gate return (NDI_SUCCESS); 19747c478bd9Sstevel@tonic-gate } 19757c478bd9Sstevel@tonic-gate 19767c478bd9Sstevel@tonic-gate 19777c478bd9Sstevel@tonic-gate /* 19787c478bd9Sstevel@tonic-gate * ndi_event_tag_to_cookie: utility function to find an event cookie 19797c478bd9Sstevel@tonic-gate * given an event tag 19807c478bd9Sstevel@tonic-gate */ 19817c478bd9Sstevel@tonic-gate ddi_eventcookie_t 19827c478bd9Sstevel@tonic-gate ndi_event_tag_to_cookie(ndi_event_hdl_t handle, int event_tag) 19837c478bd9Sstevel@tonic-gate { 19847c478bd9Sstevel@tonic-gate struct ndi_event_hdl *ndi_event_hdl = (struct ndi_event_hdl *)handle; 19857c478bd9Sstevel@tonic-gate ndi_event_cookie_t *list; 19867c478bd9Sstevel@tonic-gate 19877c478bd9Sstevel@tonic-gate mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex); 19887c478bd9Sstevel@tonic-gate 19897c478bd9Sstevel@tonic-gate list = ndi_event_hdl->ndi_evthdl_cookie_list; 19907c478bd9Sstevel@tonic-gate while (list != NULL) { 19917c478bd9Sstevel@tonic-gate if (NDI_EVENT_TAG(list) == event_tag) { 19927c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 19937c478bd9Sstevel@tonic-gate return ((ddi_eventcookie_t)list); 19947c478bd9Sstevel@tonic-gate } 19957c478bd9Sstevel@tonic-gate 19967c478bd9Sstevel@tonic-gate list = list->next_cookie; 19977c478bd9Sstevel@tonic-gate } 19987c478bd9Sstevel@tonic-gate 19997c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 20007c478bd9Sstevel@tonic-gate return (NULL); 20017c478bd9Sstevel@tonic-gate } 20027c478bd9Sstevel@tonic-gate 20037c478bd9Sstevel@tonic-gate /* 20047c478bd9Sstevel@tonic-gate * ndi_event_cookie_to_tag: utility function to find a event tag 20057c478bd9Sstevel@tonic-gate * given an event_cookie 20067c478bd9Sstevel@tonic-gate */ 20077c478bd9Sstevel@tonic-gate int 20087c478bd9Sstevel@tonic-gate ndi_event_cookie_to_tag(ndi_event_hdl_t handle, ddi_eventcookie_t cookie) 20097c478bd9Sstevel@tonic-gate { 20107c478bd9Sstevel@tonic-gate struct ndi_event_hdl *ndi_event_hdl = (struct ndi_event_hdl *)handle; 20117c478bd9Sstevel@tonic-gate ndi_event_cookie_t *list; 20127c478bd9Sstevel@tonic-gate 20137c478bd9Sstevel@tonic-gate mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex); 20147c478bd9Sstevel@tonic-gate 20157c478bd9Sstevel@tonic-gate list = ndi_event_hdl->ndi_evthdl_cookie_list; 20167c478bd9Sstevel@tonic-gate 20177c478bd9Sstevel@tonic-gate while (list != NULL) { 20187c478bd9Sstevel@tonic-gate if ((ddi_eventcookie_t)list == cookie) { 20197c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 20207c478bd9Sstevel@tonic-gate return (NDI_EVENT_TAG(list)); 20217c478bd9Sstevel@tonic-gate } 20227c478bd9Sstevel@tonic-gate 20237c478bd9Sstevel@tonic-gate list = list->next_cookie; 20247c478bd9Sstevel@tonic-gate } 20257c478bd9Sstevel@tonic-gate 20267c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 20277c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 20287c478bd9Sstevel@tonic-gate 20297c478bd9Sstevel@tonic-gate } 20307c478bd9Sstevel@tonic-gate 20317c478bd9Sstevel@tonic-gate /* 20327c478bd9Sstevel@tonic-gate * ndi_event_cookie_to_name: utility function to find an event name 20337c478bd9Sstevel@tonic-gate * given an event_cookie 20347c478bd9Sstevel@tonic-gate */ 20357c478bd9Sstevel@tonic-gate char * 20367c478bd9Sstevel@tonic-gate ndi_event_cookie_to_name(ndi_event_hdl_t handle, ddi_eventcookie_t cookie) 20377c478bd9Sstevel@tonic-gate { 20387c478bd9Sstevel@tonic-gate struct ndi_event_hdl *ndi_event_hdl = (struct ndi_event_hdl *)handle; 20397c478bd9Sstevel@tonic-gate ndi_event_cookie_t *list; 20407c478bd9Sstevel@tonic-gate 20417c478bd9Sstevel@tonic-gate mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex); 20427c478bd9Sstevel@tonic-gate 20437c478bd9Sstevel@tonic-gate list = ndi_event_hdl->ndi_evthdl_cookie_list; 20447c478bd9Sstevel@tonic-gate 20457c478bd9Sstevel@tonic-gate while (list != NULL) { 20467c478bd9Sstevel@tonic-gate if (list == NDI_EVENT(cookie)) { 20477c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 20487c478bd9Sstevel@tonic-gate return (NDI_EVENT_NAME(list)); 20497c478bd9Sstevel@tonic-gate } 20507c478bd9Sstevel@tonic-gate 20517c478bd9Sstevel@tonic-gate list = list->next_cookie; 20527c478bd9Sstevel@tonic-gate } 20537c478bd9Sstevel@tonic-gate 20547c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 20557c478bd9Sstevel@tonic-gate return (NULL); 20567c478bd9Sstevel@tonic-gate } 20577c478bd9Sstevel@tonic-gate 20587c478bd9Sstevel@tonic-gate /* 20597c478bd9Sstevel@tonic-gate * ndi_event_tag_to_name: utility function to find an event name 20607c478bd9Sstevel@tonic-gate * given an event tag 20617c478bd9Sstevel@tonic-gate */ 20627c478bd9Sstevel@tonic-gate char * 20637c478bd9Sstevel@tonic-gate ndi_event_tag_to_name(ndi_event_hdl_t handle, int event_tag) 20647c478bd9Sstevel@tonic-gate { 20657c478bd9Sstevel@tonic-gate struct ndi_event_hdl *ndi_event_hdl = (struct ndi_event_hdl *)handle; 20667c478bd9Sstevel@tonic-gate ndi_event_cookie_t *list; 20677c478bd9Sstevel@tonic-gate 20687c478bd9Sstevel@tonic-gate mutex_enter(&ndi_event_hdl->ndi_evthdl_mutex); 20697c478bd9Sstevel@tonic-gate 20707c478bd9Sstevel@tonic-gate list = ndi_event_hdl->ndi_evthdl_cookie_list; 20717c478bd9Sstevel@tonic-gate 20727c478bd9Sstevel@tonic-gate while (list) { 20737c478bd9Sstevel@tonic-gate if (NDI_EVENT_TAG(list) == event_tag) { 20747c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 20757c478bd9Sstevel@tonic-gate return (NDI_EVENT_NAME(list)); 20767c478bd9Sstevel@tonic-gate } 20777c478bd9Sstevel@tonic-gate 20787c478bd9Sstevel@tonic-gate list = list->next_cookie; 20797c478bd9Sstevel@tonic-gate } 20807c478bd9Sstevel@tonic-gate 20817c478bd9Sstevel@tonic-gate mutex_exit(&ndi_event_hdl->ndi_evthdl_mutex); 20827c478bd9Sstevel@tonic-gate 20837c478bd9Sstevel@tonic-gate return (NULL); 20847c478bd9Sstevel@tonic-gate } 20857c478bd9Sstevel@tonic-gate 20867c478bd9Sstevel@tonic-gate #ifdef NDI_EVENT_DEBUG 20877c478bd9Sstevel@tonic-gate void 20887c478bd9Sstevel@tonic-gate ndi_event_dump_hdl(struct ndi_event_hdl *hdl, char *location) 20897c478bd9Sstevel@tonic-gate { 20907c478bd9Sstevel@tonic-gate 20917c478bd9Sstevel@tonic-gate 20927c478bd9Sstevel@tonic-gate ndi_event_callbacks_t *next; 20937c478bd9Sstevel@tonic-gate ndi_event_cookie_t *list; 20947c478bd9Sstevel@tonic-gate 20957c478bd9Sstevel@tonic-gate ASSERT(mutex_owned(&hdl->ndi_evthdl_mutex)); 20967c478bd9Sstevel@tonic-gate list = hdl->ndi_evthdl_cookie_list; 20977c478bd9Sstevel@tonic-gate 20987c478bd9Sstevel@tonic-gate cmn_err(CE_CONT, "%s: event handle (%p): dip = %p (%s%d)\n", 20997c478bd9Sstevel@tonic-gate location, (void *)hdl, 21007c478bd9Sstevel@tonic-gate (void *)hdl->ndi_evthdl_dip, 21017c478bd9Sstevel@tonic-gate ddi_node_name(hdl->ndi_evthdl_dip), 21027c478bd9Sstevel@tonic-gate ddi_get_instance(hdl->ndi_evthdl_dip)); 21037c478bd9Sstevel@tonic-gate cmn_err(CE_CONT, "\thigh=%d other=%d n=%d\n", 21047c478bd9Sstevel@tonic-gate hdl->ndi_evthdl_high_plevels, 21057c478bd9Sstevel@tonic-gate hdl->ndi_evthdl_other_plevels, 21067c478bd9Sstevel@tonic-gate hdl->ndi_evthdl_n_events); 21077c478bd9Sstevel@tonic-gate 21087c478bd9Sstevel@tonic-gate 21097c478bd9Sstevel@tonic-gate cmn_err(CE_CONT, "\tevent cookies:\n"); 21107c478bd9Sstevel@tonic-gate while (list) { 21117c478bd9Sstevel@tonic-gate cmn_err(CE_CONT, 21127c478bd9Sstevel@tonic-gate "\t\ttag=%d name=%s p=%d a=%x dd=%p\n", 21137c478bd9Sstevel@tonic-gate NDI_EVENT_TAG(list), 21147c478bd9Sstevel@tonic-gate NDI_EVENT_NAME(list), 21157c478bd9Sstevel@tonic-gate NDI_EVENT_PLEVEL(list), 21167c478bd9Sstevel@tonic-gate NDI_EVENT_ATTRIBUTES(list), 21177c478bd9Sstevel@tonic-gate (void *)NDI_EVENT_DDIP(list)); 21187c478bd9Sstevel@tonic-gate cmn_err(CE_CONT, "\t\tcallbacks:\n"); 21197c478bd9Sstevel@tonic-gate for (next = list->callback_list; next != NULL; 21207c478bd9Sstevel@tonic-gate next = next->ndi_evtcb_next) { 21217c478bd9Sstevel@tonic-gate cmn_err(CE_CONT, 21227c478bd9Sstevel@tonic-gate "\t\t dip=%p (%s%d) cookie=%p arg=%p\n", 21237c478bd9Sstevel@tonic-gate (void*)next->ndi_evtcb_dip, 21247c478bd9Sstevel@tonic-gate ddi_driver_name(next->ndi_evtcb_dip), 21257c478bd9Sstevel@tonic-gate ddi_get_instance(next->ndi_evtcb_dip), 21267c478bd9Sstevel@tonic-gate (void *)next->ndi_evtcb_cookie, 21277c478bd9Sstevel@tonic-gate next->ndi_evtcb_arg); 21287c478bd9Sstevel@tonic-gate } 21297c478bd9Sstevel@tonic-gate 21307c478bd9Sstevel@tonic-gate list = list->next_cookie; 21317c478bd9Sstevel@tonic-gate } 21327c478bd9Sstevel@tonic-gate 21337c478bd9Sstevel@tonic-gate cmn_err(CE_CONT, "\n"); 21347c478bd9Sstevel@tonic-gate } 21357c478bd9Sstevel@tonic-gate #endif 21367c478bd9Sstevel@tonic-gate 21377c478bd9Sstevel@tonic-gate int 21387c478bd9Sstevel@tonic-gate ndi_dev_is_prom_node(dev_info_t *dip) 21397c478bd9Sstevel@tonic-gate { 21407c478bd9Sstevel@tonic-gate return (DEVI(dip)->devi_node_class == DDI_NC_PROM); 21417c478bd9Sstevel@tonic-gate } 21427c478bd9Sstevel@tonic-gate 21437c478bd9Sstevel@tonic-gate int 21447c478bd9Sstevel@tonic-gate ndi_dev_is_pseudo_node(dev_info_t *dip) 21457c478bd9Sstevel@tonic-gate { 21467c478bd9Sstevel@tonic-gate /* 21477c478bd9Sstevel@tonic-gate * NOTE: this does NOT mean the pseudo branch of the device tree, 21487c478bd9Sstevel@tonic-gate * it means the node was created by software (DEVI_SID_NODEID | 21497c478bd9Sstevel@tonic-gate * DEVI_PSEUDO_NODEID) instead of being generated from a PROM node. 21507c478bd9Sstevel@tonic-gate */ 21517c478bd9Sstevel@tonic-gate return (DEVI(dip)->devi_node_class == DDI_NC_PSEUDO); 21527c478bd9Sstevel@tonic-gate } 21537c478bd9Sstevel@tonic-gate 21547c478bd9Sstevel@tonic-gate int 21557c478bd9Sstevel@tonic-gate ndi_dev_is_persistent_node(dev_info_t *dip) 21567c478bd9Sstevel@tonic-gate { 21577c478bd9Sstevel@tonic-gate return ((DEVI(dip)->devi_node_attributes & DDI_PERSISTENT) != 0); 21587c478bd9Sstevel@tonic-gate } 21597c478bd9Sstevel@tonic-gate 21607c478bd9Sstevel@tonic-gate int 21617c478bd9Sstevel@tonic-gate i_ndi_dev_is_auto_assigned_node(dev_info_t *dip) 21627c478bd9Sstevel@tonic-gate { 21637c478bd9Sstevel@tonic-gate return ((DEVI(dip)->devi_node_attributes & 21647c478bd9Sstevel@tonic-gate DDI_AUTO_ASSIGNED_NODEID) != 0); 21657c478bd9Sstevel@tonic-gate } 21667c478bd9Sstevel@tonic-gate 21677c478bd9Sstevel@tonic-gate void 21687c478bd9Sstevel@tonic-gate i_ndi_set_node_class(dev_info_t *dip, ddi_node_class_t c) 21697c478bd9Sstevel@tonic-gate { 21707c478bd9Sstevel@tonic-gate DEVI(dip)->devi_node_class = c; 21717c478bd9Sstevel@tonic-gate } 21727c478bd9Sstevel@tonic-gate 21737c478bd9Sstevel@tonic-gate ddi_node_class_t 21747c478bd9Sstevel@tonic-gate i_ndi_get_node_class(dev_info_t *dip) 21757c478bd9Sstevel@tonic-gate { 21767c478bd9Sstevel@tonic-gate return (DEVI(dip)->devi_node_class); 21777c478bd9Sstevel@tonic-gate } 21787c478bd9Sstevel@tonic-gate 21797c478bd9Sstevel@tonic-gate void 21807c478bd9Sstevel@tonic-gate i_ndi_set_node_attributes(dev_info_t *dip, int p) 21817c478bd9Sstevel@tonic-gate { 21827c478bd9Sstevel@tonic-gate DEVI(dip)->devi_node_attributes = p; 21837c478bd9Sstevel@tonic-gate } 21847c478bd9Sstevel@tonic-gate 21857c478bd9Sstevel@tonic-gate int 21867c478bd9Sstevel@tonic-gate i_ndi_get_node_attributes(dev_info_t *dip) 21877c478bd9Sstevel@tonic-gate { 21887c478bd9Sstevel@tonic-gate return (DEVI(dip)->devi_node_attributes); 21897c478bd9Sstevel@tonic-gate } 21907c478bd9Sstevel@tonic-gate 21917c478bd9Sstevel@tonic-gate void 21927c478bd9Sstevel@tonic-gate i_ndi_set_nodeid(dev_info_t *dip, int n) 21937c478bd9Sstevel@tonic-gate { 21947c478bd9Sstevel@tonic-gate DEVI(dip)->devi_nodeid = n; 21957c478bd9Sstevel@tonic-gate } 21967c478bd9Sstevel@tonic-gate 21977c478bd9Sstevel@tonic-gate void 21987c478bd9Sstevel@tonic-gate ndi_set_acc_fault(ddi_acc_handle_t ah) 21997c478bd9Sstevel@tonic-gate { 22007c478bd9Sstevel@tonic-gate i_ddi_acc_set_fault(ah); 22017c478bd9Sstevel@tonic-gate } 22027c478bd9Sstevel@tonic-gate 22037c478bd9Sstevel@tonic-gate void 22047c478bd9Sstevel@tonic-gate ndi_clr_acc_fault(ddi_acc_handle_t ah) 22057c478bd9Sstevel@tonic-gate { 22067c478bd9Sstevel@tonic-gate i_ddi_acc_clr_fault(ah); 22077c478bd9Sstevel@tonic-gate } 22087c478bd9Sstevel@tonic-gate 22097c478bd9Sstevel@tonic-gate void 22107c478bd9Sstevel@tonic-gate ndi_set_dma_fault(ddi_dma_handle_t dh) 22117c478bd9Sstevel@tonic-gate { 22127c478bd9Sstevel@tonic-gate i_ddi_dma_set_fault(dh); 22137c478bd9Sstevel@tonic-gate } 22147c478bd9Sstevel@tonic-gate 22157c478bd9Sstevel@tonic-gate void 22167c478bd9Sstevel@tonic-gate ndi_clr_dma_fault(ddi_dma_handle_t dh) 22177c478bd9Sstevel@tonic-gate { 22187c478bd9Sstevel@tonic-gate i_ddi_dma_clr_fault(dh); 22197c478bd9Sstevel@tonic-gate } 22207c478bd9Sstevel@tonic-gate 22217c478bd9Sstevel@tonic-gate /* 22227c478bd9Sstevel@tonic-gate * The default fault-handler, called when the event posted by 22237c478bd9Sstevel@tonic-gate * ddi_dev_report_fault() reaches rootnex. 22247c478bd9Sstevel@tonic-gate */ 22257c478bd9Sstevel@tonic-gate static void 22267c478bd9Sstevel@tonic-gate i_ddi_fault_handler(dev_info_t *dip, struct ddi_fault_event_data *fedp) 22277c478bd9Sstevel@tonic-gate { 22287c478bd9Sstevel@tonic-gate ASSERT(fedp); 22297c478bd9Sstevel@tonic-gate 22307c478bd9Sstevel@tonic-gate mutex_enter(&(DEVI(dip)->devi_lock)); 22317c478bd9Sstevel@tonic-gate if (!DEVI_IS_DEVICE_OFFLINE(dip)) { 22327c478bd9Sstevel@tonic-gate switch (fedp->f_impact) { 22337c478bd9Sstevel@tonic-gate case DDI_SERVICE_LOST: 22347c478bd9Sstevel@tonic-gate DEVI_SET_DEVICE_DOWN(dip); 22357c478bd9Sstevel@tonic-gate break; 22367c478bd9Sstevel@tonic-gate 22377c478bd9Sstevel@tonic-gate case DDI_SERVICE_DEGRADED: 22387c478bd9Sstevel@tonic-gate DEVI_SET_DEVICE_DEGRADED(dip); 22397c478bd9Sstevel@tonic-gate break; 22407c478bd9Sstevel@tonic-gate 22417c478bd9Sstevel@tonic-gate case DDI_SERVICE_UNAFFECTED: 22427c478bd9Sstevel@tonic-gate default: 22437c478bd9Sstevel@tonic-gate break; 22447c478bd9Sstevel@tonic-gate 22457c478bd9Sstevel@tonic-gate case DDI_SERVICE_RESTORED: 22467c478bd9Sstevel@tonic-gate DEVI_SET_DEVICE_UP(dip); 22477c478bd9Sstevel@tonic-gate break; 22487c478bd9Sstevel@tonic-gate } 22497c478bd9Sstevel@tonic-gate } 22507c478bd9Sstevel@tonic-gate mutex_exit(&(DEVI(dip)->devi_lock)); 22517c478bd9Sstevel@tonic-gate } 22527c478bd9Sstevel@tonic-gate 22537c478bd9Sstevel@tonic-gate /* 22547c478bd9Sstevel@tonic-gate * The default fault-logger, called when the event posted by 22557c478bd9Sstevel@tonic-gate * ddi_dev_report_fault() reaches rootnex. 22567c478bd9Sstevel@tonic-gate */ 22577c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 22587c478bd9Sstevel@tonic-gate static void 22597c478bd9Sstevel@tonic-gate i_ddi_fault_logger(dev_info_t *rdip, struct ddi_fault_event_data *fedp) 22607c478bd9Sstevel@tonic-gate { 22617c478bd9Sstevel@tonic-gate ddi_devstate_t newstate; 22627c478bd9Sstevel@tonic-gate const char *action; 22637c478bd9Sstevel@tonic-gate const char *servstate; 22647c478bd9Sstevel@tonic-gate const char *location; 22657c478bd9Sstevel@tonic-gate int bad; 22667c478bd9Sstevel@tonic-gate int changed; 22677c478bd9Sstevel@tonic-gate int level; 22687c478bd9Sstevel@tonic-gate int still; 22697c478bd9Sstevel@tonic-gate 22707c478bd9Sstevel@tonic-gate ASSERT(fedp); 22717c478bd9Sstevel@tonic-gate 22727c478bd9Sstevel@tonic-gate bad = 0; 22737c478bd9Sstevel@tonic-gate switch (fedp->f_location) { 22747c478bd9Sstevel@tonic-gate case DDI_DATAPATH_FAULT: 22757c478bd9Sstevel@tonic-gate location = "in datapath to"; 22767c478bd9Sstevel@tonic-gate break; 22777c478bd9Sstevel@tonic-gate case DDI_DEVICE_FAULT: 22787c478bd9Sstevel@tonic-gate location = "in"; 22797c478bd9Sstevel@tonic-gate break; 22807c478bd9Sstevel@tonic-gate case DDI_EXTERNAL_FAULT: 22817c478bd9Sstevel@tonic-gate location = "external to"; 22827c478bd9Sstevel@tonic-gate break; 22837c478bd9Sstevel@tonic-gate default: 22847c478bd9Sstevel@tonic-gate location = "somewhere near"; 22857c478bd9Sstevel@tonic-gate bad = 1; 22867c478bd9Sstevel@tonic-gate break; 22877c478bd9Sstevel@tonic-gate } 22887c478bd9Sstevel@tonic-gate 22897c478bd9Sstevel@tonic-gate newstate = ddi_get_devstate(fedp->f_dip); 22907c478bd9Sstevel@tonic-gate switch (newstate) { 22917c478bd9Sstevel@tonic-gate case DDI_DEVSTATE_OFFLINE: 22927c478bd9Sstevel@tonic-gate servstate = "unavailable"; 22937c478bd9Sstevel@tonic-gate break; 22947c478bd9Sstevel@tonic-gate case DDI_DEVSTATE_DOWN: 22957c478bd9Sstevel@tonic-gate servstate = "unavailable"; 22967c478bd9Sstevel@tonic-gate break; 22977c478bd9Sstevel@tonic-gate case DDI_DEVSTATE_QUIESCED: 22987c478bd9Sstevel@tonic-gate servstate = "suspended"; 22997c478bd9Sstevel@tonic-gate break; 23007c478bd9Sstevel@tonic-gate case DDI_DEVSTATE_DEGRADED: 23017c478bd9Sstevel@tonic-gate servstate = "degraded"; 23027c478bd9Sstevel@tonic-gate break; 23037c478bd9Sstevel@tonic-gate default: 23047c478bd9Sstevel@tonic-gate servstate = "available"; 23057c478bd9Sstevel@tonic-gate break; 23067c478bd9Sstevel@tonic-gate } 23077c478bd9Sstevel@tonic-gate 23087c478bd9Sstevel@tonic-gate changed = (newstate != fedp->f_oldstate); 23097c478bd9Sstevel@tonic-gate level = (newstate < fedp->f_oldstate) ? CE_WARN : CE_NOTE; 23107c478bd9Sstevel@tonic-gate switch (fedp->f_impact) { 23117c478bd9Sstevel@tonic-gate case DDI_SERVICE_LOST: 23127c478bd9Sstevel@tonic-gate case DDI_SERVICE_DEGRADED: 23137c478bd9Sstevel@tonic-gate case DDI_SERVICE_UNAFFECTED: 23147c478bd9Sstevel@tonic-gate /* fault detected; service [still] <servstate> */ 23157c478bd9Sstevel@tonic-gate action = "fault detected"; 23167c478bd9Sstevel@tonic-gate still = !changed; 23177c478bd9Sstevel@tonic-gate break; 23187c478bd9Sstevel@tonic-gate 23197c478bd9Sstevel@tonic-gate case DDI_SERVICE_RESTORED: 23207c478bd9Sstevel@tonic-gate if (newstate != DDI_DEVSTATE_UP) { 23217c478bd9Sstevel@tonic-gate /* fault cleared; service still <servstate> */ 23227c478bd9Sstevel@tonic-gate action = "fault cleared"; 23237c478bd9Sstevel@tonic-gate still = 1; 23247c478bd9Sstevel@tonic-gate } else if (changed) { 23257c478bd9Sstevel@tonic-gate /* fault cleared; service <servstate> */ 23267c478bd9Sstevel@tonic-gate action = "fault cleared"; 23277c478bd9Sstevel@tonic-gate still = 0; 23287c478bd9Sstevel@tonic-gate } else { 23297c478bd9Sstevel@tonic-gate /* no fault; service <servstate> */ 23307c478bd9Sstevel@tonic-gate action = "no fault"; 23317c478bd9Sstevel@tonic-gate still = 0; 23327c478bd9Sstevel@tonic-gate } 23337c478bd9Sstevel@tonic-gate break; 23347c478bd9Sstevel@tonic-gate 23357c478bd9Sstevel@tonic-gate default: 23367c478bd9Sstevel@tonic-gate bad = 1; 23377c478bd9Sstevel@tonic-gate break; 23387c478bd9Sstevel@tonic-gate } 23397c478bd9Sstevel@tonic-gate 23407c478bd9Sstevel@tonic-gate cmn_err(level, "!%s%d: %s %s device; service %s%s"+(bad|changed), 23417c478bd9Sstevel@tonic-gate ddi_driver_name(fedp->f_dip), 23427c478bd9Sstevel@tonic-gate ddi_get_instance(fedp->f_dip), 23437c478bd9Sstevel@tonic-gate bad ? "invalid report of fault" : action, 23447c478bd9Sstevel@tonic-gate location, still ? "still " : "", servstate); 23457c478bd9Sstevel@tonic-gate 23467c478bd9Sstevel@tonic-gate cmn_err(level, "!%s%d: %s"+(bad|changed), 23477c478bd9Sstevel@tonic-gate ddi_driver_name(fedp->f_dip), 23487c478bd9Sstevel@tonic-gate ddi_get_instance(fedp->f_dip), 23497c478bd9Sstevel@tonic-gate fedp->f_message); 23507c478bd9Sstevel@tonic-gate } 23517c478bd9Sstevel@tonic-gate 23527c478bd9Sstevel@tonic-gate /* 23537c478bd9Sstevel@tonic-gate * Platform-settable pointers to fault handler and logger functions. 23547c478bd9Sstevel@tonic-gate * These are called by the default rootnex event-posting code when 23557c478bd9Sstevel@tonic-gate * a fault event reaches rootnex. 23567c478bd9Sstevel@tonic-gate */ 23577c478bd9Sstevel@tonic-gate void (*plat_fault_handler)(dev_info_t *, struct ddi_fault_event_data *) = 23587c478bd9Sstevel@tonic-gate i_ddi_fault_handler; 23597c478bd9Sstevel@tonic-gate void (*plat_fault_logger)(dev_info_t *, struct ddi_fault_event_data *) = 23607c478bd9Sstevel@tonic-gate i_ddi_fault_logger; 23617c478bd9Sstevel@tonic-gate 23627c478bd9Sstevel@tonic-gate /* 23637c478bd9Sstevel@tonic-gate * Rootnex event definitions ... 23647c478bd9Sstevel@tonic-gate */ 23657c478bd9Sstevel@tonic-gate enum rootnex_event_tags { 23667c478bd9Sstevel@tonic-gate ROOTNEX_FAULT_EVENT 23677c478bd9Sstevel@tonic-gate }; 23687c478bd9Sstevel@tonic-gate static ndi_event_hdl_t rootnex_event_hdl; 23697c478bd9Sstevel@tonic-gate static ndi_event_definition_t rootnex_event_set[] = { 23707c478bd9Sstevel@tonic-gate { 23717c478bd9Sstevel@tonic-gate ROOTNEX_FAULT_EVENT, 23727c478bd9Sstevel@tonic-gate DDI_DEVI_FAULT_EVENT, 23737c478bd9Sstevel@tonic-gate EPL_INTERRUPT, 23747c478bd9Sstevel@tonic-gate NDI_EVENT_POST_TO_ALL 23757c478bd9Sstevel@tonic-gate } 23767c478bd9Sstevel@tonic-gate }; 23777c478bd9Sstevel@tonic-gate static ndi_event_set_t rootnex_events = { 23787c478bd9Sstevel@tonic-gate NDI_EVENTS_REV1, 23797c478bd9Sstevel@tonic-gate sizeof (rootnex_event_set) / sizeof (rootnex_event_set[0]), 23807c478bd9Sstevel@tonic-gate rootnex_event_set 23817c478bd9Sstevel@tonic-gate }; 23827c478bd9Sstevel@tonic-gate 23837c478bd9Sstevel@tonic-gate /* 23847c478bd9Sstevel@tonic-gate * Initialize rootnex event handle 23857c478bd9Sstevel@tonic-gate */ 23867c478bd9Sstevel@tonic-gate void 23877c478bd9Sstevel@tonic-gate i_ddi_rootnex_init_events(dev_info_t *dip) 23887c478bd9Sstevel@tonic-gate { 23897c478bd9Sstevel@tonic-gate if (ndi_event_alloc_hdl(dip, (ddi_iblock_cookie_t)(LOCK_LEVEL-1), 23907c478bd9Sstevel@tonic-gate &rootnex_event_hdl, NDI_SLEEP) == NDI_SUCCESS) { 23917c478bd9Sstevel@tonic-gate if (ndi_event_bind_set(rootnex_event_hdl, 23927c478bd9Sstevel@tonic-gate &rootnex_events, NDI_SLEEP) != NDI_SUCCESS) { 23937c478bd9Sstevel@tonic-gate (void) ndi_event_free_hdl(rootnex_event_hdl); 23947c478bd9Sstevel@tonic-gate rootnex_event_hdl = NULL; 23957c478bd9Sstevel@tonic-gate } 23967c478bd9Sstevel@tonic-gate } 23977c478bd9Sstevel@tonic-gate } 23987c478bd9Sstevel@tonic-gate 23997c478bd9Sstevel@tonic-gate /* 24007c478bd9Sstevel@tonic-gate * Event-handling functions for rootnex 24017c478bd9Sstevel@tonic-gate * These provide the standard implementation of fault handling 24027c478bd9Sstevel@tonic-gate */ 24037c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 24047c478bd9Sstevel@tonic-gate int 24057c478bd9Sstevel@tonic-gate i_ddi_rootnex_get_eventcookie(dev_info_t *dip, dev_info_t *rdip, 24067c478bd9Sstevel@tonic-gate char *eventname, ddi_eventcookie_t *cookiep) 24077c478bd9Sstevel@tonic-gate { 24087c478bd9Sstevel@tonic-gate if (rootnex_event_hdl == NULL) 24097c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 24107c478bd9Sstevel@tonic-gate return (ndi_event_retrieve_cookie(rootnex_event_hdl, rdip, eventname, 24117c478bd9Sstevel@tonic-gate cookiep, NDI_EVENT_NOPASS)); 24127c478bd9Sstevel@tonic-gate } 24137c478bd9Sstevel@tonic-gate 24147c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 24157c478bd9Sstevel@tonic-gate int 24167c478bd9Sstevel@tonic-gate i_ddi_rootnex_add_eventcall(dev_info_t *dip, dev_info_t *rdip, 24177c478bd9Sstevel@tonic-gate ddi_eventcookie_t eventid, void (*handler)(dev_info_t *dip, 24187c478bd9Sstevel@tonic-gate ddi_eventcookie_t event, void *arg, void *impl_data), void *arg, 24197c478bd9Sstevel@tonic-gate ddi_callback_id_t *cb_id) 24207c478bd9Sstevel@tonic-gate { 24217c478bd9Sstevel@tonic-gate if (rootnex_event_hdl == NULL) 24227c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 24237c478bd9Sstevel@tonic-gate return (ndi_event_add_callback(rootnex_event_hdl, rdip, 24247c478bd9Sstevel@tonic-gate eventid, handler, arg, NDI_SLEEP, cb_id)); 24257c478bd9Sstevel@tonic-gate } 24267c478bd9Sstevel@tonic-gate 24277c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 24287c478bd9Sstevel@tonic-gate int 24297c478bd9Sstevel@tonic-gate i_ddi_rootnex_remove_eventcall(dev_info_t *dip, ddi_callback_id_t cb_id) 24307c478bd9Sstevel@tonic-gate { 24317c478bd9Sstevel@tonic-gate if (rootnex_event_hdl == NULL) 24327c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 24337c478bd9Sstevel@tonic-gate 24347c478bd9Sstevel@tonic-gate return (ndi_event_remove_callback(rootnex_event_hdl, cb_id)); 24357c478bd9Sstevel@tonic-gate } 24367c478bd9Sstevel@tonic-gate 24377c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 24387c478bd9Sstevel@tonic-gate int 24397c478bd9Sstevel@tonic-gate i_ddi_rootnex_post_event(dev_info_t *dip, dev_info_t *rdip, 24407c478bd9Sstevel@tonic-gate ddi_eventcookie_t eventid, void *impl_data) 24417c478bd9Sstevel@tonic-gate { 24427c478bd9Sstevel@tonic-gate int tag; 24437c478bd9Sstevel@tonic-gate 24447c478bd9Sstevel@tonic-gate if (rootnex_event_hdl == NULL) 24457c478bd9Sstevel@tonic-gate return (NDI_FAILURE); 24467c478bd9Sstevel@tonic-gate 24477c478bd9Sstevel@tonic-gate tag = ndi_event_cookie_to_tag(rootnex_event_hdl, eventid); 24487c478bd9Sstevel@tonic-gate if (tag == ROOTNEX_FAULT_EVENT) { 24497c478bd9Sstevel@tonic-gate (*plat_fault_handler)(rdip, impl_data); 24507c478bd9Sstevel@tonic-gate (*plat_fault_logger)(rdip, impl_data); 24517c478bd9Sstevel@tonic-gate } 24527c478bd9Sstevel@tonic-gate return (ndi_event_run_callbacks(rootnex_event_hdl, rdip, 24537c478bd9Sstevel@tonic-gate eventid, impl_data)); 24547c478bd9Sstevel@tonic-gate } 2455