Re: [yocto] [meta-rockchip][PATCH v2] console cleanup

2021-06-27 Thread Trevor Woerner
On Thu 2021-06-24 @ 08:39:59 AM, Trevor Woerner wrote:
> Consolidate all the various console definitions to the common
> conf/machine/include/rockchip-defaults.inc file and create
> RK_CONSOLE_BAUD and RK_CONSOLE_DEVICE variables that can be
> reused in the wks files.
> 
> The following variables were checked before and after this patch
> to make sure they are sensible:
> - SERIAL_CONSOLES
> - RK_CONSOLE_DEVICE
> - RK_CONSOLE_BAUD
> 
> A boot test was performed on the following boards to make sure
> they all continue to boot to a cmdline:
> - tinker-board
> - rock-pi-e
> - nanopi-m4-2gb
> - rock64
> - rock-pi-4b
> 
> Signed-off-by: Trevor Woerner 
> ---
> Changes from v1:
> - In v1 I defined RK_CONSOLE_BAUD and RK_CONSOLE_DEVICE for each MACHINE
>   and then redefined SERIAL_CONSOLES to be the concatenation of these two
>   variables. Khem pointed out this is a bad approach because I'm redefining
>   an oe-core-defined variable that all BSPs expect.
> - In v2 I set/consolidate SERIAL_CONSOLES for each MACHINE and then generate
>   RK_CONSOLE_BAUD and RK_CONSOLE_DEVICE based on the first-defined
>   ; pair found in SERIAL_CONSOLES; these generated variables are
>   then used in the wks files.

Applied to meta-rockchip master.

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#53983): https://lists.yoctoproject.org/g/yocto/message/53983
Mute This Topic: https://lists.yoctoproject.org/mt/83759474/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [yocto] [meta-rockchip][PATCH v2] console cleanup

2021-06-24 Thread Trevor Woerner
On Thu 2021-06-24 @ 10:36:34 AM, Khem Raj wrote:
> This version looks good to me.

Thanks, I appreciate your feedback.

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#53968): https://lists.yoctoproject.org/g/yocto/message/53968
Mute This Topic: https://lists.yoctoproject.org/mt/83759474/21656
Group Owner: yocto+ow...@lists.yoctoproject.org
Unsubscribe: https://lists.yoctoproject.org/g/yocto/unsub 
[arch...@mail-archive.com]
-=-=-=-=-=-=-=-=-=-=-=-



Re: [yocto] [meta-rockchip][PATCH v2] console cleanup

2021-06-24 Thread Khem Raj



On 6/24/21 5:39 AM, Trevor Woerner wrote:

Consolidate all the various console definitions to the common
conf/machine/include/rockchip-defaults.inc file and create
RK_CONSOLE_BAUD and RK_CONSOLE_DEVICE variables that can be
reused in the wks files.

The following variables were checked before and after this patch
to make sure they are sensible:
- SERIAL_CONSOLES
- RK_CONSOLE_DEVICE
- RK_CONSOLE_BAUD

A boot test was performed on the following boards to make sure
they all continue to boot to a cmdline:
- tinker-board
- rock-pi-e
- nanopi-m4-2gb
- rock64
- rock-pi-4b


This version looks good to me.



Signed-off-by: Trevor Woerner 
---
Changes from v1:
- In v1 I defined RK_CONSOLE_BAUD and RK_CONSOLE_DEVICE for each MACHINE
   and then redefined SERIAL_CONSOLES to be the concatenation of these two
   variables. Khem pointed out this is a bad approach because I'm redefining
   an oe-core-defined variable that all BSPs expect.
- In v2 I set/consolidate SERIAL_CONSOLES for each MACHINE and then generate
   RK_CONSOLE_BAUD and RK_CONSOLE_DEVICE based on the first-defined
   ; pair found in SERIAL_CONSOLES; these generated variables are
   then used in the wks files.

---
  conf/machine/include/nanopi-m4.inc |  2 --
  conf/machine/include/rk3066.inc|  2 ++
  conf/machine/include/rk3188.inc|  2 ++
  conf/machine/include/rk3288.inc|  4 ++--
  conf/machine/include/rk3328.inc|  2 --
  conf/machine/include/rk3399.inc|  2 --
  conf/machine/include/rock-pi-4.inc |  2 --
  conf/machine/include/rockchip-defaults.inc | 12 +++-
  conf/machine/marsboard-rk3066.conf |  1 -
  conf/machine/radxarock.conf|  1 -
  wic/firefly-rk3288.wks |  2 +-
  wic/rock-pi-4.wks  |  2 +-
  wic/rock-pi-e.wks  |  2 +-
  wic/tinker-board.wks   |  2 +-
  wic/vyasa-rk3288.wks   |  2 +-
  15 files changed, 22 insertions(+), 18 deletions(-)

