public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Hannes Schmelzer <hannes@schmelzer.or.at>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v4 01/10] Kconfig: Separate AM33XX SOC config from target board config
Date: Wed, 31 Aug 2016 19:45:28 +0200	[thread overview]
Message-ID: <57C717B8.2010105@schmelzer.or.at> (raw)
In-Reply-To: <c2d56c96-981e-b8fc-021a-d2da731adcad@ti.com>


mfG
Schmelzer Hannes

On 08/31/2016 06:16 PM, Andrew F. Davis wrote:
> On 08/31/2016 11:06 AM, Hannes Schmelzer wrote:
>> On 08/30/2016 09:06 PM, Andrew F. Davis wrote:
>>> The config option AM33XX is used in several boards and should be
>>> defined as a stand-alone option for this SOC. We break this out
>>> from target boards that use this SoC and common headers then enable
>>> AM33XX on in all the boards that used these targets to eliminate any
>>> functional change with this patch.
>>>
>>> This is similar to what has already been done in
>>> 9de852642cae ("arm: Kconfig: Add support for AM43xx SoC specific
>>> Kconfig")
>>> and is done for the same reasons.
>>>
>>> Signed-off-by: Andrew F. Davis <afd@ti.com>
>>> ---
>>>    arch/arm/Kconfig                           | 98
>>> ++++--------------------------
>>>    arch/arm/cpu/armv7/am33xx/Kconfig          | 86
>>> ++++++++++++++++++++++++++
>>>    configs/am335x_baltos_defconfig            |  1 +
>>>    configs/am335x_boneblack_defconfig         |  1 +
>>>    configs/am335x_boneblack_vboot_defconfig   |  1 +
>>>    configs/am335x_evm_defconfig               |  1 +
>>>    configs/am335x_evm_nor_defconfig           |  1 +
>>>    configs/am335x_evm_norboot_defconfig       |  1 +
>>>    configs/am335x_evm_spiboot_defconfig       |  1 +
>>>    configs/am335x_evm_usbspl_defconfig        |  1 +
>>>    configs/am335x_igep0033_defconfig          |  1 +
>>>    configs/am335x_shc_defconfig               |  1 +
>>>    configs/am335x_shc_ict_defconfig           |  1 +
>>>    configs/am335x_shc_netboot_defconfig       |  1 +
>>>    configs/am335x_shc_prompt_defconfig        |  1 +
>>>    configs/am335x_shc_sdboot_defconfig        |  1 +
>>>    configs/am335x_shc_sdboot_prompt_defconfig |  1 +
>>>    configs/am335x_sl50_defconfig              |  1 +
>>>    configs/birdland_bav335a_defconfig         |  1 +
>>>    configs/birdland_bav335b_defconfig         |  1 +
>>>    configs/cm_t335_defconfig                  |  1 +
>>>    configs/pcm051_rev1_defconfig              |  1 +
>>>    configs/pcm051_rev3_defconfig              |  1 +
>>>    configs/pengwyn_defconfig                  |  1 +
>>>    configs/pepper_defconfig                   |  1 +
>>>    include/configs/ti_am335x_common.h         |  1 -
>>>    26 files changed, 120 insertions(+), 88 deletions(-)
>> Hi Andrew,
>>
>> why is this "CONFIG_AM33XX" only done at related ti_am335x_common.h boards?
>>
>> grep -r "#define CONFIG_AM33XX" *
>> include/configs/bur_am335x_common.h:#define CONFIG_AM33XX
>> include/configs/ti_am335x_common.h:#define CONFIG_AM33XX
>> include/configs/siemens-am33x-common.h:#define CONFIG_AM33XX
>>
>> I'm responsible for the bur_am335x_common.h related boards.
>>
> My original intent was to start with just one board (am335x_evm), but it
> has a common header config with all these other boards, so they were
> converted too for consistency.
>
> You should be able to convert your boards in a similar way and add them
> to arch/arm/cpu/armv7/am33xx/Kconfig, or if you would like I can do that
> for you in a different patch ( I don't want to add too much to this one,
> it is already tested and I'm afraid to touch it to much :) ).
>
> Thanks,
> Andrew
OK for me.
I will convert my boards later, once your series got applied.

thanks,
Hannes

  reply	other threads:[~2016-08-31 17:45 UTC|newest]

Thread overview: 46+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-08-30 19:06 [U-Boot] [PATCH v4 00/10] Allow secure boot on AM33xx devices Andrew F. Davis
2016-08-30 19:06 ` [U-Boot] [PATCH v4 01/10] Kconfig: Separate AM33XX SOC config from target board config Andrew F. Davis
2016-08-31  3:26   ` Lokesh Vutla
2016-08-31 16:06   ` Hannes Schmelzer
2016-08-31 16:16     ` Andrew F. Davis
2016-08-31 17:45       ` Hannes Schmelzer [this message]
2016-09-02 14:53   ` Tom Rini
2016-10-03 13:38   ` [U-Boot] [U-Boot, v4, " Tom Rini
2016-08-30 19:06 ` [U-Boot] [PATCH v4 02/10] am33xx: config.mk: Add support for additional secure boot image types Andrew F. Davis
2016-08-31  3:26   ` Lokesh Vutla
2016-09-02 14:53   ` Tom Rini
2016-10-03 13:38   ` [U-Boot] [U-Boot, v4, " Tom Rini
2016-08-30 19:06 ` [U-Boot] [PATCH v4 03/10] doc: Update info on using AM33xx secure devices from TI Andrew F. Davis
2016-08-31  3:26   ` Lokesh Vutla
2016-09-02 14:53   ` Tom Rini
2016-10-03 13:38   ` [U-Boot] [U-Boot, v4, " Tom Rini
2016-08-30 19:06 ` [U-Boot] [PATCH v4 04/10] am33xx: config.mk: Fix option used to enable SPI SPL image type Andrew F. Davis
2016-08-31  3:27   ` Lokesh Vutla
2016-09-02 14:53   ` Tom Rini
2016-10-03 13:38   ` [U-Boot] [U-Boot, v4, " Tom Rini
2016-08-30 19:06 ` [U-Boot] [PATCH v4 05/10] board: am33xx-hs: Allow post-processing of FIT image on AM33xx Andrew F. Davis
2016-08-31  3:28   ` Lokesh Vutla
2016-09-02 14:53   ` Tom Rini
2016-10-03 13:38   ` [U-Boot] [U-Boot, v4, " Tom Rini
2016-08-30 19:06 ` [U-Boot] [PATCH v4 06/10] ti: omap-common: Allow AM33xx devices to be built securely Andrew F. Davis
2016-08-31  3:28   ` Lokesh Vutla
2016-09-02 14:53   ` Tom Rini
2016-10-03 13:38   ` [U-Boot] [U-Boot, v4, " Tom Rini
2016-08-30 19:06 ` [U-Boot] [PATCH v4 07/10] am335x: configs: Use ISW_ENTRY_ADDR to set SPL_TEXT_BASE Andrew F. Davis
2016-08-31  3:28   ` Lokesh Vutla
2016-09-02 14:53   ` Tom Rini
2016-08-30 19:06 ` [U-Boot] [PATCH v4 08/10] config: Remove usage of CONFIG_STORAGE_EMMC Andrew F. Davis
2016-08-31  3:28   ` Lokesh Vutla
2016-09-02 14:54   ` Tom Rini
2016-10-03 13:38   ` [U-Boot] [U-Boot, v4, " Tom Rini
2016-08-30 19:06 ` [U-Boot] [PATCH v4 09/10] ti_armv7_common: Disable Falcon Mode on HS devices Andrew F. Davis
2016-08-31  3:29   ` Lokesh Vutla
2016-09-02 14:54   ` Tom Rini
2016-10-03 13:38   ` [U-Boot] [U-Boot, v4, " Tom Rini
2016-08-30 19:06 ` [U-Boot] [PATCH v4 10/10] defconfig: Add a config for AM335x High Security EVM with SD Boot support Andrew F. Davis
2016-08-31  3:30   ` Lokesh Vutla
2016-09-02 14:54   ` Tom Rini
2016-09-02 14:57     ` Andrew F. Davis
2016-09-02 14:58       ` Tom Rini
2016-09-07 18:04         ` Andrew F. Davis
2016-10-03 13:39   ` [U-Boot] [U-Boot, v4, " Tom Rini

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=57C717B8.2010105@schmelzer.or.at \
    --to=hannes@schmelzer.or.at \
    --cc=u-boot@lists.denx.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