aboutsummaryrefslogtreecommitdiff
path: root/src/soc/amd/stoneyridge/dimm_spd.c
diff options
context:
space:
mode:
authorMarc Jones <marcj303@gmail.com>2017-11-16 18:47:36 -0700
committerMarc Jones <marc@marcjonesconsulting.com>2017-11-29 23:58:06 +0000
commita9f72776bd5af067abf8bfc4bcdd44ec805c9e76 (patch)
treefbd68137175f80b5c183494e5ba80e9084542617 /src/soc/amd/stoneyridge/dimm_spd.c
parentfede56bf811972cd16e5b36c39c819b88fa74941 (diff)
soc/amd/stoneyridge: Add mainboard call for SPD values
Add a mainboard function call to write the AGESA SPD buffer. Removes the unneccesary dimm_spd.c file. BUG=b:67845441 Change-Id: Id42622008b49b4559e648a7fa1bfd9f26e1f56a4 Signed-off-by: Marc Jones <marcj303@gmail.com> Reviewed-on: https://review.coreboot.org/22485 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src/soc/amd/stoneyridge/dimm_spd.c')
-rw-r--r--src/soc/amd/stoneyridge/dimm_spd.c48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/soc/amd/stoneyridge/dimm_spd.c b/src/soc/amd/stoneyridge/dimm_spd.c
deleted file mode 100644
index d9f6355da0..0000000000
--- a/src/soc/amd/stoneyridge/dimm_spd.c
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * This file is part of the coreboot project.
- *
- * Copyright (C) 2015 - 2017 Advanced Micro Devices, Inc.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- */
-
-#include <agesawrapper.h>
-#include <device/pci_def.h>
-#include <device/device.h>
-#include <soc/pci_devs.h>
-#include <stdlib.h>
-#include "chip.h"
-#include <amdblocks/dimm_spd.h>
-
-AGESA_STATUS AmdMemoryReadSPD(UINT32 unused1, UINTN unused2,
- AGESA_READ_SPD_PARAMS *info)
-{
- uint8_t spd_address;
- DEVTREE_CONST struct device *dev = dev_find_slot(0, DCT_DEVFN);
- DEVTREE_CONST struct soc_amd_stoneyridge_config *conf = dev->chip_info;
-
- if ((dev == 0) || (conf == 0))
- return AGESA_ERROR;
- if (info->SocketId >= ARRAY_SIZE(conf->spd_addr_lookup))
- return AGESA_ERROR;
- if (info->MemChannelId >= ARRAY_SIZE(conf->spd_addr_lookup[0]))
- return AGESA_ERROR;
- if (info->DimmId >= ARRAY_SIZE(conf->spd_addr_lookup[0][0]))
- return AGESA_ERROR;
- spd_address = conf->spd_addr_lookup
- [info->SocketId][info->MemChannelId][info->DimmId];
- if (spd_address == 0)
- return AGESA_ERROR;
- int err = sb_read_spd(spd_address, (void *)info->Buffer,
- CONFIG_DIMM_SPD_SIZE);
- if (err)
- return AGESA_ERROR;
- return AGESA_SUCCESS;
-}