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