public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Apurva Nandan <a-nandan@ti.com>
To: Andrew Davis <afd@ti.com>, Hari Nagalla <hnagalla@ti.com>,
	Lukasz Majewski <lukma@denx.de>,
	Sean Anderson <seanga2@gmail.com>,
	Jaehoon Chung <jh80.chung@samsung.com>,
	Neha Malcom Francis <n-francis@ti.com>,
	Simon Glass <sjg@chromium.org>,
	Kamlesh Gurudasani <kamlesh@ti.com>,
	Dasnavis Sabiya <sabiya.d@ti.com>,
	Manorit Chawdhry <m-chawdhry@ti.com>,
	Aradhya Bhatia <a-bhatia1@ti.com>, Bryan Brattlof <bb@ti.com>,
	Christian Gmeiner <christian.gmeiner@gmail.com>,
	Nishanth Menon <nm@ti.com>,
	Heinrich Schuchardt <xypron.glpk@gmx.de>,
	Marcel Ziswiler <marcel.ziswiler@toradex.com>,
	Roger Quadros <rogerq@kernel.org>,
	Jayesh Choudhary <j-choudhary@ti.com>,
	Ralph Siemsen <ralph.siemsen@linaro.org>,
	Marek Vasut <marek.vasut+renesas@mailbox.org>,
	Rasmus Villemoes <rasmus.villemoes@prevas.dk>,
	<u-boot@lists.denx.de>,
	Sinthu Raja M <sinthu.raja@mistralsolutions.com>,
	Udit Kumar <u-kumar1@ti.com>
Subject: Re: [PATCH v8 15/16] configs: Add am69_sk_* defconfig fragments
Date: Mon, 29 Jan 2024 23:56:23 +0530	[thread overview]
Message-ID: <2146baaa-c66e-4e08-b97d-b6cc1791ccaf@ti.com> (raw)
In-Reply-To: <f768b142-15e3-46c3-a39c-f3f3674af798@ti.com>


On 23/01/24 20:31, Andrew Davis wrote:
> On 1/23/24 8:39 AM, Apurva Nandan wrote:
>> Hi Andrew,
>>
>> On 20/01/24 00:43, Andrew Davis wrote:
>>> On 1/19/24 11:50 AM, Apurva Nandan wrote:
>>>> From: Dasnavis Sabiya <sabiya.d@ti.com>
>>>>
>>>> Add config fragments for am69_sk A72 and R5 configuration.
>>>>
>>>> This applies on to:
>>>> j784s4_evm_a72_defconfig -> am69_sk_a72.config
>>>> j784s4_evm_r5_defconfig -> am69_sk_r5.config
>>>>
>>>> The usage model (with the fragment) would be:
>>>> make j784s4_evm_a72_defconfig am69_sk_a72.config
>>>> make
>>>>
>>>> OR
>>>>
>>>> make j784s4_evm_r5_defconfig am69_sk_r5.config
>>>> make
>>>>
>>>> Signed-off-by: Dasnavis Sabiya <sabiya.d@ti.com>
>>>> Signed-off-by: Apurva Nandan <a-nandan@ti.com>
>>>> ---
>>>>   board/ti/j784s4/MAINTAINERS | 2 ++
>>>>   configs/am69_sk_a72.config  | 5 +++++
>>>>   configs/am69_sk_r5.config   | 5 +++++
>>>>   3 files changed, 12 insertions(+)
>>>>   create mode 100644 configs/am69_sk_a72.config
>>>>   create mode 100644 configs/am69_sk_r5.config
>>>>
>>>> diff --git a/board/ti/j784s4/MAINTAINERS b/board/ti/j784s4/MAINTAINERS
>>>> index 4433ead66b..69be13f533 100644
>>>> --- a/board/ti/j784s4/MAINTAINERS
>>>> +++ b/board/ti/j784s4/MAINTAINERS
>>>> @@ -20,3 +20,5 @@ AM69 SK BOARD
>>>>   F:    arch/arm/dts/k3-am69-sk.dts
>>>>   F:    arch/arm/dts/k3-am69-sk-u-boot.dtsi
>>>>   F:    arch/arm/dts/k3-am69-r5-sk.dts
>>>> +F:    configs/am69_sk_r5.config
>>>> +F:    configs/am69_sk_a72.config
>>>> diff --git a/configs/am69_sk_a72.config b/configs/am69_sk_a72.config
>>>> new file mode 100644
>>>> index 0000000000..03e74a8a56
>>>> --- /dev/null
>>>> +++ b/configs/am69_sk_a72.config
>>>
>>> Just going to ignore the comments on v7 about putting this
>>> in board/ti/..?
>>>
>>
>> Sorry, somehow this got missed. Thanks for bringing up.
>>
>>
>>> Anyway, we can now do includes in defconfigs, so no config
>>> fragments needed, you can just add `configs/am69_evm_a72_defconfig`
>>> with the content:
>>>
>>> ```
>>> #include <configs/j784s4_evm_a72_defconfig>
>>>
>>> CONFIG_ARM=y
>>> CONFIG_ARCH_K3=y
>>> CONFIG_SOC_K3_J784S4=y
>>> CONFIG_TARGET_J784S4_A72_EVM=y
>>>
>>> CONFIG_DEFAULT_DEVICE_TREE="k3-am69-sk"
>>> CONFIG_SPL_OF_LIST="k3-am69-sk"
>>> CONFIG_OF_LIST="k3-am69-sk"
>>> ```
>>>
>>> (note we need to duplicate the _ARM/_TARGET currently to
>>> not confuse buildman which seems to directly parse the configs
>>> for arch detection).
>>>
>>
>> I tried it, but I don't think this works as '#' signifies a comment 
>> in defconfig, isn't that true?
>>
>
> The ability to do this was just added recently, try it again :)
>
> Andrew
>
Actually, I tried on the latest uboot next, but I still don't see things 
being included from j784s4_evm_a72_defconfig

