All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] sunxi: A64: pinebook-u-boot: Include sunxi-u-boot.dtsi
@ 2019-01-25  8:46 Jagan Teki
  2019-01-26  1:02 ` Vasily Khoruzhick
  0 siblings, 1 reply; 3+ messages in thread
From: Jagan Teki @ 2019-01-25  8:46 UTC (permalink / raw)
  To: u-boot

Like other Allwinner A64 boards, pinebook also need altering
auto-numbering of mmc2 to mmc1 which is available in common
sunxi dsti file, sunxi-u-boot.dtsi

Pinebook has a separate sun50i-a64-pinebook-u-boot.dtsi which
takes more precedence for u-boot.dtsi inclusion and it eventually
failed to include the sunxi-u-boot.dtsi.

So, this patch add support to include the sunxi-u-boot.dtsi in the
sun50i-a64-pinebook-u-boot.dtsi

Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
---
 arch/arm/dts/sun50i-a64-pinebook-u-boot.dtsi | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/arm/dts/sun50i-a64-pinebook-u-boot.dtsi b/arch/arm/dts/sun50i-a64-pinebook-u-boot.dtsi
index a99b7171d0..650ab97ec9 100644
--- a/arch/arm/dts/sun50i-a64-pinebook-u-boot.dtsi
+++ b/arch/arm/dts/sun50i-a64-pinebook-u-boot.dtsi
@@ -4,6 +4,8 @@
  *
  */
 
+#include "sunxi-u-boot.dtsi"
+
 /* The ANX6345 eDP-bridge is on r_i2c */
 &r_i2c {
 	anx6345: edp-bridge at 38 {
-- 
2.18.0.321.gffc6fa0e3

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH] sunxi: A64: pinebook-u-boot: Include sunxi-u-boot.dtsi
  2019-01-25  8:46 [U-Boot] [PATCH] sunxi: A64: pinebook-u-boot: Include sunxi-u-boot.dtsi Jagan Teki
@ 2019-01-26  1:02 ` Vasily Khoruzhick
  2019-01-29 18:21   ` Jagan Teki
  0 siblings, 1 reply; 3+ messages in thread
From: Vasily Khoruzhick @ 2019-01-26  1:02 UTC (permalink / raw)
  To: u-boot

On Fri, Jan 25, 2019 at 12:47 AM Jagan Teki <jagan@amarulasolutions.com> wrote:
>
> Like other Allwinner A64 boards, pinebook also need altering
> auto-numbering of mmc2 to mmc1 which is available in common
> sunxi dsti file, sunxi-u-boot.dtsi
>
> Pinebook has a separate sun50i-a64-pinebook-u-boot.dtsi which
> takes more precedence for u-boot.dtsi inclusion and it eventually
> failed to include the sunxi-u-boot.dtsi.
>
> So, this patch add support to include the sunxi-u-boot.dtsi in the
> sun50i-a64-pinebook-u-boot.dtsi
>
> Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>

Thanks! Now it works fine.

This patch and whole DM_MMC series:

Tested-by: Vasily Khoruzhick <anarsoul@gmail.com> # Tested on Pinebook

> ---
>  arch/arm/dts/sun50i-a64-pinebook-u-boot.dtsi | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/arch/arm/dts/sun50i-a64-pinebook-u-boot.dtsi b/arch/arm/dts/sun50i-a64-pinebook-u-boot.dtsi
> index a99b7171d0..650ab97ec9 100644
> --- a/arch/arm/dts/sun50i-a64-pinebook-u-boot.dtsi
> +++ b/arch/arm/dts/sun50i-a64-pinebook-u-boot.dtsi
> @@ -4,6 +4,8 @@
>   *
>   */
>
> +#include "sunxi-u-boot.dtsi"
> +
>  /* The ANX6345 eDP-bridge is on r_i2c */
>  &r_i2c {
>         anx6345: edp-bridge at 38 {
> --
> 2.18.0.321.gffc6fa0e3
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH] sunxi: A64: pinebook-u-boot: Include sunxi-u-boot.dtsi
  2019-01-26  1:02 ` Vasily Khoruzhick
@ 2019-01-29 18:21   ` Jagan Teki
  0 siblings, 0 replies; 3+ messages in thread
From: Jagan Teki @ 2019-01-29 18:21 UTC (permalink / raw)
  To: u-boot

On Sat, Jan 26, 2019 at 6:33 AM Vasily Khoruzhick <anarsoul@gmail.com> wrote:
>
> On Fri, Jan 25, 2019 at 12:47 AM Jagan Teki <jagan@amarulasolutions.com> wrote:
> >
> > Like other Allwinner A64 boards, pinebook also need altering
> > auto-numbering of mmc2 to mmc1 which is available in common
> > sunxi dsti file, sunxi-u-boot.dtsi
> >
> > Pinebook has a separate sun50i-a64-pinebook-u-boot.dtsi which
> > takes more precedence for u-boot.dtsi inclusion and it eventually
> > failed to include the sunxi-u-boot.dtsi.
> >
> > So, this patch add support to include the sunxi-u-boot.dtsi in the
> > sun50i-a64-pinebook-u-boot.dtsi
> >
> > Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
>
> Thanks! Now it works fine.
>
> This patch and whole DM_MMC series:
>
> Tested-by: Vasily Khoruzhick <anarsoul@gmail.com> # Tested on Pinebook

Applied to u-boot-sunxi/master

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-01-29 18:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-25  8:46 [U-Boot] [PATCH] sunxi: A64: pinebook-u-boot: Include sunxi-u-boot.dtsi Jagan Teki
2019-01-26  1:02 ` Vasily Khoruzhick
2019-01-29 18:21   ` Jagan Teki

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.