Expand PMF_FN_* macros.
[netbsd-mini2440.git] / sys / dev / mca / devlist2h.awk
blobc5c2b95c359ab32a10cae9b1198b5d949148875c
1 #! /usr/bin/awk -f
2 # $NetBSD: devlist2h.awk,v 1.1.30.4 2005/03/04 16:43:50 skrll Exp $
4 # Copyright (c) 1995, 1996 Christopher G. Demetriou
5 # All rights reserved.
7 # Redistribution and use in source and binary forms, with or without
8 # modification, are permitted provided that the following conditions
9 # are met:
10 # 1. Redistributions of source code must retain the above copyright
11 # notice, this list of conditions and the following disclaimer.
12 # 2. Redistributions in binary form must reproduce the above copyright
13 # notice, this list of conditions and the following disclaimer in the
14 # documentation and/or other materials provided with the distribution.
15 # 3. All advertising materials mentioning features or use of this software
16 # must display the following acknowledgement:
17 # This product includes software developed by Christopher G. Demetriou.
18 # 4. The name of the author may not be used to endorse or promote products
19 # derived from this software without specific prior written permission
21 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 # Adapted for MCA needs by Jaromir Dolecek.
35 BEGIN {
36 nproducts = nvendors = blanklines = 0
37 dfile="mcadevs_data.h"
38 hfile="mcadevs.h"
39 FS=" "
40 alias=""
41 id=""
43 NR == 1 {
44 VERSION = $0
45 gsub("\\$", "", VERSION)
46 gsub(/ $/, "", VERSION)
48 printf("/*\t$NetBSD" "$\t*/\n\n") > dfile
49 printf("/*\n") > dfile
50 printf(" * THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT.\n") \
51 > dfile
52 printf(" *\n") > dfile
53 printf(" * generated from:\n") > dfile
54 printf(" *\t%s\n", VERSION) > dfile
55 printf(" */\n") > dfile
57 printf("/*\t$NetBSD" "$\t*/\n\n") > hfile
58 printf("/*\n") > hfile
59 printf(" * THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT.\n") \
60 > hfile
61 printf(" *\n") > hfile
62 printf(" * generated from:\n") > hfile
63 printf(" *\t%s\n", VERSION) > hfile
64 printf(" */\n") > hfile
66 next
69 NF > 0 && $1 == "product" {
70 nproducts++
72 alias = $3
73 id = $2
75 products[nproducts, 1] = $2; # product id
77 # get name - it's enclosed in parenthesis
78 sub("[^\"]*\"", "")
79 sub("\".*", "")
80 products[nproducts, 2] = $0; # name
82 # if third parameter is an alias, print appropriate entry to hfile,
83 # otherwise just store the entry for later processing
84 if (substr(alias, 1, 1) != "\"") {
85 printf("#define\tMCA_PRODUCT_%s\t%s\t/* %s */\n", alias, id,\
86 $0) > hfile
91 if ($0 == "")
92 blanklines++
93 if (blanklines < 2) {
94 print $0 > hfile
95 print $0 > dfile
97 else if (blanklines == 2) {
98 printf("\n/*\n * List of known MCA devices\n */\n\n") > dfile
99 printf("\n/*\n * Supported MCA devices\n */\n\n") > hfile
102 next
104 END {
105 # print out the match tables
107 printf("const struct mca_knowndev mca_knowndevs[] = {\n") > dfile
108 for (i = 1; i <= nproducts; i++) {
109 printf(" { %s,\t\"%s\" },\n", products[i, 1],
110 products[i, 2]) > dfile
112 printf(" { 0, NULL, }\n") > dfile
113 printf("};\n") > dfile
114 close(dfile)
115 close(hfile)