[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <6ac2bf45-c61b-7716-5dcf-6945591a3cc3@linux.intel.com>
Date: Thu, 16 Dec 2021 14:17:52 +0200 (EET)
From: Ilpo Järvinen <ilpo.jarvinen@...ux.intel.com>
To: Ricardo Martinez <ricardo.martinez@...ux.intel.com>
cc: netdev@...r.kernel.org, linux-wireless@...r.kernel.org,
kuba@...nel.org, davem@...emloft.net, johannes@...solutions.net,
ryazanov.s.a@...il.com, loic.poulain@...aro.org,
m.chetan.kumar@...el.com, chandrashekar.devegowda@...el.com,
linuxwwan@...el.com, chiranjeevi.rapolu@...ux.intel.com,
haijun.liu@...iatek.com, amir.hanania@...el.com,
andriy.shevchenko@...ux.intel.com, dinesh.sharma@...el.com,
eliot.lee@...el.com, mika.westerberg@...ux.intel.com,
moises.veleta@...el.com, pierre-louis.bossart@...el.com,
muralidharan.sethuraman@...el.com, Soumya.Prakash.Mishra@...el.com,
sreehari.kancharla@...el.com, suresh.nagaraj@...el.com
Subject: Re: [PATCH net-next v3 03/12] net: wwan: t7xx: Add port proxy
infrastructure
On Mon, 6 Dec 2021, Ricardo Martinez wrote:
> From: Haijun Liu <haijun.liu@...iatek.com>
>
> Port-proxy provides a common interface to interact with different types
> of ports. Ports export their configuration via `struct t7xx_port` and
> operate as defined by `struct port_ops`.
>
> Signed-off-by: Haijun Liu <haijun.liu@...iatek.com>
> Co-developed-by: Chandrashekar Devegowda <chandrashekar.devegowda@...el.com>
> Signed-off-by: Chandrashekar Devegowda <chandrashekar.devegowda@...el.com>
> Co-developed-by: Ricardo Martinez <ricardo.martinez@...ux.intel.com>
> Signed-off-by: Ricardo Martinez <ricardo.martinez@...ux.intel.com>
> + status = FIELD_GET(HDR_FLD_CHN, le32_to_cpu(ccci_h->status));
> + if (status == PORT_CH_STATUS_RX) {
> + port->skb_handler(port, skb);
In the other callsite, port->skb_handler is checked for NULL but not here,
is it ok?
> + if (md_state == MD_STATE_EXCEPTION && port_static->tx_ch != PORT_CH_MD_LOG_TX &&
> + port_static->tx_ch != PORT_CH_UART1_TX)
> + return -ETXTBSY;
Here "TXT" = "text" (it seems unrelated to TX path).
> +#define MTK_MAX_QUEUE_NUM 16
> +#define MAX_RX_QUEUE_LENGTH 32
> +#define MAX_CTRL_QUEUE_LENGTH 16
MTK_QUEUES, RX_QUEUE_MAXLEN, CTRL_QUEUE_MAXLEN would be shorter and not
lose any of the meaning.
> +#define CLDMA_TXQ_MTU MTK_SKB_4K
> +
> +struct port_proxy {
> + int port_number;
> + struct t7xx_port_static *ports_shared;
> + struct t7xx_port *ports_private;
> + struct list_head rx_ch_ports[PORT_CH_ID_MASK];
An off-by-one error in the array sizing?
--
i.
Powered by blists - more mailing lists