Re: [U-Boot] [PATCH 2/7] usb: rockchip: implement skeleton for K_FW_GET_CHIP_VER command

2018-07-04 Thread Alberto Panizzo
On Tue, Jul 03, 2018 at 11:33:45PM +0200, Lukasz Majewski wrote: > Hi Alberto, > > > Chip Version is a string saved in BOOTROM address space Little Endian. > > > > Ex for rk3288: 0x33323041 0x32303134 0x30383133 0x56323030 > > which brings: 320A20140813V200 > > > > Note that memory version do

Re: [U-Boot] [PATCH 2/7] usb: rockchip: implement skeleton for K_FW_GET_CHIP_VER command

2018-07-03 Thread Lukasz Majewski
Hi Alberto, > Chip Version is a string saved in BOOTROM address space Little Endian. > > Ex for rk3288: 0x33323041 0x32303134 0x30383133 0x56323030 > which brings: 320A20140813V200 > > Note that memory version do invert MSB/LSB so printing the char > buffer will show: A02341023180002V > >

[U-Boot] [PATCH 2/7] usb: rockchip: implement skeleton for K_FW_GET_CHIP_VER command

2018-07-03 Thread Alberto Panizzo
Chip Version is a string saved in BOOTROM address space Little Endian. Ex for rk3288: 0x33323041 0x32303134 0x30383133 0x56323030 which brings: 320A20140813V200 Note that memory version do invert MSB/LSB so printing the char buffer will show: A02341023180002V Signed-off-by: Alberto Panizzo