aboutsummaryrefslogtreecommitdiff
path: root/board/thecus
diff options
context:
space:
mode:
authorTony Dinh2023-02-06 17:00:11 -0800
committerStefan Roese2023-02-13 10:14:50 +0100
commit384e2d396c378063749849739e6b528be59c4071 (patch)
tree7197de51a54ce0e48d284139767cc74c7ade6b9d /board/thecus
parent0ca42c18a86dcf423e079f0d4a163c5d1c190beb (diff)
arm: mvebu: Power up 2nd SATA port for Thecus N2350
Currently, only the 1st SATA port is powered up (by GPIO1 12). Add GPIO1 13 in board initialization to power up the 2nd SATA port. Note that this patch depends on the initial add-support patch: https://patchwork.ozlabs.org/project/uboot/patch/20230201231306.7010-1-mibodhi@gmail.com/ Signed-off-by: Tony Dinh <mibodhi@gmail.com> Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/thecus')
-rw-r--r--board/thecus/n2350/n2350.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/thecus/n2350/n2350.c b/board/thecus/n2350/n2350.c
index 4cfdfba6628..fd8f95f9446 100644
--- a/board/thecus/n2350/n2350.c
+++ b/board/thecus/n2350/n2350.c
@@ -24,8 +24,8 @@ DECLARE_GLOBAL_DATA_PTR;
#define N2350_GPP_OUT_ENA_LOW (~(BIT(20) | BIT(21) | BIT(24)))
#define N2350_GPP_OUT_ENA_MID (~(BIT(12) | BIT(13) | BIT(16) | BIT(19) | BIT(22)))
-#define N2350_GPP_OUT_VAL_LOW 0x1200000
-#define N2350_GPP_OUT_VAL_MID 0x1001
+#define N2350_GPP_OUT_VAL_LOW (BIT(21) | BIT(24))
+#define N2350_GPP_OUT_VAL_MID (BIT(0) | BIT(12) | BIT(13))
#define N2350_GPP_POL_LOW 0x0
#define N2350_GPP_POL_MID 0x0