media: exynos4-is: Simplify the pinctrl code
authorSylwester Nawrocki <s.nawrocki@samsung.com>
Mon, 10 Aug 2020 15:32:40 +0000 (17:32 +0200)
committerMauro Carvalho Chehab <mchehab+huawei@kernel.org>
Sat, 29 Aug 2020 06:20:39 +0000 (08:20 +0200)
There is no need to request the "idle" pinctrl state in the driver as that
is implemented in the driver core and the pinctrl_pm_* API can be used for
switching between the default and the idle state.

Simplify the pinctrl code to only request and check for the mandatory
"default" pinctrl state.

Switching between the default/idle pinctrl state is not yet implemented
in the driver and this patch doesn't change that.

Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
drivers/media/platform/exynos4-is/media-dev.c
drivers/media/platform/exynos4-is/media-dev.h

index 9a575233e4c1e2958ee0b17f1c1022ff6a4c3f39..6df279665c9dcba82c5516bece1a65966fbdc7ee 100644 (file)
@@ -19,6 +19,7 @@
 #include <linux/of_platform.h>
 #include <linux/of_device.h>
 #include <linux/of_graph.h>
+#include <linux/pinctrl/consumer.h>
 #include <linux/platform_device.h>
 #include <linux/pm_runtime.h>
 #include <linux/types.h>
@@ -1254,26 +1255,6 @@ static ssize_t fimc_md_sysfs_store(struct device *dev,
 static DEVICE_ATTR(subdev_conf_mode, S_IWUSR | S_IRUGO,
                   fimc_md_sysfs_show, fimc_md_sysfs_store);
 
-static int fimc_md_get_pinctrl(struct fimc_md *fmd)
-{
-       struct device *dev = &fmd->pdev->dev;
-       struct fimc_pinctrl *pctl = &fmd->pinctl;
-
-       pctl->pinctrl = devm_pinctrl_get(dev);
-       if (IS_ERR(pctl->pinctrl))
-               return PTR_ERR(pctl->pinctrl);
-
-       pctl->state_default = pinctrl_lookup_state(pctl->pinctrl,
-                                       PINCTRL_STATE_DEFAULT);
-       if (IS_ERR(pctl->state_default))
-               return PTR_ERR(pctl->state_default);
-
-       /* PINCTRL_STATE_IDLE is optional */
-       pctl->state_idle = pinctrl_lookup_state(pctl->pinctrl,
-                                       PINCTRL_STATE_IDLE);
-       return 0;
-}
-
 static int cam_clk_prepare(struct clk_hw *hw)
 {
        struct cam_clk *camclk = to_cam_clk(hw);
@@ -1429,6 +1410,7 @@ static int fimc_md_probe(struct platform_device *pdev)
 {
        struct device *dev = &pdev->dev;
        struct v4l2_device *v4l2_dev;
+       struct pinctrl *pinctrl;
        struct fimc_md *fmd;
        int ret;
 
@@ -1465,8 +1447,9 @@ static int fimc_md_probe(struct platform_device *pdev)
        if (ret)
                goto err_v4l2dev;
 
-       ret = fimc_md_get_pinctrl(fmd);
-       if (ret < 0) {
+       pinctrl = devm_pinctrl_get(dev);
+       if (IS_ERR(pinctrl)) {
+               ret = PTR_ERR(pinctrl);
                if (ret != EPROBE_DEFER)
                        dev_err(dev, "Failed to get pinctrl: %d\n", ret);
                goto err_clk;
index 4b8f9ac52ebc4be4c7c18add8555c7a2bee0be80..9447fafe23c6e8028aa7467077239a95f0a0c424 100644 (file)
@@ -27,8 +27,6 @@
 #define FIMC_IS_OF_NODE_NAME   "fimc-is"
 #define CSIS_OF_NODE_NAME      "csis"
 
-#define PINCTRL_STATE_IDLE     "idle"
-
 #define FIMC_MAX_SENSORS       4
 #define FIMC_MAX_CAMCLKS       2
 #define DEFAULT_SENSOR_CLK_FREQ        24000000U
@@ -109,9 +107,6 @@ struct cam_clk {
  * @media_dev: top level media device
  * @v4l2_dev: top level v4l2_device holding up the subdevs
  * @pdev: platform device this media device is hooked up into
- * @pinctrl: camera port pinctrl handle
- * @state_default: pinctrl default state handle
- * @state_idle: pinctrl idle state handle
  * @cam_clk_provider: CAMCLK clock provider structure
  * @user_subdev_api: true if subdevs are not configured by the host driver
  * @slock: spinlock protecting @sensor array
@@ -131,12 +126,6 @@ struct fimc_md {
        struct v4l2_device v4l2_dev;
        struct platform_device *pdev;
 
-       struct fimc_pinctrl {
-               struct pinctrl *pinctrl;
-               struct pinctrl_state *state_default;
-               struct pinctrl_state *state_idle;
-       } pinctl;
-
        struct cam_clk_provider {
                struct clk *clks[FIMC_MAX_CAMCLKS];
                struct clk_onecell_data clk_data;