Re: [U-Boot] [PATCH v3] regmap: add support for address cell 2

2017-06-20 Thread Simon Glass
Hi Kever, On 18 June 2017 at 22:11, Simon Glass wrote: > > Hi Kever, > > On 7 May 2017 at 19:45, Kever Yang wrote: > > Hi Heiko, > > > > > > Thanks for your comments. > > > > > > On 05/05/2017 09:10 PM, Heiko Stuebner wrote: > >> > >> Hi Kever, > >> > >> Am Freitag, 5. Mai 2017, 10:39:35 CEST sc

Re: [U-Boot] [PATCH v3] regmap: add support for address cell 2

2017-06-18 Thread Simon Glass
Hi Kever, On 7 May 2017 at 19:45, Kever Yang wrote: > Hi Heiko, > > > Thanks for your comments. > > > On 05/05/2017 09:10 PM, Heiko Stuebner wrote: >> >> Hi Kever, >> >> Am Freitag, 5. Mai 2017, 10:39:35 CEST schrieb Kever Yang: >>> >>> ARM64 is using 64bit address which address cell is 2 instead

Re: [U-Boot] [PATCH v3] regmap: add support for address cell 2

2017-05-07 Thread Kever Yang
Hi Heiko, Thanks for your comments. On 05/05/2017 09:10 PM, Heiko Stuebner wrote: Hi Kever, Am Freitag, 5. Mai 2017, 10:39:35 CEST schrieb Kever Yang: ARM64 is using 64bit address which address cell is 2 instead of 1, update to support it when of-platdata enabled. Signed-off-by: Kever Yang

Re: [U-Boot] [PATCH v3] regmap: add support for address cell 2

2017-05-05 Thread Heiko Stuebner
Hi Kever, Am Freitag, 5. Mai 2017, 10:39:35 CEST schrieb Kever Yang: > ARM64 is using 64bit address which address cell is 2 instead of 1, > update to support it when of-platdata enabled. > > Signed-off-by: Kever Yang This helps make OF_PLATDATA work on my firefly-rk3399 so yay :-), but I don't

[U-Boot] [PATCH v3] regmap: add support for address cell 2

2017-05-04 Thread Kever Yang
ARM64 is using 64bit address which address cell is 2 instead of 1, update to support it when of-platdata enabled. Signed-off-by: Kever Yang --- Changes in v3: - move of_plat_get_number() into lib/of_plat.c Changes in v2: - rename the fdtdec_get_number() to of_plat_get_number() drivers/core/re