All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] board: tbs2910: Set all board dts files as maintained
@ 2022-09-20 16:05 Soeren Moch
  2022-09-20 16:05 ` [PATCH 2/2] board: tbs2910: Add serial rx buffer in defconfig Soeren Moch
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Soeren Moch @ 2022-09-20 16:05 UTC (permalink / raw)
  To: Stefano Babic; +Cc: Soeren Moch, Fabio Estevam, NXP i.MX U-Boot Team, u-boot

This also includes the imx6q-tbs2910-u-boot.dtsi file now.

Signed-off-by: Soeren Moch <smoch@web.de>
---
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <festevam@gmail.com>
Cc: "NXP i.MX U-Boot Team" <uboot-imx@nxp.com>
Cc: u-boot@lists.denx.de
---
 board/tbs/tbs2910/MAINTAINERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/board/tbs/tbs2910/MAINTAINERS b/board/tbs/tbs2910/MAINTAINERS
index 1e3c0d0ece..72f98d1a69 100644
--- a/board/tbs/tbs2910/MAINTAINERS
+++ b/board/tbs/tbs2910/MAINTAINERS
@@ -1,7 +1,7 @@
 TBS2910 BOARD
 M:	Soeren Moch <smoch@web.de>
 S:	Maintained
-F:	arch/arm/dts/imx6q-tbs2910.dts
+F:	arch/arm/dts/imx6q-tbs2910*
 F:	board/tbs/tbs2910/
 F:	configs/tbs2910_defconfig
 F:	doc/board/tbs/
--
2.34.1


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

* [PATCH 2/2] board: tbs2910: Add serial rx buffer in defconfig
  2022-09-20 16:05 [PATCH 1/2] board: tbs2910: Set all board dts files as maintained Soeren Moch
@ 2022-09-20 16:05 ` Soeren Moch
  2022-09-20 18:44   ` Fabio Estevam
  2022-10-21 11:40   ` sbabic
  2022-09-20 18:43 ` [PATCH 1/2] board: tbs2910: Set all board dts files as maintained Fabio Estevam
  2022-10-21 11:40 ` sbabic
  2 siblings, 2 replies; 7+ messages in thread
From: Soeren Moch @ 2022-09-20 16:05 UTC (permalink / raw)
  To: Stefano Babic; +Cc: Soeren Moch, Fabio Estevam, NXP i.MX U-Boot Team, u-boot

... to avoid loosing characters when pasting text into the serial console.
This allows to remove the workaround to disable the vidconsole output
when no HDMI device is detected. This workaround only was there to speed-up
serial console processing.

Signed-off-by: Soeren Moch <smoch@web.de>
---
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <festevam@gmail.com>
Cc: "NXP i.MX U-Boot Team" <uboot-imx@nxp.com>
Cc: u-boot@lists.denx.de
---
 configs/tbs2910_defconfig | 3 ++-
 include/configs/tbs2910.h | 4 ----
 2 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/configs/tbs2910_defconfig b/configs/tbs2910_defconfig
index 59444372e9..20de590e27 100644
--- a/configs/tbs2910_defconfig
+++ b/configs/tbs2910_defconfig
@@ -24,7 +24,7 @@ CONFIG_BOOTDELAY=3
 CONFIG_USE_BOOTCOMMAND=y
 CONFIG_BOOTCOMMAND="mmc rescan; if run bootcmd_up1; then run bootcmd_up2; else run bootcmd_mmc || run distro_bootcmd; fi"
 CONFIG_USE_PREBOOT=y
-CONFIG_PREBOOT="echo PCI:; pci enum; pci 1; usb start; if hdmidet; then run set_con_hdmi; else run set_con_serial; fi"
+CONFIG_PREBOOT="echo PCI:; pci enum; pci 1; usb start"
 CONFIG_DEFAULT_FDT_FILE="imx6q-tbs2910.dtb"
 CONFIG_PRE_CONSOLE_BUFFER=y
 CONFIG_HUSH_PARSER=y
@@ -89,6 +89,7 @@ CONFIG_PINCTRL_IMX6=y
 CONFIG_DM_RTC=y
 CONFIG_RTC_DS1307=y
 CONFIG_DM_SERIAL=y
+CONFIG_SERIAL_RX_BUFFER=y
 CONFIG_MXC_UART=y
 CONFIG_DM_THERMAL=y
 CONFIG_IMX_THERMAL=y
diff --git a/include/configs/tbs2910.h b/include/configs/tbs2910.h
index c93df00d58..7f197851d0 100644
--- a/include/configs/tbs2910.h
+++ b/include/configs/tbs2910.h
@@ -61,10 +61,6 @@
 	"pxefile_addr_r=0x10100000\0" \
 	"ramdisk_addr_r=0x18080000\0" \
 	"scriptaddr=0x10000000\0" \
-	"set_con_serial=setenv stdout serial; " \
-			"setenv stderr serial\0" \
-	"set_con_hdmi=setenv stdout serial,vidconsole; " \
-			"setenv stderr serial,vidconsole\0" \
 	"stderr=serial,vidconsole\0" \
 	"stdin=serial,usbkbd\0" \
 	"stdout=serial,vidconsole\0"
--
2.34.1


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

