aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/brcm63xx/patches-4.4/382-brcm63xx-setup-pinctrl-for-internal-switch-leds-on-b.patch
blob: 83e1ddc79b19f4667f5054bbbfc0e7efdd2e9b65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
From 8940437e017d446d61a035e847c2a1d7a57a4354 Mon Sep 17 00:00:00 2001
From: Jonas Gorski <jonas.gorski@gmail.com>
Date: Wed, 1 Feb 2017 12:17:13 +0100
Subject: [PATCH] brcm63xx: setup pinctrl for internal switch leds on bcm6368

---
 arch/mips/bcm63xx/boards/board_common.c | 9 +++++++++
 1 file changed, 9 insertions(+)

--- a/arch/mips/bcm63xx/boards/board_common.c
+++ b/arch/mips/bcm63xx/boards/board_common.c
@@ -104,6 +104,15 @@ void __init board_early_setup(const stru
 				GPIO_MODE_6348_G0_EXT_MII;
 	}
 
+	if (BCMCPU_IS_6368() && board.has_enetsw) {
+		int i;
+
+		for (i = 0; i < 4; i++) {
+			if (board.enetsw.used_ports[i].used)
+				val |= (GPIO_MODE_6368_EPHY0_LED << i);
+		}
+	}
+
 	bcm_gpio_writel(val, GPIO_MODE_REG);
 
 #if IS_ENABLED(CONFIG_USB)