From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chee, Tien Fong Date: Wed, 24 May 2017 01:52:55 +0000 Subject: [U-Boot] [PATCH v5 3/5] arm: socfpga: Enable FPGA driver on SPL In-Reply-To: <2ff5f3cf-b7ea-30c0-f28c-77be7c58ba6a@kernel.org> References: <1495520703-23846-1-git-send-email-tien.fong.chee@intel.com> <1495520703-23846-4-git-send-email-tien.fong.chee@intel.com> <2ff5f3cf-b7ea-30c0-f28c-77be7c58ba6a@kernel.org> Message-ID: <1495590775.23728.3.camel@intel.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit To: u-boot@lists.denx.de On Sel, 2017-05-23 at 09:11 -0500, Dinh Nguyen wrote: > > On 05/23/2017 01:25 AM, tien.fong.chee at intel.com wrote: > > > > From: Tien Fong Chee > > > > Enable FPGA driver build for SPL. FPGA driver is needed for SPL > > to configure and getting DDR up before loading U-boot into DDR and > > booting from there. > > > > Signed-off-by: Tien Fong Chee > > --- > >  drivers/Makefile                 | 1 + > >  include/configs/socfpga_common.h | 1 + > >  2 files changed, 2 insertions(+) > > > > diff --git a/drivers/Makefile b/drivers/Makefile > > index 4a4b237..bb35c9a 100644 > > --- a/drivers/Makefile > > +++ b/drivers/Makefile > > @@ -47,6 +47,7 @@ obj-$(CONFIG_OMAP_USB_PHY) += usb/phy/ > >  obj-$(CONFIG_SPL_SATA_SUPPORT) += block/ > >  obj-$(CONFIG_SPL_USB_HOST_SUPPORT) += block/ > >  obj-$(CONFIG_SPL_MMC_SUPPORT) += block/ > > +obj-$(CONFIG_SPL_FPGA_SUPPORT) += fpga/ > >  endif > >   > >  ifdef CONFIG_TPL_BUILD > > diff --git a/include/configs/socfpga_common.h > > b/include/configs/socfpga_common.h > > index da7e4ad..e74e7eb 100644 > > --- a/include/configs/socfpga_common.h > > +++ b/include/configs/socfpga_common.h > > @@ -110,6 +110,7 @@ > >  #define CONFIG_FPGA > >  #define CONFIG_FPGA_ALTERA > >  #define CONFIG_FPGA_SOCFPGA > > +#define CONFIG_SPL_FPGA_SUPPORT > This change should be in a separate patch. > > Dinh Okay