Re: [U-Boot] Googlers please reply: commiters in U-Boot

2013-01-12 Thread Vincent Palatin
On Jan 12, 2013 9:20 AM, "Simon Glass" wrote: > > Hi, > > You are being copied because you have written U-Boot code which is now > in mainline. > > The chromium.org domain does not automatically attribute U-Boot > commits by company. Each author needs to be manually added to the list > and this ca

Re: [U-Boot] [PATCH 03/11] usb: ehci: generic PCI support

2012-12-13 Thread Vincent Palatin
On Thu, Dec 13, 2012 at 9:30 AM, Marek Vasut wrote: > Dear Simon Glass, > >> From: Vincent Palatin >> >> Instead of hardcoding the PCI IDs on the USB controller, use the PCI >> class to detect them. >> >> Ensure the busmaster bit is properly set in

[U-Boot] [PATCH] usb: fallback safely when a configuration descriptor is too large

2012-07-24 Thread Vincent Palatin
the user, so he can fix the buffer if he wants. This bug was triggered by some UVC webcams which have very large configuration descriptors (e.g. a couple of kB) describing all their supported video encodings. Signed-off-by: Vincent Palatin --- common/usb.c | 12 +--- 1 files changed, 9

Re: [U-Boot] [PATCH] usb: add numeric keypad support to HID driver

2012-01-09 Thread Vincent Palatin
On Mon, Jan 9, 2012 at 15:13, Marek Vasut wrote: >> +     /* Numeric keypad */ >> +     if ((scancode >= 0x54) && (scancode <= 0x67)) >> +             keycode = usb_kbd_num_keypad[scancode - 0x54]; >> + >>       if (data->flags & USB_KBD_CTRL) >>               keycode = scancode - 0x3; > > This is

[U-Boot] [PATCH] usb: add numeric keypad support to HID driver

2012-01-09 Thread Vincent Palatin
When keys are pressed on the numeric keypad, emit key codes for the numbers, operators, dot and enter. Signed-off-by: Vincent Palatin --- common/usb_kbd.c | 10 ++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/common/usb_kbd.c b/common/usb_kbd.c index aaf7d6f

Re: [U-Boot] [PATCH] eth: remove usb-ethernet devices before re-enumerating them

2012-01-09 Thread Vincent Palatin
On Mon, Jan 9, 2012 at 12:57, Marek Vasut wrote: >> Fix the crash when running several times usb_init() with a USB ethernet >> device plugged. >> >> Signed-off-by: Vincent Palatin >> Tested-by: Wolfgang Grandegger >> --- >>  drivers/usb/eth/us

Re: [U-Boot] [PATCH] USB: fix USB keyboard polling parameter

2012-01-09 Thread Vincent Palatin
On Mon, Jan 9, 2012 at 12:46, Marek Vasut wrote: >> When doing a "GET_REPORT" request on the keyboard control endpoint, >> the report ID should 0 (ie report ID not used) rather than 1 >> as reports are not used in boot mode. >> >> Signed-off-by: Vincent Pal

[U-Boot] [PATCH] eth: remove usb-ethernet devices before re-enumerating them

2012-01-09 Thread Vincent Palatin
Fix the crash when running several times usb_init() with a USB ethernet device plugged. Signed-off-by: Vincent Palatin Tested-by: Wolfgang Grandegger --- drivers/usb/eth/usb_ether.c |7 +-- include/net.h |1 + net/eth.c | 29

[U-Boot] [PATCH] USB: fix USB keyboard polling parameter

2012-01-09 Thread Vincent Palatin
When doing a "GET_REPORT" request on the keyboard control endpoint, the report ID should 0 (ie report ID not used) rather than 1 as reports are not used in boot mode. Signed-off-by: Vincent Palatin --- common/usb_kbd.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) di

Re: [U-Boot] net: re-enumerating usb-ethernet devices hangs the system

2012-01-09 Thread Vincent Palatin
Hi, On Mon, Jan 9, 2012 at 04:02, Wolfgang Grandegger wrote: > as you already know, the re-enumerating of usb ethernet devices (calling > "usb start" twice) hangs the system because eth_register() is called > more than once. If have found a related patch from you with the subject > "eth: remove u

Re: [U-Boot] [PATCH] ehci: speed up initialization

2011-12-19 Thread Vincent Palatin
On Mon, Dec 19, 2011 at 08:59, Remy Bohmer wrote: > Hi Wolfgang, > > 2011/12/19 Wolfgang Grandegger : >> On 12/19/2011 01:51 PM, Vincent Palatin wrote: >>> On Mon, Dec 19, 2011 at 04:07, Wolfgang Grandegger >>> wrote: >>>> I just realized that this

Re: [U-Boot] [PATCH] ehci: speed up initialization

2011-12-19 Thread Vincent Palatin
On Mon, Dec 19, 2011 at 04:07, Wolfgang Grandegger wrote: > I just realized that this patch breaks "usb start" on my mx53loco board: > >  MX53LOCO U-Boot > usb start >  (Re)start USB... >  USB:   Register 10011 NbrPorts 1 >  USB EHCI 1.00 >  scanning bus for devices... 1 USB Device(s) found >    

[U-Boot] [PATCH] ehci: speed up initialization

2011-12-05 Thread Vincent Palatin
ler initialization/enumeration. Signed-off-by: Vincent Palatin --- drivers/usb/host/ehci-hcd.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c index 2197119..caa0cfb 100644 --- a/drivers/usb/host/ehci-hcd.c ++