1*d4886179SRui Paulo /* $OpenBSD: if_iwm.c,v 1.39 2015/03/23 00:35:19 jsg Exp $ */ 2*d4886179SRui Paulo /* $FreeBSD$ */ 3*d4886179SRui Paulo /* 4*d4886179SRui Paulo * Copyright (c) 2014 genua mbh <info@genua.de> 5*d4886179SRui Paulo * Copyright (c) 2014 Fixup Software Ltd. 6*d4886179SRui Paulo * 7*d4886179SRui Paulo * Permission to use, copy, modify, and distribute this software for any 8*d4886179SRui Paulo * purpose with or without fee is hereby granted, provided that the above 9*d4886179SRui Paulo * copyright notice and this permission notice appear in all copies. 10*d4886179SRui Paulo * 11*d4886179SRui Paulo * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 12*d4886179SRui Paulo * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 13*d4886179SRui Paulo * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 14*d4886179SRui Paulo * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 15*d4886179SRui Paulo * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 16*d4886179SRui Paulo * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 17*d4886179SRui Paulo * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 18*d4886179SRui Paulo */ 19*d4886179SRui Paulo 20*d4886179SRui Paulo /*- 21*d4886179SRui Paulo * Based on BSD-licensed source modules in the Linux iwlwifi driver, 22*d4886179SRui Paulo * which were used as the reference documentation for this implementation. 23*d4886179SRui Paulo * 24*d4886179SRui Paulo * Driver version we are currently based off of is 25*d4886179SRui Paulo * Linux 3.14.3 (tag id a2df521e42b1d9a23f620ac79dbfe8655a8391dd) 26*d4886179SRui Paulo * 27*d4886179SRui Paulo *********************************************************************** 28*d4886179SRui Paulo * 29*d4886179SRui Paulo * This file is provided under a dual BSD/GPLv2 license. When using or 30*d4886179SRui Paulo * redistributing this file, you may do so under either license. 31*d4886179SRui Paulo * 32*d4886179SRui Paulo * GPL LICENSE SUMMARY 33*d4886179SRui Paulo * 34*d4886179SRui Paulo * Copyright(c) 2007 - 2013 Intel Corporation. All rights reserved. 35*d4886179SRui Paulo * 36*d4886179SRui Paulo * This program is free software; you can redistribute it and/or modify 37*d4886179SRui Paulo * it under the terms of version 2 of the GNU General Public License as 38*d4886179SRui Paulo * published by the Free Software Foundation. 39*d4886179SRui Paulo * 40*d4886179SRui Paulo * This program is distributed in the hope that it will be useful, but 41*d4886179SRui Paulo * WITHOUT ANY WARRANTY; without even the implied warranty of 42*d4886179SRui Paulo * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 43*d4886179SRui Paulo * General Public License for more details. 44*d4886179SRui Paulo * 45*d4886179SRui Paulo * You should have received a copy of the GNU General Public License 46*d4886179SRui Paulo * along with this program; if not, write to the Free Software 47*d4886179SRui Paulo * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, 48*d4886179SRui Paulo * USA 49*d4886179SRui Paulo * 50*d4886179SRui Paulo * The full GNU General Public License is included in this distribution 51*d4886179SRui Paulo * in the file called COPYING. 52*d4886179SRui Paulo * 53*d4886179SRui Paulo * Contact Information: 54*d4886179SRui Paulo * Intel Linux Wireless <ilw@linux.intel.com> 55*d4886179SRui Paulo * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 56*d4886179SRui Paulo * 57*d4886179SRui Paulo * 58*d4886179SRui Paulo * BSD LICENSE 59*d4886179SRui Paulo * 60*d4886179SRui Paulo * Copyright(c) 2005 - 2013 Intel Corporation. All rights reserved. 61*d4886179SRui Paulo * All rights reserved. 62*d4886179SRui Paulo * 63*d4886179SRui Paulo * Redistribution and use in source and binary forms, with or without 64*d4886179SRui Paulo * modification, are permitted provided that the following conditions 65*d4886179SRui Paulo * are met: 66*d4886179SRui Paulo * 67*d4886179SRui Paulo * * Redistributions of source code must retain the above copyright 68*d4886179SRui Paulo * notice, this list of conditions and the following disclaimer. 69*d4886179SRui Paulo * * Redistributions in binary form must reproduce the above copyright 70*d4886179SRui Paulo * notice, this list of conditions and the following disclaimer in 71*d4886179SRui Paulo * the documentation and/or other materials provided with the 72*d4886179SRui Paulo * distribution. 73*d4886179SRui Paulo * * Neither the name Intel Corporation nor the names of its 74*d4886179SRui Paulo * contributors may be used to endorse or promote products derived 75*d4886179SRui Paulo * from this software without specific prior written permission. 76*d4886179SRui Paulo * 77*d4886179SRui Paulo * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 78*d4886179SRui Paulo * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 79*d4886179SRui Paulo * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 80*d4886179SRui Paulo * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 81*d4886179SRui Paulo * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 82*d4886179SRui Paulo * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 83*d4886179SRui Paulo * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 84*d4886179SRui Paulo * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 85*d4886179SRui Paulo * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 86*d4886179SRui Paulo * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 87*d4886179SRui Paulo * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 88*d4886179SRui Paulo */ 89*d4886179SRui Paulo 90*d4886179SRui Paulo /*- 91*d4886179SRui Paulo * Copyright (c) 2007-2010 Damien Bergamini <damien.bergamini@free.fr> 92*d4886179SRui Paulo * 93*d4886179SRui Paulo * Permission to use, copy, modify, and distribute this software for any 94*d4886179SRui Paulo * purpose with or without fee is hereby granted, provided that the above 95*d4886179SRui Paulo * copyright notice and this permission notice appear in all copies. 96*d4886179SRui Paulo * 97*d4886179SRui Paulo * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES 98*d4886179SRui Paulo * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF 99*d4886179SRui Paulo * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR 100*d4886179SRui Paulo * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 101*d4886179SRui Paulo * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 102*d4886179SRui Paulo * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 103*d4886179SRui Paulo * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 104*d4886179SRui Paulo */ 105*d4886179SRui Paulo #ifndef __IF_IWM_BINDING_H__ 106*d4886179SRui Paulo #define __IF_IWM_BINDING_H__ 107*d4886179SRui Paulo 108*d4886179SRui Paulo extern int iwm_mvm_binding_cmd(struct iwm_softc *sc, struct iwm_node *in, 109*d4886179SRui Paulo uint32_t action); 110*d4886179SRui Paulo extern int iwm_mvm_binding_update(struct iwm_softc *sc, struct iwm_node *in, 111*d4886179SRui Paulo int add); 112*d4886179SRui Paulo extern int iwm_mvm_binding_add_vif(struct iwm_softc *sc, struct iwm_node *in); 113*d4886179SRui Paulo 114*d4886179SRui Paulo #endif /* __IF_IWM_BINDING_H__ */ 115