]> git.sur5r.net Git - u-boot/commitdiff
x86: Move mrccache.[c|h] to a common place
authorBin Meng <bmeng.cn@gmail.com>
Mon, 12 Oct 2015 04:37:36 +0000 (21:37 -0700)
committerSimon Glass <sjg@chromium.org>
Wed, 21 Oct 2015 13:46:26 +0000 (07:46 -0600)
mrccache implementation can be common for all boards. Move it
from ivybridge cpu directory to the common lib directory.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
arch/x86/cpu/ivybridge/Makefile
arch/x86/cpu/ivybridge/mrccache.c [deleted file]
arch/x86/cpu/ivybridge/sdram.c
arch/x86/include/asm/arch-ivybridge/mrccache.h [deleted file]
arch/x86/include/asm/mrccache.h [new file with mode: 0644]
arch/x86/lib/Makefile
arch/x86/lib/mrccache.c [new file with mode: 0644]
configs/chromebook_link_defconfig
configs/chromebox_panther_defconfig

index 3576b83266b5b19e598408218920a21eec5a0f13..0c7efaec7ceed9c9d43aeb40b4cb5c2470d5d646 100644 (file)
@@ -14,7 +14,6 @@ obj-y += lpc.o
 obj-y += me_status.o
 obj-y += model_206ax.o
 obj-y += microcode_intel.o
-obj-y += mrccache.o
 obj-y += northbridge.o
 obj-y += pch.o
 obj-y += pci.o
diff --git a/arch/x86/cpu/ivybridge/mrccache.c b/arch/x86/cpu/ivybridge/mrccache.c
deleted file mode 100644 (file)
index 9205494..0000000
+++ /dev/null
@@ -1,157 +0,0 @@
-/*
- * From Coreboot src/southbridge/intel/bd82x6x/mrccache.c
- *
- * Copyright (C) 2014 Google Inc.
- *
- * SPDX-License-Identifier:    GPL-2.0
- */
-
-#include <common.h>
-#include <errno.h>
-#include <fdtdec.h>
-#include <net.h>
-#include <spi.h>
-#include <spi_flash.h>
-#include <asm/arch/mrccache.h>
-#include <asm/arch/sandybridge.h>
-
-static struct mrc_data_container *next_mrc_block(
-       struct mrc_data_container *mrc_cache)
-{
-       /* MRC data blocks are aligned within the region */
-       u32 mrc_size = sizeof(*mrc_cache) + mrc_cache->data_size;
-       if (mrc_size & (MRC_DATA_ALIGN - 1UL)) {
-               mrc_size &= ~(MRC_DATA_ALIGN - 1UL);
-               mrc_size += MRC_DATA_ALIGN;
-       }
-
-       u8 *region_ptr = (u8 *)mrc_cache;
-       region_ptr += mrc_size;
-       return (struct mrc_data_container *)region_ptr;
-}
-
-static int is_mrc_cache(struct mrc_data_container *cache)
-{
-       return cache && (cache->signature == MRC_DATA_SIGNATURE);
-}
-
-/*
- * Find the largest index block in the MRC cache. Return NULL if none is
- * found.
- */
-struct mrc_data_container *mrccache_find_current(struct fmap_entry *entry)
-{
-       struct mrc_data_container *cache, *next;
-       ulong base_addr, end_addr;
-       uint id;
-
-       base_addr = (1ULL << 32) - CONFIG_ROM_SIZE + entry->offset;
-       end_addr = base_addr + entry->length;
-       cache = NULL;
-
-       /* Search for the last filled entry in the region */
-       for (id = 0, next = (struct mrc_data_container *)base_addr;
-            is_mrc_cache(next);
-            id++) {
-               cache = next;
-               next = next_mrc_block(next);
-               if ((ulong)next >= end_addr)
-                       break;
-       }
-
-       if (id-- == 0) {
-               debug("%s: No valid MRC cache found.\n", __func__);
-               return NULL;
-       }
-
-       /* Verify checksum */
-       if (cache->checksum != compute_ip_checksum(cache->data,
-                                                  cache->data_size)) {
-               printf("%s: MRC cache checksum mismatch\n", __func__);
-               return NULL;
-       }
-
-       debug("%s: picked entry %u from cache block\n", __func__, id);
-
-       return cache;
-}
-
-/**
- * find_next_mrc_cache() - get next cache entry
- *
- * @entry:     MRC cache flash area
- * @cache:     Entry to start from
- *
- * @return next cache entry if found, NULL if we got to the end
- */
-static struct mrc_data_container *find_next_mrc_cache(struct fmap_entry *entry,
-               struct mrc_data_container *cache)
-{
-       ulong base_addr, end_addr;
-
-       base_addr = (1ULL << 32) - CONFIG_ROM_SIZE + entry->offset;
-       end_addr = base_addr + entry->length;
-
-       cache = next_mrc_block(cache);
-       if ((ulong)cache >= end_addr) {
-               /* Crossed the boundary */
-               cache = NULL;
-               debug("%s: no available entries found\n", __func__);
-       } else {
-               debug("%s: picked next entry from cache block at %p\n",
-                     __func__, cache);
-       }
-
-       return cache;
-}
-
-int mrccache_update(struct udevice *sf, struct fmap_entry *entry,
-                   struct mrc_data_container *cur)
-{
-       struct mrc_data_container *cache;
-       ulong offset;
-       ulong base_addr;
-       int ret;
-
-       /* Find the last used block */
-       base_addr = (1ULL << 32) - CONFIG_ROM_SIZE + entry->offset;
-       debug("Updating MRC cache data\n");
-       cache = mrccache_find_current(entry);
-       if (cache && (cache->data_size == cur->data_size) &&
-           (!memcmp(cache, cur, cache->data_size + sizeof(*cur)))) {
-               debug("MRC data in flash is up to date. No update\n");
-               return -EEXIST;
-       }
-
-       /* Move to the next block, which will be the first unused block */
-       if (cache)
-               cache = find_next_mrc_cache(entry, cache);
-
-       /*
-        * If we have got to the end, erase the entire mrc-cache area and start
-        * again at block 0.
-        */
-       if (!cache) {
-               debug("Erasing the MRC cache region of %x bytes at %x\n",
-                     entry->length, entry->offset);
-
-               ret = spi_flash_erase_dm(sf, entry->offset, entry->length);
-               if (ret) {
-                       debug("Failed to erase flash region\n");
-                       return ret;
-               }
-               cache = (struct mrc_data_container *)base_addr;
-       }
-
-       /* Write the data out */
-       offset = (ulong)cache - base_addr + entry->offset;
-       debug("Write MRC cache update to flash at %lx\n", offset);
-       ret = spi_flash_write_dm(sf, offset, cur->data_size + sizeof(*cur),
-                                cur);
-       if (ret) {
-               debug("Failed to write to SPI flash\n");
-               return ret;
-       }
-
-       return 0;
-}
index 7f3b13d3571f420aee76006c4277445d878d1df3..10fbe5fb36533dd797bc8a062e4b7e65da30012b 100644 (file)
 #include <asm/processor.h>
 #include <asm/gpio.h>
 #include <asm/global_data.h>
