* [PATCH net-next] net: stmmac: dwc-qos-eth: simplify switch() in dwc_eth_dwmac_config_dt()
@ 2025-11-18 11:18 Russell King (Oracle)
2025-11-18 13:48 ` Maxime Chevallier
2025-11-19 10:10 ` Russell King (Oracle)
0 siblings, 2 replies; 3+ messages in thread
From: Russell King (Oracle) @ 2025-11-18 11:18 UTC (permalink / raw)
To: Andrew Lunn, Heiner Kallweit
Cc: Alexandre Torgue, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, linux-arm-kernel, linux-stm32, Maxime Coquelin,
netdev, Paolo Abeni
Simplify the the switch() statement in dwc_eth_dwmac_config_dt().
Although this is not speed-critical, simplifying it can make it more
readable. This also drastically improves the code emitted by the
compiler.
On aarch64, with the original code, the compiler loads registers with
every possible value, and then has a tree of test-and-branch statements
to work out which register to store. With the simplified code, the
compiler can load a register with '4' and shift it appropriately.
This shrinks the text size on aarch64 from 4289 bytes to 4153 bytes,
a reduction of 3%.
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
---
.../stmicro/stmmac/dwmac-dwc-qos-eth.c | 26 +++----------------
1 file changed, 3 insertions(+), 23 deletions(-)
diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c
index c7cd6497d42d..e6d5893c5905 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c
@@ -84,29 +84,9 @@ static int dwc_eth_dwmac_config_dt(struct platform_device *pdev,
device_property_read_u32(dev, "snps,burst-map", &burst_map);
/* converts burst-map bitmask to burst array */
- for (bit_index = 0; bit_index < 7; bit_index++) {
- if (burst_map & (1 << bit_index)) {
- switch (bit_index) {
- case 0:
- plat_dat->axi->axi_blen[a_index] = 4; break;
- case 1:
- plat_dat->axi->axi_blen[a_index] = 8; break;
- case 2:
- plat_dat->axi->axi_blen[a_index] = 16; break;
- case 3:
- plat_dat->axi->axi_blen[a_index] = 32; break;
- case 4:
- plat_dat->axi->axi_blen[a_index] = 64; break;
- case 5:
- plat_dat->axi->axi_blen[a_index] = 128; break;
- case 6:
- plat_dat->axi->axi_blen[a_index] = 256; break;
- default:
- break;
- }
- a_index++;
- }
- }
+ for (bit_index = 0; bit_index < 7; bit_index++)
+ if (burst_map & (1 << bit_index))
+ plat_dat->axi->axi_blen[a_index++] = 4 << bit_index;
/* dwc-qos needs GMAC4, AAL, TSO and PMT */
plat_dat->core_type = DWMAC_CORE_GMAC4;
--
2.47.3
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH net-next] net: stmmac: dwc-qos-eth: simplify switch() in dwc_eth_dwmac_config_dt()
2025-11-18 11:18 [PATCH net-next] net: stmmac: dwc-qos-eth: simplify switch() in dwc_eth_dwmac_config_dt() Russell King (Oracle)
@ 2025-11-18 13:48 ` Maxime Chevallier
2025-11-19 10:10 ` Russell King (Oracle)
1 sibling, 0 replies; 3+ messages in thread
From: Maxime Chevallier @ 2025-11-18 13:48 UTC (permalink / raw)
To: Russell King (Oracle), Andrew Lunn, Heiner Kallweit
Cc: Alexandre Torgue, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, linux-arm-kernel, linux-stm32, Maxime Coquelin,
netdev, Paolo Abeni
On 18/11/2025 12:18, Russell King (Oracle) wrote:
> Simplify the the switch() statement in dwc_eth_dwmac_config_dt().
> Although this is not speed-critical, simplifying it can make it more
> readable. This also drastically improves the code emitted by the
> compiler.
>
> On aarch64, with the original code, the compiler loads registers with
> every possible value, and then has a tree of test-and-branch statements
> to work out which register to store. With the simplified code, the
> compiler can load a register with '4' and shift it appropriately.
>
> This shrinks the text size on aarch64 from 4289 bytes to 4153 bytes,
> a reduction of 3%.
>
> Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Reviewed-by: Maxime Chevallier <maxime.chevallier@bootlin.com>
Maxime
> ---
> .../stmicro/stmmac/dwmac-dwc-qos-eth.c | 26 +++----------------
> 1 file changed, 3 insertions(+), 23 deletions(-)
>
> diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c
> index c7cd6497d42d..e6d5893c5905 100644
> --- a/drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c
> +++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-dwc-qos-eth.c
> @@ -84,29 +84,9 @@ static int dwc_eth_dwmac_config_dt(struct platform_device *pdev,
> device_property_read_u32(dev, "snps,burst-map", &burst_map);
>
> /* converts burst-map bitmask to burst array */
> - for (bit_index = 0; bit_index < 7; bit_index++) {
> - if (burst_map & (1 << bit_index)) {
> - switch (bit_index) {
> - case 0:
> - plat_dat->axi->axi_blen[a_index] = 4; break;
> - case 1:
> - plat_dat->axi->axi_blen[a_index] = 8; break;
> - case 2:
> - plat_dat->axi->axi_blen[a_index] = 16; break;
> - case 3:
> - plat_dat->axi->axi_blen[a_index] = 32; break;
> - case 4:
> - plat_dat->axi->axi_blen[a_index] = 64; break;
> - case 5:
> - plat_dat->axi->axi_blen[a_index] = 128; break;
> - case 6:
> - plat_dat->axi->axi_blen[a_index] = 256; break;
> - default:
> - break;
> - }
> - a_index++;
> - }
> - }
> + for (bit_index = 0; bit_index < 7; bit_index++)
> + if (burst_map & (1 << bit_index))
> + plat_dat->axi->axi_blen[a_index++] = 4 << bit_index;
>
> /* dwc-qos needs GMAC4, AAL, TSO and PMT */
> plat_dat->core_type = DWMAC_CORE_GMAC4;
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH net-next] net: stmmac: dwc-qos-eth: simplify switch() in dwc_eth_dwmac_config_dt()
2025-11-18 11:18 [PATCH net-next] net: stmmac: dwc-qos-eth: simplify switch() in dwc_eth_dwmac_config_dt() Russell King (Oracle)
2025-11-18 13:48 ` Maxime Chevallier
@ 2025-11-19 10:10 ` Russell King (Oracle)
1 sibling, 0 replies; 3+ messages in thread
From: Russell King (Oracle) @ 2025-11-19 10:10 UTC (permalink / raw)
To: Andrew Lunn, Heiner Kallweit
Cc: Alexandre Torgue, Andrew Lunn, David S. Miller, Eric Dumazet,
Jakub Kicinski, linux-arm-kernel, linux-stm32, Maxime Coquelin,
netdev, Paolo Abeni
On Tue, Nov 18, 2025 at 11:18:01AM +0000, Russell King (Oracle) wrote:
> Simplify the the switch() statement in dwc_eth_dwmac_config_dt().
I notice that "the the" stammer has appeared in this patch commit
description, which is flagged as a warning in patchwork, so I'll
re-send with that fixed.
As I have a number of other patches that depend on this, all centred
around the axi_blen stuff, I'll send this patch as part of that series.
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 80Mbps down 10Mbps up. Decent connectivity at last!
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-11-19 10:11 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-18 11:18 [PATCH net-next] net: stmmac: dwc-qos-eth: simplify switch() in dwc_eth_dwmac_config_dt() Russell King (Oracle)
2025-11-18 13:48 ` Maxime Chevallier
2025-11-19 10:10 ` Russell King (Oracle)
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).