* [PATCH 1/6] pci_ids: add device ids for STA2X11 device (aka ConneXT)
@ 2012-01-06 12:32 Alessandro Rubini
2012-01-06 20:11 ` Jesse Barnes
2012-01-06 20:18 ` Alessandro Rubini
0 siblings, 2 replies; 3+ messages in thread
From: Alessandro Rubini @ 2012-01-06 12:32 UTC (permalink / raw)
To: linux-kernel
Cc: giancarlo.asnaghi, alan, jbarnes, linux-pci, tglx, mingo, hpa,
x86
The chip is an I/O hub used by some Atom boards. Most of those
symbols are used in arch/x86/platform/sta2x11/sta2x11.c (to be
introduced) and in the specific drivers as well.
Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
Acked-by: Giancarlo Asnaghi <giancarlo.asnaghi@st.com>
Cc: Alan Cox <alan@linux.intel.com>
---
include/linux/pci_ids.h | 23 +++++++++++++++++++++++
1 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h
index 2aaee0c..31d77af 100644
--- a/include/linux/pci_ids.h
+++ b/include/linux/pci_ids.h
@@ -776,6 +776,29 @@
#define PCI_DEVICE_ID_ELSA_QS3000 0x3000
#define PCI_VENDOR_ID_STMICRO 0x104A
+#define PCI_DEVICE_ID_STMICRO_USB_HOST 0xCC00
+#define PCI_DEVICE_ID_STMICRO_USB_OHCI 0xCC01
+#define PCI_DEVICE_ID_STMICRO_USB_OTG 0xCC02
+#define PCI_DEVICE_ID_STMICRO_UART_HWFC 0xCC03
+#define PCI_DEVICE_ID_STMICRO_UART_NO_HWFC 0xCC04
+#define PCI_DEVICE_ID_STMICRO_SOC_DMA 0xCC05
+#define PCI_DEVICE_ID_STMICRO_SATA 0xCC06
+#define PCI_DEVICE_ID_STMICRO_I2C 0xCC07
+#define PCI_DEVICE_ID_STMICRO_SPI_HS 0xCC08
+#define PCI_DEVICE_ID_STMICRO_MAC 0xCC09
+#define PCI_DEVICE_ID_STMICRO_SDIO_EMMC 0xCC0A
+#define PCI_DEVICE_ID_STMICRO_SDIO 0xCC0B
+#define PCI_DEVICE_ID_STMICRO_GPIO 0xCC0C
+#define PCI_DEVICE_ID_STMICRO_VIP 0xCC0D
+#define PCI_DEVICE_ID_STMICRO_AUDIO_ROUTER_DMA 0xCC0E
+#define PCI_DEVICE_ID_STMICRO_AUDIO_ROUTER_SRCS 0xCC0F
+#define PCI_DEVICE_ID_STMICRO_AUDIO_ROUTER_MSPS 0xCC10
+#define PCI_DEVICE_ID_STMICRO_CAN 0xCC11
+#define PCI_DEVICE_ID_STMICRO_MLB 0xCC12
+#define PCI_DEVICE_ID_STMICRO_DBP 0xCC13
+#define PCI_DEVICE_ID_STMICRO_SATA_PHY 0xCC14
+#define PCI_DEVICE_ID_STMICRO_ESRAM 0xCC15
+#define PCI_DEVICE_ID_STMICRO_VIC 0xCC16
#define PCI_VENDOR_ID_BUSLOGIC 0x104B
#define PCI_DEVICE_ID_BUSLOGIC_MULTIMASTER_NC 0x0140
--
1.7.7.2
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/6] pci_ids: add device ids for STA2X11 device (aka ConneXT)
2012-01-06 12:32 [PATCH 1/6] pci_ids: add device ids for STA2X11 device (aka ConneXT) Alessandro Rubini
@ 2012-01-06 20:11 ` Jesse Barnes
2012-01-06 20:18 ` Alessandro Rubini
1 sibling, 0 replies; 3+ messages in thread
From: Jesse Barnes @ 2012-01-06 20:11 UTC (permalink / raw)
To: Alessandro Rubini
Cc: linux-kernel, giancarlo.asnaghi, alan, linux-pci, tglx, mingo,
hpa, x86
[-- Attachment #1: Type: text/plain, Size: 547 bytes --]
On Fri, 6 Jan 2012 13:32:41 +0100
Alessandro Rubini <rubini@gnudd.com> wrote:
> The chip is an I/O hub used by some Atom boards. Most of those
> symbols are used in arch/x86/platform/sta2x11/sta2x11.c (to be
> introduced) and in the specific drivers as well.
>
> Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
> Acked-by: Giancarlo Asnaghi <giancarlo.asnaghi@st.com>
> Cc: Alan Cox <alan@linux.intel.com>
> ---
Applied, thanks. Will the users land this release too?
--
Jesse Barnes, Intel Open Source Technology Center
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/6] pci_ids: add device ids for STA2X11 device (aka ConneXT)
2012-01-06 12:32 [PATCH 1/6] pci_ids: add device ids for STA2X11 device (aka ConneXT) Alessandro Rubini
2012-01-06 20:11 ` Jesse Barnes
@ 2012-01-06 20:18 ` Alessandro Rubini
1 sibling, 0 replies; 3+ messages in thread
From: Alessandro Rubini @ 2012-01-06 20:18 UTC (permalink / raw)
To: jbarnes
Cc: linux-kernel, giancarlo.asnaghi, alan, linux-pci, tglx, mingo,
hpa, x86
> Applied, thanks. Will the users land this release too?
It's a lot of code, and I'm working on it. I'll have patches for the
individual drivers over the next months.
The main user, the arch/x86/platform/sta2x11 place is almost ready but
I want to test better approaches internally rather then submitting and
fixing soon after.
thanks
/alessandro
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-01-06 20:19 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-06 12:32 [PATCH 1/6] pci_ids: add device ids for STA2X11 device (aka ConneXT) Alessandro Rubini
2012-01-06 20:11 ` Jesse Barnes
2012-01-06 20:18 ` Alessandro Rubini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).