[PATCH V2 05/10] board: ti: am65x: Set fdtfile from C code instead of findfdt script

2024-01-09 Thread Nishanth Menon
We now can provide a map and have the standard fdtfile variable set from code itself. This allows for bootstd to "just work". While at this, replace findfdt in environment with a warning as it is no longer needed. Signed-off-by: Nishanth Menon --- Changes from V1: None. I hav

Re: [PATCH 0/4] arm: mach-k3: am64: Add NAND configuration

2024-01-09 Thread Nishanth Menon
| 19 ++ > 5 files changed, 51 insertions(+), 6 deletions(-) Please update am64x documentation as well. People will need to know how to actually build, flash and use it. > > > base-commit: c2c598e87cfe56f5991730762c00733c5aa9a994 > prerequisite-patch-id: e04

Re: [PATCH 4/4] configs: am64x_evm_a53_defconfig: Enable NAND

2024-01-09 Thread Nishanth Menon
gt; +CONFIG_SPL_NAND_IDENT=y > +CONFIG_SPL_NAND_ECC=y > +CONFIG_SYS_NAND_MAX_CHIPS=1 > +CONFIG_SYS_MAX_NAND_DEVICE=1 > +# CONFIG_SPL_NAND_AM33XX_BCH is not set > +CONFIG_SPL_MTD_SUPPORT=y > +CONFIG_SYS_NAND_U_BOOT_LOCATIONS=y > +CONFIG_SYS_NAND_U_BOOT_OFFS=0x60 > -- > 2.34.1 > Why not a config fragment? -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH 06/10] board: ti: j721e: Set fdtfile from C code instead of findfdt script

2024-01-09 Thread Nishanth Menon
On 18:20-20240109, Roger Quadros wrote: > > > On 08/01/2024 19:32, Nishanth Menon wrote: > > We now can provide a map and have the standard fdtfile variable set from > > code itself. This allows for bootstd to "just work". > > > > While at this, re

Re: [PATCH v3 0/8] Suspend to RAM support for K3 J7200

2024-01-09 Thread Nishanth Menon
I have mentioned previously for TFA as well - I am looking for some common sequence to be defined between am62x and J7200 family rather than each go completely tangentially, until that happens, please consider my standing NAK. -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH 01/10] board: ti: common: Introduce a common fdt ops library

2024-01-09 Thread Nishanth Menon
t; + */ > > +struct ti_fdt_map { > > + const char *name_fdt; > > Can we call this board_name? as name_fdt corresponds to device tree name. > Done. -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH 04/10] board: ti: am64x: Set fdtfile from C code instead of findfdt script

2024-01-09 Thread Nishanth Menon
sleading in the board name as the boards are now shipped with > HS-FS chip and are no longer GP. Intent of the series was to get rid of findfdt - it was not meant to cleanup existing name usage in the files. If there is a desire to do so, please - patches are welcome. -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH] arch: mach-k3: Fix incorrect mapping of higher DDR addresses as device memory

2024-01-09 Thread Nishanth Menon
gt; .phys = 0x5UL, > - .size = 0x4UL, > + .size = 0x38000UL, > .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | > PTE_BLOCK_NON_SHARE | > PTE_BLOCK_PXN | PTE_BLOCK_UX

Re: [PATCH 02/10] board: ti: am62ax: Set fdtfile from C code instead of findfdt script

2024-01-09 Thread Nishanth Menon
it just returns a hard coded value, which could be based on > the CONFIG_DEFAULT_DEVICE_TREE config. Ends up being superflous - there is already a push to reduce the config options. [..] -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH 08/10] board: beagle: beagleboneai64: Set fdtfile from C code instead of findfdt script

2024-01-09 Thread Nishanth Menon
On 20:24-20240108, Jon Humphreys wrote: > Nishanth Menon writes: > > > Stop using the findfdt script and switch to setting the fdtfile from C > > code. > > > > While at this, replace findfdt in environment with a warning as it is > > no longer needed &

Re: [PATCH 01/10] board: ti: common: Introduce a common fdt ops library

