* [PATCH v2 0/2] ARM: rpi: refactor debug UART Kconfig settings.
@ 2019-03-05 8:57 Tomaz Solc
2019-03-05 8:57 ` [PATCH v2 1/2] ARM: rpi: move " Tomaz Solc
2019-03-05 8:57 ` [PATCH v2 2/2] common: Kconfig: improve help text for DEBUG_LL Tomaz Solc
0 siblings, 2 replies; 4+ messages in thread
From: Tomaz Solc @ 2019-03-05 8:57 UTC (permalink / raw)
To: barebox
Changes from the first patch:
- Don't disable board builds that conflict with debug UART setting.
- Mention in the help text that enabling DEBUG_LL limits the build to the
selected UART.
Best regards
Tomaz
Tomaz Solc (2):
ARM: rpi: move debug UART Kconfig settings.
common: Kconfig: improve help text for DEBUG_LL
arch/arm/mach-bcm283x/Kconfig | 20 ---------------
arch/arm/mach-bcm283x/include/mach/debug_ll.h | 6 ++---
common/Kconfig | 37 ++++++++++++++++++++++++---
3 files changed, 36 insertions(+), 27 deletions(-)
--
2.11.0
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2 1/2] ARM: rpi: move debug UART Kconfig settings.
2019-03-05 8:57 [PATCH v2 0/2] ARM: rpi: refactor debug UART Kconfig settings Tomaz Solc
@ 2019-03-05 8:57 ` Tomaz Solc
2019-03-05 8:57 ` [PATCH v2 2/2] common: Kconfig: improve help text for DEBUG_LL Tomaz Solc
1 sibling, 0 replies; 4+ messages in thread
From: Tomaz Solc @ 2019-03-05 8:57 UTC (permalink / raw)
To: barebox
In contrast to other architectures, R.Pi debug UART config was placed
under the "System Type" menu, not under the "Debugging -> low-level
debugging port". This made this setting easy to miss when enabling low
level debug mesages.
---
arch/arm/mach-bcm283x/Kconfig | 20 --------------------
arch/arm/mach-bcm283x/include/mach/debug_ll.h | 6 +++---
common/Kconfig | 19 +++++++++++++++++++
3 files changed, 22 insertions(+), 23 deletions(-)
diff --git a/arch/arm/mach-bcm283x/Kconfig b/arch/arm/mach-bcm283x/Kconfig
index bb5f75dc9..9d6a7b2ec 100644
--- a/arch/arm/mach-bcm283x/Kconfig
+++ b/arch/arm/mach-bcm283x/Kconfig
@@ -33,24 +33,4 @@ config MACH_RPI_CM3
endmenu
-config MACH_RPI_DEBUG_UART_BASE
- hex
- default 0x20201000 if MACH_RPI_DEBUG_UART_RPI
- default 0x3f201000 if MACH_RPI_DEBUG_UART_RPI2
-
-if DEBUG_LL
-
-choice
- prompt "Lowlevel debug UART"
-
-config MACH_RPI_DEBUG_UART_RPI
- bool "use RaspberryPi 1 compatible base"
-
-config MACH_RPI_DEBUG_UART_RPI2
- bool "use RaspberryPi 2 and 3 compatible base"
-
-endchoice
-
-endif
-
endif
diff --git a/arch/arm/mach-bcm283x/include/mach/debug_ll.h b/arch/arm/mach-bcm283x/include/mach/debug_ll.h
index a625a8bdb..e4a935800 100644
--- a/arch/arm/mach-bcm283x/include/mach/debug_ll.h
+++ b/arch/arm/mach-bcm283x/include/mach/debug_ll.h
@@ -20,11 +20,11 @@
#include <mach/platform.h>
-#ifndef CONFIG_MACH_RPI_DEBUG_UART_BASE
-#define CONFIG_MACH_RPI_DEBUG_UART_BASE 0
+#ifndef CONFIG_DEBUG_RPI_UART_BASE
+#define CONFIG_DEBUG_RPI_UART_BASE 0
#endif
-#define DEBUG_LL_UART_ADDR CONFIG_MACH_RPI_DEBUG_UART_BASE
+#define DEBUG_LL_UART_ADDR CONFIG_DEBUG_RPI_UART_BASE
#include <asm/debug_ll_pl011.h>
diff --git a/common/Kconfig b/common/Kconfig
index 21b33f06f..e30f354e6 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -1159,6 +1159,19 @@ config DEBUG_SOCFPGA_UART1
Say Y here if you want kernel low-level debugging support
on SOCFPGA(Arria 10) based platforms.
+config DEBUG_RPI1_UART
+ bool "RaspberryPi 1 debug UART"
+ depends on ARCH_BCM283X
+ help
+ Say Y here if you want low-level debugging support on
+ RaspberryPi 1 boards.
+
+config DEBUG_RPI2_UART
+ bool "RaspberryPi 2/3 debug UART"
+ depends on ARCH_BCM283X
+ help
+ Say Y here if you want low-level debugging support on
+ RaspberryPi 2 and 3 boards.
endchoice
@@ -1209,6 +1222,12 @@ config DEBUG_SOCFPGA_UART_PHYS_ADDR
default 0xffc02100 if DEBUG_SOCFPGA_UART1
depends on ARCH_SOCFPGA
+config DEBUG_RPI_UART_BASE
+ hex
+ default 0x20201000 if DEBUG_RPI1_UART
+ default 0x3f201000 if DEBUG_RPI2_UART
+ depends on ARCH_BCM283X
+
config DEBUG_SOCFPGA_UART_CLOCK
int "SoCFPGA UART debug clock" if DEBUG_LL
default 100000000 if ARCH_SOCFPGA_CYCLONE5
--
2.11.0
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v2 2/2] common: Kconfig: improve help text for DEBUG_LL
2019-03-05 8:57 [PATCH v2 0/2] ARM: rpi: refactor debug UART Kconfig settings Tomaz Solc
2019-03-05 8:57 ` [PATCH v2 1/2] ARM: rpi: move " Tomaz Solc
@ 2019-03-05 8:57 ` Tomaz Solc
2019-03-11 7:14 ` Sascha Hauer
1 sibling, 1 reply; 4+ messages in thread
From: Tomaz Solc @ 2019-03-05 8:57 UTC (permalink / raw)
To: barebox
This adopts the help text used in Linux for the same setting. It
clarifies that a build with DEBUG_LL enabled will only work on the
system you chose the debug UART for.
---
common/Kconfig | 18 ++++++++++++++----
1 file changed, 14 insertions(+), 4 deletions(-)
diff --git a/common/Kconfig b/common/Kconfig
index e30f354e6..0725045a6 100644
--- a/common/Kconfig
+++ b/common/Kconfig
@@ -1016,11 +1016,21 @@ config DEBUG_INFO
config DEBUG_LL
bool
depends on HAS_DEBUG_LL
- prompt "low level debug messages"
+ prompt "Low level debug messages (read help)"
help
- Enable this to get low level debug messages during barebox initialization.
- This requires SoC specific support. Most SoCs require the debug UART to be
- initialized by a debugger or first stage bootloader.
+ Enable this to get low level debug messages during barebox
+ initialization. This is helpful if you are debugging code that
+ executes before the console is initialized.
+
+ This requires SoC specific support. Most SoCs require the
+ debug UART to be initialized by a debugger or first stage
+ bootloader.
+
+ Note that selecting this option will limit barebox to a single
+ UART definition, as specified below under "low-level debugging
+ port". Attempting to boot the resulting image on a different
+ platform *will not work*, so this option should not be enabled
+ for builds that are intended to be portable.
choice
prompt "Kernel low-level debugging port"
--
2.11.0
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2 2/2] common: Kconfig: improve help text for DEBUG_LL
2019-03-05 8:57 ` [PATCH v2 2/2] common: Kconfig: improve help text for DEBUG_LL Tomaz Solc
@ 2019-03-11 7:14 ` Sascha Hauer
0 siblings, 0 replies; 4+ messages in thread
From: Sascha Hauer @ 2019-03-11 7:14 UTC (permalink / raw)
To: Tomaz Solc; +Cc: barebox
On Tue, Mar 05, 2019 at 09:57:52AM +0100, Tomaz Solc wrote:
> This adopts the help text used in Linux for the same setting. It
> clarifies that a build with DEBUG_LL enabled will only work on the
> system you chose the debug UART for.
> ---
> common/Kconfig | 18 ++++++++++++++----
> 1 file changed, 14 insertions(+), 4 deletions(-)
Applied this one, the other patches are superseeded by the patches I
have sent.
Sascha
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-03-11 7:14 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-05 8:57 [PATCH v2 0/2] ARM: rpi: refactor debug UART Kconfig settings Tomaz Solc
2019-03-05 8:57 ` [PATCH v2 1/2] ARM: rpi: move " Tomaz Solc
2019-03-05 8:57 ` [PATCH v2 2/2] common: Kconfig: improve help text for DEBUG_LL Tomaz Solc
2019-03-11 7:14 ` Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox