[PATCH v3 1/2] pinctrl: rockchip: find gpiochip by gpio label
kernel test robot
lkp at intel.com
Wed Sep 21 13:22:19 PDT 2022
Hi Jianqun,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on rockchip/for-next]
[also build test WARNING on linus/master v6.0-rc6 next-20220921]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch#_base_tree_information]
url: https://github.com/intel-lab-lkp/linux/commits/Jianqun-Xu/rockchip-pinctrl-for-acpi/20220920-113519
base: https://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git for-next
config: loongarch-randconfig-r002-20220921 (https://download.01.org/0day-ci/archive/20220922/202209220454.AeRchWGY-lkp@intel.com/config)
compiler: loongarch64-linux-gcc (GCC) 12.1.0
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# https://github.com/intel-lab-lkp/linux/commit/576939e7212366aa2cc7f5bb44f4f70bad577b4d
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Jianqun-Xu/rockchip-pinctrl-for-acpi/20220920-113519
git checkout 576939e7212366aa2cc7f5bb44f4f70bad577b4d
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-12.1.0 make.cross W=1 O=build_dir ARCH=loongarch SHELL=/bin/bash drivers/gpio/ drivers/pinctrl/
If you fix the issue, kindly add following tag where applicable
| Reported-by: kernel test robot <lkp at intel.com>
All warnings (new ones prefixed by >>):
drivers/pinctrl/pinctrl-rockchip.c: In function 'rockchip_pinctrl_probe':
drivers/pinctrl/pinctrl-rockchip.c:3094:22: error: implicit declaration of function 'gpiochip_find_by_name' [-Werror=implicit-function-declaration]
3094 | gc = gpiochip_find_by_name((void *)ctrl->pin_banks[i].name);
| ^~~~~~~~~~~~~~~~~~~~~
>> drivers/pinctrl/pinctrl-rockchip.c:3094:20: warning: assignment to 'struct gpio_chip *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
3094 | gc = gpiochip_find_by_name((void *)ctrl->pin_banks[i].name);
| ^
cc1: some warnings being treated as errors
vim +3094 drivers/pinctrl/pinctrl-rockchip.c
3013
3014 static SIMPLE_DEV_PM_OPS(rockchip_pinctrl_dev_pm_ops, rockchip_pinctrl_suspend,
3015 rockchip_pinctrl_resume);
3016
3017 static int rockchip_pinctrl_probe(struct platform_device *pdev)
3018 {
3019 struct device *dev = &pdev->dev;
3020 struct fwnode_handle *fwnode = dev_fwnode(dev);
3021 struct rockchip_pinctrl *info;
3022 struct rockchip_pin_ctrl *ctrl;
3023 struct device_node *np, *node;
3024 struct resource *res;
3025 void __iomem *base;
3026 int ret, i;
3027
3028 if (is_of_node(fwnode)) {
3029 ret = of_platform_populate(to_of_node(fwnode), NULL, NULL, NULL);
3030 if (ret)
3031 return dev_err_probe(dev, ret, "failed to register gpio device\n");
3032 }
3033
3034 info = devm_kzalloc(dev, sizeof(*info), GFP_KERNEL);
3035 if (!info)
3036 return -ENOMEM;
3037
3038 info->dev = dev;
3039
3040 ctrl = rockchip_pinctrl_get_soc_data(info, pdev);
3041 if (!ctrl)
3042 return dev_err_probe(dev, -EINVAL, "driver data not available\n");
3043 info->ctrl = ctrl;
3044
3045 node = of_parse_phandle(np, "rockchip,grf", 0);
3046 if (node) {
3047 info->regmap_base = syscon_node_to_regmap(node);
3048 of_node_put(node);
3049 if (IS_ERR(info->regmap_base))
3050 return PTR_ERR(info->regmap_base);
3051 } else {
3052 base = devm_platform_get_and_ioremap_resource(pdev, 0, &res);
3053 if (IS_ERR(base))
3054 return PTR_ERR(base);
3055
3056 rockchip_regmap_config.max_register = resource_size(res) - 4;
3057 rockchip_regmap_config.name = "rockchip,pinctrl";
3058 info->regmap_base =
3059 devm_regmap_init_mmio(dev, base, &rockchip_regmap_config);
3060
3061 /* to check for the old dt-bindings */
3062 info->reg_size = resource_size(res);
3063
3064 /* Honor the old binding, with pull registers as 2nd resource */
3065 if (ctrl->type == RK3188 && info->reg_size < 0x200) {
3066 base = devm_platform_get_and_ioremap_resource(pdev, 1, &res);
3067 if (IS_ERR(base))
3068 return PTR_ERR(base);
3069
3070 rockchip_regmap_config.max_register = resource_size(res) - 4;
3071 rockchip_regmap_config.name = "rockchip,pinctrl-pull";
3072 info->regmap_pull =
3073 devm_regmap_init_mmio(dev, base, &rockchip_regmap_config);
3074 }
3075 }
3076
3077 /* try to find the optional reference to the pmu syscon */
3078 node = of_parse_phandle(np, "rockchip,pmu", 0);
3079 if (node) {
3080 info->regmap_pmu = syscon_node_to_regmap(node);
3081 of_node_put(node);
3082 if (IS_ERR(info->regmap_pmu))
3083 return PTR_ERR(info->regmap_pmu);
3084 }
3085
3086 ret = rockchip_pinctrl_register(pdev, info);
3087 if (ret)
3088 return ret;
3089
3090 for (i = 0; i < ctrl->nr_banks; i++) {
3091 struct gpio_chip *gc;
3092 struct rockchip_pin_bank *bank = &ctrl->pin_banks[i];
3093
> 3094 gc = gpiochip_find_by_name((void *)ctrl->pin_banks[i].name);
3095 if (!gc) {
3096 dev_err(dev, "fail to find gpiochip\n");
3097 return ret;
3098 }
3099
3100 ret = gpiochip_add_pin_range(gc, dev_name(dev), 0, gc->base, gc->ngpio);
3101 if (ret) {
3102 dev_err(dev, "fail to add pin range\n");
3103 return ret;
3104 }
3105 bank->gpio_chip = gc;
3106 }
3107
3108 platform_set_drvdata(pdev, info);
3109 dev_info(dev, "probed %pfw\n", fwnode);
3110
3111 return 0;
3112 }
3113
--
0-DAY CI Kernel Test Service
https://01.org/lkp
More information about the Linux-rockchip
mailing list