2005-10-20 06:06:50

by David Daney

[permalink] [raw]
Subject: Patch: ATI Xilleon port 4/11 Xilleon PCI IDs

This is the fourth part of my Xilleon port.

I am sending the full set of patches to [email protected]
which is archived at: http://www.linux-mips.org/archives/

Only the patches that touch generic parts of the kernel are coming
here.

This patch adds some PCI ids for ATI's Xilleon family of SOCs.

Patch against 2.6.14-rc2 from linux-mips.org

Signed-off-by: David Daney <[email protected]>

Add xilleon PCI ids.

---
commit 43a5e067ae126cee417017e8c69dfde18b82e670
tree 4251b31b2be06f724ecf0ff3f63805f09d3bffca
parent d559c11c9fecd8ec2a952982083e3a1fe118ab09
author David Daney <[email protected]> Tue, 04 Oct 2005 13:41:55 -0700
committer David Daney <[email protected]> Tue, 04 Oct 2005 13:41:55 -0700

include/linux/pci_ids.h | 21 +++++++++++++++++++++
1 files changed, 21 insertions(+), 0 deletions(-)

diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h
--- a/include/linux/pci_ids.h
+++ b/include/linux/pci_ids.h
@@ -370,6 +370,27 @@
#define PCI_DEVICE_ID_ATI_IXP400_IDE 0x4376
#define PCI_DEVICE_ID_ATI_IXP400_SATA 0x4379

+/* Xilleon X210 chip */
+#define PCI_DEVICE_ID_ATI_X210_HBIU 0x4860
+#define PCI_DEVICE_ID_ATI_X210_IDE 0x4861
+#define PCI_DEVICE_ID_ATI_X210_USB 0x4862
+#define PCI_DEVICE_ID_ATI_X210_DAIO 0x4863
+#define PCI_DEVICE_ID_ATI_X210_MODEM 0x4864
+
+/* Xilleon X226 chip */
+#define PCI_DEVICE_ID_ATI_X226_HBIU 0x4865
+#define PCI_DEVICE_ID_ATI_X226_IDE 0x4866
+#define PCI_DEVICE_ID_ATI_X226_USB 0x4867
+#define PCI_DEVICE_ID_ATI_X226_DAIO 0x4868
+#define PCI_DEVICE_ID_ATI_X226_MODEM 0x4869
+
+/* Xilleon X225 chip */
+#define PCI_DEVICE_ID_ATI_X225_HBIU 0x4855
+#define PCI_DEVICE_ID_ATI_X225_IDE 0x4856
+#define PCI_DEVICE_ID_ATI_X225_USB 0x4857
+#define PCI_DEVICE_ID_ATI_X225_DAIO 0x4858
+#define PCI_DEVICE_ID_ATI_X225_MODEM 0x4859
+
#define PCI_VENDOR_ID_VLSI 0x1004
#define PCI_DEVICE_ID_VLSI_82C592 0x0005
#define PCI_DEVICE_ID_VLSI_82C593 0x0006



2005-10-21 00:56:35

by Greg KH

[permalink] [raw]
Subject: Re: Patch: ATI Xilleon port 4/11 Xilleon PCI IDs

On Wed, Oct 19, 2005 at 11:06:44PM -0700, David Daney wrote:
> This is the fourth part of my Xilleon port.
>
> I am sending the full set of patches to [email protected]
> which is archived at: http://www.linux-mips.org/archives/
>
> Only the patches that touch generic parts of the kernel are coming
> here.
>
> This patch adds some PCI ids for ATI's Xilleon family of SOCs.

Does your driver need all of these ids? If not, please only include the
ones needed, we are removing all of the unused ids, as we don't need to
keep a file with all possible pci ids in the kernel tree.

thanks,

greg k-h