mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-01 10:42:11 +00:00
Merge branch 'net-wwan-t7xx-add-t7xx-debug-ports'
Jinjian Song says: ==================== net: wwan: t7xx: Add t7xx debug ports Add support for t7xx WWAN device to debug by ADB (Android Debug Bridge) port and MTK MIPCi (Modem Information Process Center) port. Application can use ADB (Android Debug Bridge) port to implement functions (shell, pull, push ...) by ADB protocol commands. Application can use MIPC (Modem Information Process Center) port to debug antenna tuner or noise profiling through this MTK modem diagnostic interface. ==================== Link: https://patch.msgid.link/20241104094436.466861-1-jinjian.song@fibocom.com Signed-off-by: Paolo Abeni <pabeni@redhat.com>
This commit is contained in:
commit
2a6f99ee1a
@ -7,12 +7,13 @@
|
||||
============================================
|
||||
t7xx driver for MTK PCIe based T700 5G modem
|
||||
============================================
|
||||
The t7xx driver is a WWAN PCIe host driver developed for linux or Chrome OS platforms
|
||||
for data exchange over PCIe interface between Host platform & MediaTek's T700 5G modem.
|
||||
The driver exposes an interface conforming to the MBIM protocol [1]. Any front end
|
||||
application (e.g. Modem Manager) could easily manage the MBIM interface to enable
|
||||
data communication towards WWAN. The driver also provides an interface to interact
|
||||
with the MediaTek's modem via AT commands.
|
||||
The t7xx driver is a WWAN PCIe host driver developed for linux or Chrome OS
|
||||
platforms for data exchange over PCIe interface between Host platform &
|
||||
MediaTek's T700 5G modem.
|
||||
The driver exposes an interface conforming to the MBIM protocol [1]. Any front
|
||||
end application (e.g. Modem Manager) could easily manage the MBIM interface to
|
||||
enable data communication towards WWAN. The driver also provides an interface
|
||||
to interact with the MediaTek's modem via AT commands.
|
||||
|
||||
Basic usage
|
||||
===========
|
||||
@ -45,8 +46,8 @@ The driver provides sysfs interfaces to userspace.
|
||||
|
||||
t7xx_mode
|
||||
---------
|
||||
The sysfs interface provides userspace with access to the device mode, this interface
|
||||
supports read and write operations.
|
||||
The sysfs interface provides userspace with access to the device mode, this
|
||||
interface supports read and write operations.
|
||||
|
||||
Device mode:
|
||||
|
||||
@ -67,6 +68,28 @@ Write from userspace to set the device mode.
|
||||
::
|
||||
$ echo fastboot_switching > /sys/bus/pci/devices/${bdf}/t7xx_mode
|
||||
|
||||
t7xx_debug_ports
|
||||
----------------
|
||||
The sysfs interface provides userspace with access to enable/disable the debug
|
||||
ports, this interface supports read and write operations.
|
||||
|
||||
Debug port status:
|
||||
|
||||
- ``1`` represents enable debug ports
|
||||
- ``0`` represents disable debug ports
|
||||
|
||||
Currently supported debug ports (ADB/MIPC).
|
||||
|
||||
Read from userspace to get the current debug ports status.
|
||||
|
||||
::
|
||||
$ cat /sys/bus/pci/devices/${bdf}/t7xx_debug_ports
|
||||
|
||||
Write from userspace to set the debug ports status.
|
||||
|
||||
::
|
||||
$ echo 1 > /sys/bus/pci/devices/${bdf}/t7xx_debug_ports
|
||||
|
||||
Management application development
|
||||
==================================
|
||||
The driver and userspace interfaces are described below. The MBIM protocol is
|
||||
@ -139,6 +162,25 @@ Please note that driver needs to be reloaded to export /dev/wwan0fastboot0
|
||||
port, because device needs a cold reset after enter ``fastboot_switching``
|
||||
mode.
|
||||
|
||||
ADB port userspace ABI
|
||||
----------------------
|
||||
|
||||
/dev/wwan0adb0 character device
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
The driver exposes a ADB protocol interface by implementing ADB WWAN Port.
|
||||
The userspace end of the ADB channel pipe is a /dev/wwan0adb0 character device.
|
||||
Application shall use this interface for ADB protocol communication.
|
||||
|
||||
MIPC port userspace ABI
|
||||
-----------------------
|
||||
|
||||
/dev/wwan0mipc0 character device
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
The driver exposes a diagnostic interface by implementing MIPC (Modem
|
||||
Information Process Center) WWAN Port. The userspace end of the MIPC channel
|
||||
pipe is a /dev/wwan0mipc0 character device.
|
||||
Application shall use this interface for MTK modem diagnostic communication.
|
||||
|
||||
The MediaTek's T700 modem supports the 3GPP TS 27.007 [4] specification.
|
||||
|
||||
References
|
||||
@ -164,3 +206,9 @@ speak the Mobile Interface Broadband Model (MBIM) protocol"*
|
||||
[5] *fastboot "a mechanism for communicating with bootloaders"*
|
||||
|
||||
- https://android.googlesource.com/platform/system/core/+/refs/heads/main/fastboot/README.md
|
||||
|
||||
[6] *ADB (Android Debug Bridge) "a mechanism to keep track of Android devices
|
||||
and emulators instances connected to or running on a given host developer
|
||||
machine with ADB protocol"*
|
||||
|
||||
- https://android.googlesource.com/platform/packages/modules/adb/+/refs/heads/main/README.md
|
||||
|
@ -198,6 +198,7 @@ int t7xx_reset_device(struct t7xx_pci_dev *t7xx_dev, enum reset_type type)
|
||||
pci_save_state(t7xx_dev->pdev);
|
||||
t7xx_pci_reprobe_early(t7xx_dev);
|
||||
t7xx_mode_update(t7xx_dev, T7XX_RESET);
|
||||
WRITE_ONCE(t7xx_dev->debug_ports_show, false);
|
||||
|
||||
if (type == FLDR) {
|
||||
ret = t7xx_acpi_reset(t7xx_dev, "_RST");
|
||||
|
@ -41,6 +41,7 @@
|
||||
#include "t7xx_pcie_mac.h"
|
||||
#include "t7xx_reg.h"
|
||||
#include "t7xx_state_monitor.h"
|
||||
#include "t7xx_port_proxy.h"
|
||||
|
||||
#define T7XX_PCI_IREG_BASE 0
|
||||
#define T7XX_PCI_EREG_BASE 2
|
||||
@ -120,13 +121,58 @@ static ssize_t t7xx_mode_show(struct device *dev,
|
||||
|
||||
static DEVICE_ATTR_RW(t7xx_mode);
|
||||
|
||||
static struct attribute *t7xx_mode_attr[] = {
|
||||
static ssize_t t7xx_debug_ports_store(struct device *dev,
|
||||
struct device_attribute *attr,
|
||||
const char *buf, size_t count)
|
||||
{
|
||||
struct t7xx_pci_dev *t7xx_dev;
|
||||
struct pci_dev *pdev;
|
||||
bool show;
|
||||
int ret;
|
||||
|
||||
pdev = to_pci_dev(dev);
|
||||
t7xx_dev = pci_get_drvdata(pdev);
|
||||
if (!t7xx_dev)
|
||||
return -ENODEV;
|
||||
|
||||
ret = kstrtobool(buf, &show);
|
||||
if (ret < 0)
|
||||
return ret;
|
||||
|
||||
t7xx_proxy_debug_ports_show(t7xx_dev, show);
|
||||
WRITE_ONCE(t7xx_dev->debug_ports_show, show);
|
||||
|
||||
return count;
|
||||
};
|
||||
|
||||
static ssize_t t7xx_debug_ports_show(struct device *dev,
|
||||
struct device_attribute *attr,
|
||||
char *buf)
|
||||
{
|
||||
struct t7xx_pci_dev *t7xx_dev;
|
||||
struct pci_dev *pdev;
|
||||
bool show;
|
||||
|
||||
pdev = to_pci_dev(dev);
|
||||
t7xx_dev = pci_get_drvdata(pdev);
|
||||
if (!t7xx_dev)
|
||||
return -ENODEV;
|
||||
|
||||
show = READ_ONCE(t7xx_dev->debug_ports_show);
|
||||
|
||||
return sysfs_emit(buf, "%d\n", show);
|
||||
}
|
||||
|
||||
static DEVICE_ATTR_RW(t7xx_debug_ports);
|
||||
|
||||
static struct attribute *t7xx_attr[] = {
|
||||
&dev_attr_t7xx_mode.attr,
|
||||
&dev_attr_t7xx_debug_ports.attr,
|
||||
NULL
|
||||
};
|
||||
|
||||
static const struct attribute_group t7xx_mode_attribute_group = {
|
||||
.attrs = t7xx_mode_attr,
|
||||
static const struct attribute_group t7xx_attribute_group = {
|
||||
.attrs = t7xx_attr,
|
||||
};
|
||||
|
||||
void t7xx_mode_update(struct t7xx_pci_dev *t7xx_dev, enum t7xx_mode mode)
|
||||
@ -839,7 +885,7 @@ static int t7xx_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
|
||||
t7xx_pcie_mac_interrupts_dis(t7xx_dev);
|
||||
|
||||
ret = sysfs_create_group(&t7xx_dev->pdev->dev.kobj,
|
||||
&t7xx_mode_attribute_group);
|
||||
&t7xx_attribute_group);
|
||||
if (ret)
|
||||
goto err_md_exit;
|
||||
|
||||
@ -855,7 +901,7 @@ static int t7xx_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
|
||||
|
||||
err_remove_group:
|
||||
sysfs_remove_group(&t7xx_dev->pdev->dev.kobj,
|
||||
&t7xx_mode_attribute_group);
|
||||
&t7xx_attribute_group);
|
||||
|
||||
err_md_exit:
|
||||
t7xx_md_exit(t7xx_dev);
|
||||
@ -870,7 +916,7 @@ static void t7xx_pci_remove(struct pci_dev *pdev)
|
||||
t7xx_dev = pci_get_drvdata(pdev);
|
||||
|
||||
sysfs_remove_group(&t7xx_dev->pdev->dev.kobj,
|
||||
&t7xx_mode_attribute_group);
|
||||
&t7xx_attribute_group);
|
||||
t7xx_md_exit(t7xx_dev);
|
||||
|
||||
for (i = 0; i < EXT_INT_NUM; i++) {
|
||||
|
@ -94,6 +94,7 @@ struct t7xx_pci_dev {
|
||||
struct dentry *debugfs_dir;
|
||||
#endif
|
||||
u32 mode;
|
||||
bool debug_ports_show;
|
||||
};
|
||||
|
||||
enum t7xx_pm_id {
|
||||
|
@ -42,6 +42,8 @@ enum port_ch {
|
||||
/* to AP */
|
||||
PORT_CH_AP_CONTROL_RX = 0x1000,
|
||||
PORT_CH_AP_CONTROL_TX = 0x1001,
|
||||
PORT_CH_AP_ADB_RX = 0x100a,
|
||||
PORT_CH_AP_ADB_TX = 0x100b,
|
||||
|
||||
/* to MD */
|
||||
PORT_CH_CONTROL_RX = 0x2000,
|
||||
@ -100,6 +102,7 @@ struct t7xx_port_conf {
|
||||
struct port_ops *ops;
|
||||
char *name;
|
||||
enum wwan_port_type port_type;
|
||||
bool debug;
|
||||
};
|
||||
|
||||
struct t7xx_port {
|
||||
|
@ -38,7 +38,8 @@
|
||||
#include "t7xx_state_monitor.h"
|
||||
|
||||
#define Q_IDX_CTRL 0
|
||||
#define Q_IDX_MBIM 2
|
||||
#define Q_IDX_MBIM_MIPC 2
|
||||
#define Q_IDX_ADB 3
|
||||
#define Q_IDX_AT_CMD 5
|
||||
|
||||
#define INVALID_SEQ_NUM GENMASK(15, 0)
|
||||
@ -66,8 +67,8 @@ static const struct t7xx_port_conf t7xx_port_conf[] = {
|
||||
}, {
|
||||
.tx_ch = PORT_CH_MBIM_TX,
|
||||
.rx_ch = PORT_CH_MBIM_RX,
|
||||
.txq_index = Q_IDX_MBIM,
|
||||
.rxq_index = Q_IDX_MBIM,
|
||||
.txq_index = Q_IDX_MBIM_MIPC,
|
||||
.rxq_index = Q_IDX_MBIM_MIPC,
|
||||
.path_id = CLDMA_ID_MD,
|
||||
.ops = &wwan_sub_port_ops,
|
||||
.name = "MBIM",
|
||||
@ -100,7 +101,27 @@ static const struct t7xx_port_conf t7xx_port_conf[] = {
|
||||
.path_id = CLDMA_ID_AP,
|
||||
.ops = &ctl_port_ops,
|
||||
.name = "t7xx_ap_ctrl",
|
||||
},
|
||||
}, {
|
||||
.tx_ch = PORT_CH_AP_ADB_TX,
|
||||
.rx_ch = PORT_CH_AP_ADB_RX,
|
||||
.txq_index = Q_IDX_ADB,
|
||||
.rxq_index = Q_IDX_ADB,
|
||||
.path_id = CLDMA_ID_AP,
|
||||
.ops = &wwan_sub_port_ops,
|
||||
.name = "adb",
|
||||
.port_type = WWAN_PORT_ADB,
|
||||
.debug = true,
|
||||
}, {
|
||||
.tx_ch = PORT_CH_MIPC_TX,
|
||||
.rx_ch = PORT_CH_MIPC_RX,
|
||||
.txq_index = Q_IDX_MBIM_MIPC,
|
||||
.rxq_index = Q_IDX_MBIM_MIPC,
|
||||
.path_id = CLDMA_ID_MD,
|
||||
.ops = &wwan_sub_port_ops,
|
||||
.name = "mipc",
|
||||
.port_type = WWAN_PORT_MIPC,
|
||||
.debug = true,
|
||||
}
|
||||
};
|
||||
|
||||
static const struct t7xx_port_conf t7xx_early_port_conf[] = {
|
||||
@ -505,13 +526,33 @@ static void t7xx_proxy_init_all_ports(struct t7xx_modem *md)
|
||||
spin_lock_init(&port->port_update_lock);
|
||||
port->chan_enable = false;
|
||||
|
||||
if (port_conf->ops && port_conf->ops->init)
|
||||
if (!port_conf->debug &&
|
||||
port_conf->ops &&
|
||||
port_conf->ops->init)
|
||||
port_conf->ops->init(port);
|
||||
}
|
||||
|
||||
t7xx_proxy_setup_ch_mapping(port_prox);
|
||||
}
|
||||
|
||||
void t7xx_proxy_debug_ports_show(struct t7xx_pci_dev *t7xx_dev, bool show)
|
||||
{
|
||||
struct port_proxy *port_prox = t7xx_dev->md->port_prox;
|
||||
struct t7xx_port *port;
|
||||
int i;
|
||||
|
||||
for_each_proxy_port(i, port, port_prox) {
|
||||
const struct t7xx_port_conf *port_conf = port->port_conf;
|
||||
|
||||
if (port_conf->debug && port_conf->ops) {
|
||||
if (show && port_conf->ops->init)
|
||||
port_conf->ops->init(port);
|
||||
else if (!show && port_conf->ops->uninit)
|
||||
port_conf->ops->uninit(port);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void t7xx_port_proxy_set_cfg(struct t7xx_modem *md, enum port_cfg_id cfg_id)
|
||||
{
|
||||
struct port_proxy *port_prox = md->port_prox;
|
||||
|
@ -98,6 +98,7 @@ extern struct port_ops ctl_port_ops;
|
||||
extern struct port_ops t7xx_trace_port_ops;
|
||||
#endif
|
||||
|
||||
void t7xx_proxy_debug_ports_show(struct t7xx_pci_dev *t7xx_dev, bool show);
|
||||
void t7xx_port_proxy_reset(struct port_proxy *port_prox);
|
||||
void t7xx_port_proxy_uninit(struct port_proxy *port_prox);
|
||||
int t7xx_port_proxy_init(struct t7xx_modem *md);
|
||||
|
@ -169,7 +169,9 @@ static int t7xx_port_wwan_init(struct t7xx_port *port)
|
||||
{
|
||||
const struct t7xx_port_conf *port_conf = port->port_conf;
|
||||
|
||||
if (port_conf->port_type == WWAN_PORT_FASTBOOT)
|
||||
if (port_conf->port_type == WWAN_PORT_FASTBOOT ||
|
||||
port_conf->port_type == WWAN_PORT_ADB ||
|
||||
port_conf->port_type == WWAN_PORT_MIPC)
|
||||
t7xx_port_wwan_create(port);
|
||||
|
||||
port->rx_length_th = RX_QUEUE_MAXLEN;
|
||||
@ -224,7 +226,9 @@ static void t7xx_port_wwan_md_state_notify(struct t7xx_port *port, unsigned int
|
||||
{
|
||||
const struct t7xx_port_conf *port_conf = port->port_conf;
|
||||
|
||||
if (port_conf->port_type == WWAN_PORT_FASTBOOT)
|
||||
if (port_conf->port_type == WWAN_PORT_FASTBOOT ||
|
||||
port_conf->port_type == WWAN_PORT_ADB ||
|
||||
port_conf->port_type == WWAN_PORT_MIPC)
|
||||
return;
|
||||
|
||||
if (state != MD_STATE_READY)
|
||||
|
@ -334,6 +334,14 @@ static const struct {
|
||||
.name = "FASTBOOT",
|
||||
.devsuf = "fastboot",
|
||||
},
|
||||
[WWAN_PORT_ADB] = {
|
||||
.name = "ADB",
|
||||
.devsuf = "adb",
|
||||
},
|
||||
[WWAN_PORT_MIPC] = {
|
||||
.name = "MIPC",
|
||||
.devsuf = "mipc",
|
||||
},
|
||||
};
|
||||
|
||||
static ssize_t type_show(struct device *dev, struct device_attribute *attr,
|
||||
|
@ -17,6 +17,8 @@
|
||||
* @WWAN_PORT_FIREHOSE: XML based command protocol
|
||||
* @WWAN_PORT_XMMRPC: Control protocol for Intel XMM modems
|
||||
* @WWAN_PORT_FASTBOOT: Fastboot protocol control
|
||||
* @WWAN_PORT_ADB: ADB protocol control
|
||||
* @WWAN_PORT_MIPC: MTK MIPC diagnostic interface
|
||||
*
|
||||
* @WWAN_PORT_MAX: Highest supported port types
|
||||
* @WWAN_PORT_UNKNOWN: Special value to indicate an unknown port type
|
||||
@ -30,6 +32,8 @@ enum wwan_port_type {
|
||||
WWAN_PORT_FIREHOSE,
|
||||
WWAN_PORT_XMMRPC,
|
||||
WWAN_PORT_FASTBOOT,
|
||||
WWAN_PORT_ADB,
|
||||
WWAN_PORT_MIPC,
|
||||
|
||||
/* Add new port types above this line */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user