Re: [PATCH u-boot v4 29/36] ARM: fix LTO for rockchip and samsung

2021-05-21 Thread Kever Yang
On 2021/5/20 下午7:24, Marek Behún wrote: When building with LTO, the compiler complains about type mismatch of function usb_gadget_handle_interrupts(). This function is defined without parameters in files arch/arm/mach-rockchip/board.c board/samsung/common/exynos5-dt.c but it should have o

Re: [PATCH] arm: Remove nokia_rx51 board

2021-05-21 Thread Tom Rini
On Fri, May 21, 2021 at 11:36:45PM +0200, Pali Rohár wrote: > On Friday 21 May 2021 10:44:18 Tom Rini wrote: > > On Wed, May 19, 2021 at 11:52:03AM -0400, Tom Rini wrote: > > > On Wed, May 19, 2021 at 03:27:48PM +0200, Pali Rohár wrote: > > > > > > > On Tuesday 18 May 2021 21:26:40 Tom Rini wrote:

Re: [PATCH] arm: Remove nokia_rx51 board

2021-05-21 Thread Pali Rohár
On Friday 21 May 2021 10:44:18 Tom Rini wrote: > On Wed, May 19, 2021 at 11:52:03AM -0400, Tom Rini wrote: > > On Wed, May 19, 2021 at 03:27:48PM +0200, Pali Rohár wrote: > > > > > On Tuesday 18 May 2021 21:26:40 Tom Rini wrote: > > > > This board has not been converted to CONFIG_DM_USB by the dea

Re: [PATCH 6/6] net: sun8i-emac: v3s: fix soft reset timeout

2021-05-21 Thread Andreas Rehn
sorry for the late response. I run some test runs and maybe there is something with the phy itself or something is missing on sun8i_emac_eth_stop/start? if you have any patches/ideas to test - let me know! maybe someone has an idea how I can try to force the Linux mainline driver in the same situ

[PATCH v2 5/6] dts: sunxi: v3s: enable emac

2021-05-21 Thread Andreas Rehn
Enable emac for licheepi-zero-dock as it provides a ethernet port Signed-off-by: Andreas Rehn --- arch/arm/dts/sun8i-v3s-licheepi-zero-dock.dts | 9 + 1 file changed, 9 insertions(+) diff --git a/arch/arm/dts/sun8i-v3s-licheepi-zero-dock.dts b/arch/arm/dts/sun8i-v3s-licheepi-zero-dock.

[PATCH v2 4/6] net: sun8i-emac: add v3s variant

2021-05-21 Thread Andreas Rehn
Add variant V3S_EMAC. Skip GPIO setup for V3s because it uses internal phy and don't expose pins. Signed-off-by: Andreas Rehn --- drivers/net/sun8i_emac.c | 17 + 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/drivers/net/sun8i_emac.c b/drivers/net/sun8i_emac.c in

[PATCH v2 3/6] clk: sunxi: v3s: fix tabs / spaces

2021-05-21 Thread Andreas Rehn
align CLK_USB_PHY0 with tabs Signed-off-by: Andreas Rehn --- drivers/clk/sunxi/clk_v3s.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/sunxi/clk_v3s.c b/drivers/clk/sunxi/clk_v3s.c index 55fc597043..bc6b7b4870 100644 --- a/drivers/clk/sunxi/clk_v3s.c +++ b/drive

[PATCH] GitLab: Remove tags for sandbox_noinst tests

2021-05-21 Thread Harm Berntsen
Commit 712cc962b70d ("GitLab: Remove "tags" stanzas") removed the 'all' tag from all the jobs. The sandbox_noinst_test.py test was added in between the author date and commit date (commit 6c914e4232cd ("azure/gitlab: Add tests for sandbox_noinst")) which is probably why it still contains the tags.

Re: [PATCH 06/18] image: Drop IMAGE_ENABLE_SHA1

2021-05-21 Thread Simon Glass
Hi Alex, On Thu, 20 May 2021 at 18:07, Alex G. wrote: > > > > On 5/20/21 6:17 PM, Simon Glass wrote: > > Hi Alex, > > > > On Thu, 20 May 2021 at 17:13, Alex G. wrote: > >> > >> > >> > >> On 5/20/21 12:52 PM, Simon Glass wrote: > >>> Hi Alex, > >>> > >>> On Wed, 19 May 2021 at 20:41, Alex G. wro

Re: [PATCH] configs: sama7g5ek: increase bootm len

2021-05-21 Thread Eugen.Hristev
On 4/29/21 3:00 PM, Eugen Hristev wrote: > Increase the BOOTM_LEN to 32M . This would allow a bigger kernel image to be > booted, for example the multi_v7_defconfig. > > Loading Kernel Image > Image too large: increase CONFIG_SYS_BOOTM_LEN > Must RESET board to recover > resetting ... > > Sig

Re: [PATCH 25/27] ppc: Remove T4160RDB board

2021-05-21 Thread Tom Rini
On Fri, May 21, 2021 at 04:10:12PM +, Camelia Alexandra Groza (OSS) wrote: > > -Original Message- > > From: U-Boot On Behalf Of Tom Rini > > Sent: Saturday, May 15, 2021 4:35 > > To: u-boot@lists.denx.de > > Subject: [PATCH 25/27] ppc: Remove T4160RDB board > > > > This board has not

[PATCHv2 3/3] pci: pcie_dw_rockchip: Use mleep macro to fix below error

2021-05-21 Thread Anand Moon
Define msleep macro to fix below error. drivers/pci/pcie_dw_rockchip.c:254:3: warning: implicit declaration of function 'msleep' [-Wimplicit-function-declaration] Cc: Patrick Wildt Cc: Neil Armstrong Cc: Kever Yang Signed-off-by: Anand Moon --- v1: drop the udelay changes. --- drivers/pc

[PATCHv2 2/3] pci: pcie_dw_rockchip: Drop the unused variable warning

2021-05-21 Thread Anand Moon
Drop the unused variable warning below. drivers/pci/pcie_dw_rockchip.c:161:6: warning: unused variable 'val' [-Wunused-variable] 161 | u32 val; | ^~~ Cc: Patrick Wildt Cc: Neil Armstrong Cc: Kever Yang Signed-off-by: Anand Moon --- drivers/pci/pcie_dw_ro

[PATCHv2 1/3] pci: pcie_dw_rockchip: Fixed the below compilation error

2021-05-21 Thread Anand Moon
Use the generic error number instead of specific error number. Changes fix the below error. drivers/pci/pcie_dw_rockchip.c: In function 'rk_pcie_read': drivers/pci/pcie_dw_rockchip.c:70:10: error: 'PCIBIOS_UNSUPPORTED' undeclared (first use in this function) 70 | retur

Re: [PATCH 1/3] pci: pcie_dw_rockchip: Fixed the below compilation error

2021-05-21 Thread Anand Moon
H Kever, On Fri, 21 May 2021 at 18:51, Kever Yang wrote: > > > On 2021/4/26 下午9:26, Anand Moon wrote: > > Use the Error values that may be returned by PCI functions > > Added the error macro from linux/include/linux/pci.h > > > > drivers/pci/pcie_dw_rockchip.c: In function 'rk_pcie_read': > > dri

Re: [PATCH u-boot v4 36/36] ARM: enable LTO for some boards

2021-05-21 Thread Tom Rini
On Fri, May 21, 2021 at 06:00:31PM +0200, Marek Behún wrote: > On Fri, 21 May 2021 10:11:47 -0400 > Tom Rini wrote: > > > On Thu, May 20, 2021 at 01:56:29PM -0500, Adam Ford wrote: > > > On Thu, May 20, 2021 at 6:25 AM Marek Behún > > > wrote: > > > > > > > > Enable LTO for some boards that we

Re: [PATCH 25/27] ppc: Remove T4160RDB board

2021-05-21 Thread Tom Rini
On Fri, May 21, 2021 at 04:10:12PM +, Camelia Alexandra Groza (OSS) wrote: > > -Original Message- > > From: U-Boot On Behalf Of Tom Rini > > Sent: Saturday, May 15, 2021 4:35 > > To: u-boot@lists.denx.de > > Subject: [PATCH 25/27] ppc: Remove T4160RDB board > > > > This board has not

RE: [PATCH 25/27] ppc: Remove T4160RDB board

2021-05-21 Thread Camelia Alexandra Groza (OSS)
> -Original Message- > From: U-Boot On Behalf Of Tom Rini > Sent: Saturday, May 15, 2021 4:35 > To: u-boot@lists.denx.de > Subject: [PATCH 25/27] ppc: Remove T4160RDB board > > This board has not been converted to CONFIG_DM_PCI by the deadline and > is > also missing conversion to CONFIG_

Re: [PATCH u-boot v4 36/36] ARM: enable LTO for some boards

2021-05-21 Thread Marek Behún
On Fri, 21 May 2021 10:11:47 -0400 Tom Rini wrote: > On Thu, May 20, 2021 at 01:56:29PM -0500, Adam Ford wrote: > > On Thu, May 20, 2021 at 6:25 AM Marek Behún > > wrote: > > > > > > Enable LTO for some boards that were tested by people on U-Boot > > > Mailing List. > > > > > > Signed-off-by:

Re: [PATCH u-boot v4 36/36] ARM: enable LTO for some boards

2021-05-21 Thread Marek Behún
On Fri, 21 May 2021 10:11:47 -0400 Tom Rini wrote: > On Thu, May 20, 2021 at 01:56:29PM -0500, Adam Ford wrote: > > On Thu, May 20, 2021 at 6:25 AM Marek Behún > > wrote: > > > > > > Enable LTO for some boards that were tested by people on U-Boot > > > Mailing List. > > > > > > Signed-off-by:

[PATCH 1/3] Revert "sama5d3: Fix Galois Field Table offsets"

2021-05-21 Thread Tudor Ambarus
This reverts commit 786f888b743e9b83c9095cb9b5548ebe2e29afc5. Looks like the datasheet at https://ww1.microchip.com/downloads/en/DeviceDoc/SAMA5D3-Series-Data-sheet-DS60001609b.pdf is wrong, and the testing was poorly done, because the PMECC did not raise any error, but also didn't correct any bit

[PATCH 2/3] configs: sam9x60ek: Enable NAND on mmc defconfig

2021-05-21 Thread Tudor Ambarus
Enable NAND on mmc defconfig for greater flexibility and for consistency reasons. All our other boards that have a NAND flash integrated, enable NAND regardless of the type of the defconfig. Signed-off-by: Tudor Ambarus --- configs/sam9x60ek_mmc_defconfig | 7 +++ 1 file changed, 7 insertion

[PATCH 3/3] nand: atmel: Correct bitflips in erased pages

2021-05-21 Thread Tudor Ambarus
From: "Kai Stuhlemmer (ebee Engineering)" Not correcting anything in case of empty ECC data area is not an appropriate strategy, because an uncorrected bit-flip in an empty sector may cause upper layers (namely UBI) fail to work properly. Therefore the approach chosen in Linux kernel and other u-

Re: [PATCH 1/5] lib/vsprintf.c: make sure vsnprintf() never returns a negative value

