diff options
author | Naresh G Solanki <naresh.solanki@intel.com> | 2016-11-15 16:40:44 +0530 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-11-23 22:54:14 +0100 |
commit | 006c1e8778e98a769ed74f67af670e154af1a055 (patch) | |
tree | a7283bb716d1734e148e04ab286341630ae3c606 /src/soc | |
parent | cd7068703e48e0069ede21fcb8cb19e9713612c8 (diff) | |
download | coreboot-006c1e8778e98a769ed74f67af670e154af1a055.tar.xz |
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@intel.com>
Reviewed-on: https://review.coreboot.org/17433
Tested-by: build bot (Jenkins)
Reviewed-by: Duncan Laurie <dlaurie@chromium.org>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/intel/skylake/Makefile.inc | 1 | ||||
-rw-r--r-- | src/soc/intel/skylake/early_smbus.c | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/src/soc/intel/skylake/Makefile.inc b/src/soc/intel/skylake/Makefile.inc index f02f9561e2..56cfdee099 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 0000000000..6df971a35b --- /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); +} |