All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] arm: a37xx: Disable CONFIG_DEBUG_UART_ANNOUNCE
@ 2022-01-18  9:43 Pali Rohár
  2022-01-18 11:17 ` Stefan Roese
  2022-01-20 16:23 ` Stefan Roese
  0 siblings, 2 replies; 3+ messages in thread
From: Pali Rohár @ 2022-01-18  9:43 UTC (permalink / raw)
  To: Stefan Roese, Marek Behún, Vladimir Vid, Konstantin Porotchkin
  Cc: u-boot

After next branch was merged to v2022.01 release, U-Boot on A3720 started
printing "<debug_uart>" line on UART during booting. There is no need to
print this debug line by default, so disable it via config option
CONFIG_DEBUG_UART_ANNOUNCE in all config files for Armada 3720 boards.

Signed-off-by: Pali Rohár <pali@kernel.org>
---
 configs/mvebu_db-88f3720_defconfig          | 1 -
 configs/mvebu_espressobin-88f3720_defconfig | 1 -
 configs/turris_mox_defconfig                | 1 -
 configs/uDPU_defconfig                      | 1 -
 4 files changed, 4 deletions(-)

diff --git a/configs/mvebu_db-88f3720_defconfig b/configs/mvebu_db-88f3720_defconfig
index 459750f6e748..6cc90fa54266 100644
--- a/configs/mvebu_db-88f3720_defconfig
+++ b/configs/mvebu_db-88f3720_defconfig
@@ -66,7 +66,6 @@ CONFIG_PHY=y
 CONFIG_MVEBU_COMPHY_SUPPORT=y
 CONFIG_PINCTRL=y
 CONFIG_PINCTRL_ARMADA_37XX=y
-CONFIG_DEBUG_UART_ANNOUNCE=y
 CONFIG_MVEBU_A3700_UART=y
 CONFIG_MVEBU_A3700_SPI=y
 CONFIG_USB=y
diff --git a/configs/mvebu_espressobin-88f3720_defconfig b/configs/mvebu_espressobin-88f3720_defconfig
index 76096992f3c2..6ba91f425128 100644
--- a/configs/mvebu_espressobin-88f3720_defconfig
+++ b/configs/mvebu_espressobin-88f3720_defconfig
@@ -83,7 +83,6 @@ CONFIG_MVEBU_COMPHY_SUPPORT=y
 CONFIG_PINCTRL=y
 CONFIG_PINCTRL_ARMADA_37XX=y
 CONFIG_DM_REGULATOR_GPIO=y
-CONFIG_DEBUG_UART_ANNOUNCE=y
 CONFIG_MVEBU_A3700_UART=y
 CONFIG_MVEBU_A3700_SPI=y
 CONFIG_USB=y
diff --git a/configs/turris_mox_defconfig b/configs/turris_mox_defconfig
index 02a4687a14bc..195cebe765d0 100644
--- a/configs/turris_mox_defconfig
+++ b/configs/turris_mox_defconfig
@@ -93,7 +93,6 @@ CONFIG_DM_RTC=y
 CONFIG_RTC_DS1307=y
 CONFIG_SCSI=y
 CONFIG_DM_SCSI=y
-CONFIG_DEBUG_UART_ANNOUNCE=y
 CONFIG_MVEBU_A3700_UART=y
 CONFIG_MVEBU_A3700_SPI=y
 CONFIG_USB=y
diff --git a/configs/uDPU_defconfig b/configs/uDPU_defconfig
index bb1f14902290..7698e080e2a2 100644
--- a/configs/uDPU_defconfig
+++ b/configs/uDPU_defconfig
@@ -82,7 +82,6 @@ CONFIG_PINCTRL=y
 CONFIG_PINCTRL_ARMADA_37XX=y
 CONFIG_DM_REGULATOR_FIXED=y
 CONFIG_DM_REGULATOR_GPIO=y
-CONFIG_DEBUG_UART_ANNOUNCE=y
 CONFIG_MVEBU_A3700_UART=y
 CONFIG_MVEBU_A3700_SPI=y
 CONFIG_SYSINFO=y
-- 
2.20.1


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

* Re: [PATCH] arm: a37xx: Disable CONFIG_DEBUG_UART_ANNOUNCE
  2022-01-18  9:43 [PATCH] arm: a37xx: Disable CONFIG_DEBUG_UART_ANNOUNCE Pali Rohár
@ 2022-01-18 11:17 ` Stefan Roese
  2022-01-20 16:23 ` Stefan Roese
  1 sibling, 0 replies; 3+ messages in thread