2021-05-21 Thread Heinrich Schuchardt
On 21.05.21 16:40, Rasmus Villemoes wrote: > On 21/05/2021 16.15, Heinrich Schuchardt wrote: >> On 21.05.21 14:53, Rasmus Villemoes wrote: >>> On 20/05/2021 19.51, Simon Glass wrote: Hi Rasmus, On Thu, 20 May 2021 at 04:05, Rasmus Villemoes wrote: > > Most callers (or c

[PULL] u-boot-sh/master

2021-05-21 Thread Marek Vasut
The following changes since commit 27c2236f8acfa311eed2c8f8d210824fadd25483: Merge tag 'xilinx-for-v2021.07-rc3' of https://source.denx.de/u-boot/custodians/u-boot-microblaze (2021-05-19 11:50:25 -0400) are available in the Git repository at: git://source.denx.de/u-boot-sh.git master fo

Re: [PATCH 1/5] lib/vsprintf.c: make sure vsnprintf() never returns a negative value

2021-05-21 Thread Sean Anderson
On 5/21/21 10:15 AM, Heinrich Schuchardt wrote: > On 21.05.21 14:53, Rasmus Villemoes wrote: >> On 20/05/2021 19.51, Simon Glass wrote: >>> Hi Rasmus, >>> >>> On Thu, 20 May 2021 at 04:05, Rasmus Villemoes >>> wrote: Most callers (or callers of callers, etc.) of vsnprintf() are not >

Re: [PATCH] arm: Remove nokia_rx51 board

2021-05-21 Thread Tom Rini
On Wed, May 19, 2021 at 11:52:03AM -0400, Tom Rini wrote: > On Wed, May 19, 2021 at 03:27:48PM +0200, Pali Rohár wrote: > > > On Tuesday 18 May 2021 21:26:40 Tom Rini wrote: > > > This board has not been converted to CONFIG_DM_USB by the deadline. > > > Remove it. > > > > I'm very disappointed th

Re: [PATCH 1/5] lib/vsprintf.c: make sure vsnprintf() never returns a negative value

2021-05-21 Thread Heinrich Schuchardt
On 21.05.21 16:27, Tom Rini wrote: > On Fri, May 21, 2021 at 04:15:39PM +0200, Heinrich Schuchardt wrote: >> On 21.05.21 14:53, Rasmus Villemoes wrote: >>> On 20/05/2021 19.51, Simon Glass wrote: Hi Rasmus, On Thu, 20 May 2021 at 04:05, Rasmus Villemoes wrote: > > Most

Re: [PATCH 1/5] lib/vsprintf.c: make sure vsnprintf() never returns a negative value

2021-05-21 Thread Rasmus Villemoes
On 21/05/2021 16.15, Heinrich Schuchardt wrote: > On 21.05.21 14:53, Rasmus Villemoes wrote: >> On 20/05/2021 19.51, Simon Glass wrote: >>> Hi Rasmus, >>> >>> On Thu, 20 May 2021 at 04:05, Rasmus Villemoes >>> wrote: Most callers (or callers of callers, etc.) of vsnprintf() are not

Re: [PATCH v4 1/1] clk: zynq: Add clock wizard driver

2021-05-21 Thread Sean Anderson
On 5/21/21 12:18 PM, Zhengxun wrote: > The Clocking Wizard IP supports clock circuits customized > to your clocking requirements. The wizard support for > dynamically reconfiguring the clocking primitives for > Multiply, Divide, Phase Shift/Offset, or Duty Cycle. > > Limited by U-Boot clk uclas

Re: [PATCH 4/5] lib/vsprintf.c: remove unused ip6_addr_string()

2021-05-21 Thread Heinrich Schuchardt
On 20.05.21 12:05, Rasmus Villemoes wrote: > There's currently no user of %p[iI]6, so including ip6_addr_string() > in the image is a waste of bytes. It's easy enough to have the > compiler elide it without removing the code completely. > > The closest I can find to anybody "handling" ipv6 in U-Boo

Re: [PATCH 1/5] lib/vsprintf.c: make sure vsnprintf() never returns a negative value

2021-05-21 Thread Tom Rini
On Fri, May 21, 2021 at 04:15:39PM +0200, Heinrich Schuchardt wrote: > On 21.05.21 14:53, Rasmus Villemoes wrote: > > On 20/05/2021 19.51, Simon Glass wrote: > >> Hi Rasmus, > >> > >> On Thu, 20 May 2021 at 04:05, Rasmus Villemoes > >> wrote: > >>> > >>> Most callers (or callers of callers, etc.)

Re: [PATCH 3/5] lib/vsprintf.c: remove stale comment

2021-05-21 Thread Heinrich Schuchardt
On 20.05.21 12:05, Rasmus Villemoes wrote: > U-Boot doesn't support %pS/%pF or any other kind of kallsyms-like > lookups. Remove the comment. > > Signed-off-by: Rasmus Villemoes > --- > lib/vsprintf.c | 3 --- > 1 file changed, 3 deletions(-) > > diff --git a/lib/vsprintf.c b/lib/vsprintf.c > ind

Re: [PATCH 1/5] lib/vsprintf.c: make sure vsnprintf() never returns a negative value

2021-05-21 Thread Heinrich Schuchardt
On 21.05.21 14:53, Rasmus Villemoes wrote: > On 20/05/2021 19.51, Simon Glass wrote: >> Hi Rasmus, >> >> On Thu, 20 May 2021 at 04:05, Rasmus Villemoes >> wrote: >>> >>> Most callers (or callers of callers, etc.) of vsnprintf() are not >>> prepared for it to return a negative value. >>> >>> The on

Re: [PATCH u-boot v4 36/36] ARM: enable LTO for some boards

2021-05-21 Thread Tom Rini
On Thu, May 20, 2021 at 01:56:29PM -0500, Adam Ford wrote: > On Thu, May 20, 2021 at 6:25 AM Marek Behún wrote: > > > > Enable LTO for some boards that were tested by people on U-Boot Mailing > > List. > > > > Signed-off-by: Marek Behún > > Tested-by: Adam Ford > > Tested-by: Pali Rohár > > Tes

Re: [PULL] u-boot-riscv/master

2021-05-21 Thread Tom Rini
On Thu, May 20, 2021 at 10:19:54AM +0800, Leo Liang wrote: > Hi Tom, > > The following changes since commit 428bec7cf956c3558bbdfda4d2ba23beb73a68ba: > > Merge branch '2021-05-17-assorted-fixes' (2021-05-18 14:17:54 -0400) > > are available in the Git repository at: > > g...@source.denx.d

Re: Please pull u-boot-marvell/master

2021-05-21 Thread Tom Rini
On Thu, May 20, 2021 at 03:39:28PM +0200, Stefan Roese wrote: > Hi Tom, > > please pull the next batch of Marvell Armada related patches, mostly > the ones dropped last time because of Xilinx issue (fixed now). Here > the summary log: > Applied to u-boot/master, thanks! -- Tom signature.asc

Re: [PATCH v1 2/2] rockchip: rk3568: add clock driver

2021-05-21 Thread Kever Yang
Hi Elaine,     Thanks for your patch, pls update the copyright info and remove unused clock set/get. On 2021/5/19 下午4:49, Elaine Zhang wrote: From: Elaine Zhang Add rk3568 clock driver and cru structure definition. Signed-off-by: Elaine Zhang --- .../include/asm/arch-rockchip/cru_rk3568

Re: [PATCH v1 1/2] rockchip: rk3568: add device tree file

2021-05-21 Thread Kever Yang
On 2021/5/19 下午4:49, Elaine Zhang wrote: From: Elaine Zhang Add dts binding header for rk3568, files origin from kernel. Signed-off-by: Elaine Zhang Reviewed-by: Kever Yang Thanks, - Kever --- include/dt-bindings/clock/rk3568-cru.h | 925 + 1 file changed,

Re: [PATCH 2/3] pci: pcie_dw_rockchip: Drop the unused variable warning

2021-05-21 Thread Kever Yang
On 2021/4/26 下午9:26, Anand Moon wrote: Drop the unused variable warning below. drivers/pci/pcie_dw_rockchip.c:161:6: warning: unused variable 'val' [-Wunused-variable] 161 | u32 val; | ^~~ Cc: Neil Armstrong Cc: Kever Yang Signed-off-by: Anand Moon

Re: [PATCH 1/3] pci: pcie_dw_rockchip: Fixed the below compilation error

2021-05-21 Thread Kever Yang
On 2021/4/26 下午9:26, Anand Moon wrote: Use the Error values that may be returned by PCI functions Added the error macro from linux/include/linux/pci.h drivers/pci/pcie_dw_rockchip.c: In function 'rk_pcie_read': drivers/pci/pcie_dw_rockchip.c:70:10: error: 'PCIBIOS_UNSUPPORTED'

Re: [PATCH 3/3] pci: pcie_dw_rockchip: Use udelay instead of msleep

2021-05-21 Thread Kever Yang
Hi Anand, It's OK to update the API, but please keep the delay duration. Thanks, - Kever On 2021/4/26 下午9:26, Anand Moon wrote: Use udelay instead of msleep fix the below warning. drivers/pci/pcie_dw_rockchip.c:254:3: warning: implicit declaration of function 'msleep' [-Wimplicit-fu

Re: [PATCH v2 1/2] tee: define session login identifiers

2021-05-21 Thread Etienne Carriere
On Thu, 20 May 2021 at 16:50, Jens Wiklander wrote: > > On Wed, May 19, 2021 at 4:27 PM Etienne Carriere > wrote: > > > > Define identifiers for clnt_login field in struct tee_open_session_arg > > based in GlobalPlatform Device TEE IDs and on the REE_KERNEL identifier > > extension from OP-TEE OS

Re: [PATCH v2 2/2] tee: optee: support session login as REE kernel

2021-05-21 Thread Etienne Carriere
On Thu, 20 May 2021 at 16:56, Jens Wiklander wrote: > > On Wed, May 19, 2021 at 4:27 PM Etienne Carriere > wrote: > > > > Remove unused OPTEE_MSG_LOGIN_* IDs and rely on the ones introduced in > > tee.h. Change optee core to treat invalid client IDs as public login. > > > > Signed-off-by: Etienne

Re: [PATCH 1/5] lib/vsprintf.c: make sure vsnprintf() never returns a negative value

2021-05-21 Thread Rasmus Villemoes
On 20/05/2021 19.51, Simon Glass wrote: > Hi Rasmus, > > On Thu, 20 May 2021 at 04:05, Rasmus Villemoes > wrote: >> >> Most callers (or callers of callers, etc.) of vsnprintf() are not >> prepared for it to return a negative value. >> >> The only case where that can currently happen is %pD, and i

[PATCH v2 1/2] net: luton: remove address translation after ofnode_read_resource

2021-05-21 Thread Patrick Delaunay
Removed call of ofnode_translate_address() after ofnode_read_resource in luton_switch.c:luton_probe(); it is unnecessary since the commit feb7ac457c20 ("dm: core: Add address translation in fdt_get_resource"). Fixes: feb7ac457c20 ("dm: core: Add address translation in fdt_get_resource") Reviewed-b

[PATCH v2 0/2] dm: core: Add address translation in fdt_get_resource - fixes

2021-05-21 Thread Patrick Delaunay
Hi, This serie push again 2 modifications proposed in previous serie V3 [1] but missing in master branch as only patchset V1 [2] is merged. The first patch solves a issue see by horatiu.vul...@microchip.com in V1 [2]. Regards, Patrick [1] [v3] dm: core: Add address translation in fdt_get_reso

[PATCH v2 2/2] test: add dm_test_read_resource

2021-05-21 Thread Patrick Delaunay
Add a test of dev_read_resource with translation or without translation Signed-off-by: Patrick Delaunay Reviewed-by: Simon Glass --- Changes in v2: - Add reviewed-by - use lower-case hex test/dm/test-fdt.c | 33 + 1 file changed, 33 insertions(+) diff --git a/

Re: [PATCH 5/6] dts: sunxi: v3s: enable emac support

2021-05-21 Thread Andre Przywara
On Fri, 21 May 2021 17:41:37 +0800 Icenowy Zheng wrote: Hi Icenowy, > 于 2021年5月20日 GMT+08:00 上午5:44:30, Andre Przywara 写到: > >On Wed, 19 May 2021 21:42:07 +0200 > >Andreas Rehn wrote: > > > >Hi, > > > >> h3 and v3s have internal phys and can share the same driver. > >> Furthermore sun8i-v3s-

Re: [PATCH 5/6] dts: sunxi: v3s: enable emac support

2021-05-21 Thread Icenowy Zheng
于 2021年5月20日 GMT+08:00 上午5:44:30, Andre Przywara 写到: >On Wed, 19 May 2021 21:42:07 +0200 >Andreas Rehn wrote: > >Hi, > >> h3 and v3s have internal phys and can share the same driver. >> Furthermore sun8i-v3s-emac is not available, use sun8i-h3-emac >instead >> - add emac pins >> - enable emac

Re: [PATCH 4/6] net: sun8i-emac: add v3s pinmux setting

2021-05-21 Thread Icenowy Zheng
于 2021年5月20日 GMT+08:00 上午5:44:07, Andre Przywara 写到: >On Wed, 19 May 2021 21:42:06 +0200 >Andreas Rehn wrote: > >Hi, > >> Driver uses pinmux instead of emac type. >> Add v3s pinmux to support SoC. > >So if I understand this correctly, then the v3s does NOT expose the MAC >pins (MII/RMII/RGMII)

Re: [PATCH 1/6] dts: sunxi: add licheepi-zero-dock

2021-05-21 Thread Icenowy Zheng
于 2021年5月20日 GMT+08:00 上午5:42:38, Andre Przywara 写到: >On Wed, 19 May 2021 21:42:03 +0200 >Andreas Rehn wrote: > >Hi Andreas, > >> licheepi-zero dock is the second gen licheepi-zero board >> and brings addtional periperals like >> mic, speaker, ethernet, MIPI Camera Interface, 4 push buttons, >

[PATCH v4 1/1] clk: zynq: Add clock wizard driver

2021-05-21 Thread Zhengxun
The Clocking Wizard IP supports clock circuits customized to your clocking requirements. The wizard support for dynamically reconfiguring the clocking primitives for Multiply, Divide, Phase Shift/Offset, or Duty Cycle. Limited by U-Boot clk uclass without set_phase API, this patch only provides se

[PATCH v4 0/1] Add Xilinx clock wizard driver support

2021-05-21 Thread Zhengxun
Add support to enable clock wizard for zynq platform. Changes in v4: - rearrange functions - remove Superfluous words - check kernel-doc comments Changes in v3: - remove incorrect usage in of_to_plat - get frequencies via clock framework - delete incorrect naming Changes in v2: - naming is al

[PATCH v3 2/2] cmd: pinmux: support pin name in status command

2021-05-21 Thread Patrick Delaunay
Allow pin name parameter for pimux staus command, as gpio command to get status of one pin. The possible usage of the command is: > pinmux dev pinctrl > pinmux status > pinmux status -a > pinmux status Signed-off-by: Patrick Delaunay Reviewed-by: Simon Glass --- Changes in v3: - add commen

[PATCH v3 1/2] cmd: pinmux: update result of do_status

2021-05-21 Thread Patrick Delaunay
Update the result of do_status and always returns a CMD_RET_ value (-ENOSYS was a possible result of show_pinmux). This patch also adds pincontrol name in error messages (dev->name) and treats correctly the status sub command when pin-controller device is not selected. Signed-off-by: Patrick Dela

[v2] configs: ls2088aqds: fix synchronous exception

2021-05-21 Thread Biwen Li
From: Biwen Li IFC NOR flash base address of ls2088a is 0x58000, and offset of env crc is 0x50, so fix the macro CONFIG_ENV_ADDR to fix synchronous exception(access illegal address) Fixes: 59071804c1 ("configs: ls2080a: Correct ENV_ADDR value") Signed-off-by: Biwen Li --- Change in v2: