aboutsummaryrefslogtreecommitdiff
path: root/src/soc/rockchip/rk3288/gpio.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/rockchip/rk3288/gpio.c')
-rw-r--r--src/soc/rockchip/rk3288/gpio.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/soc/rockchip/rk3288/gpio.c b/src/soc/rockchip/rk3288/gpio.c
index 8a15b85908..c6104087e4 100644
--- a/src/soc/rockchip/rk3288/gpio.c
+++ b/src/soc/rockchip/rk3288/gpio.c
@@ -50,3 +50,9 @@ void *gpio_grf_reg(gpio_t gpio)
/* There is one pmu gpio, gpio0 , so " - 1" */
return &rk3288_grf->gpio1_p[(gpio.port - 1)][gpio.bank];
}
+
+u32 gpio_get_pull_val(gpio_t gpio, u32 pull)
+{
+ /* use the default gpio pull bias setting defined in soc/gpio.h */
+ return pull;
+}