S32V234 Usage

Jun 28, 2021


Table of Content

1. Linux BSP

1.1 Download Linux BSP

https://freescaleesd.flexnetoperations.com/337170/817/17500817/binaries_auto_linux_bsp23.1_s32v234.tgz?ftpRequestID=8810016717&server=freescaleesd.flexnetoperations.com&dtm=DTM20210628024435NDM1Mzk0OTg1&authparam=1624873475_6ff9fbdf961f6f097ede5206cbae1d45&ext=.tgz

1.2 Flash to SD Card

$ sudo dd if=<image name>.sdcard of=${DEVSD} bs=1M && sync

//example:
$ sudo dd if=fsl-image-auto-s32v234sbc.sdcard of=/dev/sdb bs=1M && sync
[sudo] password for vmuser: 
340+0 records in
340+0 records out
356515840 bytes (357 MB, 340 MiB) copied, 1.76855 s, 202 MB/s

1.3 Enable HDMI output

setenv dvi_on 'i2c dev 2; i2c mw 3f 8 35'
setenv bootcmd 'run dvi_on; run loadimage; run mmcboot'
boot

=========================================================================================
https://community.nxp.com/t5/S32V/SBC-S32V234-board-HDMI-not-working/td-p/730932

04-30-2018 01:13 PM 268 Views
kushalshah13
NXP Employee kushalshah13
NXP Employee
Please try to run following command in u-boot console (before start of linux). It should solve your problem.

This configures HDMI transmitter chip connected to i2c bus 2 of S32V234.

setenv dvi_on 'i2c dev 2; i2c mw 3f 8 35'
setenv bootcmd 'run dvi_on; run loadimage; run mmcboot'
sav
boot

Please let me know if this works of not.

Thank you!

‎05-03-2018 11:02 PM 268 Views
zhiwei_zhang1
zhiwei_zhang1
Contributor I
Yes ,It works. 

thanks very much .

The whole steps are as follows:

1、first download the BSP 16.1 from here.

http://www.nxp.com/webapp/swlicensing/sso/downloadSoftware.sp?catid=SW32XX-LINUXBSP01D

follow the user guide, compile the  image for s32v234sbc machine. && dd fsl-image-auto-s32v234sbc.sdcard to a SD card.

2、boot up the board, using the SD card.

3、test the HDMI output via command "cat  /dev/urandom > /dev/fb0"

99. Reference URL