Re: [U-Boot] imx6: USB SDP failed for u-boot-dtb.img

2018-03-06 Thread Vincent Prince
I put my log here https://pastebin.com/5aPjntnb , but i use standard DT-less u-boot.img. Maybe it could be easier to talk in u-boot IRC? 2018-03-06 15:55 GMT+01:00 Jagan Teki <jagannadh.t...@gmail.com>: > Hi Michael, Vincent, > > On Tue, Mar 6, 2018 at 7:57 PM, Vincent Prince &g

Re: [U-Boot] imx6: USB SDP failed for u-boot-dtb.img

2018-03-06 Thread Vincent Prince
Hi all, Jagan , do you confirm your mx6_usb_sdp_spl.conf contains the 3rd line? mx6_spl_sdp hid,uboot_header,1024,0x91,0x1000,512M,0x0090,0x4 u-boot-dtb.img:jump header2 BR, Vincent 2018-03-06 15:18 GMT+01:00 Michael Nazzareno Trimarchi < mich...@amarulasolutions.com>: > Hi

Re: [U-Boot] On writing .ext4 image to MMC

2018-01-15 Thread Vincent Prince
Hi, I think you can also create an ext4 image with extra space in it. You can use bmap tool if size is a concern. Regards, Vincent 2018-01-12 19:22 GMT+01:00 Adam Lee : > I was hoping to get this done in the bootloader otherwise I have to change > the rootfs ;) > > On

Re: [U-Boot] [U-boot][SDP] Trigger watchdog before calling usb_gadget_handle_interrupts

2017-11-07 Thread Vincent Prince
oard resets when calling sdp command on boards which > >> have a watchdog. > >> > >> Signed-off-by: Vincent Prince <vincent.prince...@gmail.com> > >> --- > >> drivers/usb/gadget/f_sdp.c | 4 > >> 1 file changed, 4 insertions(+) > >&

[U-Boot] [U-boot][SDP] Trigger watchdog before calling usb_gadget_handle_interrupts

2017-10-23 Thread Vincent Prince
This prevents board resets when calling sdp command on boards which have a watchdog. Signed-off-by: Vincent Prince <vincent.prince...@gmail.com> --- drivers/usb/gadget/f_sdp.c | 4 1 file changed, 4 insertions(+) diff --git a/drivers/usb/gadget/f_sdp.c b/drivers/usb/gadget/f_sdp.c

[U-Boot] [U-boot][SDP] Trigger watchdog before calling usb_gadget_handle_interrupts

2017-10-23 Thread Vincent Prince
This prevents board resets when calling sdp command on boards which have a watchdog. Signed-off-by: Vincent Prince <vincent.prince...@gmail.com> --- drivers/usb/gadget/f_sdp.c | 4 1 file changed, 4 insertions(+) diff --git a/drivers/usb/gadget/f_sdp.c b/drivers/usb/gadget/f_sdp.c

Re: [U-Boot] [PATCH v2 0/8] imx: add USB Serial Download Protocol (SDP) support

2017-09-08 Thread Vincent Prince
Hi everyone, I managed to get SDP protocol to work with on my custom i.MX6 board, so big thanks to Stefan for your work! I'm now trying to load swupdate ramdisk with u-boot sdp command, without success. Is it a possible use case ? Here my steps: In u-boot: => sdp 0 On Host, $ imx_usb config

Re: [U-Boot] Booting Wandboard through USB

2017-08-05 Thread Vincent Prince
Hi Fabio, Stefan, Indeed i saw it this morning with great enthusiasm, I'm currently in vacation, I'll test it in two weeks when I'll back to work. Thanks, Vincent 2017-08-05 14:22 GMT+02:00 Fabio Estevam <feste...@gmail.com>: > Hi Vincent, > > On Thu, Jul 27, 2017 at 6:05 AM,

[U-Boot] Booting Wandboard through USB

2017-07-27 Thread Vincent Prince
following: - https://lists.denx.de/pipermail/u-boot/2015-May/215573.html - https://lists.denx.de/pipermail/u-boot/2015-June/215606.html Hi everyone, I'd like to know if something is going on regarding this topic ? I managed to flash a yocto BSP with SPL with USB+serial with Fabio help, but I

Re: [U-Boot] [PATCH] tools/fw_env: use fsync to ensure that data is physically stored

2017-07-14 Thread Vincent Prince
For completness, here is the original post url : https://patchwork.ozlabs.org/patch/245097/ https://lists.denx.de/pipermail/u-boot/2013-May/154752.html 2017-07-13 15:11 GMT+02:00 Vincent Prince <vincent.prince...@gmail.com>: > Hi all, > > We had the same issue on o

[U-Boot] [PATCH] tools/fw_env: use fsync to ensure that data is physically stored

2017-07-13 Thread Vincent Prince
Hi all, We had the same issue on our custom board, and this patch fixed it. We use fw_setenv for updating our BSP, and before the patch, 100 boards over 170 didn't work, and after, 170/170 did get the update. This patches worked well for us, Thanks Michael