From: Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
To: Linus Walleij <linus.walleij@linaro.org>,
Karl Chan <exxxxkc@getgoogleoff.me>,
Arnd Bergmann <arnd@arndb.de>,
Catalin Marinas <catalin.marinas@arm.com>,
Will Deacon <will@kernel.org>
Cc: linux-arm-msm@vger.kernel.org, andersson@kernel.org,
konradybcio@kernel.org, robh@kernel.org, krzk+dt@kernel.org,
conor+dt@kernel.org, mturquette@baylibre.com, sboyd@kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-clk@vger.kernel.org, linux-gpio@vger.kernel.org
Subject: Re: [PATCH v6 0/5] Initial Support for Linksys EA9350 V3 (linksys-jamaica)
Date: Mon, 7 Oct 2024 23:52:10 +0200 [thread overview]
Message-ID: <374339b4-3875-4680-a0b6-e0d3e69f4935@oss.qualcomm.com> (raw)
In-Reply-To: <CACRpkdbj8fkQf38n0t-==cFZj55TPgoTGM-dzESWgeRGfPHofQ@mail.gmail.com>
On 7.10.2024 10:23 PM, Linus Walleij wrote:
> On Mon, Oct 7, 2024 at 6:35 PM Karl Chan <exxxxkc@getgoogleoff.me> wrote:
>
>> Also The original firmware from Linksys can only boot ARM32 kernels.
>>
>> As of now There seems to be no way to boot ARM64 kernels on those device.
>
> So this is a Cortex-A53 Aarch64 system running in ARM32 mode.
>
> So I got this interactive U-boot log from Karl showing how the attempt
> to boot an Aarch64 kernel manifests:
>
> CBT U-Boot ver: 3.2.08 ([IPQ5018].[SPF11.3].[CSU2])
>
> ## Loading kernel from FIT Image at 44000000 ...
> Using 'standard' configuration
> Trying 'kernel' kernel subimage
> Description: Kernel
> Type: Kernel Image
> Compression: uncompressed
> Data Start: 0x440000a8
> Data Size: 8249289 Bytes = 7.9 MiB
> Architecture: AArch64
> OS: Linux
> Load Address: 0x41208000
> Entry Point: 0x41208000
> Verifying Hash Integrity ... OK
> (...)
> ## Loading ramdisk from FIT Image at 44000000 ...
> (...)
> ## Loading fdt from FIT Image at 44000000 ...
> (...)
> fdt_fixup_qpic: QPIC: unable to find node '/soc/qpic-nand@79b0000'
> Could not find PCI in device tree
> Using machid 0x8040001 from environment
>
> Starting kernel ...
>
> undefined instruction
> pc : [<41208004>] lr : [<4a921f8f>]
> reloc pc : [<41208004>] lr : [<4a921f8f>]
> sp : 4a822838 ip : 00000001 fp : 00000000
> r10: 4a83b914 r9 : 4a822ea0 r8 : 00000000
> r7 : 00000000 r6 : 41208000 r5 : 4a97d848 r4 : 00000000
> r3 : 644d5241 r2 : 4a0ae000 r1 : 08040001 r0 : 00000000
> Flags: nzCV IRQs off FIQs off Mode SVC_32
> Resetting CPU ...
>
> resetting ...
>
> So perhaps someone knows how we can get around this.
>
> It seems to me the U-Boot is in 32bit mode and tries to just
> execute an Aarch64 binary and that doesn't work.
>
> What we need is a 32bit mode preamble that can switch
> the machine to Aarch64 and continue.
>
> I don't know *how* to do that, but I would *guess* a botched
> return from exception where you provide your own stack
> with the Aarch64 state hardcoded on it should do the job?
>
> The Aarch64 maintainers will know what to do.
>
> Surely it should be possible to add a little code snippet
> to do this somewhere in memory, and that in turn jumps
> to execute the actual Aarch64 kernel in Aarch64 mode?
Not sure about this one, but older (10+yo) qcom socs had a
secure call to switch to 64bit..
Konrad
next prev parent reply other threads:[~2024-10-07 21:52 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-07 16:34 Karl Chan
2024-10-07 16:34 ` [PATCH v6 1/5] dt-bindings: arm: qcom: add Linksys EA9350 V3 Karl Chan
2024-10-07 18:11 ` Krzysztof Kozlowski
2024-10-07 16:34 ` [PATCH v6 2/5] arm64: dts: " Karl Chan
2024-10-07 17:28 ` Dmitry Baryshkov
2024-10-07 16:34 ` [PATCH v6 3/5] clk: qcom: ipq5018: allow it to be bulid on arm32 Karl Chan
2024-10-07 17:25 ` Dmitry Baryshkov
2024-10-07 16:34 ` [PATCH v6 4/5] pinctrl: " Karl Chan
2024-10-07 17:26 ` Dmitry Baryshkov
2024-10-07 16:34 ` [PATCH v6 5/5] arm: dts: qcom-ipq5018-linksys-jamaica: Include dts from arm64 Karl Chan
2024-10-07 17:26 ` Dmitry Baryshkov
2024-10-07 20:23 ` [PATCH v6 0/5] Initial Support for Linksys EA9350 V3 (linksys-jamaica) Linus Walleij
2024-10-07 21:52 ` Konrad Dybcio [this message]
2024-10-07 22:00 ` Arnd Bergmann
2024-10-08 8:47 ` Karl Chan
2024-10-08 9:11 ` Linus Walleij
2024-10-08 12:18 ` Karl Chan
2025-02-14 22:38 ` (subset) " Bjorn Andersson
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=374339b4-3875-4680-a0b6-e0d3e69f4935@oss.qualcomm.com \
--to=konrad.dybcio@oss.qualcomm.com \
--cc=andersson@kernel.org \
--cc=arnd@arndb.de \
--cc=catalin.marinas@arm.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=exxxxkc@getgoogleoff.me \
--cc=konradybcio@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mturquette@baylibre.com \
--cc=robh@kernel.org \
--cc=sboyd@kernel.org \
--cc=will@kernel.org \
/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®