Can you point to the commit where this was introduced?


>>
>>> Andrew
>>>
>>>> @@ -0,0 +1,5 @@
>>>> +# Defconfig fragment to apply on top of j784s4_evm_a72_defconfig
>>>> +
>>>> +CONFIG_DEFAULT_DEVICE_TREE="k3-am69-sk"
>>>> +CONFIG_SPL_OF_LIST="k3-am69-sk"
>>>> +CONFIG_OF_LIST="k3-am69-sk"
>>>> diff --git a/configs/am69_sk_r5.config b/configs/am69_sk_r5.config
>>>> new file mode 100644
>>>> index 0000000000..c42b6f3380
>>>> --- /dev/null
>>>> +++ b/configs/am69_sk_r5.config
>>>> @@ -0,0 +1,5 @@
>>>> +# Defconfig fragment to apply on top of j784s4_evm_r5_defconfig
>>>> +
>>>> +CONFIG_DEFAULT_DEVICE_TREE="k3-am69-sk"
>>>> +CONFIG_SPL_OF_LIST="k3-am69-r5-sk"
>>>> +CONFIG_OF_LIST="k3-am69-r5-sk"
>>
-- 
Regards,
Apurva Nandan,
Texas Instruments.


  reply	other threads:[~2024-01-29 18:26 UTC|newest]

