linux-riscv.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* earlycon: earlycon_map: Couldn't map 0x0000000010010000
@ 2019-12-16 14:02 Andreas Schwab
  2019-12-17 10:41 ` Andreas Schwab
  0 siblings, 1 reply; 5+ messages in thread
From: Andreas Schwab @ 2019-12-16 14:02 UTC (permalink / raw)
  To: linux-riscv

earlycon appears to be broken in 5.5-rc.

[    0.000000] earlycon: earlycon_map: Couldn't map 0x0000000010010000
[    0.000000] earlycon: sifive0 at MMIO 0x0000000010010000 (options '')
[    0.000000] Malformed early option 'earlycon'

Andreas.

-- 
Andreas Schwab, SUSE Labs, schwab@suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE  1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."


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

* Re: earlycon: earlycon_map: Couldn't map 0x0000000010010000
  2019-12-16 14:02 earlycon: earlycon_map: Couldn't map 0x0000000010010000 Andreas Schwab
@ 2019-12-17 10:41 ` Andreas Schwab
  2019-12-17 11:15   ` [PATCH] riscv: Fix use of undefined config option CONFIG_CONFIG_MMU Andreas Schwab
  0 siblings, 1 reply; 5+ messages in thread
From: Andreas Schwab @ 2019-12-17 10:41 UTC (permalink / raw)
  To: linux-riscv; +Cc: Anup Patel, Christoph Hellwig, Paul Walmsley

On Dez 16 2019, Andreas Schwab wrote:

> earlycon appears to be broken in 5.5-rc.
>
> [    0.000000] earlycon: earlycon_map: Couldn't map 0x0000000010010000
> [    0.000000] earlycon: sifive0 at MMIO 0x0000000010010000 (options '')
> [    0.000000] Malformed early option 'earlycon'

6bd33e1ece528f67646db33bf97406b747dafda0 is the first bad commit
commit 6bd33e1ece528f67646db33bf97406b747dafda0
Author: Christoph Hellwig <hch@lst.de>
Date:   Mon Oct 28 13:10:41 2019 +0100

    riscv: add nommu support

Andreas.

-- 
Andreas Schwab, SUSE Labs, schwab@suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE  1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."


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

* [PATCH] riscv: Fix use of undefined config option CONFIG_CONFIG_MMU
  2019-12-17 10:41 ` Andreas Schwab
@ 2019-12-17 11:15   ` Andreas Schwab
  2019-12-17 11:42     ` Anup Patel
  2019-12-17 18:12     ` Paul Walmsley
  0 siblings, 2 replies; 5+ messages in thread
From: Andreas Schwab @ 2019-12-17 11:15 UTC (permalink / raw)
  To: linux-riscv; +Cc: Anup Patel, Christoph Hellwig, Paul Walmsley

In Kconfig files, config options are written without the CONFIG_ prefix.

Fixes: 6bd33e1ece52 ("riscv: add nommu support")
Signed-off-by: Andreas Schwab <schwab@suse.de>
---
 arch/riscv/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/riscv/Kconfig b/arch/riscv/Kconfig
index b7fc77c0e860..298662e72572 100644
--- a/arch/riscv/Kconfig
+++ b/arch/riscv/Kconfig
@@ -156,7 +156,7 @@ config GENERIC_HWEIGHT
 	def_bool y
 
 config FIX_EARLYCON_MEM
-	def_bool CONFIG_MMU
+	def_bool MMU
 
 config PGTABLE_LEVELS
 	int
-- 
2.24.1

-- 
Andreas Schwab, SUSE Labs, schwab@suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE  1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."


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

* Re: [PATCH] riscv: Fix use of undefined config option CONFIG_CONFIG_MMU
  2019-12-17 11:15   ` [PATCH] riscv: Fix use of undefined config option CONFIG_CONFIG_MMU Andreas Schwab
@ 2019-12-17 11:42     ` Anup Patel
  2019-12-17 18:12     ` Paul Walmsley
  1 sibling, 0 replies; 5+ messages in thread
From: Anup Patel @ 2019-12-17 11:42 UTC (permalink / raw)
  To: Andreas Schwab; +Cc: linux-riscv, Christoph Hellwig, Paul Walmsley

On Tue, Dec 17, 2019 at 4:45 PM Andreas Schwab <schwab@suse.de> wrote:
>
> In Kconfig files, config options are written without the CONFIG_ prefix.
>
> Fixes: 6bd33e1ece52 ("riscv: add nommu support")
> Signed-off-by: Andreas Schwab <schwab@suse.de>
> ---
>  arch/riscv/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/riscv/Kconfig b/arch/riscv/Kconfig
> index b7fc77c0e860..298662e72572 100644
> --- a/arch/riscv/Kconfig
> +++ b/arch/riscv/Kconfig
> @@ -156,7 +156,7 @@ config GENERIC_HWEIGHT
>         def_bool y
>
>  config FIX_EARLYCON_MEM
> -       def_bool CONFIG_MMU
> +       def_bool MMU
>
>  config PGTABLE_LEVELS
>         int
> --
> 2.24.1
>
> --
> Andreas Schwab, SUSE Labs, schwab@suse.de
> GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE  1748 E4D4 88E3 0EEA B9D7
> "And now for something completely different."

Thanks Andreas for cashing this down.

Reviewed-by: Anup Patel <anup@brainfault.org>

Regards,
Anup


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

* Re: [PATCH] riscv: Fix use of undefined config option CONFIG_CONFIG_MMU
  2019-12-17 11:15   ` [PATCH] riscv: Fix use of undefined config option CONFIG_CONFIG_MMU Andreas Schwab
  2019-12-17 11:42     ` Anup Patel
@ 2019-12-17 18:12     ` Paul Walmsley
  1 sibling, 0 replies; 5+ messages in thread
From: Paul Walmsley @ 2019-12-17 18:12 UTC (permalink / raw)
  To: Andreas Schwab; +Cc: Anup Patel, linux-riscv, Christoph Hellwig

On Tue, 17 Dec 2019, Andreas Schwab wrote:

> In Kconfig files, config options are written without the CONFIG_ prefix.
> 
> Fixes: 6bd33e1ece52 ("riscv: add nommu support")
> Signed-off-by: Andreas Schwab <schwab@suse.de>

Thanks Andreas, queued for v5.5-rc.

- Paul


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

end of thread, other threads:[~2019-12-17 18:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-16 14:02 earlycon: earlycon_map: Couldn't map 0x0000000010010000 Andreas Schwab
2019-12-17 10:41 ` Andreas Schwab
2019-12-17 11:15   ` [PATCH] riscv: Fix use of undefined config option CONFIG_CONFIG_MMU Andreas Schwab
2019-12-17 11:42     ` Anup Patel
2019-12-17 18:12     ` Paul Walmsley

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).