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>
50 lines
1.9 KiB
Diff
50 lines
1.9 KiB
Diff
From 537350abfcc6b639884d1ef7bff35d31a624549b Mon Sep 17 00:00:00 2001
|
|
From: Slark Xiao <slark_xiao@163.com>
|
|
Date: Wed, 29 Mar 2023 15:22:39 +0800
|
|
Subject: [PATCH 05/13] bus: mhi: pci_generic: Add Foxconn T99W510
|
|
|
|
The Foxconn T99W510 device is designed based on Qualcomm
|
|
SDX24. Add 3 variants for different potential customer.
|
|
|
|
Signed-off-by: Slark Xiao <slark_xiao@163.com>
|
|
Link: https://lore.kernel.org/r/20230329072239.93632-1-slark_xiao@163.com
|
|
Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
|
|
---
|
|
drivers/bus/mhi/host/pci_generic.c | 18 ++++++++++++++++++
|
|
1 file changed, 18 insertions(+)
|
|
|
|
--- a/drivers/bus/mhi/host/pci_generic.c
|
|
+++ b/drivers/bus/mhi/host/pci_generic.c
|
|
@@ -363,6 +363,15 @@ static const struct mhi_controller_confi
|
|
.event_cfg = mhi_foxconn_sdx55_events,
|
|
};
|
|
|
|
+static const struct mhi_pci_dev_info mhi_foxconn_sdx24_info = {
|
|
+ .name = "foxconn-sdx24",
|
|
+ .config = &modem_foxconn_sdx55_config,
|
|
+ .bar_num = MHI_PCI_DEFAULT_BAR_NUM,
|
|
+ .dma_data_width = 32,
|
|
+ .mru_default = 32768,
|
|
+ .sideband_wake = false,
|
|
+};
|
|
+
|
|
static const struct mhi_pci_dev_info mhi_foxconn_sdx55_info = {
|
|
.name = "foxconn-sdx55",
|
|
.fw = "qcom/sdx55m/sbl1.mbn",
|
|
@@ -590,6 +599,15 @@ static const struct pci_device_id mhi_pc
|
|
/* T99W373 (sdx62) */
|
|
{ PCI_DEVICE(PCI_VENDOR_ID_FOXCONN, 0xe0d9),
|
|
.driver_data = (kernel_ulong_t) &mhi_foxconn_sdx65_info },
|
|
+ /* T99W510 (sdx24), variant 1 */
|
|
+ { PCI_DEVICE(PCI_VENDOR_ID_FOXCONN, 0xe0f0),
|
|
+ .driver_data = (kernel_ulong_t) &mhi_foxconn_sdx24_info },
|
|
+ /* T99W510 (sdx24), variant 2 */
|
|
+ { PCI_DEVICE(PCI_VENDOR_ID_FOXCONN, 0xe0f1),
|
|
+ .driver_data = (kernel_ulong_t) &mhi_foxconn_sdx24_info },
|
|
+ /* T99W510 (sdx24), variant 3 */
|
|
+ { PCI_DEVICE(PCI_VENDOR_ID_FOXCONN, 0xe0f2),
|
|
+ .driver_data = (kernel_ulong_t) &mhi_foxconn_sdx24_info },
|
|
/* MV31-W (Cinterion) */
|
|
{ PCI_DEVICE(PCI_VENDOR_ID_THALES, 0x00b3),
|
|
.driver_data = (kernel_ulong_t) &mhi_mv31_info },
|