Removed upstreamed: uml/patches-5.15/001-um-fix-default-console-kernel-parameter.patch[1] All other patches automatically rebased Build system: x86_64 Build-tested: bcm2711/RPi4B, mt7622/RT3200 Run-tested: bcm2711/RPi4B, mt7622/RT3200 1. https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.71&id=e1dbe8a62098b20f5093cf75ade2f2dc9259b006 Signed-off-by: John Audia <therealgraysky@proton.me> Compile-tested: mvebu/cortexa72 (RB5009UG+S+IN) Run-tested: mvebu/cortexa72 (RB5009UG+S+IN)
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Diff
		
	
	
	
	
	
From 2e677e4ae8f8330f68013163b060d0fda3a43095 Mon Sep 17 00:00:00 2001
 | 
						|
From: "Langer, Thomas" <tlanger@maxlinear.com>
 | 
						|
Date: Fri, 9 Jul 2021 17:36:46 +0200
 | 
						|
Subject: [PATCH] PONRTSYS-8842: aquantia: Add AQR113 driver support
 | 
						|
 | 
						|
Add a new entry for AQR113 PHY_ID
 | 
						|
---
 | 
						|
 drivers/net/phy/aquantia_main.c | 10 ++++++++++
 | 
						|
 1 file changed, 10 insertions(+)
 | 
						|
 | 
						|
--- a/drivers/net/phy/aquantia_main.c
 | 
						|
+++ b/drivers/net/phy/aquantia_main.c
 | 
						|
@@ -21,6 +21,7 @@
 | 
						|
 #define PHY_ID_AQR106	0x03a1b4d0
 | 
						|
 #define PHY_ID_AQR107	0x03a1b4e0
 | 
						|
 #define PHY_ID_AQR112	0x03a1b662
 | 
						|
+#define PHY_ID_AQR113	0x31c31c40
 | 
						|
 #define PHY_ID_AQR113C	0x31c31c12
 | 
						|
 #define PHY_ID_AQCS109	0x03a1b5c2
 | 
						|
 #define PHY_ID_AQR405	0x03a1b4b0
 | 
						|
@@ -914,6 +915,14 @@ static struct phy_driver aqr_driver[] =
 | 
						|
 	.get_stats	= aqr107_get_stats,
 | 
						|
 },
 | 
						|
 {
 | 
						|
+	PHY_ID_MATCH_MODEL(PHY_ID_AQR113),
 | 
						|
+	.name		= "Aquantia AQR113",
 | 
						|
+	.config_aneg	= aqr_config_aneg,
 | 
						|
+	.config_intr	= aqr_config_intr,
 | 
						|
+	.handle_interrupt = aqr_handle_interrupt,
 | 
						|
+	.read_status	= aqr107_read_status,
 | 
						|
+},
 | 
						|
+{
 | 
						|
 	PHY_ID_MATCH_MODEL(PHY_ID_AQR412),
 | 
						|
 	.name		= "Aquantia AQR412",
 | 
						|
 	.probe		= aqr107_probe,
 | 
						|
@@ -936,6 +945,7 @@ static struct mdio_device_id __maybe_unu
 | 
						|
 	{ PHY_ID_MATCH_MODEL(PHY_ID_AQR106) },
 | 
						|
 	{ PHY_ID_MATCH_MODEL(PHY_ID_AQR107) },
 | 
						|
 	{ PHY_ID_MATCH_MODEL(PHY_ID_AQR112) },
 | 
						|
+	{ PHY_ID_MATCH_MODEL(PHY_ID_AQR113) },
 | 
						|
 	{ PHY_ID_MATCH_MODEL(PHY_ID_AQR113C) },
 | 
						|
 	{ PHY_ID_MATCH_MODEL(PHY_ID_AQCS109) },
 | 
						|
 	{ PHY_ID_MATCH_MODEL(PHY_ID_AQR405) },
 |