RE: [PATCH v2 04/15] net/txgbe: add basic link configuration for Amber-Lite NICs

2025-08-03 Thread Jiawen Wu
> +s32 txgbe_setup_mac_link_aml(struct txgbe_hw *hw, > +u32 speed, > +bool autoneg_wait_to_complete) > +{ > + bool autoneg = false; > + s32 status = 0; > + s32 ret_status = 0; > + u32 link_speed = TXGBE_LINK_SPEED_UNKNOWN; > +

[PATCH v2 04/15] net/txgbe: add basic link configuration for Amber-Lite NICs

2025-06-25 Thread Zaiyu Wang
Due to Amber-Lite's significant differences from our 10G NICs, we split link configuration components (setup_link, check_link, etc.) into new files. Signed-off-by: Zaiyu Wang --- drivers/net/txgbe/base/meson.build | 2 + drivers/net/txgbe/base/txgbe_aml.c | 324 +++