Re: [U-Boot] [PATCH] serial: 16550: properly initialize fcr field of ns16550_platdata

2017-02-01 Thread Oleksandr Tymoshenko
Heiko Schocher (h...@denx.de) wrote: > Hello Oleksandr, > > Am 01.02.2017 um 19:52 schrieb Oleksandr Tymoshenko: > > Tom Rini (tr...@konsulko.com) wrote: > >> On Tue, Jan 31, 2017 at 05:15:20PM -0800, Oleksandr Tymoshenko wrote: > >> > >

Re: [U-Boot] [PATCH] serial: 16550: properly initialize fcr field of ns16550_platdata

2017-02-01 Thread Oleksandr Tymoshenko
Tom Rini (tr...@konsulko.com) wrote: > On Tue, Jan 31, 2017 at 05:15:20PM -0800, Oleksandr Tymoshenko wrote: > > > Default fcr value is initialized in ns16550_serial_ofdata_to_platdata > > but this function is only called if OF_CONTROL option is enabled while > > th

[U-Boot] [PATCH] serial: 16550: properly initialize fcr field of ns16550_platdata

2017-01-31 Thread Oleksandr Tymoshenko
when serial port input is faster than reading routine i.e. when copy-pasting long line to U-Boot prompt. As a fix initialize fcr field in probe method Signed-off-by: Oleksandr Tymoshenko Cc: Marek Vasut Cc: Tom Rini Cc: Simon Glass --- drivers/serial/ns16550.c | 2 +- 1 file changed, 1

Re: [U-Boot] [PATCH] fs/fat: Fix unaligned __u16 reads for FAT12 access

2017-01-26 Thread Oleksandr Tymoshenko
granularity). > Fix a regression introduced in 8d48c92b45aea91e2a2be90f2ed93677e85526f1 > > Reported-by: Oleksandr Tymoshenko > Signed-off-by: Stefan BrĂ¼ns > --- > fs/fat/fat.c | 7 --- > 1 file changed, 4 insertions(+), 3 deletions(-) > > diff --git a/fs/fat/

[U-Boot] FAT12 regression after 8d48c92b45aea91e2a2be90f2ed93677e85526f1

2017-01-25 Thread Oleksandr Tymoshenko
Hello, U-Boot 2017.01 and master branch is broken on BeagleBone Black with boot partition formatted as FAT12, it hang after printing "Loading u-boot.img" message. I bisected regression to this patch: http://lists.denx.de/pipermail/u-boot/2016-December/276305.html This code simplification is not

[U-Boot] [PATCH] efi: Use device device path type Messaging for network interface node

2016-10-24 Thread Oleksandr Tymoshenko
When adding network interface node use Messaging device path with subtype MAC Address and device's MAC address as a value instead of Media Device path type with subtype File Path and path "Net" Signed-off-by: Oleksandr Tymoshenko Cc: Alexander Graf --- include/efi_ap

Re: [U-Boot] [PATCH] net: rtl8169: Fix return value for rtl_send_common

2016-07-04 Thread Oleksandr Tymoshenko
> On Jul 4, 2016, at 8:40 AM, Simon Glass wrote: > > On 1 July 2016 at 14:22, Oleksandr Tymoshenko wrote: >> Return value of rtl_send_common propogates unmodified all the way >> up to eth_send and further to API consumer if CONFIG_API is enabled. >> Previously rtl_

[U-Boot] [PATCH] net: rtl8169: Fix return value for rtl_send_common

2016-07-02 Thread Oleksandr Tymoshenko
success by comparing return value with 0. Switch rtl_send_common to use common convention: return 0 on success and negative value for failure. Cc: Stephen Warren Cc: Joe Hershberger Signed-off-by: Oleksandr Tymoshenko --- drivers/net/rtl8169.c | 4 ++-- 1 file changed, 2 insertions(+), 2

Re: [U-Boot] U-Boot DWC2 unused variables

2014-02-09 Thread Oleksandr Tymoshenko
On 2014-02-03, at 10:34 PM, Stephen Warren wrote: > Oleksandr, > > Thanks for the quick response on the s-o-b lines. Another question: The > compiler is complaining about hprt0 being written but then not used in > the functions below. I assume the second parameter passed to > dwc_write_reg32()

Re: [U-Boot] Signed-off-by for RPI U-Boot USB patches

2014-02-02 Thread Oleksandr Tymoshenko
. >> >> The main thing preventing me from sending the driver for inclusion in >> mainline U-Boot is that none of the commits in that branch contain a >> Signed-off-by tag from you. Could you please reply here with your s-o-b >> line for all the commits listed

Re: [U-Boot] S-o-b entries for bcm2708 SDHCI driver in the downstream R.Pi Linux kernel

2012-11-08 Thread Oleksandr Tymoshenko
On 2012-11-07, at 9:38 PM, Stephen Warren wrote: > On 11/07/2012 01:47 PM, Oleksandr Tymoshenko wrote: >> On 11/6/2012 6:58 PM, Stephen Warren wrote: >>> On 10/26/2012 10:54 PM, Stephen Warren wrote: >>>> (Sorry for the resend; I sent this to the wrong U-Boot ma

Re: [U-Boot] S-o-b entries for bcm2708 SDHCI driver in the downstream R.Pi Linux kernel

2012-11-07 Thread Oleksandr Tymoshenko
to go with the U-Boot patch I posted, and I can then repost it including fixes for the review feedback it received. I believe this is the only commit I made to SDHCI-related code: commit c78b8ea9ae717432770843b825ea8a1a77f223fc Author: Oleksandr Tymoshenko Date: Wed Jun 20 11:53:07 2012 -0700

Re: [U-Boot] [PATCH 1/2] mmc: add bcm2835 driver

2012-10-26 Thread Oleksandr Tymoshenko
* Register accesses must all be 32-bit, so implement custom accessors. This code was extracted from: git://github.com/gonzoua/u-boot-pi.git master which was created by Oleksandr Tymoshenko. Portions of the code there were obviously based on the Linux kernel at: git://github.com/raspberrypi/linux.git