rockchip: rk3399: Add Kconfig option for full pinctrl driver
authorChristoph Muellner <christoph.muellner@theobroma-systems.com>
Wed, 2 Jan 2019 14:09:20 +0000 (15:09 +0100)
committerPhilipp Tomsich <philipp.tomsich@theobroma-systems.com>
Wed, 2 Jan 2019 21:39:12 +0000 (22:39 +0100)
This patch adds a Kconfig option to enable the full pinctrl driver
for the RK3399. This flag needs to be enabed in order to get the
features of the full pinctrl driver compiled in (i.e. a .set_state()
callback).

Signed-off-by: Christoph Muellner <christoph.muellner@theobroma-systems.com>
Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
drivers/pinctrl/Kconfig
drivers/pinctrl/rockchip/pinctrl_rk3399.c

index 1dbe2b104b245add7085907c8e8fc203287e1d6a..30a6aa6ee8ebb792bbbcd76321fd0cb6c72b4463 100644 (file)
@@ -238,6 +238,16 @@ config PINCTRL_ROCKCHIP_RK3399
          the GPIO definitions and pin control functions for each available
          multiplex function.
 
+config PINCTRL_ROCKCHIP_RK3399_FULL
+       bool "Rockchip rk3399 pin control driver (full)"
+       depends on PINCTRL_FULL && PINCTRL_ROCKCHIP_RK3399
+       help
+         Support full pin multiplexing control on Rockchip rk3399 SoCs.
+
+         This enables the full pinctrl driver for the RK3399.
+         Contrary to the non-full pinctrl driver, this will evaluate
+         the board DTB to get the pinctrl settings.
+
 config PINCTRL_ROCKCHIP_RV1108
        bool "Rockchip rv1108 pin control driver"
        depends on DM
index a1d5e8d0d52006dc7537242b0702ae3d486f223d..c4746b0122de4e1070fcde92c40edd42a2145e29 100644 (file)
 #include <asm/arch/clock.h>
 #include <dm/pinctrl.h>
 
+#if CONFIG_IS_ENABLED(PINCTRL_ROCKCHIP_RK3399_FULL)
 static const u32 RK_GRF_P_PULLUP = 1;
 static const u32 RK_GRF_P_PULLDOWN = 2;
+#endif /* PINCTRL_ROCKCHIP_RK3399_FULL */
 
 struct rk3399_pinctrl_priv {
        struct rk3399_grf_regs *grf;
@@ -24,6 +26,7 @@ struct rk3399_pinctrl_priv {
        struct rockchip_pin_bank *banks;
 };
 
+#if CONFIG_IS_ENABLED(PINCTRL_ROCKCHIP_RK3399_FULL)
 /* Location of pinctrl/pinconf registers. */
 enum rk_grf_location {
        RK_GRF,
@@ -244,6 +247,8 @@ end:
        return ret;
 }
 
+#endif /* PINCTRL_ROCKCHIP_RK3399_FULL */
+
 static void pinctrl_rk3399_pwm_config(struct rk3399_grf_regs *grf,
                struct rk3399_pmugrf_regs *pmugrf, int pwm_id)
 {
@@ -693,7 +698,9 @@ static int rk3399_pinctrl_set_state_simple(struct udevice *dev,
 }
 
 static struct pinctrl_ops rk3399_pinctrl_ops = {
+#if CONFIG_IS_ENABLED(PINCTRL_ROCKCHIP_RK3399_FULL)
        .set_state      = rk3399_pinctrl_set_state,
+#endif
        .set_state_simple       = rk3399_pinctrl_set_state_simple,
        .request        = rk3399_pinctrl_request,
        .get_periph_id  = rk3399_pinctrl_get_periph_id,
@@ -707,7 +714,9 @@ static int rk3399_pinctrl_probe(struct udevice *dev)
        priv->grf = syscon_get_first_range(ROCKCHIP_SYSCON_GRF);
        priv->pmugrf = syscon_get_first_range(ROCKCHIP_SYSCON_PMUGRF);
        debug("%s: grf=%p, pmugrf=%p\n", __func__, priv->grf, priv->pmugrf);
+#if CONFIG_IS_ENABLED(PINCTRL_ROCKCHIP_RK3399_FULL)
        priv->banks = rk3399_pin_banks;
+#endif /* PINCTRL_ROCKCHIP_RK3399_FULL */
 
        return ret;
 }