2024-01-09 Thread Nishanth Menon
ame as described by kernel > > + */ > > +struct ti_fdt_map { > > + const char *name_fdt; > > + char *fdt_file_name; > > +}; > > + > > +/** > > + * ti_set_fdt_env - Find the correct device tree file name and set > > 'fdtfile' > > "Find the correct device tree file name based on the board name and "... OK. > > > + * env variable with correct folder structure appropriate to the > > architecture > > + * and kernel conventions. This function is invoked typically as part of > > + * board_late_init > > + * > > + * fdt name is picked by: > > + * a) If a match is found, use the match > > "a) If a board name match is found, use the match" OK. [...] -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH 08/10] board: beagle: beagleboneai64: Set fdtfile from C code instead of findfdt script

2024-01-08 Thread Nishanth Menon
t" and adds warning for > "findfdt" like your commit message says you do..). Will fix up the commit message in the next revision -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH 01/10] board: ti: common: Introduce a common fdt ops library

2024-01-08 Thread Nishanth Menon
On 12:50-20240108, Andrew Davis wrote: > On 1/8/24 11:32 AM, Nishanth Menon wrote: > > Introduce a common fdt operations library for basic device tree > > operations that are common between various boards. > > > > The first library to introduce here is the capab

[PATCH 02/10] board: ti: am62ax: Set fdtfile from C code instead of findfdt script

2024-01-08 Thread Nishanth Menon
Stop using the findfdt script and switch to setting the fdtfile from C code. While at this, replace findfdt in environment with a warning as it is no longer needed Signed-off-by: Nishanth Menon --- board/ti/am62ax/am62ax.env | 1 - board/ti/am62ax/evm.c| 10

[PATCH 09/10] board: beagle: beagleplay: Set fdtfile from C code instead of findfdt script

2024-01-08 Thread Nishanth Menon
Stop using the findfdt script and switch to setting the fdtfile from C code. While at this, replace findfdt in environment with a warning as it is no longer needed. Signed-off-by: Nishanth Menon --- board/beagle/beagleplay/beagleplay.c | 14 ++ board/beagle/beagleplay

[PATCH 04/10] board: ti: am64x: Set fdtfile from C code instead of findfdt script

2024-01-08 Thread Nishanth Menon
We now can provide a map and have the standard fdtfile variable set from code itself. This allows for bootstd to "just work". While at this, replace findfdt in environment with a warning as it is no longer needed. Signed-off-by: Nishanth Menon --- board/ti/am64x/am64x.env | 9 --

[PATCH 05/10] board: ti: am65x: Set fdtfile from C code instead of findfdt script

2024-01-08 Thread Nishanth Menon
We now can provide a map and have the standard fdtfile variable set from code itself. This allows for bootstd to "just work". While at this, replace findfdt in environment with a warning as it is no longer needed. Signed-off-by: Nishanth Menon --- board/ti/am65x/am65x.env | 3 ---

[PATCH 00/10] board/ti: k3 boards: Stop using findfdt

2024-01-08 Thread Nishanth Menon
on next branch at: c2c598e87cfe Merge branch 'staging' of https://source.denx.de/u-boot/custodians/u-boot-tegra into next Nishanth Menon (10): board: ti: common: Introduce a common fdt ops library board: ti: am62ax: Set fdtfile from C code instead of findfdt script board: ti: am62x: Set

[PATCH 06/10] board: ti: j721e: Set fdtfile from C code instead of findfdt script

2024-01-08 Thread Nishanth Menon
We now can provide a map and have the standard fdtfile variable set from code itself. This allows for bootstd to "just work". While at this, replace findfdt in environment with a warning as it is no longer needed. Signed-off-by: Nishanth Menon --- board/ti/j721e/evm.c | 8 +

[PATCH 03/10] board: ti: am62x: Set fdtfile from C code instead of findfdt script

2024-01-08 Thread Nishanth Menon
Stop using the findfdt script and switch to setting the fdtfile from C code. While at this, replace findfdt in environment with a warning as it is no longer needed Signed-off-by: Nishanth Menon --- board/ti/am62x/am62x.env| 1 - board/ti/am62x/evm.c| 8 configs

[PATCH 01/10] board: ti: common: Introduce a common fdt ops library

2024-01-08 Thread Nishanth Menon
-by: Nishanth Menon --- board/ti/common/Kconfig | 12 board/ti/common/Makefile | 1 + board/ti/common/fdt_ops.c | 65 +++ board/ti/common/fdt_ops.h | 41 4 files changed, 119 insertions(+) create mode 100644 board/ti/common

[PATCH 10/10] include: env: ti: Drop default_findfdt

2024-01-08 Thread Nishanth Menon
We shouldn't need finfdt anymore. Drop the env script. Signed-off-by: Nishanth Menon --- include/env/ti/default_findfdt.env | 12 1 file changed, 12 deletions(-) delete mode 100644 include/env/ti/default_findfdt.env diff --git a/include/env/ti/default_findfdt.env b/include/env

[PATCH 07/10] board: ti: j721s2: Set fdtfile from C code instead of findfdt script

2024-01-08 Thread Nishanth Menon
We now can provide a map and have the standard fdtfile variable set from code itself. This allows for bootstd to "just work". While at this, replace findfdt in environment with a warning as it is no longer needed. Signed-off-by: Nishanth Menon --- board/ti/j721s2/evm.c | 8 +

[PATCH 08/10] board: beagle: beagleboneai64: Set fdtfile from C code instead of findfdt script

2024-01-08 Thread Nishanth Menon
Stop using the findfdt script and switch to setting the fdtfile from C code. While at this, replace findfdt in environment with a warning as it is no longer needed Signed-off-by: Nishanth Menon --- board/beagle/beagleboneai64/beagleboneai64.c | 14 ++ board/beagle/beagleboneai64

Re: [PATCH 2/2] tools: binman: ti_board_cfg: Check for linting problems

2024-01-04 Thread Nishanth Menon
On 13:23-20240104, Neha Malcom Francis wrote: > Use yamllint for checking whether YAML configuration files are adhering > to default yamllint rules. > > Signed-off-by: Neha Malcom Francis > Suggested-by: Nishanth Menon > --- > tools/binman/etype/ti_board_config.py

Re: [PATCH v7 17/17] board: ti: j784s4: Add MAINTAINERS file

2024-01-03 Thread Nishanth Menon
> +F: arch/arm/dts/k3-j784s4-ddr.dtsi > +F: arch/arm/dts/k3-j784s4-ddr-evm-lp4-4266.dtsi > +F: doc/board/ti/j784s4_evm.rst > + > +AM69 BOARD AM69 SK BOARD please > +F: arch/arm/dts/k3-am69-sk.dts > +F: arch/arm/dts/k3-am69-sk-u-boot.dtsi > +F: arch/arm/dts/k3-am69-

Re: [PATCH v7 16/17] doc: board: ti: k3: Add J784S4 EVM and AM69 SK documentation

2024-01-03 Thread Nishanth Menon
gt; +.. include:: k3.rst > +:start-after: .. k3_rst_include_start_openocd_connect_XDS110 > +:end-before: .. k3_rst_include_end_openocd_connect_XDS110 > + > +To start OpenOCD and connect to J784S4-EVM or AM69-SK board, use the > +following. > + > +.. code-block:: bash >

Re: [PATCH v7 15/17] configs: Add am69_sk_* defconfig fragments

2024-01-03 Thread Nishanth Menon
gs/am69_sk_r5.config > new file mode 100644 > index 00..9194694393 > --- /dev/null > +++ b/configs/am69_sk_r5.config > @@ -0,0 +1,3 @@ > +# Defconfig fragment to apply on top of j784s4_evm_r5_defconfig > + > +CONFIG_DEFAULT_DEVICE_TREE="k3-am69-r5-sk" See my

Re: [PATCH v7 14/17] configs: j784s4_evm: Add defconfig for j784s4 evm board

2024-01-03 Thread Nishanth Menon
+CONFIG_SYS_MAX_FLASH_BANKS_DETECT=y > +CONFIG_DM_SPI_FLASH=y > +CONFIG_SPI_FLASH_SFDP_SUPPORT=y > +CONFIG_SPI_FLASH_SOFT_RESET=y > +CONFIG_SPI_FLASH_SOFT_RESET_ON_BOOT=y > +CONFIG_SPI_FLASH_SPANSION=y > +CONFIG_SPI_FLASH_S28HX_T=y > +CONFIG_SPI_FLASH_STMICRO=y > +CONFIG_SPI_FLASH_MT35XU=y > +CONFIG_PINCTRL=y > +# CONFIG_PINCTRL_GENERIC is not set > +CONFIG_SPL_PINCTRL=y > +# CONFIG_SPL_PINCTRL_GENERIC is not set > +CONFIG_PINCTRL_SINGLE=y > +CONFIG_POWER_DOMAIN=y > +CONFIG_TI_POWER_DOMAIN=y > +CONFIG_K3_SYSTEM_CONTROLLER=y > +CONFIG_REMOTEPROC_TI_K3_ARM64=y > +CONFIG_RESET_TI_SCI=y > +CONFIG_DM_SERIAL=y > +CONFIG_SOC_DEVICE=y > +CONFIG_SOC_DEVICE_TI_K3=y > +CONFIG_SOC_TI=y > +CONFIG_SPI=y > +CONFIG_DM_SPI=y > +CONFIG_CADENCE_QSPI=y > +CONFIG_SYSRESET=y > +CONFIG_SPL_SYSRESET=y > +CONFIG_SYSRESET_TI_SCI=y > +CONFIG_DM_THERMAL=y > +CONFIG_TIMER=y > +CONFIG_SPL_TIMER=y > +CONFIG_OMAP_TIMER=y > +CONFIG_FS_EXT4=y > +CONFIG_FS_FAT_MAX_CLUSTSIZE=16384 > +CONFIG_PANIC_HANG=y > +CONFIG_LIB_RATIONAL=y > +CONFIG_SPL_LIB_RATIONAL=y -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v7 13/17] arm: dts: Add bootph-all for memory node

2024-01-03 Thread Nishanth Menon
4000>, Is there a patch submitted for upstream kernel? This should be part of your patch for board.dts instead of a patch that fixes multiple board.dts after introducing the dts in the same series. So squash this change to relevant patches please and please refer to upstream kernel patch so that we can drop this later on. -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v7 12/17] arm: dts: Introduce am69-sk u-boot dts files

2024-01-03 Thread Nishanth Menon
m69-sk.dtb" as I said in the previous patch - this approach is broken. we have two different builds, we dont need to do this multi-conf stuff. We should be just using templates for j784s4 and it should just work with the same board-u-boot.dtsi and r5-board.dts files. [...] -- Regards, Nishan

Re: [PATCH v7 10/17] board: ti: j784s4: Add boot environment variables

2024-01-03 Thread Nishanth Menon
gt; + ${mtdparts} > +run_kern=booti ${loadaddr} ${rd_spec} ${fdtaddr} > + > +boot_targets=mmc1 mmc0 usb pxe dhcp > +boot=mmc > +mmcdev=1 > +bootpart=1:2 > +bootdir=/boot > +rd_spec=- -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v7 09/17] board: ti: j748s4: Add board config yaml files

2024-01-03 Thread Nishanth Menon
a bunch of warnings, but it does the same for other yamls as well. Not sure it was supposed to be yamlinted - Neha? Might be good idea than manual review to ensure some basic checks are done? Either way, Reviewed-by: Nishanth Menon Ref - I used yamllint 1.26.3 -- Regards, Nishanth Menon Key

Re: [PATCH v7 08/17] board: ti: j784s4: Add board support for J784S4 EVM

2024-01-03 Thread Nishanth Menon
env_set("fdtfile", fdtfile); See board/xilinx/zynqmp/zynqmp.c With that fdtfile will be available by default removing the need for findfdt and script mumbo jumbo. > +} > diff --git a/include/configs/j784s4_evm.h b/include/configs/j784s4_evm.h > new file mode 100644 > index 00..a4e0521198 > --- /dev/null > +++ b/include/configs/j784s4_evm.h > @@ -0,0 +1,15 @@ > +/* SPDX-License-Identifier: GPL-2.0-or-later */ > +/* > + * Configuration header file for K3 J784S4 EVM > + * > + * Copyright (C) 2023 Texas Instruments Incorporated - https://www.ti.com/ btw, for next edition - 2023-2024 - here and elsewhere. > + * Hari Nagalla > + */ > + > +#ifndef __CONFIG_J784S4_EVM_H > +#define __CONFIG_J784S4_EVM_H > + > +/* Now for the remaining common defines */ > +#include > + > +#endif /* __CONFIG_J784S4_EVM_H */ -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v7 07/17] drivers: dma: Add support for J784S4 SoC

2024-01-03 Thread Nishanth Menon
On 00:45-20231220, Apurva Nandan wrote: > Add support for DMA in J784S4 SoC. > > Signed-off-by: Jayesh Choudhary > Signed-off-by: Hari Nagalla > Signed-off-by: Apurva Nandan > --- Cursory review (have not looked at actual data): Reviewed-by: Nishanth Menon -- Regards,

Re: [PATCH v7 06/17] arm: mach-k3: j784s4: Add clk and power support

2024-01-03 Thread Nishanth Menon
ual data), looks fine.. Reviewed-by: Nishanth Menon -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v7 05/17] soc: ti: k3-socinfo: Add entry for J784S4 SoC

2024-01-03 Thread Nishanth Menon
t;AM62AX"; > break; > + case JTAG_ID_PARTNO_J784S4: > + family = "J784S4"; > + break; > default: > family = "Unknown Silicon"; > }; Reviewed-by: Nishanth Menon -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v7 03/17] arm: mach-k3: Add basic support for J784S4 SoC definition

2024-01-03 Thread Nishanth Menon
MMC2; > + } > + case BACKUP_BOOT_DEVICE_SPI: > + return BOOT_DEVICE_SPI; > + case BACKUP_BOOT_DEVICE_I2C: > + return BOOT_DEVICE_I2C; > + } > + > + return BOOT_DEVICE_RAM; > +} > + > +static u32 __get_primary_bootmedia(u32 main_de

Re: [PATCH v7 02/17] arm: dts: Introduce am69-sk dts from linux kernel

2024-01-03 Thread Nishanth Menon
y don't care to have two patches introduced - you should probably squash it.. as long as the kernel dts files match up, we should be good. -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v7 01/17] arm: dts: Introduce j784s4 dts from linux kernel

2024-01-03 Thread Nishanth Menon
I suggest changing the order of the patches: Introduce the base C files then introduce the dts files. > dtb-$(CONFIG_SOC_K3_AM642) += k3-am642-evm.dtb \ > k3-am642-r5-evm.dtb \ > k3-am642-sk.dtb \ -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v7 00/17] Introduce initial TI's J784S4 and AM69 support

2024-01-03 Thread Nishanth Menon
On 09:37-20240103, Nishanth Menon wrote: > On 00:45-20231220, Apurva Nandan wrote: > > Hello Everyone! > > > > This series will introduce basic support (SD and UART) support for Texas > > Instruments J784S4 EVM. > > > > The J784S4 SoC device tree patches

Re: [PATCH v7 00/17] Introduce initial TI's J784S4 and AM69 support

2024-01-03 Thread Nishanth Menon
inal branch and stop patching, run "git am --abort". You will probably have to rebase this series once any review comments are addressed. -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v2 26/26] arm: dts: k3-am654: convert bootph-pre-ram to bootph-all

2024-01-02 Thread Nishanth Menon
er which dtb build is happening. > > Tested-by: Tom Rini > Signed-off-by: Bryan Brattlof > --- [...] Reviewed-by: Nishanth Menon -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v2 25/26] arm: dts: k3-am654: remove duplicate mcu secure proxy node

2024-01-02 Thread Nishanth Menon
On 11:47-20231229, Bryan Brattlof wrote: > With the Linux and U-Boot board dtb files unified, we now have a > duplicate mcu secure proxy node. Remove it > > Tested-by: Tom Rini > Signed-off-by: Bryan Brattlof > --- [...] Reviewed-by: Nishanth Menon -- Regards,

Re: [PATCH v2 24/26] arm: dts: k3-am654: move dummy_clock to root node

2024-01-02 Thread Nishanth Menon
from cbass_mcu to the root node to avoid any > confusion. > > Tested-by: Tom Rini > Signed-off-by: Bryan Brattlof > --- [...] Reviewed-by: Nishanth Menon -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v2 23/26] arm: dts: k3-am654: remove un-needed aliases

2024-01-02 Thread Nishanth Menon
On 11:47-20231229, Bryan Brattlof wrote: > These aliases are not needed in U-Boot. Remove them > > Tested-by: Tom Rini > Signed-off-by: Bryan Brattlof > --- [...] Reviewed-by: Nishanth Menon -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232

Re: [PATCH v2 22/26] arm: dts: k3-am654: remove duplicate root properties

2024-01-02 Thread Nishanth Menon
On 11:47-20231229, Bryan Brattlof wrote: > With the Linux and U-Boot board dtb files unified, we have duplicate > properties in the root node. Remove them > > Tested-by: Tom Rini > Signed-off-by: Bryan Brattlof > --- [...] Reviewed-by: Nishanth Menon -- Regards,

Re: [PATCH v2 21/26] arm: dts: k3-am654: remove duplicate vtt pinmux

