All of lore.kernel.org
 help / color / mirror / Atom feed
From: Chee, Tien Fong <tien.fong.chee@intel.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v11 3/6] kconfig: Convert FPGA and FPGA_ALTERA configuration to Kconfig
Date: Thu, 13 Jul 2017 01:46:59 +0000	[thread overview]
Message-ID: <1499910416.4335.3.camel@intel.com> (raw)
In-Reply-To: <a51b09fd-d5af-1acc-4941-4d5ee58e5d73@denx.de>

On Rab, 2017-07-12 at 12:56 +0200, Marek Vasut wrote:
> On 07/03/2017 11:07 AM, tien.fong.chee at intel.com wrote:
> > 
> > From: Tien Fong Chee <tien.fong.chee@intel.com>
> > 
> > This converts the following to Kconfig:
> >    CONFIG_FPGA
> >    CONFIG_FPGA_ALTERA
> > 
> > Signed-off-by: Tien Fong Chee <tien.fong.chee@intel.com>
> > Reviewed-by: Ley Foon Tan <ley.foon.tan@intel.com>
> > Reviewed-by: Dinh Nguyen <dinguyen@kernel.org>
> Did you run make savedefconfig on all these boards or did you just
> put
> the CONFIG_FPGA_ALTERA=y into their defconfigs ?
> 
I'm not only run make defconfig. I also running compilation on all
effeted defconfigs.
> > 
> > ---
> >  configs/astro_mcf5373l_defconfig    | 1 +
> >  configs/theadorable_debug_defconfig | 1 +
> >  configs/theadorable_defconfig       | 1 +
> >  include/configs/astro_mcf5373l.h    | 2 --
> >  include/configs/theadorable.h       | 2 --
> >  5 files changed, 3 insertions(+), 4 deletions(-)
> > 
> > diff --git a/configs/astro_mcf5373l_defconfig
> > b/configs/astro_mcf5373l_defconfig
> > index d5e8430..80fb1fa 100644
> > --- a/configs/astro_mcf5373l_defconfig
> > +++ b/configs/astro_mcf5373l_defconfig
> > @@ -10,4 +10,5 @@ CONFIG_CMD_I2C=y
> >  # CONFIG_CMD_NFS is not set
> >  CONFIG_CMD_CACHE=y
> >  CONFIG_CMD_DATE=y
> > +CONFIG_FPGA_ALTERA=y
> >  CONFIG_MTD_NOR_FLASH=y
> > diff --git a/configs/theadorable_debug_defconfig
> > b/configs/theadorable_debug_defconfig
> > index 2164237..e07b7b6 100644
> > --- a/configs/theadorable_debug_defconfig
> > +++ b/configs/theadorable_debug_defconfig
> > @@ -43,6 +43,7 @@ CONFIG_EFI_PARTITION=y
> >  # CONFIG_SPL_PARTITION_UUIDS is not set
> >  CONFIG_NET_RANDOM_ETHADDR=y
> >  CONFIG_SPL_OF_TRANSLATE=y
> > +CONFIG_FPGA_ALTERA=y
> >  CONFIG_DM_GPIO=y
> >  # CONFIG_MMC is not set
> >  CONFIG_SPI_FLASH=y
> > diff --git a/configs/theadorable_defconfig
> > b/configs/theadorable_defconfig
> > index d5eef70..3d2977c 100644
> > --- a/configs/theadorable_defconfig
> > +++ b/configs/theadorable_defconfig
> > @@ -37,6 +37,7 @@ CONFIG_EFI_PARTITION=y
> >  # CONFIG_PARTITION_UUIDS is not set
> >  # CONFIG_SPL_PARTITION_UUIDS is not set
> >  CONFIG_SPL_OF_TRANSLATE=y
> > +CONFIG_FPGA_ALTERA=y
> >  CONFIG_DM_GPIO=y
> >  # CONFIG_MMC is not set
> >  CONFIG_SPI_FLASH=y
> > diff --git a/include/configs/astro_mcf5373l.h
> > b/include/configs/astro_mcf5373l.h
> > index 8899579..f4acea1 100644
> > --- a/include/configs/astro_mcf5373l.h
> > +++ b/include/configs/astro_mcf5373l.h
> > @@ -201,10 +201,8 @@
> >  #define CONFIG_SYS_BARGSIZE		CONFIG_SYS_CBSIZE
> >  
> >  #define CONFIG_FPGA_COUNT	1
> > -#define CONFIG_FPGA
> >  #define	CONFIG_FPGA_XILINX
> >  #define	CONFIG_FPGA_SPARTAN3
> > -#define CONFIG_FPGA_ALTERA
> >  #define CONFIG_FPGA_CYCLON2
> >  #define CONFIG_SYS_FPGA_PROG_FEEDBACK
> >  #define CONFIG_SYS_FPGA_WAIT		1000
> > diff --git a/include/configs/theadorable.h
> > b/include/configs/theadorable.h
> > index 2a671e8..5459f4f 100644
> > --- a/include/configs/theadorable.h
> > +++ b/include/configs/theadorable.h
> > @@ -89,8 +89,6 @@
> >  #define CONFIG_SYS_MEM_TOP_HIDE		0x80000
> >  
> >  /* FPGA programming support */
> > -#define CONFIG_FPGA
> > -#define CONFIG_FPGA_ALTERA
> >  #define CONFIG_FPGA_STRATIX_V
> >  
> >  /*
> > 
> 

  reply	other threads:[~2017-07-13  1:46 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-03  9:07 [U-Boot] [PATCH v11 0/6] Add Intel Arria 10 SoC FPGA driver tien.fong.chee at intel.com
2017-07-03  9:07 ` tien.fong.chee at intel.com
2017-07-03  9:07 ` [U-Boot] [PATCH v11 1/6] arm: socfpga: Remove unused passing parameter of socfpga_bridges_reset tien.fong.chee at intel.com
2017-07-03  9:07 ` [U-Boot] [PATCH v11 2/6] arm: socfpga: Restructure FPGA driver in the preparation to support A10 tien.fong.chee at intel.com
2017-07-12 10:55   ` Marek Vasut
2017-07-03  9:07 ` [U-Boot] [PATCH v11 3/6] kconfig: Convert FPGA and FPGA_ALTERA configuration to Kconfig tien.fong.chee at intel.com
2017-07-12 10:56   ` Marek Vasut
2017-07-13  1:46     ` Chee, Tien Fong [this message]
2017-07-13  6:31       ` Marek Vasut
2017-07-13  8:08         ` Chee, Tien Fong
2017-07-03  9:07 ` [U-Boot] [PATCH v11 4/6] kconfig: Convert FPGA_SOCFPGA " tien.fong.chee at intel.com
2017-07-03  9:07 ` [U-Boot] [PATCH v11 5/6] drivers: Enable FPGA driver build on SPL tien.fong.chee at intel.com
2017-07-12 10:57   ` Marek Vasut
2017-07-13  1:47     ` Chee, Tien Fong
2017-07-03  9:07 ` [U-Boot] [PATCH v11 6/6] arm: socfpga: Add FPGA driver support for Arria 10 tien.fong.chee at intel.com
2017-07-12 11:00   ` Marek Vasut
2017-07-13  1:48     ` Chee, Tien Fong
2017-07-21  5:33     ` Chee, Tien Fong
2017-07-12  5:13 ` [U-Boot] [PATCH v11 0/6] Add Intel Arria 10 SoC FPGA driver Chee, Tien Fong
2017-07-12 11:00   ` Marek Vasut
2017-07-13  1:50     ` Chee, Tien Fong

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=1499910416.4335.3.camel@intel.com \
    --to=tien.fong.chee@intel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.