Difference between revisions of "HBW test/test"

From ESS-WIKI
Jump to: navigation, search
 
(38 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{DISPLAYTITLE:How to add one new LVDS panel's EDID to PTN3460}}
+
{{DISPLAYTITLE:How to update kernel for hardware enablement}}
<div style="float:right;  position:fixed;  margin:0 1em 0 0;  top:200px;  right:10px;  max-height: 350px;  overflow: auto">__TOC__</div>
 
  
== Prerequisites ==
+
== Hardware Enablement ==
=== On Host PC ===
+
*RS-485
* LVDS panel's EDID config (128 bytes)
+
*TPM
* (optional) one utility to edit EDID config
+
*external watchdog
* PTN3460 Programming Guide
+
*ethernet switch (UIO-4036)
=== On RSB-3810 ===
+
 
* i2c-tools installed
+
== Install Procedures ==
 +
=== fetch the following packages ===
 +
kernel (get these files from your contact window)
 
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
sudo apt update
+
# linux-buildinfo-5.15.0-1029-mtk_5.15.0-1029.33advantech1_arm64.deb
sudo apt install i2c-tools
+
# linux-headers-5.15.0-1029-mtk_5.15.0-1029.33advantech1_arm64.deb
 +
# linux-image-5.15.0-1029-mtk_5.15.0-1029.33advantech1_arm64.deb
 +
# linux-modules-5.15.0-1029-mtk_5.15.0-1029.33advantech1_arm64.deb
 +
# linux-mtk-headers-5.15.0-1029_5.15.0-1029.33advantech1_all.deb
 
</syntaxhighlight>
 
</syntaxhighlight>
 
+
dependency
==Convert EDID config to hex value==
 
 
 
==Convert hex value to i2cset command list==
 
 
 
==Add i2c command for PTN3460==
 
 
 
==run the script==
 
 
 
==flash new firmware.vfat==
 
get and extract update_edid.tgz
 
 
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
tar xvf update_edid.tgz
+
wget https://ftp.fau.de/ubuntu-ports/pool/main/o/openssl/libssl1.1_1.1.1-1ubuntu2.1~18.04.23_arm64.deb
 
</syntaxhighlight>
 
</syntaxhighlight>
  
flash u-boot env & firmware (dtb)
+
=== install all fetched packages ===
 
<syntaxhighlight lang="bash">
 
<syntaxhighlight lang="bash">
genio-flash mmc0boot1 firmware firmware_b
+
sudo dpkg -i *deb
 +
sudo reboot
 
</syntaxhighlight>
 
</syntaxhighlight>

Latest revision as of 10:03, 26 January 2024


Hardware Enablement

  • RS-485
  • TPM
  • external watchdog
  • ethernet switch (UIO-4036)

Install Procedures

fetch the following packages

kernel (get these files from your contact window)

# linux-buildinfo-5.15.0-1029-mtk_5.15.0-1029.33advantech1_arm64.deb
# linux-headers-5.15.0-1029-mtk_5.15.0-1029.33advantech1_arm64.deb
# linux-image-5.15.0-1029-mtk_5.15.0-1029.33advantech1_arm64.deb
# linux-modules-5.15.0-1029-mtk_5.15.0-1029.33advantech1_arm64.deb
# linux-mtk-headers-5.15.0-1029_5.15.0-1029.33advantech1_all.deb

dependency

wget https://ftp.fau.de/ubuntu-ports/pool/main/o/openssl/libssl1.1_1.1.1-1ubuntu2.1~18.04.23_arm64.deb

install all fetched packages

sudo dpkg -i *deb
sudo reboot