Re: [U-Boot] [PATCH v2 0/6] cleanup and enhancements for Colibri VFxx

2016-12-16 Thread Stefano Babic
On 30/11/2016 22:41, Stefan Agner wrote:
> From: Stefan Agner 
> 
> This patchset cleans up the board file, speeds up NAND slightly
> and enhances the board support with device tree MTD partition
> support.
> 
> It also fixes a bug in the new Toradex config block code.
> 
> Not sure through which tree that should go, especially since
> patch 1 and 2 touches common code... Tom?
> 
> --
> Stefan
> 
> Changes in v2:
> - Rebased ontop of master (after config block support merged)
> - Add patch which uses proper config to guard g_dnl_bind_fixup
> - Add patch to fix device tree warning
> 
> Stefan Agner (6):
>   toradex: fix USB Download gadget fixup callback
>   toradex: allow custom fdt board setup in board file
>   colibri_vf: use device-tree for MTD partitions
>   colibri_vf: cleanup USB clock initialization
>   colibri_vf: use same NAND clock as Linux uses
>   ARM: dts: vf: Fix warning about missing reg property
> 
>  arch/arm/dts/vf.dtsi  |  2 ++
>  board/toradex/apalis_t30/apalis_t30.c |  8 ++
>  board/toradex/colibri_imx7/colibri_imx7.c |  8 ++
>  board/toradex/colibri_pxa270/colibri_pxa270.c |  8 ++
>  board/toradex/colibri_t20/colibri_t20.c   |  8 ++
>  board/toradex/colibri_t30/colibri_t30.c   |  8 ++
>  board/toradex/colibri_vf/colibri_vf.c | 37 
> +++
>  board/toradex/common/tdx-common.c | 12 -
>  board/toradex/common/tdx-common.h |  2 ++
>  9 files changed, 81 insertions(+), 12 deletions(-)
> 

Applied to u-boot-imx, thanks !

Best regards,
Stefano Babic

-- 
=
DENX Software Engineering GmbH,  Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sba...@denx.de
=
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v2 0/6] cleanup and enhancements for Colibri VFxx

2016-12-15 Thread Stefano Babic
Hi Stefan,

On 14/12/2016 01:57, Stefan Agner wrote:
> On 2016-11-30 13:41, Stefan Agner wrote:
>> From: Stefan Agner 
>>
>> This patchset cleans up the board file, speeds up NAND slightly
>> and enhances the board support with device tree MTD partition
>> support.
>>
>> It also fixes a bug in the new Toradex config block code.
>>
>> Not sure through which tree that should go, especially since
>> patch 1 and 2 touches common code... Tom?
> 
> Anything holding us back merging this?

I take care of this.

Regards,
Stefano


-- 
=
DENX Software Engineering GmbH,  Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sba...@denx.de
=
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v2 0/6] cleanup and enhancements for Colibri VFxx

2016-12-13 Thread Stefan Agner
On 2016-11-30 13:41, Stefan Agner wrote:
> From: Stefan Agner 
> 
> This patchset cleans up the board file, speeds up NAND slightly
> and enhances the board support with device tree MTD partition
> support.
> 
> It also fixes a bug in the new Toradex config block code.
> 
> Not sure through which tree that should go, especially since
> patch 1 and 2 touches common code... Tom?

Anything holding us back merging this?

--
Stefan

> 
> --
> Stefan
> 
> Changes in v2:
> - Rebased ontop of master (after config block support merged)
> - Add patch which uses proper config to guard g_dnl_bind_fixup
> - Add patch to fix device tree warning
> 
> Stefan Agner (6):
>   toradex: fix USB Download gadget fixup callback
>   toradex: allow custom fdt board setup in board file
>   colibri_vf: use device-tree for MTD partitions
>   colibri_vf: cleanup USB clock initialization
>   colibri_vf: use same NAND clock as Linux uses
>   ARM: dts: vf: Fix warning about missing reg property
> 
>  arch/arm/dts/vf.dtsi  |  2 ++
>  board/toradex/apalis_t30/apalis_t30.c |  8 ++
>  board/toradex/colibri_imx7/colibri_imx7.c |  8 ++
>  board/toradex/colibri_pxa270/colibri_pxa270.c |  8 ++
>  board/toradex/colibri_t20/colibri_t20.c   |  8 ++
>  board/toradex/colibri_t30/colibri_t30.c   |  8 ++
>  board/toradex/colibri_vf/colibri_vf.c | 37 
> +++
>  board/toradex/common/tdx-common.c | 12 -
>  board/toradex/common/tdx-common.h |  2 ++
>  9 files changed, 81 insertions(+), 12 deletions(-)
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH v2 0/6] cleanup and enhancements for Colibri VFxx

2016-11-30 Thread Stefan Agner
From: Stefan Agner 

This patchset cleans up the board file, speeds up NAND slightly
and enhances the board support with device tree MTD partition
support.

It also fixes a bug in the new Toradex config block code.

Not sure through which tree that should go, especially since
patch 1 and 2 touches common code... Tom?

--
Stefan

Changes in v2:
- Rebased ontop of master (after config block support merged)
- Add patch which uses proper config to guard g_dnl_bind_fixup
- Add patch to fix device tree warning

Stefan Agner (6):
  toradex: fix USB Download gadget fixup callback
  toradex: allow custom fdt board setup in board file
  colibri_vf: use device-tree for MTD partitions
  colibri_vf: cleanup USB clock initialization
  colibri_vf: use same NAND clock as Linux uses
  ARM: dts: vf: Fix warning about missing reg property

 arch/arm/dts/vf.dtsi  |  2 ++
 board/toradex/apalis_t30/apalis_t30.c |  8 ++
 board/toradex/colibri_imx7/colibri_imx7.c |  8 ++
 board/toradex/colibri_pxa270/colibri_pxa270.c |  8 ++
 board/toradex/colibri_t20/colibri_t20.c   |  8 ++
 board/toradex/colibri_t30/colibri_t30.c   |  8 ++
 board/toradex/colibri_vf/colibri_vf.c | 37 +++
 board/toradex/common/tdx-common.c | 12 -
 board/toradex/common/tdx-common.h |  2 ++
 9 files changed, 81 insertions(+), 12 deletions(-)

-- 
2.10.2

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot