Re: [U-Boot] [PATCH] block: Migrate SystemACE chip to Kconfig

2018-02-12 Thread Алексей Бродкин
Hi Tom, Michal, 2018-02-09 8:13 GMT+01:00 Michal Simek : > On 8.2.2018 19:51, Tom Rini wrote: > > Migrate the base and sub-options to Kconfig. Note that we only enable > > this in the base sandbox config now. > > > > Cc: Alexey Brodkin > > Cc:

Re: [U-Boot] [PATCH RESEND 2/2 v2] lib: Add hexdump

2016-06-10 Thread Алексей Бродкин
Hi Tom, 2016-06-11 0:39 GMT+03:00 Tom Rini : > On Fri, Jun 10, 2016 at 11:51:20PM +0300, Alexey Brodkin wrote: >> Hi Tom, >> >> On Fri, 2016-06-10 at 15:37 -0400, Tom Rini wrote: >> > On Fri, Jun 10, 2016 at 03:31:30PM +, Langer, Thomas wrote: >> > >> > > >> > > Hello

Re: [U-Boot] [PATCH] drivers/block/systemace: replaced in16/out16 with more common readw/writew macros

2013-01-04 Thread Алексей Бродкин
Hi Wolfgang, but then do you think if there's any way to use some generic read/write routines? The problem is we use ml509 board loaded with Synopsys DW ACR700 core and we need to access SystemACE CF-card controller (to boot Linux kernel mainly). Or should I just add conditional branch for ARC

Re: [U-Boot] [PATCH] drivers/block/systemace: replaced in16/out16 with more common readw/writew macros

2013-01-03 Thread Алексей Бродкин
Unfortunately I didn't test it on any BE hardware - I don't have anything handy at the moment. I got it tested on LE platform - though it has nothing to do with real BE behavior. But as far as I can see from kernel headers writew does this - regardless CPU endianess it writes 16-bit word to

Re: [U-Boot] [PATCH] drivers/block/systemace: fixes read/write words for bus width = 8

2013-01-03 Thread Алексей Бродкин
Hi Wolfgang, I've already sent V2 patch with only 1 chunk and updated comments to the mailing list. -Alexey 03.01.2013 16:00 пользователь Wolfgang Denk w...@denx.de написал: Dear Alexey Brodkin, In message 1357137512-8618-1-git-send-email-alexey.brod...@gmail.com you wrote: From: Alexey

Re: [U-Boot] [PATCH] drivers/block/systemace: fixes read/write words for bus width = 8

2013-01-02 Thread Алексей Бродкин
The reason for latter modification is to make code more readable. Do you think if I may submit this as a cosmetic change separately? 2013/1/2 Michal Simek mon...@monstr.eu 2013/1/2 Alexey Brodkin alexey.brod...@gmail.com: From: Alexey Brodkin abrod...@synopsys.com Current implementation

Re: [U-Boot] [PATCH] drivers/block/systemace: fixes read/write words for bus width = 8

2013-01-02 Thread Алексей Бродкин
Actually I meant to respin both patches. 1. Only add else thread for ace_writew, keeping ace_readw unchanged 2. Replace in16/out16 with readw/writew 2013/1/2 Michal Simek mon...@monstr.eu Hi, 2013/1/2 Алексей Бродкин alexey.brod...@gmail.com: The reason for latter modification is to make