* [PATCH] tty: serial: 8250: Add Brainboxes XC devices
@ 2025-03-10 22:27 Cameron Williams
2025-03-11 6:56 ` Cameron Williams
[not found] ` <AM0PR02MB3793F5DE28571BED66028FDBC4D12@AM0PR02MB3793.eurprd02.prod.outlook.com>
0 siblings, 2 replies; 3+ messages in thread
From: Cameron Williams @ 2025-03-10 22:27 UTC (permalink / raw)
To: gregkh, jirislaby, linux-serial, linux-kernel
These ExpressCard devices use the OxPCIE chip and can be used with
this driver.
Signed-off-by: Cameron Williams <cang1@live.co.uk>
---
drivers/tty/serial/8250/8250_pci.c | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/drivers/tty/serial/8250/8250_pci.c b/drivers/tty/serial/8250/8250_pci.c
index df4d0d832..911774fb8 100644
--- a/drivers/tty/serial/8250/8250_pci.c
+++ b/drivers/tty/serial/8250/8250_pci.c
@@ -2727,6 +2727,22 @@ static struct pci_serial_quirk pci_serial_quirks[] = {
.init = pci_oxsemi_tornado_init,
.setup = pci_oxsemi_tornado_setup,
},
+ {
+ .vendor = PCI_VENDOR_ID_INTASHIELD,
+ .device = 0x4026,
+ .subvendor = PCI_ANY_ID,
+ .subdevice = PCI_ANY_ID,
+ .init = pci_oxsemi_tornado_init,
+ .setup = pci_oxsemi_tornado_setup,
+ },
+ {
+ .vendor = PCI_VENDOR_ID_INTASHIELD,
+ .device = 0x4021,
+ .subvendor = PCI_ANY_ID,
+ .subdevice = PCI_ANY_ID,
+ .init = pci_oxsemi_tornado_init,
+ .setup = pci_oxsemi_tornado_setup,
+ },
{
.vendor = PCI_VENDOR_ID_INTEL,
.device = 0x8811,
@@ -5599,6 +5615,20 @@ static const struct pci_device_id serial_pci_tbl[] = {
PCI_ANY_ID, PCI_ANY_ID,
0, 0,
pbn_oxsemi_1_15625000 },
+ /*
+ * Brainboxes XC-235
+ */
+ { PCI_VENDOR_ID_INTASHIELD, 0x4026,
+ PCI_ANY_ID, PCI_ANY_ID,
+ 0, 0,
+ pbn_oxsemi_1_15625000 },
+ /*
+ * Brainboxes XC-475
+ */
+ { PCI_VENDOR_ID_INTASHIELD, 0x4021,
+ PCI_ANY_ID, PCI_ANY_ID,
+ 0, 0,
+ pbn_oxsemi_1_15625000 },
/*
* Perle PCI-RAS cards
--
2.48.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] tty: serial: 8250: Add Brainboxes XC devices
2025-03-10 22:27 [PATCH] tty: serial: 8250: Add Brainboxes XC devices Cameron Williams
@ 2025-03-11 6:56 ` Cameron Williams
[not found] ` <AM0PR02MB3793F5DE28571BED66028FDBC4D12@AM0PR02MB3793.eurprd02.prod.outlook.com>
1 sibling, 0 replies; 3+ messages in thread
From: Cameron Williams @ 2025-03-11 6:56 UTC (permalink / raw)
To: linux-serial, stable
Cc'ing stable
Cc: stable@vger.kernel.org
On 10 March 2025 22:27:10 GMT, Cameron Williams <cang1@live.co.uk> wrote:
>These ExpressCard devices use the OxPCIE chip and can be used with
>this driver.
>
>Signed-off-by: Cameron Williams <cang1@live.co.uk>
>---
> drivers/tty/serial/8250/8250_pci.c | 30 ++++++++++++++++++++++++++++++
> 1 file changed, 30 insertions(+)
>
>diff --git a/drivers/tty/serial/8250/8250_pci.c b/drivers/tty/serial/8250/8250_pci.c
>index df4d0d832..911774fb8 100644
>--- a/drivers/tty/serial/8250/8250_pci.c
>+++ b/drivers/tty/serial/8250/8250_pci.c
>@@ -2727,6 +2727,22 @@ static struct pci_serial_quirk pci_serial_quirks[] = {
> .init = pci_oxsemi_tornado_init,
> .setup = pci_oxsemi_tornado_setup,
> },
>+ {
>+ .vendor = PCI_VENDOR_ID_INTASHIELD,
>+ .device = 0x4026,
>+ .subvendor = PCI_ANY_ID,
>+ .subdevice = PCI_ANY_ID,
>+ .init = pci_oxsemi_tornado_init,
>+ .setup = pci_oxsemi_tornado_setup,
>+ },
>+ {
>+ .vendor = PCI_VENDOR_ID_INTASHIELD,
>+ .device = 0x4021,
>+ .subvendor = PCI_ANY_ID,
>+ .subdevice = PCI_ANY_ID,
>+ .init = pci_oxsemi_tornado_init,
>+ .setup = pci_oxsemi_tornado_setup,
>+ },
> {
> .vendor = PCI_VENDOR_ID_INTEL,
> .device = 0x8811,
>@@ -5599,6 +5615,20 @@ static const struct pci_device_id serial_pci_tbl[] = {
> PCI_ANY_ID, PCI_ANY_ID,
> 0, 0,
> pbn_oxsemi_1_15625000 },
>+ /*
>+ * Brainboxes XC-235
>+ */
>+ { PCI_VENDOR_ID_INTASHIELD, 0x4026,
>+ PCI_ANY_ID, PCI_ANY_ID,
>+ 0, 0,
>+ pbn_oxsemi_1_15625000 },
>+ /*
>+ * Brainboxes XC-475
>+ */
>+ { PCI_VENDOR_ID_INTASHIELD, 0x4021,
>+ PCI_ANY_ID, PCI_ANY_ID,
>+ 0, 0,
>+ pbn_oxsemi_1_15625000 },
>
> /*
> * Perle PCI-RAS cards
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] tty: serial: 8250: Add Brainboxes XC devices
[not found] ` <AM0PR02MB3793F5DE28571BED66028FDBC4D12@AM0PR02MB3793.eurprd02.prod.outlook.com>
@ 2025-03-11 6:58 ` Greg KH
0 siblings, 0 replies; 3+ messages in thread
From: Greg KH @ 2025-03-11 6:58 UTC (permalink / raw)
To: Cameron Williams; +Cc: jirislaby, linux-serial, linux-kernel, stable
On Tue, Mar 11, 2025 at 06:54:00AM +0000, Cameron Williams wrote:
> Cc'ing stable
>
> Cc: stable@vger.kernel.org
>
<formletter>
This is not the correct way to submit patches for inclusion in the
stable kernel tree. Please read:
https://www.kernel.org/doc/html/latest/process/stable-kernel-rules.html
for how to do this properly.
</formletter>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-03-11 6:59 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-10 22:27 [PATCH] tty: serial: 8250: Add Brainboxes XC devices Cameron Williams
2025-03-11 6:56 ` Cameron Williams
[not found] ` <AM0PR02MB3793F5DE28571BED66028FDBC4D12@AM0PR02MB3793.eurprd02.prod.outlook.com>
2025-03-11 6:58 ` Greg KH
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox