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

2024-01-09 Thread Nishanth Menon
On 15:08-20240109, Roger Quadros wrote: [..] > > +/** > > + * struct ti_fdt_map - mapping of device tree blob name to board name > > + * @name_fdt: board_name up to TI_NAME_FDT_MAX long > > + * @fdt_file_name: device tree blob name as described by kernel > > + */ > > +struct ti_fdt_map { > > +

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

2024-01-09 Thread Nishanth Menon
On 20:20-20240108, Jon Humphreys wrote: [...] > > +config TI_EVM_FDT_FOLDER_PATH > > + string "Location of Folder path where dtb is present" > > + default "ti/davinci" if ARCH_DAVINCI > > + default "ti/keystone" if ARCH_KEYSTONE > > + default "ti/omap" if ARCH_OMAP2PLUS > > + default "ti

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

2024-01-09 Thread Roger Quadros
On 08/01/2024 19:32, 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 capability to set up > fdtfile as a standard variable as part of board identification

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

2024-01-08 Thread Jon Humphreys
Nishanth Menon writes: > 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 capability to set up > fdtfile as a standard variable as part of board identification rather > than depend o

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 capability to set up > > fdtfile as a sta

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

2024-01-08 Thread Andrew Davis
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 capability to set up fdtfile as a standard variable as part of board identification rather than

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

2024-01-08 Thread Nishanth Menon
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 capability to set up fdtfile as a standard variable as part of board identification rather than depend on scripted ifdeffery. Signed-off-by