1 # This file converts given pci.db to "C" source and header files
2 # For latest version of pci ids see: http://pciids.sf.net
3 # Copyright 2002 Nick Kurshev
5 # Usage: awk -f pci_db2c.awk pci.db
7 # Tested with Gawk v 3.0.x and Mawk 1.3.3
8 # But it should work with standard Awk implementations (hopefully).
9 # (Nobody tested it with Nawk, but it should work, too).
11 # This file is part of MPlayer.
13 # MPlayer is free software; you can redistribute it and/or modify
14 # it under the terms of the GNU General Public License as published by
15 # the Free Software Foundation; either version 2 of the License, or
16 # (at your option) any later version.
18 # MPlayer is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 # GNU General Public License for more details.
23 # You should have received a copy of the GNU General Public License along
24 # with MPlayer; if not, write to the Free Software Foundation, Inc.,
25 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
30 # check for arguments:
31 print "Usage awk -f pci_db2c.awk pci.db (and make sure pci.db file exists first)";
35 with_pci_db =
ARGV[2];
36 vendor_file =
"vidix/pci_vendors.h";
37 ids_file =
"vidix/pci_ids.h"
38 name_file =
"vidix/pci_names.c"
39 name_h_file =
"vidix/pci_names.h"
40 dev_ids_file =
"vidix/pci_dev_ids.c"
42 # print out head lines
43 print_head
(vendor_file
);
45 print_head
(name_file
);
46 print_head
(name_h_file
);
47 print_head
(dev_ids_file
);
48 print_includes
(dev_ids_file
);
49 print "#ifndef MPLAYER_PCI_VENDORS_H" >vendor_file
50 print "#define MPLAYER_PCI_VENDORS_H">vendor_file
52 print "#ifndef MPLAYER_PCI_IDS_H" >ids_file
53 print "#define MPLAYER_PCI_IDS_H">ids_file
55 print "#include \"pci_vendors.h\"">ids_file
58 print "#ifndef MPLAYER_PCI_NAMES_H" >name_h_file
59 print "#define MPLAYER_PCI_NAMES_H">name_h_file
61 print_name_struct
(name_h_file
);
62 print "#include <stddef.h>">name_file
63 print "#include \"pci_names.h\"">name_file
65 print "#include \"pci_dev_ids.c\"">name_file
67 print "static struct vendor_id_s vendor_ids[] = {">name_file
71 while(getline <in_file
)
75 n=
split($
0, field
, "[\t]");
76 name_field = kill_double_quoting
(field
[3])
77 if(field
[1] ==
"v" && length(field
[3])>0 && field
[4] ==
"0")
80 svend_name = get_short_vendor_name
(field
[3])
81 printf("#define VENDOR_%s\t", svend_name
) >vendor_file
;
82 if(length(svend_name
) < 9) printf("\t") >vendor_file
;
83 printf("0x%s /*%s*/\n",field
[2], name_field
) >vendor_file
;
84 if (with_pci_db
) printf("{ 0x%s, \"%s\", dev_lst_%s },\n",field
[2], name_field
, field
[2]) >name_file
;
85 printf("/* Vendor: %s: %s */\n", field
[2], name_field
) > ids_file
86 if(first_pass ==
1) { first_pass=
0; }
87 else { print "{ 0xFFFF, NULL }\n};" >dev_ids_file
; }
88 printf("static const struct device_id_s dev_lst_%s[]={\n", field
[2])>dev_ids_file
90 if(field
[1] ==
"d" && length(field
[3])>0 && field
[4] ==
"0")
92 sdev_name = get_short_device_name
(field
[3])
93 full_name =
sprintf("#define DEVICE_%s_%s", svend_name
, sdev_name
);
94 printf("%s\t", full_name
) >ids_file
95 if(length(full_name
) < 9) printf("\t") >ids_file
;
96 if(length(full_name
) < 17) printf("\t") >ids_file
;
97 if(length(full_name
) < 25) printf("\t") >ids_file
;
98 if(length(full_name
) < 32) printf("\t") >ids_file
;
99 if(length(full_name
) < 40) printf("\t") >ids_file
;
100 if(length(full_name
) < 48) printf("\t") >ids_file
;
101 printf("0x%s /*%s*/\n", substr(field
[2], 5), name_field
) >ids_file
102 printf("{ 0x%s, \"%s\" },\n", substr(field
[2], 5), name_field
) >dev_ids_file
104 if(field
[1] ==
"s" && length(field
[3])>0 && field
[4] ==
"0")
106 subdev_name = get_short_subdevice_name
(field
[3])
107 full_name =
sprintf("#define SUBDEVICE_%s_%s", svend_name
, subdev_name
)
108 printf("\t%s\t", full_name
) >ids_file
109 if(length(full_name
) < 9) printf("\t") >ids_file
;
110 if(length(full_name
) < 17) printf("\t") >ids_file
;
111 if(length(full_name
) < 25) printf("\t") >ids_file
;
112 if(length(full_name
) < 32) printf("\t") >ids_file
;
113 if(length(full_name
) < 40) printf("\t") >ids_file
;
114 printf("0x%s /*%s*/\n", substr(field
[2], 9), name_field
) >ids_file
117 #print "Total lines parsed:", line;
119 print "#endif /* MPLAYER_PCI_VENDORS_H */">vendor_file
121 print "#endif /* MPLAYER_PCI_IDS_H */">ids_file
123 print "#endif /* MPLAYER_PCI_NAMES_H */">name_h_file
124 if (with_pci_db
) print "};">name_file
125 print "{ 0xFFFF, NULL }" >dev_ids_file
;
126 print "};">dev_ids_file
127 print_func_bodies
(name_file
);
130 function print_includes
(out_file
)
132 print "#include <stdlib.h>" >out_file
;
133 print "#include \"pci_names.h\"" >out_file
;
137 function print_head
( out_file
)
139 print "/*" >out_file
;
140 printf(" * File: %s\n", out_file
) >out_file
;
141 printf(" * This file was generated automatically. Don't modify it.\n") >out_file
;
142 print "*/" >out_file
;
146 function print_name_struct
(out_file
)
149 print "struct device_id_s" >out_file
151 print "\tunsigned short\tid;" >out_file
152 print "\tconst char *\tname;" >out_file
155 print "struct vendor_id_s" >out_file
157 print "\tunsigned short\tid;" >out_file
158 print "\tconst char *\tname;" >out_file
159 print "\tconst struct device_id_s *\tdev_list;" >out_file
161 print "const char *pci_vendor_name(unsigned short id);">out_file
162 print "const char *pci_device_name(unsigned short vendor_id, unsigned short device_id);">out_file
167 function print_func_bodies
(out_file
)
170 print "const char *pci_vendor_name(unsigned short id)" >out_file
173 print " unsigned i;" >out_file
174 print " for(i=0;i<sizeof(vendor_ids)/sizeof(struct vendor_id_s);i++)">out_file
176 print "\tif(vendor_ids[i].id == id) return vendor_ids[i].name;" >out_file
179 print " return NULL;" >out_file
182 print "const char *pci_device_name(unsigned short vendor_id, unsigned short device_id)" >out_file
185 print " unsigned i, j;" >out_file
186 print " for(i=0;i<sizeof(vendor_ids)/sizeof(struct vendor_id_s);i++)">out_file
188 print "\tif(vendor_ids[i].id == vendor_id)" >out_file
189 print "\t{" >out_file
190 print "\t j=0;" >out_file
191 print "\t while(vendor_ids[i].dev_list[j].id != 0xFFFF)" >out_file
192 print "\t {">out_file
193 print "\t\tif(vendor_ids[i].dev_list[j].id == device_id) return vendor_ids[i].dev_list[j].name;">out_file
194 print "\t\tj++;">out_file
195 print "\t };">out_file
196 print "\t break;" >out_file
197 print "\t}" >out_file
200 print " return NULL;">out_file
205 function kill_double_quoting
(fld
)
207 n=
split(fld
,phrases
, "[\"]");
209 for(i=
2;i
<=n
;i
++) new_fld =
sprintf("%s\\\"%s", new_fld
, phrases
[i
])
213 function init_name_db
()
218 function init_device_db
()
220 # delete device_names
221 for( i in device_names
) delete device_names
[i
];
223 # delete subdevice_names
224 for( i in subdevice_names
) delete subdevice_names
[i
];
225 subdevice_names
[1] =
""
228 function get_short_vendor_name
(from
)
230 n=
split(from
, name
, "[ ]");
231 new_name =
toupper(name
[1]);
232 if(length(new_name
)<3) new_name =
sprintf("%s_%s", new_name
, toupper(name
[2]));
233 n=
split(new_name
, name
, "[^0-9A-Za-z]");
235 for(i=
2;i
<=n
;i
++) svendor=
sprintf("%s%s%s", svendor
, length(name
[i
])?
"_":"", name
[i
]);
239 while(new_name in vendor_names
)
241 new_name =
sprintf("%s%u", svendor
, vend_suffix
)
242 vend_suffix = vend_suffix
+ 1;
244 # Add new name in array of vendor's names
245 vendor_names
[new_name
] = new_name
249 function get_short_device_name
(from_name
)
251 n=
split(from_name
, name
, "[ ]");
252 new_name =
toupper(name
[1]);
253 if(length(name
[2])) new_name =
sprintf("%s_%s", new_name
, toupper(name
[2]));
254 if(length(name
[3])) new_name =
sprintf("%s_%s", new_name
, toupper(name
[3]));
255 n=
split(new_name
, name
, "[^0-9A-Za-z]");
257 for(i=
2;i
<=n
;i
++) sdevice=
sprintf("%s%s%s", sdevice
, length(name
[i
])?
"_":"", name
[i
]);
261 while(new_name in device_names
)
263 new_name =
sprintf("%s%u", sdevice
, dev_suffix
)
264 dev_suffix = dev_suffix
+ 1;
266 # Add new name in array of device names
267 device_names
[new_name
] = new_name
271 function get_short_subdevice_name
(from_name
)
273 n=
split(from_name
, name
, "[ ]");
274 new_name =
toupper(name
[1]);
275 if(length(name
[2])) new_name =
sprintf("%s_%s", new_name
, toupper(name
[2]));
276 if(length(name
[3])) new_name =
sprintf("%s_%s", new_name
, toupper(name
[3]));
277 n=
split(new_name
, name
, "[^0-9A-Za-z]");
279 for(i=
2;i
<=n
;i
++) ssdevice=
sprintf("%s%s%s", ssdevice
, length(name
[i
])?
"_":"", name
[i
]);
283 while(new_name in subdevice_names
)
285 new_name =
sprintf("%s%u", ssdevice
, sdev_suffix
)
286 sdev_suffix = sdev_suffix
+ 1;
288 # Add new name in array of subdevice names
289 subdevice_names
[new_name
] = new_name