public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Alexandru Marginean <alexm.osslist@gmail.com>
To: u-boot@lists.denx.de
Subject: [PATCH v3 6/6] configs: ls1028a: enable the Ethernet switch driver in defconfig
Date: Tue, 17 Mar 2020 10:49:42 +0100	[thread overview]
Message-ID: <280c3fdb-86f2-ac12-4dd7-0edb547f0122@gmail.com> (raw)
In-Reply-To: <CA+h21hooBvA3SiCif6-PzTG45W5ZknhycxN_gJX7qj5FJfzENA@mail.gmail.com>

On 3/13/2020 3:33 PM, Vladimir Oltean wrote:
> On Tue, 3 Dec 2019 at 17:23, Alex Marginean <alexandru.marginean@nxp.com> wrote:
>>
>> The switch driver for LS1028A Ethernet switch is now compiled in for
>> both LS1028A boards.
>>
>> Signed-off-by: Alex Marginean <alexandru.marginean@nxp.com>
>> ---
>>   configs/ls1028aqds_tfa_SECURE_BOOT_defconfig | 3 ++-
>>   configs/ls1028aqds_tfa_defconfig             | 3 ++-
>>   configs/ls1028ardb_tfa_SECURE_BOOT_defconfig | 3 ++-
>>   configs/ls1028ardb_tfa_defconfig             | 3 ++-
>>   4 files changed, 8 insertions(+), 4 deletions(-)
>>
>> diff --git a/configs/ls1028aqds_tfa_SECURE_BOOT_defconfig b/configs/ls1028aqds_tfa_SECURE_BOOT_defconfig
>> index 4a01cd6715..65e467817e 100644
>> --- a/configs/ls1028aqds_tfa_SECURE_BOOT_defconfig
>> +++ b/configs/ls1028aqds_tfa_SECURE_BOOT_defconfig
>> @@ -50,8 +50,9 @@ CONFIG_PHY_ATHEROS=y
>>   CONFIG_PHY_VITESSE=y
>>   CONFIG_DM_ETH=y
>>   CONFIG_DM_MDIO=y
>> +CONFIG_DM_DSA=y
>>   CONFIG_E1000=y
>> -CONFIG_FSL_ENETC=y
> 
> You surely didn't want to disable FSL_ENETC here, no?

I think there's a dependency set and ENETC is implied if FELIX_SWITCH is 
enabled.  I saved these with savedefconfig, I didn't manually edit them.

Alex

