mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
rockchip: rk3288: Remove phy reset GPIO pull up
We should not handle this pin explicitly from pinctrl. GMAC driver takes
care of it by using a "reset-gpio" in the DT.
This commit removes pull up for GPIO4B0.
Fixes: 2454b719fb
("rockchip: rk3288: Add pinctrl support for the...")
Signed-off-by: Romain Perier <romain.perier@collabora.com>
Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
This commit is contained in:
parent
928979cb2b
commit
a98fc4325e
1 changed files with 1 additions and 3 deletions
|
@ -501,11 +501,9 @@ static void pinctrl_rk3288_gmac_config(struct rk3288_grf *grf, int gmac_id)
|
|||
GPIO_BIAS_MASK << GPIO_BIAS_SHIFT(1),
|
||||
GPIO_BIAS_12MA << GPIO_BIAS_SHIFT(1));
|
||||
|
||||
/* Set pull normal for GPIO4B1, pull up for GPIO4B0 */
|
||||
/* Set pull normal for GPIO4B1 */
|
||||
rk_clrsetreg(&grf->gpio1_p[3][1],
|
||||
(GPIO_PULL_MASK << GPIO_PULL_SHIFT(0)) |
|
||||
(GPIO_PULL_MASK << GPIO_PULL_SHIFT(1)),
|
||||
(GPIO_PULL_UP << GPIO_PULL_SHIFT(0)) |
|
||||
(GPIO_PULL_NORMAL << GPIO_PULL_SHIFT(1)));
|
||||
|
||||
break;
|
||||
|
|
Loading…
Add table
Reference in a new issue