From: Roger Quadros <rogerq@kernel.org>
To: Diogo Ivo <diogo.ivo@siemens.com>,
danishanwar@ti.com, davem@davemloft.net, edumazet@google.com,
kuba@kernel.org, pabeni@redhat.com, andrew@lunn.ch,
linux-arm-kernel@lists.infradead.org, netdev@vger.kernel.org
Cc: jan.kiszka@siemens.com
Subject: Re: [PATCH net-next v3 04/10] net: ti: icssg-prueth: Add SR1.0-specific configuration bits
Date: Mon, 26 Feb 2024 19:23:54 +0200 [thread overview]
Message-ID: <5337e08b-a4dd-46d0-bc2e-a30b82aeeb15@kernel.org> (raw)
In-Reply-To: <20240221152421.112324-5-diogo.ivo@siemens.com>
Hi Diogo,
On 21/02/2024 17:24, Diogo Ivo wrote:
> Define the firmware configuration structure and commands needed to
> communicate with SR1.0 firmware, as well as SR1.0 buffer information
> where it differs from SR2.0.
>
> Based on the work of Roger Quadros, Murali Karicheri and
> Grygorii Strashko in TI's 5.10 SDK [1].
>
> [1]: https://git.ti.com/cgit/ti-linux-kernel/ti-linux-kernel/tree/?h=ti-linux-5.10.y
>
> Co-developed-by: Jan Kiszka <jan.kiszka@siemens.com>
> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
> Signed-off-by: Diogo Ivo <diogo.ivo@siemens.com>
> ---
> Changes in v2:
> - Removed explicit references to SR2.0
>
> drivers/net/ethernet/ti/icssg/icssg_config.h | 56 ++++++++++++++++++++
> 1 file changed, 56 insertions(+)
>
> diff --git a/drivers/net/ethernet/ti/icssg/icssg_config.h b/drivers/net/ethernet/ti/icssg/icssg_config.h
> index 43eb0922172a..cb465b3f5355 100644
> --- a/drivers/net/ethernet/ti/icssg/icssg_config.h
> +++ b/drivers/net/ethernet/ti/icssg/icssg_config.h
> @@ -35,6 +35,23 @@ struct icssg_flow_cfg {
> (2 * (PRUETH_EMAC_BUF_POOL_SIZE * PRUETH_NUM_BUF_POOLS + \
> PRUETH_EMAC_RX_CTX_BUF_SIZE * 2))
>
> +/* SR1.0 defines */
> +#define PRUETH_MAX_RX_FLOWS_SR1 4 /* excluding default flow */
> +#define PRUETH_RX_FLOW_DATA_SR1 3 /* highest priority flow */
> +#define PRUETH_MAX_RX_MGM_DESC 8
> +#define PRUETH_MAX_RX_MGM_FLOWS 2 /* excluding default flow */
> +#define PRUETH_RX_MGM_FLOW_RESPONSE 0
> +#define PRUETH_RX_MGM_FLOW_TIMESTAMP 1
Should we add suffix _SR1 to all SR1 specific macro names?
> +
> +#define PRUETH_NUM_BUF_POOLS_SR1 16
> +#define PRUETH_EMAC_BUF_POOL_START_SR1 8
> +#define PRUETH_EMAC_BUF_POOL_MIN_SIZE_SR1 128
> +#define PRUETH_EMAC_BUF_SIZE_SR1 1536
> +#define PRUETH_EMAC_NUM_BUF_SR1 4
> +#define PRUETH_EMAC_BUF_POOL_SIZE_SR1 (PRUETH_EMAC_NUM_BUF_SR1 * \
> + PRUETH_EMAC_BUF_SIZE_SR1)
> +#define MSMC_RAM_SIZE_SR1 (SZ_64K + SZ_32K + SZ_2K) /* 0x1880 x 8 x 2 */
> +
> struct icssg_rxq_ctx {
> __le32 start[3];
> __le32 end;
> @@ -104,6 +121,45 @@ enum icssg_port_state_cmd {
> #define ICSSG_NUM_NORMAL_PDS 64
> #define ICSSG_NUM_SPECIAL_PDS 16
>
> +struct icssg_sr1_config {
> + __le32 status; /* Firmware status */
> + __le32 addr_lo; /* MSMC Buffer pool base address low. */
> + __le32 addr_hi; /* MSMC Buffer pool base address high. Must be 0 */
> + __le32 tx_buf_sz[16]; /* Array of buffer pool sizes */
> + __le32 num_tx_threads; /* Number of active egress threads, 1 to 4 */
> + __le32 tx_rate_lim_en; /* Bitmask: Egress rate limit en per thread */
> + __le32 rx_flow_id; /* RX flow id for first rx ring */
> + __le32 rx_mgr_flow_id; /* RX flow id for the first management ring */
> + __le32 flags; /* TBD */
> + __le32 n_burst; /* for debug */
> + __le32 rtu_status; /* RTU status */
> + __le32 info; /* reserved */
> + __le32 reserve;
> + __le32 rand_seed; /* Used for the random number generation at fw */
> +} __packed;
> +
> +/* SR1.0 shutdown command to stop processing at firmware.
> + * Command format: 0x8101ss00, where
> + * - ss: sequence number. Currently not used by driver.
> + */
> +#define ICSSG_SHUTDOWN_CMD 0x81010000
> +
> +/* SR1.0 pstate speed/duplex command to set speed and duplex settings
> + * in firmware.
> + * Command format: 0x8102ssPN, where
> + * - ss: sequence number. Currently not used by driver.
> + * - P: port number (for switch mode).
> + * - N: Speed/Duplex state:
> + * 0x0 - 10Mbps/Half duplex;
> + * 0x8 - 10Mbps/Full duplex;
> + * 0x2 - 100Mbps/Half duplex;
> + * 0xa - 100Mbps/Full duplex;
> + * 0xc - 1Gbps/Full duplex;
> + * NOTE: The above are the same value as bits [3..1](slice 0)
> + * or bits [7..5](slice 1) of RGMII CFG register.
> + */
> +#define ICSSG_PSTATE_SPEED_DUPLEX_CMD 0x81020000
> +
How about bunching all S1.0 related changes at one place in this file?
> #define ICSSG_NORMAL_PD_SIZE 8
> #define ICSSG_SPECIAL_PD_SIZE 20
>
--
cheers,
-roger
next prev parent reply other threads:[~2024-02-26 17:24 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-21 15:24 [PATCH net-next v3 00/10] Support ICSSG-based Ethernet on AM65x SR1.0 devices Diogo Ivo
2024-02-21 15:24 ` [PATCH net-next v3 01/10] dt-bindings: net: Add support for AM65x SR1.0 in ICSSG Diogo Ivo
2024-02-22 17:57 ` Conor Dooley
2024-02-26 16:48 ` Roger Quadros
2024-02-21 15:24 ` [PATCH net-next v3 02/10] eth: Move IPv4/IPv6 multicast address bases to their own symbols Diogo Ivo
2024-02-21 15:24 ` [PATCH net-next v3 03/10] net: ti: icssg-prueth: Move common functions into a separate file Diogo Ivo
2024-02-21 15:24 ` [PATCH net-next v3 04/10] net: ti: icssg-prueth: Add SR1.0-specific configuration bits Diogo Ivo
2024-02-26 17:23 ` Roger Quadros [this message]
2024-02-27 11:46 ` Diogo Ivo
2024-02-21 15:24 ` [PATCH net-next v3 05/10] net: ti: icssg-prueth: Add SR1.0-specific description bits Diogo Ivo
2024-02-26 17:15 ` Roger Quadros
2024-02-21 15:24 ` [PATCH net-next v3 06/10] net: ti: icssg-prueth: Adjust IPG configuration for SR1.0 Diogo Ivo
2024-02-26 17:17 ` Roger Quadros
2024-02-21 15:24 ` [PATCH net-next v3 07/10] net: ti: icssg-prueth: Adjust the number of TX channels " Diogo Ivo
2024-02-26 17:19 ` Roger Quadros
2024-02-21 15:24 ` [PATCH net-next v3 08/10] net: ti: icssg-prueth: Add functions to configure SR1.0 packet classifier Diogo Ivo
2024-02-26 17:26 ` Roger Quadros
2024-02-27 12:11 ` Diogo Ivo
2024-02-29 10:15 ` Roger Quadros
2024-02-26 18:41 ` Roger Quadros
2024-02-27 12:14 ` Diogo Ivo
2024-02-29 10:16 ` Roger Quadros
2024-02-21 15:24 ` [PATCH net-next v3 09/10] net: ti: icssg-prueth: Modify common functions for SR1.0 Diogo Ivo
2024-02-26 17:33 ` Roger Quadros
2024-02-27 12:42 ` Diogo Ivo
2024-02-21 15:24 ` [PATCH net-next v3 10/10] net: ti: icssg-prueth: Add ICSSG Ethernet driver for AM65x SR1.0 platforms Diogo Ivo
2024-02-22 13:31 ` Simon Horman
2024-02-27 12:05 ` Diogo Ivo
2024-02-27 17:31 ` Simon Horman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5337e08b-a4dd-46d0-bc2e-a30b82aeeb15@kernel.org \
--to=rogerq@kernel.org \
--cc=andrew@lunn.ch \
--cc=danishanwar@ti.com \
--cc=davem@davemloft.net \
--cc=diogo.ivo@siemens.com \
--cc=edumazet@google.com \
--cc=jan.kiszka@siemens.com \
--cc=kuba@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).