1 /*- 2 * Copyright (c) 2011-2012 Stefan Bethke. 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 24 * SUCH DAMAGE. 25 * 26 * $FreeBSD$ 27 */ 28 #ifndef __ARSWITCHVAR_H__ 29 #define __ARSWITCHVAR_H__ 30 31 typedef enum { 32 AR8X16_SWITCH_NONE, 33 AR8X16_SWITCH_AR8216, 34 AR8X16_SWITCH_AR8226, 35 AR8X16_SWITCH_AR8316, 36 } ar8x16_switch_type; 37 38 /* 39 * XXX TODO: start using this where required 40 */ 41 #define AR8X16_IS_SWITCH(_sc, _type) \ 42 (!!((_sc)->sc_switchtype == AR8X16_SWITCH_ ## _type)) 43 44 struct arswitch_softc; 45 46 struct arswitch_softc { 47 struct mtx sc_mtx; /* serialize access to softc */ 48 device_t sc_dev; 49 int phy4cpu; /* PHY4 is connected to the CPU */ 50 int numphys; /* PHYs we manage */ 51 int is_rgmii; /* PHY mode is RGMII (XXX which PHY?) */ 52 int is_gmii; /* PHY mode is GMII (XXX which PHY?) */ 53 int page; 54 ar8x16_switch_type sc_switchtype; 55 char *ifname[AR8X16_NUM_PHYS]; 56 device_t miibus[AR8X16_NUM_PHYS]; 57 struct ifnet *ifp[AR8X16_NUM_PHYS]; 58 struct callout callout_tick; 59 etherswitch_info_t info; 60 61 struct { 62 int (* arswitch_hw_setup) (struct arswitch_softc *); 63 int (* arswitch_hw_global_setup) (struct arswitch_softc *); 64 } hal; 65 }; 66 67 #define ARSWITCH_LOCK(_sc) \ 68 mtx_lock(&(_sc)->sc_mtx) 69 #define ARSWITCH_UNLOCK(_sc) \ 70 mtx_unlock(&(_sc)->sc_mtx) 71 #define ARSWITCH_LOCK_ASSERT(_sc, _what) \ 72 mtx_assert(&(_s)c->sc_mtx, (_what)) 73 #define ARSWITCH_TRYLOCK(_sc) \ 74 mtx_trylock(&(_sc)->sc_mtx) 75 76 #if defined(DEBUG) 77 #define DPRINTF(dev, args...) device_printf(dev, args) 78 #define DEVERR(dev, err, fmt, args...) do { \ 79 if (err != 0) device_printf(dev, fmt, err, args); \ 80 } while (0) 81 #define DEBUG_INCRVAR(var) do { \ 82 var++; \ 83 } while (0) 84 #else 85 #define DPRINTF(dev, args...) 86 #define DEVERR(dev, err, fmt, args...) 87 #define DEBUG_INCRVAR(var) 88 #endif 89 90 #endif /* __ARSWITCHVAR_H__ */ 91 92