diff mbox series

[net,v2,3/5] rtase: Add support for RTL907XD-VA PCIe port

Message ID 20241115095429.399029-4-justinlai0215@realtek.com (mailing list archive)
State Changes Requested
Delegated to: Netdev Maintainers
Headers show
Series Updating and correcting switch hardware versions and reported speeds | expand

Checks

Context Check Description
netdev/series_format success Posting correctly formatted
netdev/tree_selection success Clearly marked for net
netdev/ynl success Generated files up to date; no warnings/errors; no diff in generated;
netdev/fixes_present success Fixes tag present in non-next series
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 3 this patch: 3
netdev/build_tools success No tools touched, skip
netdev/cc_maintainers success CCed 7 of 7 maintainers
netdev/build_clang success Errors and warnings before: 3 this patch: 3
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/deprecated_api success None detected
netdev/check_selftest success No net selftest shell script
netdev/verify_fixes success No Fixes tag
netdev/build_allmodconfig_warn success Errors and warnings before: 4 this patch: 4
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 14 lines checked
netdev/build_clang_rust success No Rust files in patch. Skipping build
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0
netdev/contest success net-next-2024-11-15--21-00 (tests: 789)

Commit Message

Justin Lai Nov. 15, 2024, 9:54 a.m. UTC
1. Add RTL907XD-VA hardware version id.
2. Add the reported speed for RTL907XD-VA.

Signed-off-by: Justin Lai <justinlai0215@realtek.com>
---
 drivers/net/ethernet/realtek/rtase/rtase_main.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Andrew Lunn Nov. 16, 2024, 7:07 p.m. UTC | #1
On Fri, Nov 15, 2024 at 05:54:27PM +0800, Justin Lai wrote:
> 1. Add RTL907XD-VA hardware version id.
> 2. Add the reported speed for RTL907XD-VA.

This is not a fix, it never worked on this device as far as i see. So
this should be for net-next.

Please separate these patches out into real fixes, and new features.

	Andrew
Justin Lai Nov. 18, 2024, 2:30 a.m. UTC | #2
> 
> On Fri, Nov 15, 2024 at 05:54:27PM +0800, Justin Lai wrote:
> > 1. Add RTL907XD-VA hardware version id.
> > 2. Add the reported speed for RTL907XD-VA.
> 
> This is not a fix, it never worked on this device as far as i see. So
> this should be for net-next.
> 
> Please separate these patches out into real fixes, and new features.
> 
>         Andrew

Thank you for your response. I will follow these guidelines for the
categorization and upload the patch to net-next accordingly. I appreciate
your assistance.
Paolo Abeni Nov. 19, 2024, 10:29 a.m. UTC | #3
On 11/18/24 03:30, Justin Lai wrote:
>>
>> On Fri, Nov 15, 2024 at 05:54:27PM +0800, Justin Lai wrote:
>>> 1. Add RTL907XD-VA hardware version id.
>>> 2. Add the reported speed for RTL907XD-VA.
>>
>> This is not a fix, it never worked on this device as far as i see. So
>> this should be for net-next.
>>
>> Please separate these patches out into real fixes, and new features.
>>
>>         Andrew
> 
> Thank you for your response. I will follow these guidelines for the
> categorization and upload the patch to net-next accordingly. I appreciate
> your assistance.

Please re-post the series including net patches only and wait for the
merge window completion (~2w from now) before posting the net-next patch.

Thanks!

Paolo
Justin Lai Nov. 19, 2024, 11:30 a.m. UTC | #4
> On 11/18/24 03:30, Justin Lai wrote:
> >>
> >> On Fri, Nov 15, 2024 at 05:54:27PM +0800, Justin Lai wrote:
> >>> 1. Add RTL907XD-VA hardware version id.
> >>> 2. Add the reported speed for RTL907XD-VA.
> >>
> >> This is not a fix, it never worked on this device as far as i see. So
> >> this should be for net-next.
> >>
> >> Please separate these patches out into real fixes, and new features.
> >>
> >>         Andrew
> >
> > Thank you for your response. I will follow these guidelines for the
> > categorization and upload the patch to net-next accordingly. I
> > appreciate your assistance.
> 
> Please re-post the series including net patches only and wait for the merge
> window completion (~2w from now) before posting the net-next patch.
> 
> Thanks!
> 
> Paolo

Hi Paolo

Thank you for the notification. I have removed this patch from the latest
patch set.

Justin
diff mbox series

Patch

diff --git a/drivers/net/ethernet/realtek/rtase/rtase_main.c b/drivers/net/ethernet/realtek/rtase/rtase_main.c
index 5b8012987ea6..22389911a7d4 100644
--- a/drivers/net/ethernet/realtek/rtase/rtase_main.c
+++ b/drivers/net/ethernet/realtek/rtase/rtase_main.c
@@ -1725,6 +1725,7 @@  static int rtase_get_settings(struct net_device *dev,
 		cmd->base.speed = SPEED_5000;
 		break;
 	case 0x04800000:
+	case 0x08000000:
 		cmd->base.speed = SPEED_10000;
 		break;
 	}
@@ -1993,6 +1994,7 @@  static int rtase_check_mac_version_valid(struct rtase_private *tp)
 	case 0x00800000:
 	case 0x04000000:
 	case 0x04800000:
+	case 0x08000000:
 		ret = 0;
 		break;
 	}