+#include <asm/mrccache.h>
 #include <asm/mtrr.h>
 #include <asm/pci.h>
 #include <asm/arch/me.h>
-#include <asm/arch/mrccache.h>
 #include <asm/arch/pei_data.h>
 #include <asm/arch/pch.h>
 #include <asm/post.h>
diff --git a/arch/x86/include/asm/arch-ivybridge/mrccache.h b/arch/x86/include/asm/arch-ivybridge/mrccache.h
deleted file mode 100644 (file)
index 1d50ebb..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Copyright (c) 2014 Google, Inc
- *
- * SPDX-License-Identifier:    GPL-2.0+
- */
-
-#ifndef _ASM_ARCH_MRCCACHE_H
-#define _ASM_ARCH_MRCCACHE_H
-
-#define MRC_DATA_ALIGN         0x1000
-#define MRC_DATA_SIGNATURE     (('M' << 0) | ('R' << 8) | ('C' << 16) | \
-                                       ('D'<<24))
-
-__packed struct mrc_data_container {
-       u32     signature;      /* "MRCD" */
-       u32     data_size;      /* Size of the 'data' field */
-       u32     checksum;       /* IP style checksum */
-       u32     reserved;       /* For header alignment */
-       u8      data[0];        /* Variable size, platform/run time dependent */
-};
-
-struct fmap_entry;
-struct udevice;
-
-/**
- * mrccache_find_current() - find the latest MRC cache record
- *
- * This searches the MRC cache region looking for the latest record to use
- * for setting up SDRAM
- *
- * @entry:     Information about the position and size of the MRC cache
- * @return pointer to latest record, or NULL if none
- */
-struct mrc_data_container *mrccache_find_current(struct fmap_entry *entry);
-
-/**
- * mrccache_update() - update the MRC cache with a new record
- *
- * This writes a new record to the end of the MRC cache. If the new record is
- * the same as the latest record then the write is skipped
- *
- * @sf:                SPI flash to write to
- * @entry:     Position and size of MRC cache in SPI flash
- * @cur:       Record to write
- * @return 0 if updated, -EEXIST if the record is the same as the latest
- * record, other error if SPI write failed
- */
-int mrccache_update(struct udevice *sf, struct fmap_entry *entry,
-                   struct mrc_data_container *cur);
-
-#endif
diff --git a/arch/x86/include/asm/mrccache.h b/arch/x86/include/asm/mrccache.h
new file mode 100644 (file)
index 0000000..1d50ebb
--- /dev/null
@@ -0,0 +1,51 @@
+/*
+ * Copyright (c) 2014 Google, Inc
+ *
+ * SPDX-License-Identifier:    GPL-2.0+
+ */
+
+#ifndef _ASM_ARCH_MRCCACHE_H
+#define _ASM_ARCH_MRCCACHE_H
+
+#define MRC_DATA_ALIGN         0x1000
+#define MRC_DATA_SIGNATURE     (('M' << 0) | ('R' << 8) | ('C' << 16) | \
+                                       ('D'<<24))
+
+__packed struct mrc_data_container {
+       u32     signature;      /* "MRCD" */
+       u32     data_size;      /* Size of the 'data' field */
+       u32     checksum;       /* IP style checksum */
+       u32     reserved;       /* For header alignment */
+       u8      data[0];        /* Variable size, platform/run time dependent */
+};
+
+struct fmap_entry;
+struct udevice;
+
+/**
+ * mrccache_find_current() - find the latest MRC cache record
+ *
+ * This searches the MRC cache region looking for the latest record to use
+ * for setting up SDRAM
+ *
+ * @entry:     Information about the position and size of the MRC cache
+ * @return pointer to latest record, or NULL if none
+ */
+struct mrc_data_container *mrccache_find_current(struct fmap_entry *entry);
+
+/**
+ * mrccache_update() - update the MRC cache with a new record
+ *
+ * This writes a new record to the end of the MRC cache. If the new record is
+ * the same as the latest record then the write is skipped
+ *
+ * @sf:                SPI flash to write to
+ * @entry:     Position and size of MRC cache in SPI flash
+ * @cur:       Record to write
+ * @return 0 if updated, -EEXIST if the record is the same as the latest
+ * record, other error if SPI write failed
+ */
+int mrccache_update(struct udevice *sf, struct fmap_entry *entry,
+                   struct mrc_data_container *cur);
+
+#endif
index fa9594439901226d5c571c3deabb1f6512a30aa1..2f82a21aff1079de8fbf9c136df8961f9da90919 100644 (file)
@@ -17,6 +17,7 @@ obj-y += init_helpers.o
 obj-y  += interrupts.o
 obj-y  += lpc-uclass.o
 obj-y  += mpspec.o
