From: kernel test robot <lkp@intel.com>
To: Sebastian Reichel <sebastian.reichel@collabora.com>,
Heiko Stuebner <heiko@sntech.de>
Cc: kbuild-all@lists.01.org, Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzk@kernel.org>,
Linus Walleij <linus.walleij@linaro.org>,
Bartosz Golaszewski <brgl@bgdev.pl>,
Adrian Hunter <adrian.hunter@intel.com>,
Ulf Hansson <ulf.hansson@linaro.org>,
Philipp Zabel <p.zabel@pengutronix.de>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>,
linux-clk@vger.kernel.org, linux-mmc@vger.kernel.org,
linux-gpio@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-rockchip@lists.infradead.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, kernel@lists.collabora.co.uk,
Elaine Zhang <zhangqing@rock-chips.com>,
kernel@collabora.com,
Sebastian Reichel <sebastian.reichel@collabora.com>
Subject: Re: [PATCHv1 06/19] clk: rockchip: Add clock controller for the RK3588
Date: Sat, 30 Apr 2022 03:31:43 +0800 [thread overview]
Message-ID: <202204300329.BL2rwfwr-lkp@intel.com> (raw)
In-Reply-To: <20220422170920.401914-7-sebastian.reichel@collabora.com>
Hi Sebastian,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on robh/for-next]
[also build test WARNING on linusw-pinctrl/devel linus/master v5.18-rc4 next-20220429]
[cannot apply to rockchip/for-next]
[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]
url: https://github.com/intel-lab-lkp/linux/commits/Sebastian-Reichel/Basic-RK3588-Support/20220423-013425
base: https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
config: arm64-defconfig (https://download.01.org/0day-ci/archive/20220430/202204300329.BL2rwfwr-lkp@intel.com/config)
compiler: aarch64-linux-gcc (GCC) 11.3.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/6736e6f1e32bb98780b77b5aa64fe5ac5dfaae26
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Sebastian-Reichel/Basic-RK3588-Support/20220423-013425
git checkout 6736e6f1e32bb98780b77b5aa64fe5ac5dfaae26
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.3.0 make.cross W=1 O=build_dir ARCH=arm64 SHELL=/bin/bash drivers/clk/rockchip/ drivers/media/platform/qcom/venus/
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
drivers/clk/rockchip/clk-rk3588.c: In function 'rk3588_clk_init':
>> drivers/clk/rockchip/clk-rk3588.c:2408:22: warning: variable 'clks' set but not used [-Wunused-but-set-variable]
2408 | struct clk **clks;
| ^~~~
vim +/clks +2408 drivers/clk/rockchip/clk-rk3588.c
2403
2404 static void __init rk3588_clk_init(struct device_node *np)
2405 {
2406 struct rockchip_clk_provider *ctx;
2407 void __iomem *reg_base;
> 2408 struct clk **clks;
2409
2410 reg_base = of_iomap(np, 0);
2411 if (!reg_base) {
2412 pr_err("%s: could not map cru region\n", __func__);
2413 return;
2414 }
2415
2416 ctx = rockchip_clk_init(np, reg_base, CLK_NR_CLKS);
2417 if (IS_ERR(ctx)) {
2418 pr_err("%s: rockchip clk init failed\n", __func__);
2419 iounmap(reg_base);
2420 return;
2421 }
2422 clks = ctx->clk_data.clks;
2423
2424 rockchip_clk_register_plls(ctx, rk3588_pll_clks,
2425 ARRAY_SIZE(rk3588_pll_clks),
2426 RK3588_GRF_SOC_STATUS0);
2427
2428 rockchip_clk_register_armclk(ctx, ARMCLK_L, "armclk_l",
2429 mux_armclkl_p, ARRAY_SIZE(mux_armclkl_p),
2430 &rk3588_cpulclk_data, rk3588_cpulclk_rates,
2431 ARRAY_SIZE(rk3588_cpulclk_rates));
2432 rockchip_clk_register_armclk(ctx, ARMCLK_B01, "armclk_b01",
2433 mux_armclkb01_p, ARRAY_SIZE(mux_armclkb01_p),
2434 &rk3588_cpub0clk_data, rk3588_cpub0clk_rates,
2435 ARRAY_SIZE(rk3588_cpub0clk_rates));
2436 rockchip_clk_register_armclk(ctx, ARMCLK_B23, "armclk_b23",
2437 mux_armclkb23_p, ARRAY_SIZE(mux_armclkb23_p),
2438 &rk3588_cpub1clk_data, rk3588_cpub1clk_rates,
2439 ARRAY_SIZE(rk3588_cpub1clk_rates));
2440
2441 rockchip_clk_register_branches(ctx, rk3588_clk_branches,
2442 ARRAY_SIZE(rk3588_clk_branches));
2443
2444 rockchip_register_softrst(np, 49158, reg_base + RK3588_SOFTRST_CON(0),
2445 ROCKCHIP_SOFTRST_HIWORD_MASK);
2446
2447 rockchip_register_restart_notifier(ctx, RK3588_GLB_SRST_FST, NULL);
2448
2449 rockchip_clk_of_add_provider(np, ctx);
2450 }
2451
--
0-DAY CI Kernel Test Service
https://01.org/lkp
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: Sebastian Reichel <sebastian.reichel@collabora.com>,
Heiko Stuebner <heiko@sntech.de>
Cc: kbuild-all@lists.01.org, Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzk@kernel.org>,
Linus Walleij <linus.walleij@linaro.org>,
Bartosz Golaszewski <brgl@bgdev.pl>,
Adrian Hunter <adrian.hunter@intel.com>,
Ulf Hansson <ulf.hansson@linaro.org>,
Philipp Zabel <p.zabel@pengutronix.de>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>,
linux-clk@vger.kernel.org, linux-mmc@vger.kernel.org,
linux-gpio@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-rockchip@lists.infradead.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, kernel@lists.collabora.co.uk,
Elaine Zhang <zhangqing@rock-chips.com>,
kernel@collabora.com,
Sebastian Reichel <sebastian.reichel@collabora.com>
Subject: Re: [PATCHv1 06/19] clk: rockchip: Add clock controller for the RK3588
Date: Sat, 30 Apr 2022 03:31:43 +0800 [thread overview]
Message-ID: <202204300329.BL2rwfwr-lkp@intel.com> (raw)
In-Reply-To: <20220422170920.401914-7-sebastian.reichel@collabora.com>
Hi Sebastian,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on robh/for-next]
[also build test WARNING on linusw-pinctrl/devel linus/master v5.18-rc4 next-20220429]
[cannot apply to rockchip/for-next]
[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]
url: https://github.com/intel-lab-lkp/linux/commits/Sebastian-Reichel/Basic-RK3588-Support/20220423-013425
base: https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
config: arm64-defconfig (https://download.01.org/0day-ci/archive/20220430/202204300329.BL2rwfwr-lkp@intel.com/config)
compiler: aarch64-linux-gcc (GCC) 11.3.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/6736e6f1e32bb98780b77b5aa64fe5ac5dfaae26
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Sebastian-Reichel/Basic-RK3588-Support/20220423-013425
git checkout 6736e6f1e32bb98780b77b5aa64fe5ac5dfaae26
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.3.0 make.cross W=1 O=build_dir ARCH=arm64 SHELL=/bin/bash drivers/clk/rockchip/ drivers/media/platform/qcom/venus/
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
drivers/clk/rockchip/clk-rk3588.c: In function 'rk3588_clk_init':
>> drivers/clk/rockchip/clk-rk3588.c:2408:22: warning: variable 'clks' set but not used [-Wunused-but-set-variable]
2408 | struct clk **clks;
| ^~~~
vim +/clks +2408 drivers/clk/rockchip/clk-rk3588.c
2403
2404 static void __init rk3588_clk_init(struct device_node *np)
2405 {
2406 struct rockchip_clk_provider *ctx;
2407 void __iomem *reg_base;
> 2408 struct clk **clks;
2409
2410 reg_base = of_iomap(np, 0);
2411 if (!reg_base) {
2412 pr_err("%s: could not map cru region\n", __func__);
2413 return;
2414 }
2415
2416 ctx = rockchip_clk_init(np, reg_base, CLK_NR_CLKS);
2417 if (IS_ERR(ctx)) {
2418 pr_err("%s: rockchip clk init failed\n", __func__);
2419 iounmap(reg_base);
2420 return;
2421 }
2422 clks = ctx->clk_data.clks;
2423
2424 rockchip_clk_register_plls(ctx, rk3588_pll_clks,
2425 ARRAY_SIZE(rk3588_pll_clks),
2426 RK3588_GRF_SOC_STATUS0);
2427
2428 rockchip_clk_register_armclk(ctx, ARMCLK_L, "armclk_l",
2429 mux_armclkl_p, ARRAY_SIZE(mux_armclkl_p),
2430 &rk3588_cpulclk_data, rk3588_cpulclk_rates,
2431 ARRAY_SIZE(rk3588_cpulclk_rates));
2432 rockchip_clk_register_armclk(ctx, ARMCLK_B01, "armclk_b01",
2433 mux_armclkb01_p, ARRAY_SIZE(mux_armclkb01_p),
2434 &rk3588_cpub0clk_data, rk3588_cpub0clk_rates,
2435 ARRAY_SIZE(rk3588_cpub0clk_rates));
2436 rockchip_clk_register_armclk(ctx, ARMCLK_B23, "armclk_b23",
2437 mux_armclkb23_p, ARRAY_SIZE(mux_armclkb23_p),
2438 &rk3588_cpub1clk_data, rk3588_cpub1clk_rates,
2439 ARRAY_SIZE(rk3588_cpub1clk_rates));
2440
2441 rockchip_clk_register_branches(ctx, rk3588_clk_branches,
2442 ARRAY_SIZE(rk3588_clk_branches));
2443
2444 rockchip_register_softrst(np, 49158, reg_base + RK3588_SOFTRST_CON(0),
2445 ROCKCHIP_SOFTRST_HIWORD_MASK);
2446
2447 rockchip_register_restart_notifier(ctx, RK3588_GLB_SRST_FST, NULL);
2448
2449 rockchip_clk_of_add_provider(np, ctx);
2450 }
2451
--
0-DAY CI Kernel Test Service
https://01.org/lkp
_______________________________________________
Linux-rockchip mailing list
Linux-rockchip@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-rockchip
WARNING: multiple messages have this Message-ID (diff)
From: kernel test robot <lkp@intel.com>
To: Sebastian Reichel <sebastian.reichel@collabora.com>,
Heiko Stuebner <heiko@sntech.de>
Cc: kbuild-all@lists.01.org, Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzk@kernel.org>,
Linus Walleij <linus.walleij@linaro.org>,
Bartosz Golaszewski <brgl@bgdev.pl>,
Adrian Hunter <adrian.hunter@intel.com>,
Ulf Hansson <ulf.hansson@linaro.org>,
Philipp Zabel <p.zabel@pengutronix.de>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>,
linux-clk@vger.kernel.org, linux-mmc@vger.kernel.org,
linux-gpio@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-rockchip@lists.infradead.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, kernel@lists.collabora.co.uk,
Elaine Zhang <zhangqing@rock-chips.com>,
kernel@collabora.com,
Sebastian Reichel <sebastian.reichel@collabora.com>
Subject: Re: [PATCHv1 06/19] clk: rockchip: Add clock controller for the RK3588
Date: Sat, 30 Apr 2022 03:31:43 +0800 [thread overview]
Message-ID: <202204300329.BL2rwfwr-lkp@intel.com> (raw)
In-Reply-To: <20220422170920.401914-7-sebastian.reichel@collabora.com>
Hi Sebastian,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on robh/for-next]
[also build test WARNING on linusw-pinctrl/devel linus/master v5.18-rc4 next-20220429]
[cannot apply to rockchip/for-next]
[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]
url: https://github.com/intel-lab-lkp/linux/commits/Sebastian-Reichel/Basic-RK3588-Support/20220423-013425
base: https://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git for-next
config: arm64-defconfig (https://download.01.org/0day-ci/archive/20220430/202204300329.BL2rwfwr-lkp@intel.com/config)
compiler: aarch64-linux-gcc (GCC) 11.3.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/6736e6f1e32bb98780b77b5aa64fe5ac5dfaae26
git remote add linux-review https://github.com/intel-lab-lkp/linux
git fetch --no-tags linux-review Sebastian-Reichel/Basic-RK3588-Support/20220423-013425
git checkout 6736e6f1e32bb98780b77b5aa64fe5ac5dfaae26
# save the config file
mkdir build_dir && cp config build_dir/.config
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=gcc-11.3.0 make.cross W=1 O=build_dir ARCH=arm64 SHELL=/bin/bash drivers/clk/rockchip/ drivers/media/platform/qcom/venus/
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp@intel.com>
All warnings (new ones prefixed by >>):
drivers/clk/rockchip/clk-rk3588.c: In function 'rk3588_clk_init':
>> drivers/clk/rockchip/clk-rk3588.c:2408:22: warning: variable 'clks' set but not used [-Wunused-but-set-variable]
2408 | struct clk **clks;
| ^~~~
vim +/clks +2408 drivers/clk/rockchip/clk-rk3588.c
2403
2404 static void __init rk3588_clk_init(struct device_node *np)
2405 {
2406 struct rockchip_clk_provider *ctx;
2407 void __iomem *reg_base;
> 2408 struct clk **clks;
2409
2410 reg_base = of_iomap(np, 0);
2411 if (!reg_base) {
2412 pr_err("%s: could not map cru region\n", __func__);
2413 return;
2414 }
2415
2416 ctx = rockchip_clk_init(np, reg_base, CLK_NR_CLKS);
2417 if (IS_ERR(ctx)) {
2418 pr_err("%s: rockchip clk init failed\n", __func__);
2419 iounmap(reg_base);
2420 return;
2421 }
2422 clks = ctx->clk_data.clks;
2423
2424 rockchip_clk_register_plls(ctx, rk3588_pll_clks,
2425 ARRAY_SIZE(rk3588_pll_clks),
2426 RK3588_GRF_SOC_STATUS0);
2427
2428 rockchip_clk_register_armclk(ctx, ARMCLK_L, "armclk_l",
2429 mux_armclkl_p, ARRAY_SIZE(mux_armclkl_p),
2430 &rk3588_cpulclk_data, rk3588_cpulclk_rates,
2431 ARRAY_SIZE(rk3588_cpulclk_rates));
2432 rockchip_clk_register_armclk(ctx, ARMCLK_B01, "armclk_b01",
2433 mux_armclkb01_p, ARRAY_SIZE(mux_armclkb01_p),
2434 &rk3588_cpub0clk_data, rk3588_cpub0clk_rates,
2435 ARRAY_SIZE(rk3588_cpub0clk_rates));
2436 rockchip_clk_register_armclk(ctx, ARMCLK_B23, "armclk_b23",
2437 mux_armclkb23_p, ARRAY_SIZE(mux_armclkb23_p),
2438 &rk3588_cpub1clk_data, rk3588_cpub1clk_rates,
2439 ARRAY_SIZE(rk3588_cpub1clk_rates));
2440
2441 rockchip_clk_register_branches(ctx, rk3588_clk_branches,
2442 ARRAY_SIZE(rk3588_clk_branches));
2443
2444 rockchip_register_softrst(np, 49158, reg_base + RK3588_SOFTRST_CON(0),
2445 ROCKCHIP_SOFTRST_HIWORD_MASK);
2446
2447 rockchip_register_restart_notifier(ctx, RK3588_GLB_SRST_FST, NULL);
2448
2449 rockchip_clk_of_add_provider(np, ctx);
2450 }
2451
--
0-DAY CI Kernel Test Service
https://01.org/lkp
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2022-04-29 19:32 UTC|newest]
Thread overview: 146+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-04-22 17:09 [PATCHv1 00/19] Basic RK3588 Support Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 17:09 ` [PATCHv1 01/19] dt-binding: clock: Document rockchip,rk3588-cru bindings Sebastian Reichel
2022-04-22 17:09 ` [PATCHv1 01/19] dt-binding: clock: Document rockchip, rk3588-cru bindings Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-23 10:01 ` [PATCHv1 01/19] dt-binding: clock: Document rockchip,rk3588-cru bindings Krzysztof Kozlowski
2022-04-23 10:01 ` Krzysztof Kozlowski
2022-04-23 10:01 ` Krzysztof Kozlowski
2022-04-22 17:09 ` [PATCHv1 02/19] clk: rockchip: add register offset of the cores select parent Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 17:09 ` [PATCHv1 03/19] clk: rockchip: add pll type for RK3588 Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-27 13:36 ` Nicolas Dufresne
2022-04-27 13:36 ` Nicolas Dufresne
2022-04-27 13:36 ` Nicolas Dufresne
2022-04-30 0:02 ` Heiko Stübner
2022-04-30 0:02 ` Heiko Stübner
2022-04-30 0:02 ` Heiko Stübner
2022-04-29 1:56 ` kernel test robot
2022-04-29 1:56 ` kernel test robot
2022-04-29 1:56 ` kernel test robot
2022-04-22 17:09 ` [PATCHv1 04/19] clk: rockchip: clk-cpu: add mux setting for cpu change frequency Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 17:09 ` [PATCHv1 05/19] clk: rockchip: add dt-binding header for rk3588 Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-05-02 22:15 ` Rob Herring
2022-05-02 22:15 ` Rob Herring
2022-05-02 22:15 ` Rob Herring
2022-04-22 17:09 ` [PATCHv1 06/19] clk: rockchip: Add clock controller for the RK3588 Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-29 19:31 ` kernel test robot [this message]
2022-04-29 19:31 ` kernel test robot
2022-04-29 19:31 ` kernel test robot
2022-04-22 17:09 ` [PATCHv1 07/19] dt-bindings: mmc: sdhci-of-dwcmhsc: Add rk3588 Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-23 10:01 ` Krzysztof Kozlowski
2022-04-23 10:01 ` Krzysztof Kozlowski
2022-04-23 10:01 ` Krzysztof Kozlowski
2022-05-04 10:37 ` Ulf Hansson
2022-05-04 10:37 ` Ulf Hansson
2022-05-04 10:37 ` Ulf Hansson
2022-04-22 17:09 ` [PATCHv1 08/19] mmc: sdhci-of-dwcmshc: add reset call back for rockchip Socs Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-23 10:32 ` Dmitry Osipenko
2022-04-23 10:32 ` Dmitry Osipenko
2022-04-23 10:32 ` Dmitry Osipenko
2022-04-27 7:50 ` Adrian Hunter
2022-04-27 7:50 ` Adrian Hunter
2022-04-27 7:50 ` Adrian Hunter
2022-04-22 17:09 ` [PATCHv1 09/19] mmc: sdhci-of-dwcmshc: rename rk3568 to rk35xx Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-27 7:51 ` Adrian Hunter
2022-04-27 7:51 ` Adrian Hunter
2022-04-27 7:51 ` Adrian Hunter
2022-04-22 17:09 ` [PATCHv1 10/19] mmc: sdhci-of-dwcmshc: add support for rk3588 Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-27 7:51 ` Adrian Hunter
2022-04-27 7:51 ` Adrian Hunter
2022-04-27 7:51 ` Adrian Hunter
2022-04-22 17:09 ` [PATCHv1 11/19] dt-bindings: pinctrl: rockchip: add rk3588 Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-23 10:02 ` Krzysztof Kozlowski
2022-04-23 10:02 ` Krzysztof Kozlowski
2022-04-23 10:02 ` Krzysztof Kozlowski
2022-04-22 17:09 ` [PATCHv1 12/19] pinctrl/rockchip: add error handling for pull/drive register getters Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 20:50 ` Heiko Stuebner
2022-04-22 20:50 ` Heiko Stuebner
2022-04-22 20:50 ` Heiko Stuebner
2022-04-28 22:54 ` Linus Walleij
2022-04-28 22:54 ` Linus Walleij
2022-04-28 22:54 ` Linus Walleij
2022-04-22 17:09 ` [PATCHv1 13/19] pinctrl/rockchip: add rk3588 support Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-28 22:55 ` Linus Walleij
2022-04-28 22:55 ` Linus Walleij
2022-04-28 22:55 ` Linus Walleij
2022-04-30 14:12 ` Heiko Stuebner
2022-04-30 14:12 ` Heiko Stuebner
2022-04-30 14:12 ` Heiko Stuebner
2022-04-22 17:09 ` [PATCHv1 14/19] gpio: rockchip: add support for rk3588 Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 20:35 ` Linus Walleij
2022-04-22 20:35 ` Linus Walleij
2022-04-22 20:35 ` Linus Walleij
2022-04-22 17:09 ` [PATCHv1 15/19] dt-bindings: serial: snps-dw-apb-uart: Add Rockchip RK3588 Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-23 10:02 ` Krzysztof Kozlowski
2022-04-23 10:02 ` Krzysztof Kozlowski
2022-04-23 10:02 ` Krzysztof Kozlowski
2022-04-22 17:09 ` [PATCHv1 16/19] dt-bindings: soc: rockchip: add initial rk3588 syscon compatibles Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-23 10:03 ` Krzysztof Kozlowski
2022-04-23 10:03 ` Krzysztof Kozlowski
2022-04-23 10:03 ` Krzysztof Kozlowski
2022-04-22 17:09 ` [PATCHv1 17/19] arm64: dts: rockchip: Add rk3588s pinctrl data Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 20:45 ` Linus Walleij
2022-04-22 20:45 ` Linus Walleij
2022-04-22 20:45 ` Linus Walleij
2022-04-22 17:09 ` [PATCHv1 18/19] arm64: dts: rockchip: Add base DT for rk3588 SoC Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 18:16 ` Robin Murphy
2022-04-22 18:16 ` Robin Murphy
2022-04-22 18:16 ` Robin Murphy
2022-04-25 18:14 ` Sebastian Reichel
2022-04-25 18:14 ` Sebastian Reichel
2022-04-25 18:14 ` Sebastian Reichel
2022-04-25 19:37 ` Peter Geis
2022-04-25 19:37 ` Peter Geis
2022-04-25 19:37 ` Peter Geis
2022-04-23 10:07 ` Krzysztof Kozlowski
2022-04-23 10:07 ` Krzysztof Kozlowski
2022-04-23 10:07 ` Krzysztof Kozlowski
2022-05-02 22:20 ` Rob Herring
2022-05-02 22:20 ` Rob Herring
2022-05-02 22:20 ` Rob Herring
2022-04-22 17:09 ` [PATCHv1 19/19] arm64: dts: rockchip: Add rk3588-evb1 board Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-22 17:09 ` Sebastian Reichel
2022-04-23 10:09 ` Krzysztof Kozlowski
2022-04-23 10:09 ` Krzysztof Kozlowski
2022-04-23 10:09 ` Krzysztof Kozlowski
2022-04-25 19:44 ` Rob Herring
2022-04-25 19:44 ` Rob Herring
2022-04-25 19:44 ` Rob Herring
2022-04-22 20:44 ` [PATCHv1 00/19] Basic RK3588 Support Linus Walleij
2022-04-22 20:44 ` Linus Walleij
2022-04-22 20:44 ` Linus Walleij
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=202204300329.BL2rwfwr-lkp@intel.com \
--to=lkp@intel.com \
--cc=adrian.hunter@intel.com \
--cc=brgl@bgdev.pl \
--cc=devicetree@vger.kernel.org \
--cc=heiko@sntech.de \
--cc=kbuild-all@lists.01.org \
--cc=kernel@collabora.com \
--cc=kernel@lists.collabora.co.uk \
--cc=krzk@kernel.org \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=mturquette@baylibre.com \
--cc=p.zabel@pengutronix.de \
--cc=robh+dt@kernel.org \
--cc=sboyd@kernel.org \
--cc=sebastian.reichel@collabora.com \
--cc=ulf.hansson@linaro.org \
--cc=zhangqing@rock-chips.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.