From: Stefan Roese @ 2022-01-18 11:17 UTC (permalink / raw)
  To: Pali Rohár, Marek Behún, Vladimir Vid, Konstantin Porotchkin
  Cc: u-boot

On 1/18/22 10:43, Pali Rohár wrote:
> After next branch was merged to v2022.01 release, U-Boot on A3720 started
> printing "<debug_uart>" line on UART during booting. There is no need to
> print this debug line by default, so disable it via config option
> CONFIG_DEBUG_UART_ANNOUNCE in all config files for Armada 3720 boards.
> 
> Signed-off-by: Pali Rohár <pali@kernel.org>

Reviewed-by: Stefan Roese <sr@denx.de>

Thanks,
Stefan

> ---
>   configs/mvebu_db-88f3720_defconfig          | 1 -
>   configs/mvebu_espressobin-88f3720_defconfig | 1 -
>   configs/turris_mox_defconfig                | 1 -
>   configs/uDPU_defconfig                      | 1 -
>   4 files changed, 4 deletions(-)
> 
> diff --git a/configs/mvebu_db-88f3720_defconfig b/configs/mvebu_db-88f3720_defconfig
> index 459750f6e748..6cc90fa54266 100644
> --- a/configs/mvebu_db-88f3720_defconfig
> +++ b/configs/mvebu_db-88f3720_defconfig
> @@ -66,7 +66,6 @@ CONFIG_PHY=y
>   CONFIG_MVEBU_COMPHY_SUPPORT=y
>   CONFIG_PINCTRL=y
>   CONFIG_PINCTRL_ARMADA_37XX=y
> -CONFIG_DEBUG_UART_ANNOUNCE=y
>   CONFIG_MVEBU_A3700_UART=y
>   CONFIG_MVEBU_A3700_SPI=y
>   CONFIG_USB=y
> diff --git a/configs/mvebu_espressobin-88f3720_defconfig b/configs/mvebu_espressobin-88f3720_defconfig
> index 76096992f3c2..6ba91f425128 100644
> --- a/configs/mvebu_espressobin-88f3720_defconfig
> +++ b/configs/mvebu_espressobin-88f3720_defconfig
> @@ -83,7 +83,6 @@ CONFIG_MVEBU_COMPHY_SUPPORT=y
>   CONFIG_PINCTRL=y
>   CONFIG_PINCTRL_ARMADA_37XX=y
>   CONFIG_DM_REGULATOR_GPIO=y
> -CONFIG_DEBUG_UART_ANNOUNCE=y
>   CONFIG_MVEBU_A3700_UART=y
>   CONFIG_MVEBU_A3700_SPI=y
>   CONFIG_USB=y
> diff --git a/configs/turris_mox_defconfig b/configs/turris_mox_defconfig
> index 02a4687a14bc..195cebe765d0 100644
> --- a/configs/turris_mox_defconfig
> +++ b/configs/turris_mox_defconfig
> @@ -93,7 +93,6 @@ CONFIG_DM_RTC=y
>   CONFIG_RTC_DS1307=y
>   CONFIG_SCSI=y
>   CONFIG_DM_SCSI=y
> -CONFIG_DEBUG_UART_ANNOUNCE=y
>   CONFIG_MVEBU_A3700_UART=y
>   CONFIG_MVEBU_A3700_SPI=y
>   CONFIG_USB=y
> diff --git a/configs/uDPU_defconfig b/configs/uDPU_defconfig
> index bb1f14902290..7698e080e2a2 100644
> --- a/configs/uDPU_defconfig
> +++ b/configs/uDPU_defconfig
> @@ -82,7 +82,6 @@ CONFIG_PINCTRL=y
>   CONFIG_PINCTRL_ARMADA_37XX=y
>   CONFIG_DM_REGULATOR_FIXED=y
>   CONFIG_DM_REGULATOR_GPIO=y
> -CONFIG_DEBUG_UART_ANNOUNCE=y
>   CONFIG_MVEBU_A3700_UART=y
>   CONFIG_MVEBU_A3700_SPI=y
>   CONFIG_SYSINFO=y
> 

Viele Grüße,
Stefan Roese

-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-51 Fax: (+49)-8142-66989-80 Email: sr@denx.de

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

* Re: [PATCH] arm: a37xx: Disable CONFIG_DEBUG_UART_ANNOUNCE
  2022-01-18  9:43 [PATCH] arm: a37xx: Disable CONFIG_DEBUG_UART_ANNOUNCE Pali Rohár
  2022-01-18 11:17 ` Stefan Roese
@ 2022-01-20 16:23 ` Stefan Roese
  1 sibling, 0 replies; 3+ messages in thread
