mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* am335x: baltos
@ 2022-07-04 12:54 Yegor Yefremov
  2022-07-05  8:52 ` Sascha Hauer
  0 siblings, 1 reply; 3+ messages in thread
From: Yegor Yefremov @ 2022-07-04 12:54 UTC (permalink / raw)
  To: barebox

am335x-baltos got broken between 2022.06 and the current master. The
symptoms: no barebox console output at all i.e. the system freezes.

Here is git bisect log but I don't really see the reason for the failure:

git bisect start
# bad: [269dc4d7eb891dee25d4fb07b693a36ab37c7472] ARM: dts: am335x:
update cpsw nodes
git bisect bad 269dc4d7eb891dee25d4fb07b693a36ab37c7472
# good: [4708257d5e1345088aa2b3f2f76bb8bb37f7368d] Merge branch
'for-next/earlycon'
git bisect good 4708257d5e1345088aa2b3f2f76bb8bb37f7368d
# bad: [bd0e1e5dde37cb927ad9e5d225d55d0cb636a53d] Merge branch 'for-next/misc'
git bisect bad bd0e1e5dde37cb927ad9e5d225d55d0cb636a53d
# good: [949bc82e530381eab565b95e5bf1bbc0021d2c89] fastboot: always
try barebox_update handler for bbu- partitions
git bisect good 949bc82e530381eab565b95e5bf1bbc0021d2c89
# good: [ea162825a013c29823fed9e7d77c9671684cf247] state: don't report
error for -ENOMEDIUM
git bisect good ea162825a013c29823fed9e7d77c9671684cf247
# good: [32f05fa24bb481906ff23e496d3a09260c8959dd] ARM: i.MX: Make
sure *_get_boot_source always assignes *src
git bisect good 32f05fa24bb481906ff23e496d3a09260c8959dd
# good: [3367ebc55ebe92e21c9a9045e1eab35593cfcf57] scripts:
imx-usb-loader: simplify code flow for file size calculations
git bisect good 3367ebc55ebe92e21c9a9045e1eab35593cfcf57
# good: [370f346bca176a93d034af2c0021b5da9a6101ad] ddr: imx8m: remove
header including itself
git bisect good 370f346bca176a93d034af2c0021b5da9a6101ad
# bad: [8828e1226981b6a31b12a643768cac63fae3576e] Merge branch 'for-next/imx'
git bisect bad 8828e1226981b6a31b12a643768cac63fae3576e
# first bad commit: [8828e1226981b6a31b12a643768cac63fae3576e] Merge
branch 'for-next/imx'

Best regards,
Yegor



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: am335x: baltos
  2022-07-04 12:54 am335x: baltos Yegor Yefremov
@ 2022-07-05  8:52 ` Sascha Hauer
  2022-07-05 12:51   ` Yegor Yefremov
  0 siblings, 1 reply; 3+ messages in thread
From: Sascha Hauer @ 2022-07-05  8:52 UTC (permalink / raw)
  To: Yegor Yefremov; +Cc: barebox

Hi Yegor,

On Mon, Jul 04, 2022 at 02:54:48PM +0200, Yegor Yefremov wrote:
> am335x-baltos got broken between 2022.06 and the current master. The
> symptoms: no barebox console output at all i.e. the system freezes.
> 
> Here is git bisect log but I don't really see the reason for the failure:
> 
> # first bad commit: [8828e1226981b6a31b12a643768cac63fae3576e] Merge
> branch 'for-next/imx'

There's nothing in this branch that is even compiled on your board, so I
would guess that you gave a wrong answer somewhere during bisecting.
Apart from bisecting again you could enable some debugging:

[*] Low level debug messages (read help)
    Kernel low-level debugging port (AM33XX Debug UART)  --->
    (0) OMAP Debug UART Port Selection
    [*] Trace initcalls

Regards,
  Sascha
-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: am335x: baltos
  2022-07-05  8:52 ` Sascha Hauer
@ 2022-07-05 12:51   ` Yegor Yefremov
  0 siblings, 0 replies; 3+ messages in thread
From: Yegor Yefremov @ 2022-07-05 12:51 UTC (permalink / raw)
  To: Sascha Hauer; +Cc: barebox

Hi Sascha,

On Tue, Jul 5, 2022 at 10:52 AM Sascha Hauer <sha@pengutronix.de> wrote:
>
> Hi Yegor,
>
> On Mon, Jul 04, 2022 at 02:54:48PM +0200, Yegor Yefremov wrote:
> > am335x-baltos got broken between 2022.06 and the current master. The
> > symptoms: no barebox console output at all i.e. the system freezes.
> >
> > Here is git bisect log but I don't really see the reason for the failure:
> >
> > # first bad commit: [8828e1226981b6a31b12a643768cac63fae3576e] Merge
> > branch 'for-next/imx'
>
> There's nothing in this branch that is even compiled on your board, so I
> would guess that you gave a wrong answer somewhere during bisecting.
> Apart from bisecting again you could enable some debugging:
>
> [*] Low level debug messages (read help)
>     Kernel low-level debugging port (AM33XX Debug UART)  --->
>     (0) OMAP Debug UART Port Selection
>     [*] Trace initcalls

I always forget about this feature. So, the problem was "Compressed
data violation". Changing to CONFIG_CONSOLE_SIMPLE to reduce the NLO
size helped.

Thanks.

Yegor



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-07-05 12:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-04 12:54 am335x: baltos Yegor Yefremov
2022-07-05  8:52 ` Sascha Hauer
2022-07-05 12:51   ` Yegor Yefremov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox