mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-11-03 14:34:27 -05:00 
			
		
		
		
	Qualcomm NSS-DP is as its name says Qualcomms ethernet driver for the NSS subsystem (Networking subsystem) built-into various Qualcomm SoCs. It has 2 modes of operation: * Without NSS FW and rest of code required for offloading This is the one that we will use as the amount of kernel patching required for NSS offloading and the fact that its not upstreamable at all makes it unusable for us. Driver in this mode is rather basic, it currently only offers NAPI GRO (Added by us as part of the fixup) and basically relies on the powerfull CPU to get good throughput. * With NSS FW and rest of code required for offloading In this mode, driver just registers the interfaces and hooks them into NSS-ECM to allow offloading. This mode is not viable for use in OpenWrt due to reasons already described above. This driver is required for ipq807x to have wired networking until a better one is available, so lets add the fixed-up version for 5.15 for now. Signed-off-by: Robert Marko <robimarko@gmail.com>
		
			
				
	
	
		
			24 lines
		
	
	
		
			813 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			813 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
From fee52ef165e9fab2fca15492677082fd8e9e891f Mon Sep 17 00:00:00 2001
 | 
						|
From: Ansuel Smith <ansuelsmth@gmail.com>
 | 
						|
Date: Thu, 19 May 2022 23:40:24 +0200
 | 
						|
Subject: [PATCH 12/12] gmac: syn: xgmac: silence debug log on probe
 | 
						|
 | 
						|
Silence debug log set as info in xgmac port probe.
 | 
						|
 | 
						|
Signed-off-by: Ansuel Smith <ansuelsmth@gmail.com>
 | 
						|
---
 | 
						|
 hal/gmac_ops/syn/xgmac/syn_if.c | 2 +-
 | 
						|
 1 file changed, 1 insertion(+), 1 deletion(-)
 | 
						|
 | 
						|
--- a/hal/gmac_ops/syn/xgmac/syn_if.c
 | 
						|
+++ b/hal/gmac_ops/syn/xgmac/syn_if.c
 | 
						|
@@ -445,7 +445,7 @@ static void *syn_init(struct nss_gmac_ha
 | 
						|
 
 | 
						|
 	spin_lock_init(&shd->nghd.slock);
 | 
						|
 
 | 
						|
-	netdev_info(ndev, "ioremap OK.Size 0x%x Ndev base 0x%lx macbase 0x%px\n",
 | 
						|
+	netdev_dbg(ndev, "ioremap OK.Size 0x%x Ndev base 0x%lx macbase 0x%px\n",
 | 
						|
 			gmacpdata->reg_len,
 | 
						|
 			ndev->base_addr,
 | 
						|
 			shd->nghd.mac_base);
 |