svn commit: r278407 - stable/10/sys/dev/uart

Marius Strobl marius at FreeBSD.org
Sun Feb 8 21:41:20 UTC 2015


Author: marius
Date: Sun Feb  8 21:41:18 2015
New Revision: 278407
URL: https://svnweb.freebsd.org/changeset/base/278407

Log:
  MFC: r266744, r267712, r276351, r277043
  
  - Add PCI ID for AMT based serial interface found on the Lenovo T61.
  - add support for MosChip MCS9922...  This is found on an ExpressCard.. [1]
  - Add PCI ID for the Oxford Semiconductor OXPCIe952 device.
  
  PR:	186891 [1]

Modified:
  stable/10/sys/dev/uart/uart_bus_pci.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/uart/uart_bus_pci.c
==============================================================================
--- stable/10/sys/dev/uart/uart_bus_pci.c	Sun Feb  8 21:31:49 2015	(r278406)
+++ stable/10/sys/dev/uart/uart_bus_pci.c	Sun Feb  8 21:41:18 2015	(r278407)
@@ -112,12 +112,15 @@ static const struct pci_id pci_ns8250_id
 	8 * DEFAULT_RCLK },
 { 0x1415, 0x950b, 0xffff, 0, "Oxford Semiconductor OXCB950 Cardbus 16950 UART",
 	0x10, 16384000 },
+{ 0x1415, 0xc120, 0xffff, 0, "Oxford Semiconductor OXPCIe952 PCIe 16950 UART",
+	0x10 },
 { 0x14e4, 0x4344, 0xffff, 0, "Sony Ericsson GC89 PC Card", 0x10},
 { 0x151f, 0x0000, 0xffff, 0, "TOPIC Semiconductor TP560 56k modem", 0x10 },
 { 0x1fd4, 0x1999, 0x1fd4, 0x0001, "Sunix SER5xxxx Serial Port", 0x10,
 	8 * DEFAULT_RCLK },
 { 0x8086, 0x1c3d, 0xffff, 0, "Intel AMT - KT Controller", 0x10 },
 { 0x8086, 0x1d3d, 0xffff, 0, "Intel C600/X79 Series Chipset KT Controller", 0x10 },
+{ 0x8086, 0x2a07, 0xffff, 0, "Intel AMT - PM965/GM965 KT Controller", 0x10 },
 { 0x8086, 0x2e17, 0xffff, 0, "4 Series Chipset Serial KT Controller", 0x10 },
 { 0x8086, 0x3b67, 0xffff, 0, "5 Series/3400 Series Chipset KT Controller",
 	0x10 },
@@ -136,6 +139,8 @@ static const struct pci_id pci_ns8250_id
 	"MosChip MCS9901 PCIe to Peripheral Controller", 0x10 },
 { 0x9710, 0x9904, 0xa000, 0x1000,
 	"MosChip MCS9904 PCIe to Peripheral Controller", 0x10 },
+{ 0x9710, 0x9922, 0xa000, 0x1000,
+	"MosChip MCS9922 PCIe to Peripheral Controller", 0x10 },
 { 0xdeaf, 0x9051, 0xffff, 0, "Middle Digital PC Weasel Serial Port", 0x10 },
 { 0xffff, 0, 0xffff, 0, NULL, 0, 0}
 };


More information about the svn-src-all mailing list