Thread overview: 48+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-19 17:50 [PATCH v8 00/16] Introduce initial TI's J784S4 and AM69 support Apurva Nandan
2024-01-19 17:50 ` [PATCH v8 01/16] arm: mach-k3: Kconfig: Sort SOC_K3 config entries Apurva Nandan
2024-01-22 12:40   ` Roger Quadros
2024-01-19 17:50 ` [PATCH v8 02/16] arm: mach-k3: Add basic support for J784S4 SoC definition Apurva Nandan
2024-01-19 19:34   ` Nishanth Menon
2024-01-23 14:51     ` Apurva Nandan
2024-01-23 20:47       ` Nishanth Menon
2024-01-29 11:32         ` Apurva Nandan
2024-01-29 12:19           ` Nishanth Menon
2024-01-29 18:03             ` Apurva Nandan
2024-01-19 17:50 ` [PATCH v8 03/16] arm: dts: Introduce j784s4 and am69 dts from linux kernel Apurva Nandan
2024-01-19 17:50 ` [PATCH v8 04/16] arm: dts: Add bootph-all for memory node Apurva Nandan
2024-01-19 19:25   ` Nishanth Menon
2024-01-23 14:42     ` Apurva Nandan
2024-01-19 17:50 ` [PATCH v8 05/16] arm: mach-k3: Sort SoC JTAG_ID entries Apurva Nandan
2024-01-22 12:41   ` Roger Quadros
2024-01-19 17:50 ` [PATCH v8 06/16] soc: ti: k3-socinfo: Add entry for J784S4 SoC Apurva Nandan
2024-01-22 12:41   ` Roger Quadros
2024-01-19 17:50 ` [PATCH v8 07/16] arm: mach-k3: j784s4: Add clk and power support Apurva Nandan
2024-01-22 12:43   ` Roger Quadros
2024-01-19 17:50 ` [PATCH v8 08/16] drivers: dma: Add support for J784S4 SoC Apurva Nandan
2024-01-22 12:47   ` Roger Quadros
2024-01-23 14:51     ` Apurva Nandan
2024-01-19 17:50 ` [PATCH v8 09/16] board: ti: j784s4: Add board support for J784S4 EVM Apurva Nandan
2024-01-19 19:39   ` Nishanth Menon
2024-01-23 14:42     ` Apurva Nandan
2024-01-19 17:50 ` [PATCH v8 10/16] board: ti: j748s4: Add board config yaml files Apurva Nandan
2024-01-19 17:50 ` [PATCH v8 11/16] board: ti: j784s4: Add boot environment variables Apurva Nandan
2024-01-19 17:50 ` [PATCH v8 12/16] arm: dts: Introduce j784s4 u-boot dts files Apurva Nandan
2024-01-19 19:17   ` Nishanth Menon
2024-01-23 14:58     ` Apurva Nandan
2024-01-23 20:52       ` Nishanth Menon
2024-02-15  9:03         ` Neha Malcom Francis
2024-02-16 15:58           ` Nishanth Menon
2024-02-19  4:03             ` Neha Malcom Francis
2024-01-19 17:50 ` [PATCH v8 13/16] arm: dts: Introduce am69-sk " Apurva Nandan
2024-01-22 12:58   ` Roger Quadros
2024-01-23 14:40     ` Apurva Nandan
2024-01-19 17:50 ` [PATCH v8 14/16] configs: j784s4_evm: Add defconfig for j784s4 evm board Apurva Nandan
2024-01-19 17:50 ` [PATCH v8 15/16] configs: Add am69_sk_* defconfig fragments Apurva Nandan
2024-01-19 19:13   ` Andrew Davis
2024-01-23 14:39     ` Apurva Nandan
2024-01-23 15:01       ` Andrew Davis
2024-01-29 18:26         ` Apurva Nandan [this message]
2024-01-31 22:41           ` Andrew Davis
2024-01-19 17:50 ` [PATCH v8 16/16] doc: board: ti: k3: Add J784S4 EVM and AM69 SK documentation Apurva Nandan
2024-02-15 20:44   ` Andrew Halaney
2024-02-19  9:48     ` Apurva Nandan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=2146baaa-c66e-4e08-b97d-b6cc1791ccaf@ti.com \
    --to=a-nandan@ti.com \
    --cc=a-bhatia1@ti.com \
    --cc=afd@ti.com \
    --cc=bb@ti.com \
    --cc=christian.gmeiner@gmail.com \
    --cc=hnagalla@ti.com \
    --cc=j-choudhary@ti.com \
    --cc=jh80.chung@samsung.com \
    --cc=kamlesh@ti.com \
    --cc=lukma@denx.de \
    --cc=m-chawdhry@ti.com \
    --cc=marcel.ziswiler@toradex.com \
    --cc=marek.vasut+renesas@mailbox.org \
    --cc=n-francis@ti.com \
    --cc=nm@ti.com \
    --cc=ralph.siemsen@linaro.org \
    --cc=rasmus.villemoes@prevas.dk \
    --cc=rogerq@kernel.org \
    --cc=sabiya.d@ti.com \
    --cc=seanga2@gmail.com \
    --cc=sinthu.raja@mistralsolutions.com \
    --cc=sjg@chromium.org \
    --cc=u-boot@lists.denx.de \
    --cc=u-kumar1@ti.com \
    --cc=xypron.glpk@gmx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox