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