1156230Smux#! /usr/bin/awk -f
2156230Smux#	$NetBSD: devlist2h.awk,v 1.2 1998/09/05 14:42:06 christos Exp $
3156230Smux
4156230Smux#-
5156230Smux# Copyright (c) 1998 The NetBSD Foundation, Inc.
6156230Smux# All rights reserved.
7156230Smux#
8156230Smux# This code is derived from software contributed to The NetBSD Foundation
9156230Smux# by Christos Zoulas.
10156230Smux#
11156230Smux# Redistribution and use in source and binary forms, with or without
12156230Smux# modification, are permitted provided that the following conditions
13156230Smux# are met:
14156230Smux# 1. Redistributions of source code must retain the above copyright
15156230Smux#    notice, this list of conditions and the following disclaimer.
16156230Smux# 2. Redistributions in binary form must reproduce the above copyright
17156230Smux#    notice, this list of conditions and the following disclaimer in the
18156230Smux#    documentation and/or other materials provided with the distribution.
19156230Smux#
20156230Smux# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21156230Smux# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22156230Smux# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23156230Smux# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24156230Smux# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25156230Smux# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26156230Smux# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27156230Smux# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28156230Smux# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29156230Smux# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30156230Smux# POSSIBILITY OF SUCH DAMAGE.
31156230Smux#
32156230Smux# Copyright (c) 1995, 1996 Christopher G. Demetriou
33156230Smux# All rights reserved.
34156230Smux#
35156230Smux# Redistribution and use in source and binary forms, with or without
36156230Smux# modification, are permitted provided that the following conditions
37156230Smux# are met:
38156230Smux# 1. Redistributions of source code must retain the above copyright
39156230Smux#    notice, this list of conditions and the following disclaimer.
40156230Smux# 2. Redistributions in binary form must reproduce the above copyright
41156230Smux#    notice, this list of conditions and the following disclaimer in the
42156230Smux#    documentation and/or other materials provided with the distribution.
43156230Smux# 3. All advertising materials mentioning features or use of this software
44156230Smux#    must display the following acknowledgement:
45#      This model includes software developed by Christopher G. Demetriou.
46#      This model includes software developed by Christos Zoulas
47# 4. The name of the author(s) may not be used to endorse or promote models
48#    derived from this software without specific prior written permission
49#
50# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
51# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
52# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
53# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
54# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
55# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
56# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
57# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
58# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
59# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
60#
61# $FreeBSD: releng/10.3/sys/tools/miidevs2h.awk 263687 2014-03-24 13:48:04Z emaste $
62#
63function collectline(f, line) {
64	oparen = 0
65	line = ""
66	while (f <= NF) {
67		if ($f == "#") {
68			line = line "("
69			oparen = 1
70			f++
71			continue
72		}
73		if (oparen) {
74			line = line $f
75			if (f < NF)
76				line = line " "
77			f++
78			continue
79		}
80		line = line $f
81		if (f < NF)
82			line = line " "
83		f++
84	}
85	if (oparen)
86		line = line ")"
87	return line
88}
89BEGIN {
90	nmodels = nouis = 0
91	hfile="miidevs.h"
92}
93NR == 1 {
94	VERSION = $0
95	gsub("\\$", "", VERSION)
96
97	printf("/* \$FreeBSD\$ */\n\n") > hfile
98	printf("/*\n") > hfile
99	printf(" * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.\n") \
100	    > hfile
101	printf(" *\n") > hfile
102	printf(" * generated from:\n") > hfile
103	printf(" *\t%s\n", VERSION) > hfile
104	printf(" */\n") > hfile
105
106	next
107}
108$1 == "oui" {
109	nuios++
110
111	ouiindex[$2] = nouis;		# record index for this name, for later.
112
113	ouis[nouis, 1] = $2;		# name
114	ouis[nouis, 2] = $3;		# id
115	printf("#define\tMII_OUI_%s\t%s\t", ouis[nouis, 1],
116	    ouis[nouis, 2]) > hfile
117	ouis[nouis, 3] = collectline(4, line)
118	printf("/* %s */\n", ouis[nouis, 3]) > hfile
119	next
120}
121$1 == "model" {
122	nmodels++
123
124	models[nmodels, 1] = $2;		# oui name
125	models[nmodels, 2] = $3;		# model id
126	models[nmodels, 3] = $4;		# id
127
128	printf("#define\tMII_MODEL_%s_%s\t%s\n", models[nmodels, 1],
129	    models[nmodels, 2], models[nmodels, 3]) > hfile
130
131	models[nmodels, 4] = collectline(5, line)
132
133	printf("#define\tMII_STR_%s_%s\t\"%s\"\n",
134	    models[nmodels, 1], models[nmodels, 2],
135	    models[nmodels, 4]) > hfile
136
137	next
138}
139{
140	print $0 > hfile
141}
142