[coreboot-gerrit] New patch to review for coreboot: t210: Add PINMUX macros for drive strength

Patrick Georgi (pgeorgi@google.com) gerrit at coreboot.org
Thu Jul 16 18:12:58 CEST 2015


Patrick Georgi (pgeorgi at google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10944

-gerrit

commit 7557cac08a0b17bde7887d8e23e316f998426e3c
Author: Furquan Shaikh <furquan at google.com>
Date:   Mon Jul 13 09:48:06 2015 -0700

    t210: Add PINMUX macros for drive strength
    
    BUG=chrome-os-partner:41877
    BRANCH=None
    TEST=Compiles successfully and boots to kernel prompt
    
    Change-Id: Ic606838639d33242b227fece9cbb019d8f3b3729
    Signed-off-by: Patrick Georgi <pgeorgi at chromium.org>
    Original-Commit-Id: 805831489ad80e4ed335ece458f81238af704876
    Original-Change-Id: I54a730c3b97c3603a5b1981089913c58af2a42db
    Original-Signed-off-by: Furquan Shaikh <furquan at google.com>
    Original-Reviewed-on: https://chromium-review.googlesource.com/284958
    Original-Tested-by: Furquan Shaikh <furquan at chromium.org>
    Original-Reviewed-by: Aaron Durbin <adurbin at chromium.org>
    Original-Commit-Queue: Furquan Shaikh <furquan at chromium.org>
    Original-Trybot-Ready: Furquan Shaikh <furquan at chromium.org>
---
 src/soc/nvidia/tegra210/include/soc/pinmux.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/soc/nvidia/tegra210/include/soc/pinmux.h b/src/soc/nvidia/tegra210/include/soc/pinmux.h
index ab59fbf..3520cdb 100644
--- a/src/soc/nvidia/tegra210/include/soc/pinmux.h
+++ b/src/soc/nvidia/tegra210/include/soc/pinmux.h
@@ -41,6 +41,11 @@ enum {
 	PINMUX_IO_HV = 1 << 10,
 	PINMUX_OPEN_DRAIN = 1 << 11,
 	PINMUX_SCHMT = 1 << 12,
+
+	PINMUX_DRIVE_1X = 0 << 13,
+	PINMUX_DRIVE_2X = 1 << 13,
+	PINMUX_DRIVE_3X = 2 << 13,
+	PINMUX_DRIVE_4X = 3 << 13,
 };
 
 /* GPIO index constants. */



More information about the coreboot-gerrit mailing list