[U-Boot] [PATCH v1] ARM: at91/dt: sama5d2: Fix the warning from dtc

2016-09-18 Thread Wenyou Yang
Fix the warning from dtc like, ---8< Warning (unit_address_vs_reg): Node /ahb/apb/pmc@f0014000/periph64ck/sdmmc0_hclk has a reg or ranges property, but no unit name --->8 Signed-off-by: Wenyou Yang --- arch/arm/dts/sama5d2.dtsi | 140

Re: [U-Boot] Building u-boot.imx and SPL simultaneously

2016-09-18 Thread Stefano Babic
Hi Peng, On 18/09/2016 08:50, Peng Fan wrote: > Hi, > > On Sat, Sep 10, 2016 at 04:40:47PM -0700, Eric Nelson wrote: >> Hi Tom, >> >> On 09/06/2016 07:15 AM, Tom Rini wrote: >>> On Tue, Sep 06, 2016 at 07:00:56AM -0700, Eric Nelson wrote: On 09/06/2016 06:40 AM, Tom Rini wrote: > On

Re: [U-Boot] [PATCH v2 01/17] imx: iomux-v3: Fix build error with snvs base

2016-09-18 Thread Peng Fan
Hi Jagan, On Sat, Sep 17, 2016 at 02:18:33AM +0530, Jagan Teki wrote: >snvs base is added only for i.MX6ULL but the code is >added for common, so firing build error while compiling >other i.MX6 SOC's > >Issue observed with the below patch >"imx: mx6ull: Update memory map address" >(sha1:

[U-Boot] [PATCH v10] dm: at91: Add driver model support for the spi driver

2016-09-18 Thread Wenyou Yang
Add driver model support while retaining the existing legacy code. This allows the driver to support boards that have converted to driver model as well as those that have not. Signed-off-by: Wenyou Yang Reviewed-by: Simon Glass Acked-by: Stephen Warren

Re: [U-Boot] [PATCH v1 2/7] clk: at91: Improve the clock implementation

2016-09-18 Thread Wenyou.Yang
Hi Stephen, Thank you for your review, and detailed comments. The version 2 has been sent out, please give your advices. > -Original Message- > From: Stephen Warren [mailto:swar...@wwwdotorg.org] > Sent: 2016年9月14日 3:34 > To: Wenyou Yang - A41535 > Cc:

[U-Boot] [PATCH v2 7/7] mmc: atmel_sdhci: Remove unneccessary clock calling

2016-09-18 Thread Wenyou Yang
Due to the peripheral and generated clock driver improvement, remove the unneccessary clock calling. Signed-off-by: Wenyou Yang --- Changes in v2: None drivers/mmc/atmel_sdhci.c | 27 ++- 1 file changed, 2 insertions(+), 25 deletions(-) diff

[U-Boot] [PATCH v2 3/7] gpio: atmel_pio4: Remove unneccessary clock calling

2016-09-18 Thread Wenyou Yang
Due to the peripheral clock driver improvement, remove the unneccessary clock calling. Signed-off-by: Wenyou Yang Acked-by: Stephen Warren --- Changes in v2: - Add Acked-by tag for gpio/atmel_pio4. drivers/gpio/atmel_pio4.c | 12 1

[U-Boot] [PATCH v2 6/7] usb: ehci-atmel: Remove unneccessary clock calling

2016-09-18 Thread Wenyou Yang
Due to the peripheral clock driver improvement, remove the unneccessary clock calling. Signed-off-by: Wenyou Yang --- Changes in v2: None drivers/usb/host/ehci-atmel.c | 15 --- 1 file changed, 15 deletions(-) diff --git a/drivers/usb/host/ehci-atmel.c

[U-Boot] [PATCH v2 2/7] clk: at91: Improve the clock implementation

2016-09-18 Thread Wenyou Yang
For the peripheral clock, provide the clock ops for the clock provider, such as spi0_clk. The .of_xlate is to get the clk->id, the .enable is to enable the spi0 peripheral clock, the .get_rate is to get the clock frequency. The driver for periph32ck node is responsible for recursively binding its

[U-Boot] [PATCH v2 5/7] i2c: at91_i2c: Change error return -ENODEV to -EINVAL

2016-09-18 Thread Wenyou Yang
Change the error return value -ENODEV from to -EINVAL for more reasonable. Signed-off-by: Wenyou Yang --- Changes in v2: None drivers/i2c/at91_i2c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/i2c/at91_i2c.c b/drivers/i2c/at91_i2c.c index

[U-Boot] [PATCH v2 4/7] i2c: at91_i2c: Remove unneccessary clock calling

2016-09-18 Thread Wenyou Yang
Due to the peripheral clock driver improvement, remove the unneccessary clock calling. Signed-off-by: Wenyou Yang --- Changes in v2: None drivers/i2c/at91_i2c.c | 16 1 file changed, 16 deletions(-) diff --git a/drivers/i2c/at91_i2c.c

[U-Boot] [PATCH v2 0/7] clk: at91: Improve the clock implementation

2016-09-18 Thread Wenyou Yang
Add the clock ops for such as spi0_clk, which is the real clock provider, instead of periph32ck, which only recursively bind its children as clk devices. Also update the clocks called in the drivers. Changes in v2: - Add Acked-by tag. - For the periph32ck, periph64ck, gck, systemck nodes, they

[U-Boot] [PATCH v2 1/7] clk: clk-uclass: Assign clk->dev before call .of_xlate

2016-09-18 Thread Wenyou Yang
In order to make clk->dev available in ops->of_xlate() to get the clock ID from the 'reg' property of the clock node, assign the clk->dev before calling ops->of_xlate(). Signed-off-by: Wenyou Yang Acked-by: Stephen Warren --- Changes in v2: - Add

Re: [U-Boot] Building u-boot.imx and SPL simultaneously

2016-09-18 Thread Peng Fan
Hi, On Sat, Sep 10, 2016 at 04:40:47PM -0700, Eric Nelson wrote: >Hi Tom, > >On 09/06/2016 07:15 AM, Tom Rini wrote: >> On Tue, Sep 06, 2016 at 07:00:56AM -0700, Eric Nelson wrote: >>> On 09/06/2016 06:40 AM, Tom Rini wrote: On Fri, Sep 02, 2016 at 10:53:58PM +0200, Petr Kulhavy wrote: > > >

<    1   2   3