2024-01-02 Thread Nishanth Menon
On 11:47-20231229, Bryan Brattlof wrote: > With the Linux and U-Boot board dtb files unified, we now have a > duplicate vtt_pinmux node. Remove it > > Tested-by: Tom Rini > Signed-off-by: Bryan Brattlof > --- [...] Reviewed-by: Nishanth Menon -- Regards, Nishanth Menon Key (

Re: [PATCH v2 20/26] arm: dts: k3-am654: remove duplicate mdio

2024-01-02 Thread Nishanth Menon
On 11:47-20231229, Bryan Brattlof wrote: > With the Linux and U-Boot board dtb files unified, we now have a > duplicate mdio node. Remove it > > Tested-by: Tom Rini > Signed-off-by: Bryan Brattlof [...] Reviewed-by: Nishanth Menon -- Regards, Nishanth Menon Key (0xD

Re: [PATCH v2 19/26] arm: dts: k3-am654: remove usb0

2024-01-02 Thread Nishanth Menon
On 11:47-20231229, Bryan Brattlof wrote: > The pinmux for usb0 is missing from the Linux board dtb file. Remove it > until we can introduce it in Linux > > Tested-by: Tom Rini > Signed-off-by: Bryan Brattlof > --- [...] Reviewed-by: Nishanth Menon -- Regards,

Re: [PATCH v2 18/26] arm: dts: k3-am654: remove duplicate ospi0 node

2024-01-02 Thread Nishanth Menon
On 11:47-20231229, Bryan Brattlof wrote: > With the Linux and U-Boot board dtb files unified, we now have a > duplicate ospi0 node. Remove it > > Tested-by: Tom Rini > Signed-off-by: Bryan Brattlof > --- [...] Reviewed-by: Nishanth Menon -- Regards, Nishanth Menon Key (

Re: [PATCH v2 17/26] arm: dts: k3-am654: remove duplicate wkup_i2c0

2024-01-02 Thread Nishanth Menon
On 11:47-20231229, Bryan Brattlof wrote: > With the Linux and U-Boot board dtb files unified, we now have a > duplicate wkup_i2c0 node. Remove it > > Tested-by: Tom Rini > Signed-off-by: Bryan Brattlof > --- [...] Reviewed-by: Nishanth Menon -- Regards, Nishanth Menon Key (

Re: [PATCH v2 16/26] arm: dts: k3-am654: remove duplicate sdhci1 pinmux node

2024-01-02 Thread Nishanth Menon
On 11:47-20231229, Bryan Brattlof wrote: > With the Linux and U-Boot board dtb files unified, we now have a > duplicate sdhci1 pinmux node. Remove it > > Tested-by: Tom Rini > Signed-off-by: Bryan Brattlof > --- [...] Reviewed-by: Nishanth Menon -- Regards,

Re: [PATCH v2 15/26] arm: dts: k3-am654: remove duplicate sdhci0 pinmux node

2024-01-02 Thread Nishanth Menon
On 11:47-20231229, Bryan Brattlof wrote: > With the Linux and U-Boot board dtb files unified, we now have > a duplicate sdhci0 pinmux node. Remove it > > Tested-by: Tom Rini > Signed-off-by: Bryan Brattlof > --- [...] Reviewed-by: Nishanth Menon -- Regards,

Re: [PATCH v2 14/26] arm: dts: k3-am654: remove duplicate main_uart0

2024-01-02 Thread Nishanth Menon
On 11:47-20231229, Bryan Brattlof wrote: > With the Linux and U-Boot board dtb files unified, we now have a > duplicate main_uart0 node. Remove it > > Tested-by: Tom Rini > Signed-off-by: Bryan Brattlof > --- [...] Reviewed-by: Nishanth Menon -- Regards, Nishanth Menon Key (

Re: [PATCH v2 13/26] arm: dts: k3-am654: remove duplicate mcu_uart0 node

2024-01-02 Thread Nishanth Menon
On 11:47-20231229, Bryan Brattlof wrote: > With the Linux and U-Boot board dtb files unified we now have a > duplicate mcu_uart0 node. Remove it > > Tested-by: Tom Rini > Signed-off-by: Bryan Brattlof > --- [...] Reviewed-by: Nishanth Menon -- Regards, Nishanth Menon Key (

Re: [PATCH v2 12/26] arm: dts: k3-am654: add needed regs to udmap nodes

2024-01-02 Thread Nishanth Menon
tag is published > + */ > +_udmap { > + reg = <0x0 0x285c 0x0 0x100>, > + <0x0 0x2a80 0x0 0x4>, > + <0x0 0x2aa0 0x0 0x4>, > + <0x0 0x284a 0x0 0x4000>, > + <0x0 0x284c 0x0 0x4000>, > +

Re: [PATCH v2 11/26] arm: dts: k3-am654: remove duplicate mcu_udmap

2024-01-02 Thread Nishanth Menon
> 1 file changed, 13 deletions(-) > [...] Reviewed-by: Nishanth Menon -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v2 10/26] arm: dts: k3-am654: remove duplicate mcu_ringacc

2024-01-02 Thread Nishanth Menon
> 1 file changed, 10 deletions(-) > [...] Reviewed-by: Nishanth Menon -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v2 09/26] arm: dts: k3-am654: remove duplicate timer

2024-01-02 Thread Nishanth Menon
by: Bryan Brattlof > --- [...] Reviewed-by: Nishanth Menon -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v2 08/26] arm: dts: k3-am654: remove duplicate wkup_uart0

2024-01-02 Thread Nishanth Menon
> 1 file changed, 12 deletions(-) [...] Reviewed-by: Nishanth Menon -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v2 07/26] arm: dts: k3-am654: remove duplicate vtt_supply

2024-01-02 Thread Nishanth Menon
ile changed, 9 deletions(-) [...] Reviewed-by: Nishanth Menon -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v2 06/26] arm: dts: k3-am654: include a53 board dtb for r5 build

2024-01-02 Thread Nishanth Menon
ts-v1/; > > -#include "k3-am654.dtsi" > +#include "k3-am654-base-board.dts" > +#include "k3-am654-base-board-u-boot.dtsi" > #include "k3-am654-base-board-ddr4-1600MTs.dtsi" > #include "k3-am654-ddr.dtsi" [...] Reviewed-by: Nishanth Menon -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v2 05/26] arm: dts: k3-am654: copy bootph properties to a53 dts

2024-01-02 Thread Nishanth Menon
ph-pre-ram; > +}; > + > +_main { > + bootph-pre-ram; > +}; I understand this in an intermediate state and the final dts looks fine. So, [...] Reviewed-by: Nishanth Menon -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v2 04/26] arm: dts: k3-am654: pull in dtb update from Linux

2024-01-02 Thread Nishanth Menon
, 209 deletions(-) > [...] Reviewed-by: Nishanth Menon -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v2 03/26] arm: dts: k3-am654-r5: Merge board file and U-Boot overlay

2024-01-02 Thread Nishanth Menon
the Linux board file with this one. > > Tested-by: Tom Rini > Signed-off-by: Bryan Brattlof > --- [...] Reviewed-by: Nishanth Menon -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v2 02/26] configs: am65x_evm_a53: disable CONSOLE_MUX

2024-01-02 Thread Nishanth Menon
> --- > configs/am65x_evm_a53_defconfig | 1 - > 1 file changed, 1 deletion(-) > [...] Reviewed-by: Nishanth Menon -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v2 01/26] configs: am65x_evm_r5: enable driver for fixed regulators

2024-01-02 Thread Nishanth Menon
le changed, 2 insertions(+) > [...] Reviewed-by: Nishanth Menon -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH] include: env: ti: default_findfdt: Follow the bootstd/distro conventions

2023-12-27 Thread Nishanth Menon
On 07:08-20231227, Nishanth Menon wrote: > Distroboot and bootstd both mandate a findfdt variable pointing to the > correct device tree blob. Current mechanism calls a find_fdt function > to set this variable. We do not need a find_fdt command to set the > environment variable to

[PATCH] include: env: ti: default_findfdt: Follow the bootstd/distro conventions

2023-12-27 Thread Nishanth Menon
-by: Nishanth Menon --- include/env/ti/default_findfdt.env | 13 - 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/include/env/ti/default_findfdt.env b/include/env/ti/default_findfdt.env index a2b51dd923bb..1a1ab8406c9e 100644 --- a/include/env/ti/default_findfdt.env

Re: [PATCH] include: env: ti: ti_common: Run main_cpsw0_qsgmii_phyinit conditionally

2023-12-27 Thread Nishanth Menon
iewed-by: Mattijs Korpershoek > > Applied to u-boot/next, thanks! Shouldn't main_cpsw0_qsgmii_phyinit be part of the driver?? why are we scripting up driver initialization? -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH 00/26] sync am65x device tree with Linux v6.7-rc1

2023-12-27 Thread Nishanth Menon
- could you look at syncing those once an update to this series is posted? We could probably have a smoother v6.8-rc1 from then on. -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH 16/26] arm: dts: k3-am654: remove duplicate sdhci1 pinmux node

2023-12-27 Thread Nishanth Menon
wer-domain properties to avoid making calls to > + * SYSFW before it is loaded. Public ROM has already > + * set it up for us anyway. > + */ Same - please fix the comment style here as well. > { > clock-names = "clk_xin"; > clocks = <_200mhz>;

Re: [PATCH 15/26] arm: dts: k3-am654: remove duplicate sdhci0 pinmux node

2023-12-27 Thread Nishanth Menon
s point. Delete the > + * power-domain properties to avoid making calls to > + * SYSFW before it is loaded. Public ROM has already > + * set it up for us anyway. > + */ Please fix your comment style here: /* * blah blah */ > { > clock-names = "clk_xin"; >

Re: [PATCH 26/26] arm: dts: k3-am654: convert bootph-pre-ram to bootph-all

2023-12-27 Thread Nishanth Menon
er moving this to r5 dts - there is no use in having this in u-boot. should be pre-ram? [...] -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH 12/26] arm: dts: k3-am654: add needed regs to udmap nodes

2023-12-27 Thread Nishanth Menon
synced after the v6.8-rc1 linux > + * tag is published > + */ and here. > +_udmap { > + reg = <0x0 0x285c 0x0 0x100>, > + <0x0 0x2a80 0x0 0x4>, > + <0x0 0x2aa0 0x0 0x4>, > + <0x0 0x284a 0x0 0x4000&

Re: [RFC PATCH 10/16] arm: dts: k3-am65-main: Add ICSSG IEP nodes

2023-12-20 Thread Nishanth Menon
> > All of the DT patches are already part of upstream linux kernel except > for patch 08/16. This patch is currently in linux-next and will be in > linux in 6.8-rc1. > NAK. Send a sync at 6.8-rc1 and then start working - DONOT SEND patches modifying SoC dtsi or evm files directly

Re: [PATCH v6 00/17] Introduce initial TI's J784S4 and AM69 support

2023-12-15 Thread Nishanth Menon
at all firmware are supposed to implement. unfortunately the defconfig option for that API wasn't properly implemented for various firmware components correctly. - impacted chips are: j721e, j7200, j721s2/am68, j784s4/am69. Other K3 processor firmware have it implemented correctly. The latest 9.1.8--v09.01.08 has the bug as well - but hopefully should be fixed and released soon-ish. [1] https://software-dl.ti.com/tisci/esd/latest/2_tisci_msgs/general/core.html#tisci-msg-query-fw-caps -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v3 4/4] configs: am62x_evm_*: Enable USB and DFU support

2023-12-13 Thread Nishanth Menon
then > > try refactoring with config fragments for a second step? > > > > I agree. It's on my TODO list to try to clean up some of the messes > we've made so I thought I chime in > > Don't let me stop you from adding features I prefer we do the fragments with this series. We

Re: [PATCH 1/2] doc: board: beagle: am62x_beagleplay: Delete SW_PRNG flag for OPTEE

2023-12-05 Thread Nishanth Menon
On 08:46-20231205, Andrew Davis wrote: > On 12/4/23 1:29 PM, Nishanth Menon wrote: > > On 15:59-20231201, Dhruva Gole wrote: > > > Delete the flag CFG_WITH_SOFTWARE_PRNG as it's not necessary/ boot > > > requirement for this SoC > > > > > > Signed-off

Re: [PATCH 0/2] docs: AM62x: Remove SW_PRNG Flag for OPTEE

2023-12-04 Thread Nishanth Menon
G Flag for OPTEE > > doc/board/beagle/am62x_beagleplay.rst | 1 - > doc/board/ti/am62x_sk.rst | 1 - > 2 files changed, 2 deletions(-) > NAK to the series. RNG seed is needed for KASLR. either enable h/w RNG or at least enable S/W RNG in OPTEE. -- Regards, Nishanth Menon

Re: [PATCH 1/2] doc: board: beagle: am62x_beagleplay: Delete SW_PRNG flag for OPTEE

2023-12-04 Thread Nishanth Menon
gt; -- > 2.34.1 > NAK. RNG is needed to seed standard distros. -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH 0/4] board: ti: Update to latest board configuration

2023-11-28 Thread Nishanth Menon
d? Is there absolutely no way for people to use the new firmware and keep their old u-boot? Rather disappointing to see backward compatible breakage occurring this stage of the device. This is not appreciated. Please see if you can fix your firmware to maintain compatibility (as has been the case for yea

Re: [PATCH 2/3] arm: mach-k3: Remove non-cached memory map areas

2023-11-27 Thread Nishanth Menon
R seperately? I suppose OPTEE will come in the way? Looks like the no-map is not honored well.. as you were mentioning, a zephyr style generating the map from dts might be much better, but then we do support multiple dtbs as well.. OK - I guess we need to leave this cleanup for now. -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH v2 3/3] env: ti: j721s2.env: Remove the processors that are in lockstep

2023-11-27 Thread Nishanth Menon
lib/firmware/j721s2-c71_0-fw 7 > /lib/firmware/j721s2-c71_1-fw > +rproc_fw_binaries= 2 /lib/firmware/j721s2-main-r5f0_0-fw 4 > /lib/firmware/j721s2-main-r5f1_0-fw 6 /lib/firmware/j721s2-c71_0-fw 7 > /lib/firmware/j721s2-c71_1-fw I really would prefer us to work towards getting stdboot remote

Re: [PATCH RFC 0/2] Unify K3 initial memory map

2023-11-23 Thread Nishanth Menon
is (2): > arm: mach-k3: Remove non-cached memory map areas > arm: mach-k3: Merge initial memory maps > > arch/arm/mach-k3/arm64-mmu.c | 253 +-- > 1 file changed, 2 insertions(+), 251 deletions(-) > > -- > 2.39.2 > Could you rebas

Re: [PATCH v2] arm: mach-k3: Let the compiler size the mem_map lists

2023-11-23 Thread Nishanth Menon
e same change for plats now in -next > Reviewed-by: Nishanth Menon Tested-by: Nishanth Menon j721e-idk-gw am68_sk-fs j721s2-evm j721e-sk j7200-hsevm j7200-evm am64xx-hsevm am64xx_sk-fs beagleplay-gp-uart am62xx_sk-fs am62xx-sk am62axx_sk-fs Though, I'd prefer this along wit

Re: [PATCH] arm: mach-k3: J721e: Add xSPI boot mode

2023-11-21 Thread Nishanth Menon
BOOT_MODE_B_SHIFT; > > - if (bootmode == BOOT_DEVICE_OSPI || bootmode == BOOT_DEVICE_QSPI) > + if (bootmode == BOOT_DEVICE_OSPI || bootmode == BOOT_DEVICE_QSPI || > + bootmode == BOOT_DEVICE_XSPI) > bootmode = BOOT_DEVICE_SPI;

Re: [PATCH] arm: dts: k3-am625-verdin-wifi-dev-u-boot.dtsi: Fix DMA with BCDMA

2023-11-14 Thread Nishanth Menon
On 22:28-20231114, Roger Quadros wrote: > BCDMA can be used at SPL for OSPI boot and mem-to-mem DMA > so add "bootph-all" to BCDMA node. > > Suggested-by: Nishanth Menon > Fixes: 9a3f2b6798b0 ("arm: dts: k3-am625-verdin-wifi-dev-u-boot.dtsi: Fix > DMA/Ethernet

[PATCH V2 3/4] arm: dts: k3-am625-beagleplay-u-boot: drop duplicate bootph-nodes

2023-11-14 Thread Nishanth Menon
Kernel dts import now provides bootph-all and bootph-pre-ram properties for the properties we have been overriding so far. Drop the same. Reviewed-by: Dhruva Gole Tested-by: Dhruva Gole Signed-off-by: Nishanth Menon --- Changes since v1: - tested and reviewed tags V1: https://lore.kernel.org

[PATCH V2 2/4] arm: dts: k3-am625: Drop SoC provided bootph params from board u-boot/r5 dtsi

2023-11-14 Thread Nishanth Menon
now. Acked-by: Francesco Dolcini Tested-by: Dhruva Gole Signed-off-by: Nishanth Menon --- Changes since v1: - just picked up acks and tested tags V1: https://lore.kernel.org/r/20231113145919.1928812-3...@ti.com arch/arm/dts/k3-am625-beagleplay-u-boot.dtsi | 54 -- arch/arm/dts

[PATCH V2 4/4] arm: dts: k3-am625-sk-r5/u-boot: Drop duplicate bootph-nodes

2023-11-14 Thread Nishanth Menon
Signed-off-by: Nishanth Menon --- Changes: - capitalize TIFS and UART. - pick up reviewed and tested tags V1: https://lore.kernel.org/r/20231113145919.1928812-5...@ti.com arch/arm/dts/k3-am625-r5-sk.dts | 12 +--- arch/arm/dts/k3-am625-sk-u-boot.dtsi | 92 2

[PATCH V2 1/4] arm: dts: k3-am625*: Sync with kernel v6.7-rc1

2023-11-14 Thread Nishanth Menon
Sync with kernel v6.7-rc1 and sync up the u-boot dts files accordingly. Tested-by: Dhruva Gole Signed-off-by: Nishanth Menon --- Changes since v1: - just tested-by tag. V1: https://lore.kernel.org/r/20231113145919.1928812-2...@ti.com arch/arm/dts/k3-am62-main.dtsi| 12 ++- arch/arm

[PATCH V2 0/4] arm: dts: k3-am625*: Upgrade kernel dts to v6.7-rc1

2023-11-14 Thread Nishanth Menon
://lore.kernel.org/u-boot/20231104080137.9628-1...@ti.com/ I haven't had a chance to test this out on verdin (only build tested) - going to depend on any checks folks can provide. V1: https://lore.kernel.org/all/20231113145919.1928812-1...@ti.com/ Nishanth Menon (4): arm: dts: k3-am625*: Sync with kernel v6.7

Re: [PATCH 3/4] arm: dts: k3-am625-beagleplay-u-boot: drop duplicate bootph-nodes

2023-11-14 Thread Nishanth Menon
On 09:03-20231114, Dhruva Gole wrote: [...] > > #ifdef CONFIG_TARGET_AM625_A53_EVM > > > > #define SPL_AM625_BEAGLEPLAY_DTB "spl/dts/k3-am625-beagleplay.dtb" > > You didn't talk about this in the commit message? There is nothing changing in this patch here. -- Regards, Nishanth Menonh

Re: [PATCH 1/1] arm: k3: Enable instruction cache for main domain SPL

2023-11-13 Thread Nishanth Menon
ps://lore.kernel.org/all/20231109140958.1093235-1-joao.goncal...@toradex.com/ > Signed-off-by: Joao Paulo Goncalves > --- Tested-by: Nishanth Menon https://gist.github.com/nmenon/ee47a34d6b581916d6fba164617ea93b -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D

Re: [PATCH 1/2] dt-bindings: misc: Move esm-k3.txt to ti,j721e-esm.yaml

2023-11-13 Thread Nishanth Menon
isc/ti,j721e-esm.yaml| 53 +++ What is the rule here? https://tgit.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/Documentation/devicetree/bindings/misc/ti,j721e-esm.yaml we have the binding in upstream kernel. -- Regards, Nishanth Menon Key (0xDDB5849D1736249D) / F

[PATCH 0/4] arm: dts: k3-am625*: Upgrade kernel dts to v6.7-rc1

2023-11-13 Thread Nishanth Menon
haven't had a chance to test this out on verdin (only build tested) - so will be nice to verify. Nishanth Menon (4): arm: dts: k3-am625*: Sync with kernel v6.7-rc1 arm: dts: k3-am625: Drop SoC provided bootph params from board u-boot/r5 dtsi arm: dts: k3-am625-beagleplay-u-boot: drop

[PATCH 2/4] arm: dts: k3-am625: Drop SoC provided bootph params from board u-boot/r5 dtsi

2023-11-13 Thread Nishanth Menon
now. Signed-off-by: Nishanth Menon --- arch/arm/dts/k3-am625-beagleplay-u-boot.dtsi | 54 -- arch/arm/dts/k3-am625-r5-beagleplay.dts | 9 --- arch/arm/dts/k3-am625-r5-sk.dts | 9 --- arch/arm/dts/k3-am625-sk-u-boot.dtsi | 53 -- arch

[PATCH 3/4] arm: dts: k3-am625-beagleplay-u-boot: drop duplicate bootph-nodes

2023-11-13 Thread Nishanth Menon
Kernel dts import now provides bootph-all and bootph-pre-ram properties for the properties we have been overriding so far. Drop the same. Signed-off-by: Nishanth Menon --- arch/arm/dts/k3-am625-beagleplay-u-boot.dtsi | 56 1 file changed, 56 deletions(-) diff --git a/arch

<    1   2   3   4   5   6   7   8   9   10   >