diff mbox series

[U-Boot,086/126] x86: Add mrccache support for a 'variable' cache

Message ID 20190925145750.200592-87-sjg@chromium.org
State Superseded
Delegated to: Bin Meng
Headers show
Series x86: Add initial support for apollolake | expand

Commit Message

Simon Glass Sept. 25, 2019, 2:57 p.m. UTC
Add support for a second cache type, for apollolake.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

 arch/x86/include/asm/mrccache.h | 1 +
 1 file changed, 1 insertion(+)

Comments

Bin Meng Oct. 10, 2019, 7:40 a.m. UTC | #1
Hi Simon,

On Wed, Sep 25, 2019 at 10:59 PM Simon Glass <sjg@chromium.org> wrote:
>
> Add support for a second cache type, for apollolake.
>
> Signed-off-by: Simon Glass <sjg@chromium.org>
> ---
>
>  arch/x86/include/asm/mrccache.h | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/arch/x86/include/asm/mrccache.h b/arch/x86/include/asm/mrccache.h
> index b81e2b2fb6a..0917cf24704 100644
> --- a/arch/x86/include/asm/mrccache.h
> +++ b/arch/x86/include/asm/mrccache.h
> @@ -30,6 +30,7 @@ struct mrc_region {
>  /* Types of MRC data */
>  enum mrc_type_t {
>         MRC_TYPE_NORMAL,
> +       MRC_TYPE_VAR,
>

Please see my comments to previous patch. Either squash this patch to
previous one, or move the MRC_TYPE_VAR related changes to this patch.

>         MRC_TYPE_COUNT,
>  };
> --

Regards,
Bin
diff mbox series

Patch

diff --git a/arch/x86/include/asm/mrccache.h b/arch/x86/include/asm/mrccache.h
index b81e2b2fb6a..0917cf24704 100644
--- a/arch/x86/include/asm/mrccache.h
+++ b/arch/x86/include/asm/mrccache.h
@@ -30,6 +30,7 @@  struct mrc_region {
 /* Types of MRC data */
 enum mrc_type_t {
 	MRC_TYPE_NORMAL,
+	MRC_TYPE_VAR,
 
 	MRC_TYPE_COUNT,
 };