18c1093fcSMarius Strobl /* $NetBSD: mii_bitbang.h,v 1.6 2009/05/12 14:31:27 cegger Exp $ */ 28c1093fcSMarius Strobl 38c1093fcSMarius Strobl /*- 4*b61a5730SWarner Losh * SPDX-License-Identifier: BSD-2-Clause 5718cf2ccSPedro F. Giffuni * 68c1093fcSMarius Strobl * Copyright (c) 1999 The NetBSD Foundation, Inc. 78c1093fcSMarius Strobl * All rights reserved. 88c1093fcSMarius Strobl * 98c1093fcSMarius Strobl * This code is derived from software contributed to The NetBSD Foundation 108c1093fcSMarius Strobl * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility, 118c1093fcSMarius Strobl * NASA Ames Research Center. 128c1093fcSMarius Strobl * 138c1093fcSMarius Strobl * Redistribution and use in source and binary forms, with or without 148c1093fcSMarius Strobl * modification, are permitted provided that the following conditions 158c1093fcSMarius Strobl * are met: 168c1093fcSMarius Strobl * 1. Redistributions of source code must retain the above copyright 178c1093fcSMarius Strobl * notice, this list of conditions and the following disclaimer. 188c1093fcSMarius Strobl * 2. Redistributions in binary form must reproduce the above copyright 198c1093fcSMarius Strobl * notice, this list of conditions and the following disclaimer in the 208c1093fcSMarius Strobl * documentation and/or other materials provided with the distribution. 218c1093fcSMarius Strobl * 228c1093fcSMarius Strobl * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 238c1093fcSMarius Strobl * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 248c1093fcSMarius Strobl * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 258c1093fcSMarius Strobl * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 268c1093fcSMarius Strobl * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 278c1093fcSMarius Strobl * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 288c1093fcSMarius Strobl * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 298c1093fcSMarius Strobl * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 308c1093fcSMarius Strobl * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 318c1093fcSMarius Strobl * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 328c1093fcSMarius Strobl * POSSIBILITY OF SUCH DAMAGE. 338c1093fcSMarius Strobl */ 348c1093fcSMarius Strobl 358c1093fcSMarius Strobl #define MII_BIT_MDO 0 /* data out (host->PHY) */ 368c1093fcSMarius Strobl #define MII_BIT_MDI 1 /* data in (PHY->host) */ 378c1093fcSMarius Strobl #define MII_BIT_MDC 2 /* clock */ 388c1093fcSMarius Strobl #define MII_BIT_DIR_HOST_PHY 3 /* set direction: host->PHY */ 398c1093fcSMarius Strobl #define MII_BIT_DIR_PHY_HOST 4 /* set direction: PHY->host */ 408c1093fcSMarius Strobl #define MII_NBITS 5 418c1093fcSMarius Strobl 428c1093fcSMarius Strobl struct mii_bitbang_ops { 438c1093fcSMarius Strobl uint32_t (*mbo_read)(device_t); 448c1093fcSMarius Strobl void (*mbo_write)(device_t, uint32_t); 458c1093fcSMarius Strobl uint32_t mbo_bits[MII_NBITS]; 468c1093fcSMarius Strobl }; 478c1093fcSMarius Strobl 488c1093fcSMarius Strobl typedef const struct mii_bitbang_ops *mii_bitbang_ops_t; 498c1093fcSMarius Strobl 508c1093fcSMarius Strobl int mii_bitbang_readreg(device_t dev, mii_bitbang_ops_t ops, 518c1093fcSMarius Strobl int phy, int reg); 528c1093fcSMarius Strobl void mii_bitbang_sync(device_t dev, mii_bitbang_ops_t ops); 538c1093fcSMarius Strobl void mii_bitbang_writereg(device_t dev, mii_bitbang_ops_t ops, 548c1093fcSMarius Strobl int phy, int reg, int val); 55