[PATCH v2 3/4] ARM: i.MX: bbu: Make imx_bbu_internal_v1_update() public

2018-06-20 Thread Andrey Smirnov
Signed-off-by: Andrey Smirnov --- arch/arm/mach-imx/imx-bbu-internal.c | 2 +- arch/arm/mach-imx/include/mach/bbu.h | 8 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/arch/arm/mach-imx/imx-bbu-internal.c b/arch/arm/mach-imx/imx-bbu-internal.c index c7375ff52..c31413638

[PATCH v2 1/4] ARM: babbage: Make PMIC initialization shareable

2018-06-20 Thread Andrey Smirnov
Some board designs copy i.MX51 Babbadge board's PMIC design and so require exactly the same initialization. Move correspoding code into a separate file so it can be shared. Signed-off-by: Andrey Smirnov --- arch/arm/boards/Makefile | 2 +-

[PATCH v2 0/4] ZII RDU1 support

2018-06-20 Thread Andrey Smirnov
Everyone: This is a patchset containing the code to add initial support for ZII RDU1 board to Barebox. Changes since [v1]: - Removed usage of compatible property for PMIC initialization - Less invasive (IMHO), way of dealing with dataflash BBU quirks is proposed - Missing newline in

Re: [PATCH 1/2] ARM: babbage: Make PMIC initialization shareable

2018-06-20 Thread Andrey Smirnov
On Wed, Jun 20, 2018 at 12:16 AM Sascha Hauer wrote: > > On Tue, Jun 19, 2018 at 09:55:02AM -0700, Andrey Smirnov wrote: > > On Tue, Jun 19, 2018 at 1:51 AM Lucas Stach wrote: > > > > > > Am Montag, den 18.06.2018, 22:43 -0700 schrieb Andrey Smirnov: > > > > Some board designs copy i.MX51

Re: [PATCH] ARM: rdu2: program e1000 iNVM

2018-06-20 Thread Andrey Smirnov
On Wed, Jun 20, 2018 at 2:51 AM Lucas Stach wrote: > > Check if the iNVM is already correctly written. If it isn't write > the correct value in, so the device uses the correct PCI ID for the > Linux driver. > > Signed-off-by: Lucas Stach > --- > arch/arm/boards/zii-imx6q-rdu2/board.c | 29

Re: [PATCH] MIPS: dts: drop skeleton.dtsi

2018-06-20 Thread Antony Pavlov
On Tue, 19 Jun 2018 20:14:33 +0300 Antony Pavlov wrote: Hi, Sascha! Please ignore this patch. I have to add `device_type = "memory";` to memory nodes. Also I'm planning to move #address-cells and #size-cells definitions to a separate patch. > Based on feedback from Sascha: > >

Re: [PATCH] MIPS: dts: drop skeleton.dtsi

2018-06-20 Thread Oleksij Rempel
Am 20.06.2018 um 15:18 schrieb Antony Pavlov: > Have you tried to boot linux? yes, seems to be without notable regressions. -- Regards, Oleksij signature.asc Description: OpenPGP digital signature ___ barebox mailing list

Re: [PATCH] MIPS: dts: drop skeleton.dtsi

2018-06-20 Thread Antony Pavlov
On Tue, 19 Jun 2018 19:46:38 +0200 Oleksij Rempel wrote: > Tested-by Oleksij Rempel > > on dpt board. Have you tried to boot linux? > > Am 19.06.2018 um 19:14 schrieb Antony Pavlov: > > Based on feedback from Sascha: > > > >

[PATCH] ARM: rdu2: program e1000 iNVM

2018-06-20 Thread Lucas Stach
Check if the iNVM is already correctly written. If it isn't write the correct value in, so the device uses the correct PCI ID for the Linux driver. Signed-off-by: Lucas Stach --- arch/arm/boards/zii-imx6q-rdu2/board.c | 29 ++ 1 file changed, 29 insertions(+) diff --git

[PATCH v2] video: backlight: add slew time parameter

2018-06-20 Thread Lucas Stach
Currently the backlight implementation stretches a brightness change over a period of 100ms. While this is a fine default for PWM backlights, a user might wish to change this slew time to meet other constraints or even completely disable it for some backlight devices. Add a parameter and provide

Re: [PATCH 1/2] ARM: babbage: Make PMIC initialization shareable

2018-06-20 Thread Sascha Hauer
On Tue, Jun 19, 2018 at 09:55:02AM -0700, Andrey Smirnov wrote: > On Tue, Jun 19, 2018 at 1:51 AM Lucas Stach wrote: > > > > Am Montag, den 18.06.2018, 22:43 -0700 schrieb Andrey Smirnov: > > > Some board designs copy i.MX51 Babbadge board's PMIC design and so > > > require exactly the same