[coreboot-gerrit] Patch set updated for coreboot: soc/intel/skylake: Define early smbus functions

Naresh Solanki (naresh.solanki@intel.com) gerrit at coreboot.org
Mon Nov 21 13:47:02 CET 2016


Naresh Solanki (naresh.solanki at intel.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/17433

-gerrit

commit e81addb3ce6fabfb0490ffca111f1001710dbfc4
Author: Naresh G Solanki <naresh.solanki at intel.com>
Date:   Tue Nov 15 16:40:44 2016 +0530

    soc/intel/skylake: Define early smbus functions
    
    Define early smbus functions that can be used by mainboard to fetch spd.
    
    Change-Id: Id170b2b8e6fb3ebb147f37bf433a27d1162dc11c
    Signed-off-by: Naresh G Solanki <naresh.solanki at intel.com>
---
 src/soc/intel/skylake/Makefile.inc  |  1 +
 src/soc/intel/skylake/early_smbus.c | 30 ++++++++++++++++++++++++++++++
 2 files changed, 31 insertions(+)

diff --git a/src/soc/intel/skylake/Makefile.inc b/src/soc/intel/skylake/Makefile.inc
index f02f956..56cfdee 100644
--- a/src/soc/intel/skylake/Makefile.inc
+++ b/src/soc/intel/skylake/Makefile.inc
@@ -45,6 +45,7 @@ romstage-y += pei_data.c
 romstage-y += pmutil.c
 romstage-$(CONFIG_PLATFORM_USES_FSP2_0) += reset.c
 romstage-y += smbus_common.c
+romstage-y += early_smbus.c
 romstage-y += tsc_freq.c
 romstage-$(CONFIG_UART_DEBUG) += uart_debug.c
 
diff --git a/src/soc/intel/skylake/early_smbus.c b/src/soc/intel/skylake/early_smbus.c
new file mode 100644
index 0000000..6df971a
--- /dev/null
+++ b/src/soc/intel/skylake/early_smbus.c
@@ -0,0 +1,30 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2016 Intel Corporation.
+ *
+ * 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 <console/console.h>
+#include <device/smbus_def.h>
+#include <device/early_smbus.h>
+#include <soc/smbus.h>
+#include <soc/iomap.h>
+
+u8 smbus_read_byte(u32 smbus_dev, u8 addr, u8 offset)
+{
+	return do_smbus_read_byte(SMBUS_BASE_ADDRESS, addr, offset);
+}
+
+u8 smbus_write_byte(u32 smbus_dev, u8 addr, u8 offset, u8 value)
+{
+	return do_smbus_write_byte(SMBUS_BASE_ADDRESS, addr, offset, value);
+}



More information about the coreboot-gerrit mailing list