Re: [U-Boot] [PATCH v3 01/12] s5p: gpio: change gpio coding method for s5p gpio.

2014-01-07 Thread Przemyslaw Marczak
Hello, On 01/06/2014 12:37 PM, Minkyu Kang wrote: On 04/01/14 01:43, Przemyslaw Marczak wrote: Old s5p gpio coding method was not clean and was not working properly for all parts and banks. New method is clean and easy to extend. Gpio coding mask: 0x00ff - pin number 0x0000 - bank offs

Re: [U-Boot] [PATCH v3 01/12] s5p: gpio: change gpio coding method for s5p gpio.

2014-01-06 Thread Minkyu Kang
On 04/01/14 01:43, Przemyslaw Marczak wrote: > Old s5p gpio coding method was not clean and was not working properly > for all parts and banks. New method is clean and easy to extend. > > Gpio coding mask: > 0x00ff - pin number > 0x0000 - bank offset > 0xff00 - part number > > Signed-

[U-Boot] [PATCH v3 01/12] s5p: gpio: change gpio coding method for s5p gpio.

2014-01-03 Thread Przemyslaw Marczak
Old s5p gpio coding method was not clean and was not working properly for all parts and banks. New method is clean and easy to extend. Gpio coding mask: 0x00ff - pin number 0x0000 - bank offset 0xff00 - part number Signed-off-by: Przemyslaw Marczak --- Changes v2: - none Changes v3