> 
>> +CONFIG_MSCC_FELIX_SWITCH=y
>>   CONFIG_PCI=y
>>   CONFIG_DM_PCI=y
>>   CONFIG_DM_PCI_COMPAT=y
>> diff --git a/configs/ls1028aqds_tfa_defconfig b/configs/ls1028aqds_tfa_defconfig
>> index 1307f0d951..40d259d907 100644
>> --- a/configs/ls1028aqds_tfa_defconfig
>> +++ b/configs/ls1028aqds_tfa_defconfig
>> @@ -56,8 +56,9 @@ CONFIG_PHY_ATHEROS=y
>>   CONFIG_PHY_VITESSE=y
>>   CONFIG_DM_ETH=y
>>   CONFIG_DM_MDIO=y
>> +CONFIG_DM_DSA=y
>>   CONFIG_E1000=y
>> -CONFIG_FSL_ENETC=y
>> +CONFIG_MSCC_FELIX_SWITCH=y
>>   CONFIG_PCI=y
>>   CONFIG_DM_PCI=y
>>   CONFIG_DM_PCI_COMPAT=y
>> diff --git a/configs/ls1028ardb_tfa_SECURE_BOOT_defconfig b/configs/ls1028ardb_tfa_SECURE_BOOT_defconfig
>> index d0a3310a4c..f54a6da31b 100644
>> --- a/configs/ls1028ardb_tfa_SECURE_BOOT_defconfig
>> +++ b/configs/ls1028ardb_tfa_SECURE_BOOT_defconfig
>> @@ -49,9 +49,10 @@ CONFIG_PHY_ATHEROS=y
>>   CONFIG_PHY_VITESSE=y
>>   CONFIG_DM_ETH=y
>>   CONFIG_DM_MDIO=y
>> +CONFIG_DM_DSA=y
>>   CONFIG_PHY_GIGE=y
>>   CONFIG_E1000=y
>> -CONFIG_FSL_ENETC=y
>> +CONFIG_MSCC_FELIX_SWITCH=y
>>   CONFIG_PCI=y
>>   CONFIG_DM_PCI=y
>>   CONFIG_DM_PCI_COMPAT=y
>> diff --git a/configs/ls1028ardb_tfa_defconfig b/configs/ls1028ardb_tfa_defconfig
>> index 4ec7ed0920..e018e5a50e 100644
>> --- a/configs/ls1028ardb_tfa_defconfig
>> +++ b/configs/ls1028ardb_tfa_defconfig
>> @@ -56,9 +56,10 @@ CONFIG_PHY_ATHEROS=y
>>   CONFIG_PHY_VITESSE=y
>>   CONFIG_DM_ETH=y
>>   CONFIG_DM_MDIO=y
>> +CONFIG_DM_DSA=y
>>   CONFIG_PHY_GIGE=y
>>   CONFIG_E1000=y
>> -CONFIG_FSL_ENETC=y
>> +CONFIG_MSCC_FELIX_SWITCH=y
>>   CONFIG_PCI=y
>>   CONFIG_DM_PCI=y
>>   CONFIG_DM_PCI_COMPAT=y
>> --
>> 2.17.1
>>
> 
> Regards,
> -Vladimir
> 

  reply	other threads:[~2020-03-17  9:49 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-03 14:56 [PATCH v3 0/6] Introduce DSA Ethernet switch class and Felix driver Alex Marginean
2019-12-03 14:56 ` [PATCH v3 1/6] net: introduce DSA class for Ethernet switches Alex Marginean
2019-12-15 12:44   ` Vladimir Oltean
2019-12-17  7:11     ` Alexandru Marginean
2019-12-15 13:08   ` Vladimir Oltean
2019-12-17  7:18     ` Alexandru Marginean
2019-12-17  9:41       ` Vladimir Oltean
2019-12-17 10:36         ` Alexandru Marginean
2019-12-17 10:47           ` Vladimir Oltean
2020-02-09 13:10   ` Vladimir Oltean
2019-12-03 14:56 ` [PATCH v3 2/6] drivers: net: add a DSA sandbox driver Alex Marginean
2019-12-03 14:56 ` [PATCH v3 3/6] test: dm: add a simple unit test for DSA class Alex Marginean
2019-12-04  4:14   ` Priyanka Jain
2019-12-03 14:56 ` [PATCH v3 4/6] drivers: net: add Felix DSA switch driver Alex Marginean
2019-12-15 12:53   ` Vladimir Oltean
2019-12-15 12:53     ` Vladimir Oltean
2019-12-15 14:16     ` Vladimir Oltean
2019-12-17  7:29       ` Alexandru Marginean
2019-12-17  7:28     ` Alexandru Marginean
2019-12-03 14:56 ` [PATCH v3 5/6] arm: dts: ls1028a: adds Ethernet switch node and its dependencies Alex Marginean
2019-12-03 14:56 ` [PATCH v3 6/6] configs: ls1028a: enable the Ethernet switch driver in defconfig Alex Marginean
2020-03-13 14:33   ` Vladimir Oltean
2020-03-17  9:49     ` Alexandru Marginean [this message]
2020-02-08 13:19 ` [PATCH v3 0/6] Introduce DSA Ethernet switch class and Felix driver Vladimir Oltean
2020-03-17  9:58   ` Alexandru Marginean

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=280c3fdb-86f2-ac12-4dd7-0edb547f0122@gmail.com \
    --to=alexm.osslist@gmail.com \
    --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