From: Stefan Roese @ 2022-01-20 16:23 UTC (permalink / raw)
  To: Pali Rohár, Marek Behún, Vladimir Vid, Konstantin Porotchkin
  Cc: u-boot

On 1/18/22 10:43, Pali Rohár wrote:
> After next branch was merged to v2022.01 release, U-Boot on A3720 started
> printing "<debug_uart>" line on UART during booting. There is no need to
> print this debug line by default, so disable it via config option
> CONFIG_DEBUG_UART_ANNOUNCE in all config files for Armada 3720 boards.
> 
> Signed-off-by: Pali Rohár <pali@kernel.org>

Applied to u-boot-marvell/master

Thanks,
Stefan

> ---
>   configs/mvebu_db-88f3720_defconfig          | 1 -
>   configs/mvebu_espressobin-88f3720_defconfig | 1 -
>   configs/turris_mox_defconfig                | 1 -
>   configs/uDPU_defconfig                      | 1 -
>   4 files changed, 4 deletions(-)
> 
> diff --git a/configs/mvebu_db-88f3720_defconfig b/configs/mvebu_db-88f3720_defconfig
> index 459750f6e748..6cc90fa54266 100644
> --- a/configs/mvebu_db-88f3720_defconfig
> +++ b/configs/mvebu_db-88f3720_defconfig
> @@ -66,7 +66,6 @@ CONFIG_PHY=y
>   CONFIG_MVEBU_COMPHY_SUPPORT=y
>   CONFIG_PINCTRL=y
>   CONFIG_PINCTRL_ARMADA_37XX=y
> -CONFIG_DEBUG_UART_ANNOUNCE=y
>   CONFIG_MVEBU_A3700_UART=y
>   CONFIG_MVEBU_A3700_SPI=y
>   CONFIG_USB=y
> diff --git a/configs/mvebu_espressobin-88f3720_defconfig b/configs/mvebu_espressobin-88f3720_defconfig
> index 76096992f3c2..6ba91f425128 100644
> --- a/configs/mvebu_espressobin-88f3720_defconfig
> +++ b/configs/mvebu_espressobin-88f3720_defconfig
> @@ -83,7 +83,6 @@ CONFIG_MVEBU_COMPHY_SUPPORT=y
>   CONFIG_PINCTRL=y
>   CONFIG_PINCTRL_ARMADA_37XX=y
>   CONFIG_DM_REGULATOR_GPIO=y
> -CONFIG_DEBUG_UART_ANNOUNCE=y
>   CONFIG_MVEBU_A3700_UART=y
>   CONFIG_MVEBU_A3700_SPI=y
>   CONFIG_USB=y
> diff --git a/configs/turris_mox_defconfig b/configs/turris_mox_defconfig
> index 02a4687a14bc..195cebe765d0 100644
> --- a/configs/turris_mox_defconfig
> +++ b/configs/turris_mox_defconfig
> @@ -93,7 +93,6 @@ CONFIG_DM_RTC=y
>   CONFIG_RTC_DS1307=y
>   CONFIG_SCSI=y
>   CONFIG_DM_SCSI=y
> -CONFIG_DEBUG_UART_ANNOUNCE=y
>   CONFIG_MVEBU_A3700_UART=y
>   CONFIG_MVEBU_A3700_SPI=y
>   CONFIG_USB=y
> diff --git a/configs/uDPU_defconfig b/configs/uDPU_defconfig
> index bb1f14902290..7698e080e2a2 100644
> --- a/configs/uDPU_defconfig
> +++ b/configs/uDPU_defconfig
> @@ -82,7 +82,6 @@ CONFIG_PINCTRL=y
>   CONFIG_PINCTRL_ARMADA_37XX=y
>   CONFIG_DM_REGULATOR_FIXED=y
>   CONFIG_DM_REGULATOR_GPIO=y
> -CONFIG_DEBUG_UART_ANNOUNCE=y
>   CONFIG_MVEBU_A3700_UART=y
>   CONFIG_MVEBU_A3700_SPI=y
>   CONFIG_SYSINFO=y
> 

Viele Grüße,
Stefan Roese

-- 
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-51 Fax: (+49)-8142-66989-80 Email: sr@denx.de

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

end of thread, other threads:[~2022-01-20 16:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-18  9:43 [PATCH] arm: a37xx: Disable CONFIG_DEBUG_UART_ANNOUNCE Pali Rohár
2022-01-18 11:17 ` Stefan Roese
2022-01-20 16:23 ` Stefan Roese

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.