mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Guillaume Tucker <guillaume.tucker@collabora.com>
To: Linus Walleij <linus.walleij@linaro.org>
Cc: khilman@baylibre.com, tomeu.vizoso@collabora.com,
	mgalka@collabora.com, enric.balletbo@collabora.com,
	broonie@kernel.org,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	stable@vger.kernel.org, Sasha Levin <sashal@kernel.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Subject: Re: stable-rc/linux-4.19.y bisection: baseline.login on sun8i-h3-libretech-all-h3-cc
Date: Fri, 24 Jan 2020 12:58:32 +0000	[thread overview]
Message-ID: <0ed4668a-fb29-fca8-558e-385ef118d432@collabora.com> (raw)
In-Reply-To: <5e2ad951.1c69fb81.6d762.dd8e@mx.google.com>

Hi Linus,

Please see the bisection report below about a boot failure, it
looks legit as this commit was made today:


commit 5f9277249f9b126f815e23c3078cff3b69ce2715
Author:     Linus Walleij <linus.walleij@linaro.org>
AuthorDate: Mon Oct 1 22:43:46 2018 +0200
Commit:     Greg Kroah-Hartman <gregkh@linuxfoundation.org>
CommitDate: Fri Jan 24 10:27:24 2020 +0100

    regulator: fixed: Default enable high on DT regulators
    
    [ Upstream commit 28be5f15df2ee6882b0a122693159c96a28203c7 ]


KernelCI bisection reports are not publicly sent at the moment
while we're trialing some new bisection features.

Thanks,
Guillaume

