diff options
Diffstat (limited to 'src/soc/intel/cannonlake/i2c.c')
-rw-r--r-- | src/soc/intel/cannonlake/i2c.c | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/src/soc/intel/cannonlake/i2c.c b/src/soc/intel/cannonlake/i2c.c index b53d5a0c1c..6983be1c30 100644 --- a/src/soc/intel/cannonlake/i2c.c +++ b/src/soc/intel/cannonlake/i2c.c @@ -2,7 +2,7 @@ * This file is part of the coreboot project. * * Copyright 2016 Google Inc. - * Copyright (C) 2017 Intel Corporation. + * Copyright (C) 2017-2018 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 @@ -14,27 +14,9 @@ * GNU General Public License for more details. */ -#include <console/console.h> #include <device/device.h> -#include <device/pci_def.h> #include <drivers/i2c/designware/dw_i2c.h> -#include <intelblocks/chip.h> -#include <soc/iomap.h> #include <soc/pci_devs.h> -#include "chip.h" - -const struct dw_i2c_bus_config *dw_i2c_get_soc_cfg(unsigned int bus) -{ - const struct soc_intel_common_config *common_config; - common_config = chip_get_common_soc_structure(); - - return &common_config->i2c[bus]; -} - -uintptr_t dw_i2c_get_soc_early_base(unsigned int bus) -{ - return EARLY_I2C_BASE(bus); -} int dw_i2c_soc_devfn_to_bus(unsigned int devfn) { |