Re: [U-Boot] [PATCH v3 03/10] pinctrl: rockchip: Split the common set_mux() into per Soc【请注意,邮件由u-boot-boun...@lists.denx.de代发】

2019-05-08 Thread Kever Yang
On 05/07/2019 11:43 AM, Kever Yang wrote: > > On 04/16/2019 09:50 PM, David Wu wrote: >> Such as rk3288's pins of pmu_gpio0 are a special feature, which have no >> higher 16 writing corresponding bits, use common set_mux() func would >> introduce more code, so implement their set_mux() in each

Re: [U-Boot] [PATCH v3 03/10] pinctrl: rockchip: Split the common set_mux() into per Soc

2019-05-06 Thread Kever Yang
On 04/16/2019 09:50 PM, David Wu wrote: > Such as rk3288's pins of pmu_gpio0 are a special feature, which have no > higher 16 writing corresponding bits, use common set_mux() func would > introduce more code, so implement their set_mux() in each Soc's own > file to reduce the size of code. > >

[U-Boot] [PATCH v3 03/10] pinctrl: rockchip: Split the common set_mux() into per Soc

2019-04-16 Thread David Wu
Such as rk3288's pins of pmu_gpio0 are a special feature, which have no higher 16 writing corresponding bits, use common set_mux() func would introduce more code, so implement their set_mux() in each Soc's own file to reduce the size of code. Signed-off-by: David Wu --- Change in v3: - None