* Re: [PATCH 1/2] board: tbs2910: Set all board dts files as maintained
  2022-09-20 16:05 [PATCH 1/2] board: tbs2910: Set all board dts files as maintained Soeren Moch
  2022-09-20 16:05 ` [PATCH 2/2] board: tbs2910: Add serial rx buffer in defconfig Soeren Moch
@ 2022-09-20 18:43 ` Fabio Estevam
  2022-10-21 11:40 ` sbabic
  2 siblings, 0 replies; 7+ messages in thread
From: Fabio Estevam @ 2022-09-20 18:43 UTC (permalink / raw)
  To: Soeren Moch; +Cc: Stefano Babic, NXP i.MX U-Boot Team, u-boot

On Tue, Sep 20, 2022 at 1:05 PM Soeren Moch <smoch@web.de> wrote:
>
> This also includes the imx6q-tbs2910-u-boot.dtsi file now.
>
> Signed-off-by: Soeren Moch <smoch@web.de>

Reviewed-by: Fabio Estevam <festevam@denx.de>

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

* Re: [PATCH 2/2] board: tbs2910: Add serial rx buffer in defconfig
  2022-09-20 16:05 ` [PATCH 2/2] board: tbs2910: Add serial rx buffer in defconfig Soeren Moch
@ 2022-09-20 18:44   ` Fabio Estevam
  2022-09-20 18:51     ` Soeren Moch
  2022-10-21 11:40   ` sbabic
  1 sibling, 1 reply; 7+ messages in thread
From: Fabio Estevam @ 2022-09-20 18:44 UTC (permalink / raw)
  To: Soeren Moch; +Cc: Stefano Babic, NXP i.MX U-Boot Team, u-boot

On Tue, Sep 20, 2022 at 1:05 PM Soeren Moch <smoch@web.de> wrote:
>
> ... to avoid loosing characters when pasting text into the serial console.
> This allows to remove the workaround to disable the vidconsole output
> when no HDMI device is detected. This workaround only was there to speed-up
> serial console processing.
>
> Signed-off-by: Soeren Moch <smoch@web.de>

Reviewed-by: Fabio Estevam <festevam@denx.de>

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

* Re: [PATCH 2/2] board: tbs2910: Add serial rx buffer in defconfig
  2022-09-20 18:44   ` Fabio Estevam
@ 2022-09-20 18:51     ` Soeren Moch
  0 siblings, 0 replies; 7+ messages in thread
From: Soeren Moch @ 2022-09-20 18:51 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: Stefano Babic, NXP i.MX U-Boot Team, u-boot



On 20.09.22 20:44, Fabio Estevam wrote:
> On Tue, Sep 20, 2022 at 1:05 PM Soeren Moch <smoch@web.de> wrote:
>> ... to avoid loosing characters when pasting text into the serial console.
>> This allows to remove the workaround to disable the vidconsole output
>> when no HDMI device is detected. This workaround only was there to speed-up
>> serial console processing.
>>
>> Signed-off-by: Soeren Moch <smoch@web.de>
> Reviewed-by: Fabio Estevam <festevam@denx.de>
Thanks, Fabio!

I forgot to mention: This is not urgent. It is totally fine to queue
this series for -next.

Thanks,
Soeren

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

* [PATCH 1/2] board: tbs2910: Set all board dts files as maintained
  2022-09-20 16:05 [PATCH 1/2] board: tbs2910: Set all board dts files as maintained Soeren Moch
  2022-09-20 16:05 ` [PATCH 2/2] board: tbs2910: Add serial rx buffer in defconfig Soeren Moch
  2022-09-20 18:43 ` [PATCH 1/2] board: tbs2910: Set all board dts files as maintained Fabio Estevam
@ 2022-10-21 11:40 ` sbabic
  2 siblings, 0 replies; 7+ messages in thread
From: sbabic @ 2022-10-21 11:40 UTC (permalink / raw)
  To: Soeren Moch, u-boot

> This also includes the imx6q-tbs2910-u-boot.dtsi file now.
> Signed-off-by: Soeren Moch <smoch@web.de>
> Reviewed-by: Fabio Estevam <festevam@denx.de>
Applied to u-boot-imx, master, thanks !

Best regards,
Stefano Babic

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

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

* [PATCH 2/2] board: tbs2910: Add serial rx buffer in defconfig
  2022-09-20 16:05 ` [PATCH 2/2] board: tbs2910: Add serial rx buffer in defconfig Soeren Moch
  2022-09-20 18:44   ` Fabio Estevam
@ 2022-10-21 11:40   ` sbabic
  1 sibling, 0 replies; 7+ messages in thread
From: sbabic @ 2022-10-21 11:40 UTC (permalink / raw)
  To: Soeren Moch, u-boot

> ... to avoid loosing characters when pasting text into the serial console.
> This allows to remove the workaround to disable the vidconsole output
> when no HDMI device is detected. This workaround only was there to speed-up
> serial console processing.
> Signed-off-by: Soeren Moch <smoch@web.de>
> Reviewed-by: Fabio Estevam <festevam@denx.de>
Applied to u-boot-imx, master, thanks !

Best regards,
Stefano Babic

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

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

end of thread, other threads:[~2022-10-21 11:43 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-20 16:05 [PATCH 1/2] board: tbs2910: Set all board dts files as maintained Soeren Moch
2022-09-20 16:05 ` [PATCH 2/2] board: tbs2910: Add serial rx buffer in defconfig Soeren Moch
2022-09-20 18:44   ` Fabio Estevam
2022-09-20 18:51     ` Soeren Moch
2022-10-21 11:40   ` sbabic
2022-09-20 18:43 ` [PATCH 1/2] board: tbs2910: Set all board dts files as maintained Fabio Estevam
2022-10-21 11:40 ` sbabic

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.