Module Name:    src
Committed By:   jmcneill
Date:           Sat Dec 23 12:50:55 UTC 2017

Modified Files:
        src/sys/arch/arm/sunxi: sunxi_platform.c

Log Message:
Apply RTL8211E 'no-rx-delay' workaround on Pine64+ boards


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/arch/arm/sunxi/sunxi_platform.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/arm/sunxi/sunxi_platform.c
diff -u src/sys/arch/arm/sunxi/sunxi_platform.c:1.17 src/sys/arch/arm/sunxi/sunxi_platform.c:1.18
--- src/sys/arch/arm/sunxi/sunxi_platform.c:1.17	Tue Dec 19 09:04:19 2017
+++ src/sys/arch/arm/sunxi/sunxi_platform.c	Sat Dec 23 12:50:55 2017
@@ -1,4 +1,4 @@
-/* $NetBSD: sunxi_platform.c,v 1.17 2017/12/19 09:04:19 skrll Exp $ */
+/* $NetBSD: sunxi_platform.c,v 1.18 2017/12/23 12:50:55 jmcneill Exp $ */
 
 /*-
  * Copyright (c) 2017 Jared McNeill <jmcne...@invisible.ca>
@@ -31,7 +31,7 @@
 #include "opt_fdt_arm.h"
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: sunxi_platform.c,v 1.17 2017/12/19 09:04:19 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sunxi_platform.c,v 1.18 2017/12/23 12:50:55 jmcneill Exp $");
 
 #include <sys/param.h>
 #include <sys/bus.h>
@@ -137,6 +137,15 @@ sunxi_platform_early_putchar(char c)
 static void
 sunxi_platform_device_register(device_t self, void *aux)
 {
+	prop_dictionary_t prop = device_properties(self);
+
+	if (device_is_a(self, "rgephy")) {
+		/* Pine64+ gigabit ethernet workaround */
+		const char * compat[] = { "pine64,pine64-plus", NULL };
+		if (of_match_compatible(OF_finddevice("/"), compat)) {
+			prop_dictionary_set_bool(prop, "no-rx-delay", true);
+		}
+	}
 }
 
 static u_int

Reply via email to