Re: [U-Boot] [PATCH 1/2] net: designware: fix tx packet length

2019-01-14 Thread Simon Goldschmidt
Joe, Am 10.12.2018 um 05:08 schrieb Marek Vasut: On 12/09/2018 09:50 PM, Simon Goldschmidt wrote: Am 17.11.2018 um 17:02 schrieb Joe Hershberger: On Sat, Nov 17, 2018 at 3:25 AM Simon Goldschmidt wrote: The designware driver has a bug in setting the tx length into the dma descriptor: it

Re: [U-Boot] [PATCH 1/2] net: designware: fix tx packet length

2018-12-09 Thread Marek Vasut
On 12/09/2018 09:50 PM, Simon Goldschmidt wrote: > Am 17.11.2018 um 17:02 schrieb Joe Hershberger: >> On Sat, Nov 17, 2018 at 3:25 AM Simon Goldschmidt >> wrote: >>> >>> The designware driver has a bug in setting the tx length into the dma >>> descriptor: it always or's the length into the

Re: [U-Boot] [PATCH 1/2] net: designware: fix tx packet length

2018-12-09 Thread Philipp Tomsich
> On 17.11.2018, at 10:24, Simon Goldschmidt > wrote: > > The designware driver has a bug in setting the tx length into the dma > descriptor: it always or's the length into the descriptor without > zeroing out the length mask before. > > This results in occasional packets being transmitted

Re: [U-Boot] [PATCH 1/2] net: designware: fix tx packet length

2018-12-09 Thread Simon Goldschmidt
Am 17.11.2018 um 17:02 schrieb Joe Hershberger: On Sat, Nov 17, 2018 at 3:25 AM Simon Goldschmidt wrote: The designware driver has a bug in setting the tx length into the dma descriptor: it always or's the length into the descriptor without zeroing out the length mask before. This results in

Re: [U-Boot] [PATCH 1/2] net: designware: fix tx packet length

2018-11-17 Thread Joe Hershberger
On Sat, Nov 17, 2018 at 3:25 AM Simon Goldschmidt wrote: > > The designware driver has a bug in setting the tx length into the dma > descriptor: it always or's the length into the descriptor without > zeroing out the length mask before. > > This results in occasional packets being transmitted

[U-Boot] [PATCH 1/2] net: designware: fix tx packet length

2018-11-17 Thread Simon Goldschmidt
The designware driver has a bug in setting the tx length into the dma descriptor: it always or's the length into the descriptor without zeroing out the length mask before. This results in occasional packets being transmitted with a length greater than they should be (trailer). Due to the nature