* [U-Boot] [PATCH] efi_loader: GOP fix for no display @ 2017-08-04 11:52 Rob Clark 2017-08-04 11:52 ` [U-Boot] [PATCH] usb: kbd: don't fail with iomux Rob Clark 2017-08-31 16:20 ` [U-Boot] efi_loader: GOP fix for no display Alexander Graf 0 siblings, 2 replies; 6+ messages in thread From: Rob Clark @ 2017-08-04 11:52 UTC (permalink / raw) To: u-boot uclass_first_device() returns 0 if there is no device, but error if there is a device that failed to probe. Signed-off-by: Rob Clark <robdclark@gmail.com> --- lib/efi_loader/efi_gop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/efi_loader/efi_gop.c b/lib/efi_loader/efi_gop.c index e063e0c79b..411a8c9226 100644 --- a/lib/efi_loader/efi_gop.c +++ b/lib/efi_loader/efi_gop.c @@ -137,7 +137,7 @@ int efi_gop_register(void) struct udevice *vdev; /* We only support a single video output device for now */ - if (uclass_first_device(UCLASS_VIDEO, &vdev)) + if (uclass_first_device(UCLASS_VIDEO, &vdev) || !vdev) return -1; struct video_priv *priv = dev_get_uclass_priv(vdev); -- 2.13.0 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH] usb: kbd: don't fail with iomux 2017-08-04 11:52 [U-Boot] [PATCH] efi_loader: GOP fix for no display Rob Clark @ 2017-08-04 11:52 ` Rob Clark 2017-08-04 12:35 ` Bin Meng 2017-08-31 16:20 ` [U-Boot] efi_loader: GOP fix for no display Alexander Graf 1 sibling, 1 reply; 6+ messages in thread From: Rob Clark @ 2017-08-04 11:52 UTC (permalink / raw) To: u-boot stdin might not be set, which would cause iomux_doenv() to fail therefore causing probe_usb_keyboard() to fail. Furthermore if we do have iomux enabled, the sensible thing (in terms of user experience) would be to simply add ourselves to the list of stdin devices. This fixes an issue with usbkbd on dragonboard410c with distro- bootcmd, where stdin is not set (so stdinname is null). Signed-off-by: Rob Clark <robdclark@gmail.com> --- v2: address Bin's review comments v3: fix fail with free()ing if usbkbd is already in stdin env variable pointed out by Simon common/usb_kbd.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/common/usb_kbd.c b/common/usb_kbd.c index d2d29cc98f..703dd748f5 100644 --- a/common/usb_kbd.c +++ b/common/usb_kbd.c @@ -517,7 +517,22 @@ static int probe_usb_keyboard(struct usb_device *dev) stdinname = getenv("stdin"); #if CONFIG_IS_ENABLED(CONSOLE_MUX) + char *devname = DEVNAME; + /* + * stdin might not be set yet.. either way, with console-mux the + * sensible thing to do is add ourselves to the list of stdio + * devices: + */ + if (stdinname && !strstr(stdinname, DEVNAME)) { + char *newstdin = malloc(strlen(stdinname) + strlen(","DEVNAME) + 1); + sprintf(newstdin, "%s,"DEVNAME, stdinname); + stdinname = newstdin; + } else if (!stdinname) { + stdinname = devname; + } error = iomux_doenv(stdin, stdinname); + if (stdinname != devname) + free(stdinname); if (error) return error; #else -- 2.13.0 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH] usb: kbd: don't fail with iomux 2017-08-04 11:52 ` [U-Boot] [PATCH] usb: kbd: don't fail with iomux Rob Clark @ 2017-08-04 12:35 ` Bin Meng 2017-08-04 12:51 ` Rob Clark 0 siblings, 1 reply; 6+ messages in thread From: Bin Meng @ 2017-08-04 12:35 UTC (permalink / raw) To: u-boot Hi Rob, On Fri, Aug 4, 2017 at 7:52 PM, Rob Clark <robdclark@gmail.com> wrote: > stdin might not be set, which would cause iomux_doenv() to fail > therefore causing probe_usb_keyboard() to fail. Furthermore if we do > have iomux enabled, the sensible thing (in terms of user experience) > would be to simply add ourselves to the list of stdin devices. > > This fixes an issue with usbkbd on dragonboard410c with distro- > bootcmd, where stdin is not set (so stdinname is null). > > Signed-off-by: Rob Clark <robdclark@gmail.com> > --- > v2: address Bin's review comments > v3: fix fail with free()ing if usbkbd is already in stdin env variable > pointed out by Simon > Can you please indicate the version number in the email title next time? It's really hard to track which version the patch is. > common/usb_kbd.c | 15 +++++++++++++++ > 1 file changed, 15 insertions(+) > > diff --git a/common/usb_kbd.c b/common/usb_kbd.c > index d2d29cc98f..703dd748f5 100644 > --- a/common/usb_kbd.c > +++ b/common/usb_kbd.c > @@ -517,7 +517,22 @@ static int probe_usb_keyboard(struct usb_device *dev) > > stdinname = getenv("stdin"); > #if CONFIG_IS_ENABLED(CONSOLE_MUX) > + char *devname = DEVNAME; > + /* > + * stdin might not be set yet.. either way, with console-mux the > + * sensible thing to do is add ourselves to the list of stdio > + * devices: > + */ > + if (stdinname && !strstr(stdinname, DEVNAME)) { > + char *newstdin = malloc(strlen(stdinname) + strlen(","DEVNAME) + 1); > + sprintf(newstdin, "%s,"DEVNAME, stdinname); > + stdinname = newstdin; > + } else if (!stdinname) { > + stdinname = devname; > + } > error = iomux_doenv(stdin, stdinname); > + if (stdinname != devname) > + free(stdinname); > if (error) > return error; > #else And what's the difference between this "v3" and previous "v2"? Previous v2 is here: http://patchwork.ozlabs.org/patch/797418/ Regards, Bin ^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH] usb: kbd: don't fail with iomux 2017-08-04 12:35 ` Bin Meng @ 2017-08-04 12:51 ` Rob Clark 2017-08-04 13:08 ` Bin Meng 0 siblings, 1 reply; 6+ messages in thread From: Rob Clark @ 2017-08-04 12:51 UTC (permalink / raw) To: u-boot On Fri, Aug 4, 2017 at 8:35 AM, Bin Meng <bmeng.cn@gmail.com> wrote: > Hi Rob, > > On Fri, Aug 4, 2017 at 7:52 PM, Rob Clark <robdclark@gmail.com> wrote: >> stdin might not be set, which would cause iomux_doenv() to fail >> therefore causing probe_usb_keyboard() to fail. Furthermore if we do >> have iomux enabled, the sensible thing (in terms of user experience) >> would be to simply add ourselves to the list of stdin devices. >> >> This fixes an issue with usbkbd on dragonboard410c with distro- >> bootcmd, where stdin is not set (so stdinname is null). >> >> Signed-off-by: Rob Clark <robdclark@gmail.com> >> --- >> v2: address Bin's review comments >> v3: fix fail with free()ing if usbkbd is already in stdin env variable >> pointed out by Simon >> > > Can you please indicate the version number in the email title next > time? It's really hard to track which version the patch is. ok, I had assumed u-boot followed linux kernel conventions of history below the "---" so it doesn't end up in git history. >> common/usb_kbd.c | 15 +++++++++++++++ >> 1 file changed, 15 insertions(+) >> >> diff --git a/common/usb_kbd.c b/common/usb_kbd.c >> index d2d29cc98f..703dd748f5 100644 >> --- a/common/usb_kbd.c >> +++ b/common/usb_kbd.c >> @@ -517,7 +517,22 @@ static int probe_usb_keyboard(struct usb_device *dev) >> >> stdinname = getenv("stdin"); >> #if CONFIG_IS_ENABLED(CONSOLE_MUX) >> + char *devname = DEVNAME; >> + /* >> + * stdin might not be set yet.. either way, with console-mux the >> + * sensible thing to do is add ourselves to the list of stdio >> + * devices: >> + */ >> + if (stdinname && !strstr(stdinname, DEVNAME)) { >> + char *newstdin = malloc(strlen(stdinname) + strlen(","DEVNAME) + 1); >> + sprintf(newstdin, "%s,"DEVNAME, stdinname); >> + stdinname = newstdin; >> + } else if (!stdinname) { >> + stdinname = devname; >> + } >> error = iomux_doenv(stdin, stdinname); >> + if (stdinname != devname) >> + free(stdinname); >> if (error) >> return error; >> #else > > And what's the difference between this "v3" and previous "v2"? > > Previous v2 is here: http://patchwork.ozlabs.org/patch/797418/ > Nothing because I apparently passed the old commit sha to git-format-patch again. Sorry about that. (I guess I'm doing too many things at once with trying to finalize a big efi_loader patchset in parallel with bisecting a couple remaining nonsensical travis failures as well as updating and resending these various other unrelated patches.) I'll resend the real v3 in a moment. BR, -R ^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] [PATCH] usb: kbd: don't fail with iomux 2017-08-04 12:51 ` Rob Clark @ 2017-08-04 13:08 ` Bin Meng 0 siblings, 0 replies; 6+ messages in thread From: Bin Meng @ 2017-08-04 13:08 UTC (permalink / raw) To: u-boot Hi Rob, On Fri, Aug 4, 2017 at 8:51 PM, Rob Clark <robdclark@gmail.com> wrote: > On Fri, Aug 4, 2017 at 8:35 AM, Bin Meng <bmeng.cn@gmail.com> wrote: >> Hi Rob, >> >> On Fri, Aug 4, 2017 at 7:52 PM, Rob Clark <robdclark@gmail.com> wrote: >>> stdin might not be set, which would cause iomux_doenv() to fail >>> therefore causing probe_usb_keyboard() to fail. Furthermore if we do >>> have iomux enabled, the sensible thing (in terms of user experience) >>> would be to simply add ourselves to the list of stdin devices. >>> >>> This fixes an issue with usbkbd on dragonboard410c with distro- >>> bootcmd, where stdin is not set (so stdinname is null). >>> >>> Signed-off-by: Rob Clark <robdclark@gmail.com> >>> --- >>> v2: address Bin's review comments >>> v3: fix fail with free()ing if usbkbd is already in stdin env variable >>> pointed out by Simon >>> >> >> Can you please indicate the version number in the email title next >> time? It's really hard to track which version the patch is. > > ok, I had assumed u-boot followed linux kernel conventions of history > below the "---" so it doesn't end up in git history. Yes, U-Boot follows the same Linux kernel conventions with regard to patch submission. What I was saying is not the commit title. It's the email title, something like "[PATCH v3] usb: kbd: don't fail with iomux" > >>> common/usb_kbd.c | 15 +++++++++++++++ >>> 1 file changed, 15 insertions(+) >>> >>> diff --git a/common/usb_kbd.c b/common/usb_kbd.c >>> index d2d29cc98f..703dd748f5 100644 >>> --- a/common/usb_kbd.c >>> +++ b/common/usb_kbd.c >>> @@ -517,7 +517,22 @@ static int probe_usb_keyboard(struct usb_device *dev) >>> >>> stdinname = getenv("stdin"); >>> #if CONFIG_IS_ENABLED(CONSOLE_MUX) >>> + char *devname = DEVNAME; >>> + /* >>> + * stdin might not be set yet.. either way, with console-mux the >>> + * sensible thing to do is add ourselves to the list of stdio >>> + * devices: >>> + */ >>> + if (stdinname && !strstr(stdinname, DEVNAME)) { >>> + char *newstdin = malloc(strlen(stdinname) + strlen(","DEVNAME) + 1); >>> + sprintf(newstdin, "%s,"DEVNAME, stdinname); >>> + stdinname = newstdin; >>> + } else if (!stdinname) { >>> + stdinname = devname; >>> + } >>> error = iomux_doenv(stdin, stdinname); >>> + if (stdinname != devname) >>> + free(stdinname); >>> if (error) >>> return error; >>> #else >> >> And what's the difference between this "v3" and previous "v2"? >> >> Previous v2 is here: http://patchwork.ozlabs.org/patch/797418/ >> > > Nothing because I apparently passed the old commit sha to > git-format-patch again. Sorry about that. (I guess I'm doing too > many things at once with trying to finalize a big efi_loader patchset > in parallel with bisecting a couple remaining nonsensical travis > failures as well as updating and resending these various other > unrelated patches.) > You really should start trying patman instead of git-format-patch :) > I'll resend the real v3 in a moment. > Regards, Bin ^ permalink raw reply [flat|nested] 6+ messages in thread
* [U-Boot] efi_loader: GOP fix for no display 2017-08-04 11:52 [U-Boot] [PATCH] efi_loader: GOP fix for no display Rob Clark 2017-08-04 11:52 ` [U-Boot] [PATCH] usb: kbd: don't fail with iomux Rob Clark @ 2017-08-31 16:20 ` Alexander Graf 1 sibling, 0 replies; 6+ messages in thread From: Alexander Graf @ 2017-08-31 16:20 UTC (permalink / raw) To: u-boot > uclass_first_device() returns 0 if there is no device, but error if > there is a device that failed to probe. > > Signed-off-by: Rob Clark <robdclark@gmail.com> Thanks, applied to efi-next Alex ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2017-08-31 16:20 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2017-08-04 11:52 [U-Boot] [PATCH] efi_loader: GOP fix for no display Rob Clark 2017-08-04 11:52 ` [U-Boot] [PATCH] usb: kbd: don't fail with iomux Rob Clark 2017-08-04 12:35 ` Bin Meng 2017-08-04 12:51 ` Rob Clark 2017-08-04 13:08 ` Bin Meng 2017-08-31 16:20 ` [U-Boot] efi_loader: GOP fix for no display Alexander Graf
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox