Hi, The information about PCI devices is scattered about the kernel and, consequently, is inconsistent. This patch puts the PCI/IDE bridge information into a text database along with the data from include/linux/pci_ids.h and drivers/pci/pci.ids. I may have mis- typed a few things, but the 2.4.0-test11 kernel seems to compile and work for me. Below is the README from the patch and the patch lives here: ftp://autogen.linuxave.net/pub/PCIDEV.tgz
This patch will unify the PCI device information between the PCI driver database (pci.ids), the PCI-IDE bridges (ide-pci.c) and the header that should enumerate all pci devices (pci_ids.h). It does this by putting all the data into a single file and tagging the values with names. These named values are then inserted into the output files. This will provide for guaranteed consistency, which is not now the case. In fact, there were some unresolvable inconsistencies in the data that are marked with ``FIXME'' comments. The patches are against linux-2.4.0-test11. There are other PCI device tables that could be generated as well. As it happens, though, I am only interested in PCI/IDE bridges. The rest are left as exercises for the reader. :-) Hand edited files: pci.def -- replacement for drivers/pci/pci.ids pci_ids.tpl -- Template for producing generated files :mkpcidev -- Script for constructing files (read before use!) PATCH -- a patch for the following files: drivers/pci/gen-devlist.c -- obsolete arch/i386/kernel/pci-irq.c drivers/char/serial.c drivers/pci/names.c drivers/pci/Makefile drivers/ide/ide-pci.c drivers/parport/parport_pc.c Generated files: drivers/pci/devlist.h replacement for devlist.h and classlist.h drivers/ide/ide-pci.h Replacement for hand-coded tables in ide-pci.c include/linux/pci_ids.h replacement The patches mostly remove data that are now generated. However, some were changed because it is no longer possible to create #define-d values with mixed case (a lower case `x'). For the ide-pci.c file, however, it also renames macros that are inconsistent with the device names already defined in pci.ids (pci.def). ============= The tool that makes this all happen is: http://AutoGen.SourceForge.net/