From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Fri, 18 Dec 2015 19:51:57 -0700 Subject: [U-Boot] [PATCH 01/10] fdtdec: Add compatible string for Intel IvyBridge FSP In-Reply-To: <1449831353-933-2-git-send-email-bmeng.cn@gmail.com> References: <1449831353-933-1-git-send-email-bmeng.cn@gmail.com> <1449831353-933-2-git-send-email-bmeng.cn@gmail.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Bin, On 11 December 2015 at 03:55, Bin Meng wrote: > Use "intel,ivybridge-fsp" for Intel IvyBridge FSP compatible string. > > Signed-off-by: Bin Meng > --- > > include/fdtdec.h | 1 + > lib/fdtdec.c | 1 + > 2 files changed, 2 insertions(+) > > diff --git a/include/fdtdec.h b/include/fdtdec.h > index 7fe657d..c515a3c 100644 > --- a/include/fdtdec.h > +++ b/include/fdtdec.h > @@ -169,6 +169,7 @@ enum fdt_compat_id { > COMPAT_ALTERA_SOCFPGA_DWMMC, /* SoCFPGA DWMMC controller */ > COMPAT_INTEL_BAYTRAIL_FSP, /* Intel Bay Trail FSP */ > COMPAT_INTEL_BAYTRAIL_FSP_MDP, /* Intel FSP memory-down params */ > + COMPAT_INTEL_IVYBRIDGE_FSP, /* Intel Ivy Bridge FSP */ > > COMPAT_COUNT, > }; > diff --git a/lib/fdtdec.c b/lib/fdtdec.c > index 82d0090..002594d 100644 > --- a/lib/fdtdec.c > +++ b/lib/fdtdec.c > @@ -73,6 +73,7 @@ static const char * const compat_names[COMPAT_COUNT] = { > COMPAT(ALTERA_SOCFPGA_DWMMC, "altr,socfpga-dw-mshc"), > COMPAT(COMPAT_INTEL_BAYTRAIL_FSP, "intel,baytrail-fsp"), > COMPAT(COMPAT_INTEL_BAYTRAIL_FSP_MDP, "intel,baytrail-fsp-mdp"), > + COMPAT(COMPAT_INTEL_IVYBRIDGE_FSP, "intel,ivybridge-fsp"), > }; > > const char *fdtdec_get_compatible(enum fdt_compat_id id) > -- > 1.8.2.1 > Acked-by: Simon Glass Tested on link (ivybridge non-FSP) Tested-by: Simon Glass We should create an FSP uclass I think.