mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-03 12:34:19 +00:00
c296141d92
https://cdn.kernel.org/pub/linux/kernel/v6.x/ChangeLog-6.1.105 Removed upstreamed: generic/backport-6.1/860-v6.6-bus-mhi-host-pci_generic-add-support-for-Telit-FE990.patch See: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/diff/drivers/bus/mhi/host/pci_generic.c?h=v6.1.105&id=da578d3b2d236b50e356b1a9d770ad19165de31c All other patches automatically rebased. Build system: bcm4908 bcm53xx Adjusted generic/config-6.1 for new ksym: ARM64_ERRATUM_3194386 and 3312417[2] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/diff/arch/arm64/Kconfig?h=linux-6.1.y&id=286c8ca924b220212fdeab81cb652fdaa77e38fe Signed-off-by: Zxl hhyccc <zxlhhy@gmail.com> Link: https://github.com/openwrt/openwrt/pull/16174 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
35 lines
1.2 KiB
Diff
35 lines
1.2 KiB
Diff
From 6a150325917a6df9467beeaa6518ab91ada81d97 Mon Sep 17 00:00:00 2001
|
|
From: Song Fuchang <song.fc@gmail.com>
|
|
Date: Mon, 7 Nov 2022 19:18:35 +0530
|
|
Subject: [PATCH 02/13] bus: mhi: host: pci_generic: Add HP variant of T99W175
|
|
|
|
The Foxconn T99W175 modem has an HP variant, which has
|
|
the following output from lspci:
|
|
|
|
01:00.0 Wireless controller [0d40]: Device 03f0:0a6c
|
|
|
|
It also has some HP-specific serial numbers on the
|
|
metal case. It works well with this driver, so add
|
|
support for this to the pci_generic driver.
|
|
|
|
Signed-off-by: Song Fuchang <song.fc@gmail.com>
|
|
Reviewed-by: Manivannan Sadhasivam <mani@kernel.org>
|
|
[mani: manually applied the patch]
|
|
Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
|
|
---
|
|
drivers/bus/mhi/host/pci_generic.c | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
--- a/drivers/bus/mhi/host/pci_generic.c
|
|
+++ b/drivers/bus/mhi/host/pci_generic.c
|
|
@@ -599,6 +599,9 @@ static const struct pci_device_id mhi_pc
|
|
/* MV32-WB (Cinterion) */
|
|
{ PCI_DEVICE(0x1269, 0x00bb),
|
|
.driver_data = (kernel_ulong_t) &mhi_mv32_info },
|
|
+ /* T99W175 (sdx55), HP variant */
|
|
+ { PCI_DEVICE(0x03f0, 0x0a6c),
|
|
+ .driver_data = (kernel_ulong_t) &mhi_foxconn_sdx55_info },
|
|
{ }
|
|
};
|
|
MODULE_DEVICE_TABLE(pci, mhi_pci_id_table);
|