All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jagan Teki <jagan@amarulasolutions.com>
To: Kever Yang <kever.yang@rock-chips.com>,
	Philipp Tomsich <philipp.tomsich@theobroma-systems.com>,
	Simon Glass <sjg@chromium.org>
Cc: Suniel Mahesh <sunil@amarulasolutions.com>,
	U-Boot-Denx <u-boot@lists.denx.de>,
	linux-rockchip@lists.infradead.org,
	linux-amarula <linux-amarula@amarulasolutions.com>,
	Jagan Teki <jagan@amarulasolutions.com>
Subject: [PATCH v2 08/12] rockchip: evb_rk3288: Add console settings
Date: Tue, 21 Jul 2020 20:54:42 +0530	[thread overview]
Message-ID: <20200721152443.37602-9-jagan@amarulasolutions.com> (raw)
In-Reply-To: <20200721152443.37602-1-jagan@amarulasolutions.com>

From: Suniel Mahesh <sunil@amarulasolutions.com>

Add console settings like stdin, stdout and stderr as
usbkbd and vidconsole respectively for evb-rk3288 targets.

This would certainly help to detect the attached video
devices (like HDMI) and print the console messages on display.

Signed-off-by: Suniel Mahesh <sunil@amarulasolutions.com>
Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
---
Changes for v2:
- update commit messaage

 include/configs/evb_rk3288.h | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/include/configs/evb_rk3288.h b/include/configs/evb_rk3288.h
index ddd7012c8f..e19fa90212 100644
--- a/include/configs/evb_rk3288.h
+++ b/include/configs/evb_rk3288.h
@@ -6,7 +6,11 @@
 #ifndef __CONFIG_H
 #define __CONFIG_H
 
-#define ROCKCHIP_DEVICE_SETTINGS
+#define ROCKCHIP_DEVICE_SETTINGS \
+		"stdin=serial,usbkbd\0" \
+		"stdout=serial,vidconsole\0" \
+		"stderr=serial,vidconsole\0"
+
 #include <configs/rk3288_common.h>
 
 #define CONFIG_SYS_MMC_ENV_DEV 0
-- 
2.25.1

WARNING: multiple messages have this Message-ID (diff)
From: Jagan Teki <jagan@amarulasolutions.com>
To: u-boot@lists.denx.de
Subject: [PATCH v2 08/12] rockchip: evb_rk3288: Add console settings
Date: Tue, 21 Jul 2020 20:54:42 +0530	[thread overview]
Message-ID: <20200721152443.37602-9-jagan@amarulasolutions.com> (raw)
In-Reply-To: <20200721152443.37602-1-jagan@amarulasolutions.com>

From: Suniel Mahesh <sunil@amarulasolutions.com>

Add console settings like stdin, stdout and stderr as
usbkbd and vidconsole respectively for evb-rk3288 targets.

This would certainly help to detect the attached video
devices (like HDMI) and print the console messages on display.

Signed-off-by: Suniel Mahesh <sunil@amarulasolutions.com>
Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
---
Changes for v2:
- update commit messaage

 include/configs/evb_rk3288.h | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/include/configs/evb_rk3288.h b/include/configs/evb_rk3288.h
index ddd7012c8f..e19fa90212 100644
--- a/include/configs/evb_rk3288.h
+++ b/include/configs/evb_rk3288.h
@@ -6,7 +6,11 @@
 #ifndef __CONFIG_H
 #define __CONFIG_H
 
-#define ROCKCHIP_DEVICE_SETTINGS
+#define ROCKCHIP_DEVICE_SETTINGS \
+		"stdin=serial,usbkbd\0" \
+		"stdout=serial,vidconsole\0" \
+		"stderr=serial,vidconsole\0"
+
 #include <configs/rk3288_common.h>
 
 #define CONFIG_SYS_MMC_ENV_DEV 0
-- 
2.25.1

  parent reply	other threads:[~2020-07-21 15:24 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-21 15:24 [PATCH v2 00/12] rockchip: ROCKPi N8/N10 hardware enablement Jagan Teki
2020-07-21 15:24 ` Jagan Teki
2020-07-21 15:24 ` [PATCH v2 01/12] ARM: dts: rockchip: Sync ROCKPi N8/N10 dts(i) from Linux Jagan Teki
2020-07-21 15:24   ` Jagan Teki
2020-07-21 15:24 ` [PATCH v2 02/12] arm: dts: rockchip: Sync rk3288 dtsi from linux Jagan Teki
2020-07-21 15:24   ` Jagan Teki
2020-07-21 15:24 ` [PATCH v2 03/12] ARM: dts: rockchip: Add usb host0 ohci node for rk3288 Jagan Teki
2020-07-21 15:24   ` Jagan Teki
2020-07-22 12:28   ` Kever Yang
2020-07-22 12:28     ` Kever Yang
2020-07-21 15:24 ` [PATCH v2 04/12] ARM: dts: rockchip: Add USB for RockPI N8/N10 Jagan Teki
2020-07-21 15:24   ` Jagan Teki
2020-07-22 12:29   ` Kever Yang
2020-07-22 12:29     ` Kever Yang
2020-07-21 15:24 ` [PATCH v2 05/12] arm: dts: rockchip: Add HDMI out " Jagan Teki
2020-07-21 15:24   ` Jagan Teki
2020-07-22 12:29   ` Kever Yang
2020-07-22 12:29     ` Kever Yang
2020-07-21 15:24 ` [PATCH v2 06/12] arm64: dts: rockchip: Add PCIe for RockPI N10 Jagan Teki
2020-07-21 15:24   ` Jagan Teki
2020-07-22 12:29   ` Kever Yang
2020-07-22 12:29     ` Kever Yang
2020-07-21 15:24 ` [PATCH v2 07/12] rockchip: rock-pi-n10: Enable on board devices Jagan Teki
2020-07-21 15:24   ` Jagan Teki
2020-07-22 12:29   ` Kever Yang
2020-07-22 12:29     ` Kever Yang
2020-07-21 15:24 ` Jagan Teki [this message]
2020-07-21 15:24   ` [PATCH v2 08/12] rockchip: evb_rk3288: Add console settings Jagan Teki
2020-07-22 12:30   ` Kever Yang
2020-07-22 12:30     ` Kever Yang
2020-07-21 15:24 ` [PATCH v2 09/12] rockchip: rock-pi-n8: Enable on board devices Jagan Teki
2020-07-21 15:24   ` Jagan Teki
2020-07-22 12:30   ` Kever Yang
2020-07-22 12:30     ` Kever Yang
2020-07-22 13:10 ` [PATCH v2 00/12] rockchip: ROCKPi N8/N10 hardware enablement Kever Yang
2020-07-22 13:10   ` Kever Yang

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=20200721152443.37602-9-jagan@amarulasolutions.com \
    --to=jagan@amarulasolutions.com \
    --cc=kever.yang@rock-chips.com \
    --cc=linux-amarula@amarulasolutions.com \
    --cc=linux-rockchip@lists.infradead.org \
    --cc=philipp.tomsich@theobroma-systems.com \
    --cc=sjg@chromium.org \
    --cc=sunil@amarulasolutions.com \
    --cc=u-boot@lists.denx.de \
    /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.