+obj-$(CONFIG_ENABLE_MRC_CACHE) += mrccache.o
 obj-y += cmd_mtrr.o
 obj-$(CONFIG_SYS_PCAT_INTERRUPTS) += pcat_interrupts.o
 obj-$(CONFIG_SYS_PCAT_TIMER) += pcat_timer.o
diff --git a/arch/x86/lib/mrccache.c b/arch/x86/lib/mrccache.c
new file mode 100644 (file)
index 0000000..ec0d2cb
--- /dev/null
@@ -0,0 +1,156 @@
+/*
+ * From Coreboot src/southbridge/intel/bd82x6x/mrccache.c
+ *
+ * Copyright (C) 2014 Google Inc.
+ *
+ * SPDX-License-Identifier:    GPL-2.0
+ */
+
+#include <common.h>
+#include <errno.h>
+#include <fdtdec.h>
+#include <net.h>
+#include <spi.h>
+#include <spi_flash.h>
+#include <asm/mrccache.h>
+
+static struct mrc_data_container *next_mrc_block(
+       struct mrc_data_container *mrc_cache)
+{
+       /* MRC data blocks are aligned within the region */
+       u32 mrc_size = sizeof(*mrc_cache) + mrc_cache->data_size;
+       if (mrc_size & (MRC_DATA_ALIGN - 1UL)) {
+               mrc_size &= ~(MRC_DATA_ALIGN - 1UL);
+               mrc_size += MRC_DATA_ALIGN;
+       }
+
+       u8 *region_ptr = (u8 *)mrc_cache;
+       region_ptr += mrc_size;
+       return (struct mrc_data_container *)region_ptr;
+}
+
+static int is_mrc_cache(struct mrc_data_container *cache)
+{
+       return cache && (cache->signature == MRC_DATA_SIGNATURE);
+}
+
+/*
+ * Find the largest index block in the MRC cache. Return NULL if none is
+ * found.
+ */
+struct mrc_data_container *mrccache_find_current(struct fmap_entry *entry)
+{
+       struct mrc_data_container *cache, *next;
+       ulong base_addr, end_addr;
+       uint id;
+
+       base_addr = (1ULL << 32) - CONFIG_ROM_SIZE + entry->offset;
+       end_addr = base_addr + entry->length;
+       cache = NULL;
+
+       /* Search for the last filled entry in the region */
+       for (id = 0, next = (struct mrc_data_container *)base_addr;
+            is_mrc_cache(next);
+            id++) {
+               cache = next;
+               next = next_mrc_block(next);
+               if ((ulong)next >= end_addr)
+                       break;
+       }
+
+       if (id-- == 0) {
+               debug("%s: No valid MRC cache found.\n", __func__);
+               return NULL;
+       }
+
+       /* Verify checksum */
+       if (cache->checksum != compute_ip_checksum(cache->data,
+                                                  cache->data_size)) {
+               printf("%s: MRC cache checksum mismatch\n", __func__);
+               return NULL;
+       }
+
+       debug("%s: picked entry %u from cache block\n", __func__, id);
+
+       return cache;
+}
+
+/**
+ * find_next_mrc_cache() - get next cache entry
+ *
+ * @entry:     MRC cache flash area
+ * @cache:     Entry to start from
+ *
+ * @return next cache entry if found, NULL if we got to the end
+ */
+static struct mrc_data_container *find_next_mrc_cache(struct fmap_entry *entry,
+               struct mrc_data_container *cache)
+{
+       ulong base_addr, end_addr;
+
+       base_addr = (1ULL << 32) - CONFIG_ROM_SIZE + entry->offset;
+       end_addr = base_addr + entry->length;
+
+       cache = next_mrc_block(cache);
+       if ((ulong)cache >= end_addr) {
+               /* Crossed the boundary */
+               cache = NULL;
+               debug("%s: no available entries found\n", __func__);
+       } else {
+               debug("%s: picked next entry from cache block at %p\n",
+                     __func__, cache);
+       }
+
+       return cache;
+}
+
+int mrccache_update(struct udevice *sf, struct fmap_entry *entry,
+                   struct mrc_data_container *cur)
+{
+       struct mrc_data_container *cache;
+       ulong offset;
+       ulong base_addr;
+       int ret;
+
+       /* Find the last used block */
+       base_addr = (1ULL << 32) - CONFIG_ROM_SIZE + entry->offset;
+       debug("Updating MRC cache data\n");
+       cache = mrccache_find_current(entry);
+       if (cache && (cache->data_size == cur->data_size) &&
+           (!memcmp(cache, cur, cache->data_size + sizeof(*cur)))) {
+               debug("MRC data in flash is up to date. No update\n");
+               return -EEXIST;
+       }
+
+       /* Move to the next block, which will be the first unused block */
+       if (cache)
+               cache = find_next_mrc_cache(entry, cache);
+
+       /*
+        * If we have got to the end, erase the entire mrc-cache area and start
+        * again at block 0.
+        */
+       if (!cache) {
+               debug("Erasing the MRC cache region of %x bytes at %x\n",
+                     entry->length, entry->offset);
+
+               ret = spi_flash_erase_dm(sf, entry->offset, entry->length);
+               if (ret) {
+                       debug("Failed to erase flash region\n");
+                       return ret;
+               }
+               cache = (struct mrc_data_container *)base_addr;
+       }
+
+       /* Write the data out */
+       offset = (ulong)cache - base_addr + entry->offset;
+       debug("Write MRC cache update to flash at %lx\n", offset);
+       ret = spi_flash_write_dm(sf, offset, cur->data_size + sizeof(*cur),
+                                cur);
+       if (ret) {
+               debug("Failed to write to SPI flash\n");
+               return ret;
+       }
+
+       return 0;
+}
index 21e85f3c666f1a6beaddb6ef04a94374fbdbc604..fbecf8bea9b5c62387d45379994a518e67335e09 100644 (file)
@@ -4,6 +4,7 @@ CONFIG_VENDOR_GOOGLE=y
 CONFIG_DEFAULT_DEVICE_TREE="chromebook_link"
 CONFIG_TARGET_CHROMEBOOK_LINK=y
 CONFIG_HAVE_MRC=y
+CONFIG_ENABLE_MRC_CACHE=y
 CONFIG_HAVE_VGA_BIOS=y
 # CONFIG_CMD_IMLS is not set
 # CONFIG_CMD_FLASH is not set
index 70a22a907b49032eeee6ea2df2af87a3cb5fb9f7..663aab0b1aaa4d4f848bfa3c5e2955352d127fd7 100644 (file)
@@ -3,6 +3,7 @@ CONFIG_VENDOR_GOOGLE=y
 CONFIG_DEFAULT_DEVICE_TREE="chromebox_panther"
 CONFIG_TARGET_CHROMEBOX_PANTHER=y
 CONFIG_HAVE_MRC=y
+CONFIG_ENABLE_MRC_CACHE=y
 CONFIG_HAVE_VGA_BIOS=y
 # CONFIG_CMD_IMLS is not set
 # CONFIG_CMD_FLASH is not set