From: Song Shuai <suagrfillet@gmail.com>
To: Conor Dooley <conor@kernel.org>
Cc: paul.walmsley@sifive.com, palmer@dabbelt.com,
aou@eecs.berkeley.edu, robh+dt@kernel.org,
frowand.list@gmail.com, ajones@ventanamicro.com,
alexghiti@rivosinc.com, mpe@ellerman.id.au, arnd@arndb.de,
rppt@kernel.org, samuel@sholland.org, panqinglin2020@iscas.ac.cn,
conor.dooley@microchip.com, anup@brainfault.org,
xianting.tian@linux.alibaba.com, anshuman.khandual@arm.com,
heiko@sntech.de, linux-riscv@lists.infradead.org,
linux-kernel@vger.kernel.org, devicetree@vger.kernel.org
Subject: Re: [PATCH V1 1/3] Revert "RISC-V: mark hibernation as nonportable"
Date: Sun, 25 Jun 2023 23:09:21 +0800 [thread overview]
Message-ID: <20281f01-2cc9-892e-beea-eb2bb91e3ca5@gmail.com> (raw)
In-Reply-To: <20230625-multiple-diaper-1db88a75314e@spud>
Sorry for the delayed reply,
My tinylab email went something wrong, I'll use gmail in this thread.
在 2023/6/25 22:18, Conor Dooley 写道:
> On Sun, Jun 25, 2023 at 10:09:29PM +0800, Song Shuai wrote:
>> This reverts commit ed309ce522185583b163bd0c74f0d9f299fe1826.
>>
>> With the commit 3335068f8721 ("riscv: Use PUD/P4D/PGD pages for the
>> linear mapping") reverted, the MIN_MEMBLOCK_ADDR points the kernel
>> load address which was placed at a PMD boundary.
>
>> And firmware always
>> correctly mark resident memory, or memory protected with PMP as
>> per the devicetree specification and/or the UEFI specification.
>
> But this is not true? The versions of OpenSBI that you mention in your
> cover letter do not do this.
> Please explain.
>
At this time, OpenSbi [v0.8,v1.3) and edk2(RiscVVirt) indeed don't obey
the DT/UEFI spec. This statement is excerpted from "Reserved memory for
resident firmware" part from the upcoming riscv/boot.rst. It isn't
accurate for now. How about deleting this one?
Actually with 3335068f8721 reverted, the change of MIN_MEMBLOCK_ADDR can
avoid the mapping of firmware memory, I will make it clear in the next
version.
>> So those regions will not be mapped in the linear mapping and they
>> can be safely saved/restored by hibernation.
>>
>> Signed-off-by: Song Shuai <songshuaishuai@tinylab.org>
>> ---
>> arch/riscv/Kconfig | 5 +----
>> 1 file changed, 1 insertion(+), 4 deletions(-)
>>
>> diff --git a/arch/riscv/Kconfig b/arch/riscv/Kconfig
>> index 5966ad97c30c..17b5fc7f54d4 100644
>> --- a/arch/riscv/Kconfig
>> +++ b/arch/riscv/Kconfig
>> @@ -800,11 +800,8 @@ menu "Power management options"
>>
>> source "kernel/power/Kconfig"
>>
>> -# Hibernation is only possible on systems where the SBI implementation has
>> -# marked its reserved memory as not accessible from, or does not run
>> -# from the same memory as, Linux
>> config ARCH_HIBERNATION_POSSIBLE
>> - def_bool NONPORTABLE
>> + def_bool y
>>
>> config ARCH_HIBERNATION_HEADER
>> def_bool HIBERNATION
>> --
>> 2.20.1
>>
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
WARNING: multiple messages have this Message-ID (diff)
From: Song Shuai <suagrfillet@gmail.com>
To: Conor Dooley <conor@kernel.org>
Cc: paul.walmsley@sifive.com, palmer@dabbelt.com,
aou@eecs.berkeley.edu, robh+dt@kernel.org,
frowand.list@gmail.com, ajones@ventanamicro.com,
alexghiti@rivosinc.com, mpe@ellerman.id.au, arnd@arndb.de,
rppt@kernel.org, samuel@sholland.org, panqinglin2020@iscas.ac.cn,
conor.dooley@microchip.com, anup@brainfault.org,
xianting.tian@linux.alibaba.com, anshuman.khandual@arm.com,
heiko@sntech.de, linux-riscv@lists.infradead.org,
linux-kernel@vger.kernel.org, devicetree@vger.kernel.org
Subject: Re: [PATCH V1 1/3] Revert "RISC-V: mark hibernation as nonportable"
Date: Sun, 25 Jun 2023 23:09:21 +0800 [thread overview]
Message-ID: <20281f01-2cc9-892e-beea-eb2bb91e3ca5@gmail.com> (raw)
In-Reply-To: <20230625-multiple-diaper-1db88a75314e@spud>
Sorry for the delayed reply,
My tinylab email went something wrong, I'll use gmail in this thread.
在 2023/6/25 22:18, Conor Dooley 写道:
> On Sun, Jun 25, 2023 at 10:09:29PM +0800, Song Shuai wrote:
>> This reverts commit ed309ce522185583b163bd0c74f0d9f299fe1826.
>>
>> With the commit 3335068f8721 ("riscv: Use PUD/P4D/PGD pages for the
>> linear mapping") reverted, the MIN_MEMBLOCK_ADDR points the kernel
>> load address which was placed at a PMD boundary.
>
>> And firmware always
>> correctly mark resident memory, or memory protected with PMP as
>> per the devicetree specification and/or the UEFI specification.
>
> But this is not true? The versions of OpenSBI that you mention in your
> cover letter do not do this.
> Please explain.
>
At this time, OpenSbi [v0.8,v1.3) and edk2(RiscVVirt) indeed don't obey
the DT/UEFI spec. This statement is excerpted from "Reserved memory for
resident firmware" part from the upcoming riscv/boot.rst. It isn't
accurate for now. How about deleting this one?
Actually with 3335068f8721 reverted, the change of MIN_MEMBLOCK_ADDR can
avoid the mapping of firmware memory, I will make it clear in the next
version.
>> So those regions will not be mapped in the linear mapping and they
>> can be safely saved/restored by hibernation.
>>
>> Signed-off-by: Song Shuai <songshuaishuai@tinylab.org>
>> ---
>> arch/riscv/Kconfig | 5 +----
>> 1 file changed, 1 insertion(+), 4 deletions(-)
>>
>> diff --git a/arch/riscv/Kconfig b/arch/riscv/Kconfig
>> index 5966ad97c30c..17b5fc7f54d4 100644
>> --- a/arch/riscv/Kconfig
>> +++ b/arch/riscv/Kconfig
>> @@ -800,11 +800,8 @@ menu "Power management options"
>>
>> source "kernel/power/Kconfig"
>>
>> -# Hibernation is only possible on systems where the SBI implementation has
>> -# marked its reserved memory as not accessible from, or does not run
>> -# from the same memory as, Linux
>> config ARCH_HIBERNATION_POSSIBLE
>> - def_bool NONPORTABLE
>> + def_bool y
>>
>> config ARCH_HIBERNATION_HEADER
>> def_bool HIBERNATION
>> --
>> 2.20.1
>>
next prev parent reply other threads:[~2023-06-25 15:09 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-25 14:09 [PATCH V1 0/3] Revert huge-paged linear mapping and its related fixups Song Shuai
2023-06-25 14:09 ` Song Shuai
2023-06-25 14:09 ` [PATCH V1 1/3] Revert "RISC-V: mark hibernation as nonportable" Song Shuai
2023-06-25 14:09 ` Song Shuai
2023-06-25 14:18 ` Conor Dooley
2023-06-25 14:18 ` Conor Dooley
2023-06-25 15:09 ` Song Shuai [this message]
2023-06-25 15:09 ` Song Shuai
2023-06-25 22:15 ` Conor Dooley
2023-06-25 22:15 ` Conor Dooley
2023-06-25 22:36 ` Palmer Dabbelt
2023-06-25 22:36 ` Palmer Dabbelt
2023-06-26 13:34 ` Conor Dooley
2023-06-26 13:34 ` Conor Dooley
2023-06-26 14:43 ` Palmer Dabbelt
2023-06-26 14:43 ` Palmer Dabbelt
2023-06-26 15:44 ` Conor Dooley
2023-06-26 15:44 ` Conor Dooley
2023-06-25 14:09 ` [PATCH V1 2/3] Revert "riscv: Check the virtual alignment before choosing a map size" Song Shuai
2023-06-25 14:09 ` Song Shuai
2023-06-25 14:16 ` [PATCH V1 0/3] Revert huge-paged linear mapping and its related fixups Conor Dooley
2023-06-25 14:16 ` Conor Dooley
2023-06-25 15:28 ` [PATCH V1 3/3] Revert "riscv: Use PUD/P4D/PGD pages for the linear mapping" Song Shuai
2023-06-25 15:28 ` Song Shuai
2023-06-25 20:36 ` [PATCH V1 0/3] Revert huge-paged linear mapping and its related fixups Alexandre Ghiti
2023-06-25 20:36 ` Alexandre Ghiti
2023-06-27 11:47 ` Alexandre Ghiti
2023-06-27 11:47 ` Alexandre Ghiti
2023-06-27 15:13 ` Song Shuai
2023-06-27 15:13 ` Song Shuai
2023-06-28 11:39 ` Alexandre Ghiti
2023-06-28 11:39 ` Alexandre Ghiti
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=20281f01-2cc9-892e-beea-eb2bb91e3ca5@gmail.com \
--to=suagrfillet@gmail.com \
--cc=ajones@ventanamicro.com \
--cc=alexghiti@rivosinc.com \
--cc=anshuman.khandual@arm.com \
--cc=anup@brainfault.org \
--cc=aou@eecs.berkeley.edu \
--cc=arnd@arndb.de \
--cc=conor.dooley@microchip.com \
--cc=conor@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=frowand.list@gmail.com \
--cc=heiko@sntech.de \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=mpe@ellerman.id.au \
--cc=palmer@dabbelt.com \
--cc=panqinglin2020@iscas.ac.cn \
--cc=paul.walmsley@sifive.com \
--cc=robh+dt@kernel.org \
--cc=rppt@kernel.org \
--cc=samuel@sholland.org \
--cc=xianting.tian@linux.alibaba.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.