Introduce the IP_SW1 channel to represent the network interface exposed by the MHI device for M-plane communication. The driver creates a corresponding netdev, allowing the host to access the device network interface over MHI. This interface enables support for O-RAN M-plane management between O-DU and O-RU, including capability exchange, configuration management, performance monitoring, and fault management using NETCONF/YANG, as defined by O-RAN WG4 M-plane specifications. Signed-off-by: Vivek Pernamitta --- drivers/net/mhi_net.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/mhi_net.c b/drivers/net/mhi_net.c index 47b8617de027980a69c57261a9b4bcefc828dc96..e285aa289cb945cd1afd2f3d581214f2f2f15145 100644 --- a/drivers/net/mhi_net.c +++ b/drivers/net/mhi_net.c @@ -430,6 +430,7 @@ static const struct mhi_device_id mhi_net_id_table[] = { { .chan = "IP_HW0", .driver_data = (kernel_ulong_t)&mhi_hwip0 }, /* Software data PATH (to modem CPU) */ { .chan = "IP_SW0", .driver_data = (kernel_ulong_t)&mhi_swip0 }, + { .chan = "IP_SW1", .driver_data = (kernel_ulong_t)&mhi_swip0 }, { .chan = "IP_ETH0", .driver_data = (kernel_ulong_t)&mhi_eth0 }, { .chan = "IP_ETH1", .driver_data = (kernel_ulong_t)&mhi_eth0 }, {} -- 2.34.1