diff --git a/conf/machine/include/nanopi-m4.inc 
b/conf/machine/include/nanopi-m4.inc
index a14b705..8a7c1d9 100644
--- a/conf/machine/include/nanopi-m4.inc
+++ b/conf/machine/include/nanopi-m4.inc
@@ -21,5 +21,3 @@ WKS_FILE_DEPENDS ?= " \
  IMAGE_BOOT_FILES ?= "\
  ${KERNEL_IMAGETYPE} \
  "
-
-SERIAL_CONSOLES = "150;ttyS2"
diff --git a/conf/machine/include/rk3066.inc b/conf/machine/include/rk3066.inc
index dffbee0..5cc1024 100644
--- a/conf/machine/include/rk3066.inc
+++ b/conf/machine/include/rk3066.inc
@@ -7,5 +7,7 @@ require conf/machine/include/tune-cortexa9.inc
  require conf/machine/include/soc-family.inc
  require conf/machine/include/rockchip-defaults.inc
  
+SERIAL_CONSOLES = "115200;ttyS2"

+
  KBUILD_DEFCONFIG = "multi_v7_defconfig"
  KERNEL_IMAGETYPE = "zImage"
diff --git a/conf/machine/include/rk3188.inc b/conf/machine/include/rk3188.inc
index 59e65d1..6f3da93 100644
--- a/conf/machine/include/rk3188.inc
+++ b/conf/machine/include/rk3188.inc
@@ -7,5 +7,7 @@ require conf/machine/include/tune-cortexa9.inc
  require conf/machine/include/soc-family.inc
  require conf/machine/include/rockchip-defaults.inc
  
+SERIAL_CONSOLES = "115200;ttyFIQ0"

+
  KBUILD_DEFCONFIG = "multi_v7_defconfig"
  KERNEL_IMAGETYPE = "zImage"
diff --git a/conf/machine/include/rk3288.inc b/conf/machine/include/rk3288.inc
index 480e250..a109f26 100644
--- a/conf/machine/include/rk3288.inc
+++ b/conf/machine/include/rk3288.inc
@@ -7,11 +7,11 @@ require conf/machine/include/tune-cortexa17.inc
  require conf/machine/include/soc-family.inc
  require conf/machine/include/rockchip-defaults.inc
  
+SERIAL_CONSOLES = "115200;ttyS2"

+
  KBUILD_DEFCONFIG ?= "multi_v7_defconfig"
  KERNEL_IMAGETYPE = "zImage"
  
-SERIAL_CONSOLES = "115200;ttyS2"

-
  PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot"
  SPL_BINARY ?= "idbloader.img"
  
diff --git a/conf/machine/include/rk3328.inc b/conf/machine/include/rk3328.inc

index a4bbc5d..5b11868 100644
--- a/conf/machine/include/rk3328.inc
+++ b/conf/machine/include/rk3328.inc
@@ -19,7 +19,5 @@ TFA_BUILD_TARGET = "bl31"
  UBOOT_SUFFIX ?= "itb"
  UBOOT_ENTRYPOINT ?= "0x0600"
  
-SERIAL_CONSOLES = "150;ttyS2"

-
  PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot"
  SPL_BINARY ?= "idbloader.img"
diff --git a/conf/machine/include/rk3399.inc b/conf/machine/include/rk3399.inc
index f6b7826..9f9f474 100644
--- a/conf/machine/include/rk3399.inc
+++ b/conf/machine/include/rk3399.inc
@@ -19,8 +19,6 @@ TFA_BUILD_TARGET = "bl31"
  UBOOT_SUFFIX ?= "itb"
  UBOOT_ENTRYPOINT ?= "0x0600"
  
-SERIAL_CONSOLES = "115200;ttyS2"

-
  PREFERRED_PROVIDER_virtual/bootloader ?= "u-boot"
  SPL_BINARY ?= "idbloader.img"
  
diff --git a/conf/machine/include/rock-pi-4.inc b/conf/machine/include/rock-pi-4.inc

index 9c21084..a3e60c7 100644
--- a/conf/machine/include/rock-pi-4.inc
+++ b/conf/machine/include/rock-pi-4.inc
@@ -17,6 +17,4 @@ IMAGE_BOOT_FILES ?= "\
  ${KERNEL_IMAGETYPE} \