On 24/01/2020 11:47, kernelci.org bot wrote:
> * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> * This automated bisection report was sent to you on the basis  *
> * that you may be involved with the breaking commit it has      *
> * found.  No manual investigation has been done to verify it,   *
> * and the root cause of the problem may be somewhere else.      *
> *                                                               *
> * If you do send a fix, please include this trailer:            *
> *   Reported-by: "kernelci.org bot" <bot@kernelci.org>          *
> *                                                               *
> * Hope this helps!                                              *
> * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
> 
> stable-rc/linux-4.19.y bisection: baseline.login on sun8i-h3-libretech-all-h3-cc
> 
> Summary:
>   Start:      be6fe2fc68d0 Linux 4.19.99-rc1
>   Plain log:  https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.98-640-gbe6fe2fc68d0/arm/sunxi_defconfig/gcc-8/lab-baylibre/baseline-sun8i-h3-libretech-all-h3-cc.txt
>   HTML log:   https://storage.kernelci.org//stable-rc/linux-4.19.y/v4.19.98-640-gbe6fe2fc68d0/arm/sunxi_defconfig/gcc-8/lab-baylibre/baseline-sun8i-h3-libretech-all-h3-cc.html
>   Result:     250d67d6bc05 regulator: fixed: Default enable high on DT regulators
> 
> Checks:
>   revert:     PASS
>   verify:     PASS
> 
> Parameters:
>   Tree:       stable-rc
>   URL:        https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable-rc.git
>   Branch:     linux-4.19.y
>   Target:     sun8i-h3-libretech-all-h3-cc
>   CPU arch:   arm
>   Lab:        lab-baylibre
>   Compiler:   gcc-8
>   Config:     sunxi_defconfig
>   Test case:  baseline.login
> 
> Breaking commit found:
> 
> -------------------------------------------------------------------------------
> commit 250d67d6bc0597c0c0de47b3ea32dc6d4e3f9322
> Author: Linus Walleij <linus.walleij@linaro.org>
> Date:   Mon Oct 1 22:43:46 2018 +0200
> 
>     regulator: fixed: Default enable high on DT regulators
>     
>     [ Upstream commit 28be5f15df2ee6882b0a122693159c96a28203c7 ]
>     
>     commit efdfeb079cc3
>     ("regulator: fixed: Convert to use GPIO descriptor only")
>     switched to use gpiod_get() to look up the regulator from the
>     gpiolib core whether that is device tree or boardfile.
>     
>     This meant that we activate the code in
>     a603a2b8d86e ("gpio: of: Add special quirk to parse regulator flags")
>     which means the descriptors coming from the device tree already
>     have the right inversion and open drain semantics set up from
>     the gpiolib core.
>     
>     As the fixed regulator was inspected again we got the
>     inverted inversion and things broke.
>     
>     Fix it by ignoring the config in the device tree for now: the
>     later patches in the series will push all inversion handling
>     over to the gpiolib core and set it up properly in the
>     boardfiles for legacy devices, but I did not finish that
>     for this kernel cycle.
>     
>     Fixes: commit efdfeb079cc3 ("regulator: fixed: Convert to use GPIO descriptor only")
>     Reported-by: Leonard Crestez <leonard.crestez@nxp.com>
>     Reported-by: Fabio Estevam <festevam@gmail.com>
>     Reported-by: John Stultz <john.stultz@linaro.org>
>     Reported-by: Anders Roxell <anders.roxell@linaro.org>
>     Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
>     Tested-by: John Stultz <john.stultz@linaro.org>
>     Signed-off-by: Mark Brown <broonie@kernel.org>
>     Signed-off-by: Sasha Levin <sashal@kernel.org>
> 
> diff --git a/drivers/regulator/fixed.c b/drivers/regulator/fixed.c
> index 988a7472c2ab..d68ff65a5adc 100644
> --- a/drivers/regulator/fixed.c
> +++ b/drivers/regulator/fixed.c
> @@ -84,9 +84,14 @@ of_get_fixed_voltage_config(struct device *dev,
>  
>  	of_property_read_u32(np, "startup-delay-us", &config->startup_delay);
>  
> -	config->enable_high = of_property_read_bool(np, "enable-active-high");
> -	config->gpio_is_open_drain = of_property_read_bool(np,
> -							   "gpio-open-drain");
> +	/*
> +	 * FIXME: we pulled active low/high and open drain handling into
> +	 * gpiolib so it will be handled there. Delete this in the second
> +	 * step when we also remove the custom inversion handling for all
> +	 * legacy boardfiles.
> +	 */
> +	config->enable_high = 1;
> +	config->gpio_is_open_drain = 0;
>  
>  	if (of_find_property(np, "vin-supply", NULL))
>  		config->input_supply = "vin";
> -------------------------------------------------------------------------------
> 
> 
> Git bisection log:
> 
> -------------------------------------------------------------------------------
> git bisect start
> # good: [d183c8e2647a7d45202c14a33631f6c09020f8ac] Linux 4.19.98
> git bisect good d183c8e2647a7d45202c14a33631f6c09020f8ac
> # bad: [be6fe2fc68d0d7571c06b5fc11d2282a6544ec0f] Linux 4.19.99-rc1
> git bisect bad be6fe2fc68d0d7571c06b5fc11d2282a6544ec0f
> # bad: [62715658388c5d59c35c4f7fdcffbc8e8772f39e] ARM: dts: ls1021: Fix SGMII PCS link remaining down after PHY disconnect
> git bisect bad 62715658388c5d59c35c4f7fdcffbc8e8772f39e
> # bad: [2d2f9b317958a34ebecf731ac7510c649a2ab33c] driver core: Do not resume suppliers under device_links_write_lock()
> git bisect bad 2d2f9b317958a34ebecf731ac7510c649a2ab33c
> # bad: [83ab4275fc5a25992200a394c692542ad8584276] mailbox: ti-msgmgr: Off by one in ti_msgmgr_of_xlate()
> git bisect bad 83ab4275fc5a25992200a394c692542ad8584276
> # good: [864d924463eb890af4ea92cbb4108ebcba42bd6c] usb: gadget: fsl_udc_core: check allocation return value and cleanup on failure
> git bisect good 864d924463eb890af4ea92cbb4108ebcba42bd6c
> # bad: [51ee3169bec81a0f48bdb0a7402bfa1d863d6006] mlxsw: reg: QEEC: Add minimum shaper fields
> git bisect bad 51ee3169bec81a0f48bdb0a7402bfa1d863d6006
> # bad: [bf4a2476e727c5a302c40a0e66e1702c2c135b7c] pwm: lpss: Release runtime-pm reference from the driver's remove callback
> git bisect bad bf4a2476e727c5a302c40a0e66e1702c2c135b7c
> # bad: [d54e7094b7bd73384d64cc328a0c979522e3cb67] of: Fix property name in of_node_get_device_type
> git bisect bad d54e7094b7bd73384d64cc328a0c979522e3cb67
> # bad: [250d67d6bc0597c0c0de47b3ea32dc6d4e3f9322] regulator: fixed: Default enable high on DT regulators
> git bisect bad 250d67d6bc0597c0c0de47b3ea32dc6d4e3f9322
> # good: [9b2060c15a1b2524fb4ac3f3cc2cf5dcbc293955] cfg80211: regulatory: make initialization more robust
> git bisect good 9b2060c15a1b2524fb4ac3f3cc2cf5dcbc293955
> # first bad commit: [250d67d6bc0597c0c0de47b3ea32dc6d4e3f9322] regulator: fixed: Default enable high on DT regulators
> -------------------------------------------------------------------------------
> 


       reply	other threads:[~2020-01-24 12:58 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <5e2ad951.1c69fb81.6d762.dd8e@mx.google.com>
2020-01-24 12:58 ` Guillaume Tucker [this message]
2020-01-24 13:18   ` Mark Brown
2020-01-24 13:44     ` Linus Walleij
2020-01-24 14:55       ` Sasha Levin

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=0ed4668a-fb29-fca8-558e-385ef118d432@collabora.com \
    --to=guillaume.tucker@collabora.com \
    --cc=broonie@kernel.org \
    --cc=enric.balletbo@collabora.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=khilman@baylibre.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mgalka@collabora.com \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=tomeu.vizoso@collabora.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®