Module Name: src
Committed By: jmcneill
Date: Sat May 9 12:08:30 UTC 2015
Modified Files:
src/sys/arch/evbarm/tegra: tegra_machdep.c
Log Message:
for Jetson TK1, GPIO N5 controls vbus vdd for USB2
To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/arch/evbarm/tegra/tegra_machdep.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/evbarm/tegra/tegra_machdep.c
diff -u src/sys/arch/evbarm/tegra/tegra_machdep.c:1.10 src/sys/arch/evbarm/tegra/tegra_machdep.c:1.11
--- src/sys/arch/evbarm/tegra/tegra_machdep.c:1.10 Sun May 3 17:24:45 2015
+++ src/sys/arch/evbarm/tegra/tegra_machdep.c Sat May 9 12:08:30 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: tegra_machdep.c,v 1.10 2015/05/03 17:24:45 jmcneill Exp $ */
+/* $NetBSD: tegra_machdep.c,v 1.11 2015/05/09 12:08:30 jmcneill Exp $ */
/*-
* Copyright (c) 2015 Jared D. McNeill <[email protected]>
@@ -27,7 +27,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tegra_machdep.c,v 1.10 2015/05/03 17:24:45 jmcneill Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tegra_machdep.c,v 1.11 2015/05/09 12:08:30 jmcneill Exp $");
#include "opt_tegra.h"
#include "opt_machdep.h"
@@ -393,5 +393,15 @@ tegra_device_register(device_t self, voi
prop_dictionary_set_cstring(dict, "wp-gpio", "Q4");
}
}
+
+ if (device_is_a(self, "ehci")
+ && device_is_a(device_parent(self), "tegraio")) {
+ struct tegraio_attach_args * const tio = aux;
+ const struct tegra_locators * const loc = &tio->tio_loc;
+
+ if (loc->loc_port == 2) {
+ prop_dictionary_set_cstring(dict, "vbus-gpio", "N5");
+ }
+ }
#endif
}