|
@@ -258,6 +258,8 @@ enum pch_uart_num_t {
|
|
|
pch_ml7213_uart2,
|
|
|
pch_ml7223_uart0,
|
|
|
pch_ml7223_uart1,
|
|
|
+ pch_ml7831_uart0,
|
|
|
+ pch_ml7831_uart1,
|
|
|
};
|
|
|
|
|
|
static struct pch_uart_driver_data drv_dat[] = {
|
|
@@ -270,6 +272,8 @@ static struct pch_uart_driver_data drv_dat[] = {
|
|
|
[pch_ml7213_uart2] = {PCH_UART_2LINE, 2},
|
|
|
[pch_ml7223_uart0] = {PCH_UART_8LINE, 0},
|
|
|
[pch_ml7223_uart1] = {PCH_UART_2LINE, 1},
|
|
|
+ [pch_ml7831_uart0] = {PCH_UART_8LINE, 0},
|
|
|
+ [pch_ml7831_uart1] = {PCH_UART_2LINE, 1},
|
|
|
};
|
|
|
|
|
|
static unsigned int default_baud = 9600;
|
|
@@ -1553,6 +1557,10 @@ static DEFINE_PCI_DEVICE_TABLE(pch_uart_pci_id) = {
|
|
|
.driver_data = pch_ml7223_uart0},
|
|
|
{PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x800D),
|
|
|
.driver_data = pch_ml7223_uart1},
|
|
|
+ {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8811),
|
|
|
+ .driver_data = pch_ml7831_uart0},
|
|
|
+ {PCI_DEVICE(PCI_VENDOR_ID_ROHM, 0x8812),
|
|
|
+ .driver_data = pch_ml7831_uart1},
|
|
|
{0,},
|
|
|
};
|
|
|
|