1d0027533SBill Paul#! /usr/bin/awk -f 2d0027533SBill Paul# $NetBSD: devlist2h.awk,v 1.2 1998/09/05 14:42:06 christos Exp $ 360727d8bSWarner Losh 460727d8bSWarner Losh#- 5*b61a5730SWarner Losh# SPDX-License-Identifier: BSD-2-Clause AND BSD-4-Clause 6fe267a55SPedro F. Giffuni# 7d0027533SBill Paul# Copyright (c) 1998 The NetBSD Foundation, Inc. 8d0027533SBill Paul# All rights reserved. 9d0027533SBill Paul# 10d0027533SBill Paul# This code is derived from software contributed to The NetBSD Foundation 11d0027533SBill Paul# by Christos Zoulas. 12d0027533SBill Paul# 13d0027533SBill Paul# Redistribution and use in source and binary forms, with or without 14d0027533SBill Paul# modification, are permitted provided that the following conditions 15d0027533SBill Paul# are met: 16d0027533SBill Paul# 1. Redistributions of source code must retain the above copyright 17d0027533SBill Paul# notice, this list of conditions and the following disclaimer. 18d0027533SBill Paul# 2. Redistributions in binary form must reproduce the above copyright 19d0027533SBill Paul# notice, this list of conditions and the following disclaimer in the 20d0027533SBill Paul# documentation and/or other materials provided with the distribution. 21d0027533SBill Paul# 22d0027533SBill Paul# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 23d0027533SBill Paul# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 24d0027533SBill Paul# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 25d0027533SBill Paul# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 26d0027533SBill Paul# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 27d0027533SBill Paul# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 28d0027533SBill Paul# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 29d0027533SBill Paul# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 30d0027533SBill Paul# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 31d0027533SBill Paul# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 32d0027533SBill Paul# POSSIBILITY OF SUCH DAMAGE. 33d0027533SBill Paul# 34d0027533SBill Paul# Copyright (c) 1995, 1996 Christopher G. Demetriou 35d0027533SBill Paul# All rights reserved. 36d0027533SBill Paul# 37d0027533SBill Paul# Redistribution and use in source and binary forms, with or without 38d0027533SBill Paul# modification, are permitted provided that the following conditions 39d0027533SBill Paul# are met: 40d0027533SBill Paul# 1. Redistributions of source code must retain the above copyright 41d0027533SBill Paul# notice, this list of conditions and the following disclaimer. 42d0027533SBill Paul# 2. Redistributions in binary form must reproduce the above copyright 43d0027533SBill Paul# notice, this list of conditions and the following disclaimer in the 44d0027533SBill Paul# documentation and/or other materials provided with the distribution. 45d0027533SBill Paul# 3. All advertising materials mentioning features or use of this software 46d0027533SBill Paul# must display the following acknowledgement: 47d0027533SBill Paul# This model includes software developed by Christopher G. Demetriou. 48d0027533SBill Paul# This model includes software developed by Christos Zoulas 49d0027533SBill Paul# 4. The name of the author(s) may not be used to endorse or promote models 50d0027533SBill Paul# derived from this software without specific prior written permission 51d0027533SBill Paul# 52d0027533SBill Paul# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 53d0027533SBill Paul# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 54d0027533SBill Paul# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 55d0027533SBill Paul# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 56d0027533SBill Paul# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 57d0027533SBill Paul# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 58d0027533SBill Paul# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 59d0027533SBill Paul# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 60d0027533SBill Paul# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 61d0027533SBill Paul# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 62d0027533SBill Paul# 63d0027533SBill Paul# 64d0027533SBill Paulfunction collectline(f, line) { 65d0027533SBill Paul oparen = 0 66d0027533SBill Paul line = "" 67d0027533SBill Paul while (f <= NF) { 68d0027533SBill Paul if ($f == "#") { 69d0027533SBill Paul line = line "(" 70d0027533SBill Paul oparen = 1 71d0027533SBill Paul f++ 72d0027533SBill Paul continue 73d0027533SBill Paul } 74d0027533SBill Paul if (oparen) { 75d0027533SBill Paul line = line $f 76d0027533SBill Paul if (f < NF) 77d0027533SBill Paul line = line " " 78d0027533SBill Paul f++ 79d0027533SBill Paul continue 80d0027533SBill Paul } 81d0027533SBill Paul line = line $f 82d0027533SBill Paul if (f < NF) 83d0027533SBill Paul line = line " " 84d0027533SBill Paul f++ 85d0027533SBill Paul } 86d0027533SBill Paul if (oparen) 87d0027533SBill Paul line = line ")" 88d0027533SBill Paul return line 89d0027533SBill Paul} 90d0027533SBill PaulBEGIN { 91d0027533SBill Paul nmodels = nouis = 0 92d0027533SBill Paul hfile="miidevs.h" 93d0027533SBill Paul} 94d0027533SBill PaulNR == 1 { 95d0027533SBill Paul printf("/*\n") > hfile 96d0027533SBill Paul printf(" * THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT.\n") \ 97d0027533SBill Paul > hfile 98d0027533SBill Paul printf(" */\n") > hfile 99d0027533SBill Paul 100d0027533SBill Paul next 101d0027533SBill Paul} 102d0027533SBill Paul$1 == "oui" { 103d0027533SBill Paul nuios++ 104d0027533SBill Paul 105d0027533SBill Paul ouiindex[$2] = nouis; # record index for this name, for later. 106d0027533SBill Paul 107d0027533SBill Paul ouis[nouis, 1] = $2; # name 108d0027533SBill Paul ouis[nouis, 2] = $3; # id 109d0027533SBill Paul printf("#define\tMII_OUI_%s\t%s\t", ouis[nouis, 1], 110d0027533SBill Paul ouis[nouis, 2]) > hfile 111d0027533SBill Paul ouis[nouis, 3] = collectline(4, line) 112d0027533SBill Paul printf("/* %s */\n", ouis[nouis, 3]) > hfile 113d0027533SBill Paul next 114d0027533SBill Paul} 115d0027533SBill Paul$1 == "model" { 116d0027533SBill Paul nmodels++ 117d0027533SBill Paul 118d0027533SBill Paul models[nmodels, 1] = $2; # oui name 119d0027533SBill Paul models[nmodels, 2] = $3; # model id 120d0027533SBill Paul models[nmodels, 3] = $4; # id 121d0027533SBill Paul 122d0027533SBill Paul printf("#define\tMII_MODEL_%s_%s\t%s\n", models[nmodels, 1], 123d0027533SBill Paul models[nmodels, 2], models[nmodels, 3]) > hfile 124d0027533SBill Paul 125d0027533SBill Paul models[nmodels, 4] = collectline(5, line) 126d0027533SBill Paul 127d0027533SBill Paul printf("#define\tMII_STR_%s_%s\t\"%s\"\n", 128d0027533SBill Paul models[nmodels, 1], models[nmodels, 2], 129d0027533SBill Paul models[nmodels, 4]) > hfile 130d0027533SBill Paul 131d0027533SBill Paul next 132d0027533SBill Paul} 133d0027533SBill Paul{ 134d0027533SBill Paul print $0 > hfile 135d0027533SBill Paul} 136