diff options
author | Nico Huber <nico.huber@secunet.com> | 2017-08-01 14:02:40 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-08-18 15:33:29 +0000 |
commit | 0f2dd1eff9930e30dddd9aabceb5d85ee3b4e980 (patch) | |
tree | 50de642731203f720012db6bd2829d8dada2be40 /src/mainboard/google/smaug | |
parent | 457fba6be5c2b31f6fc50a5e6feabf73a2663330 (diff) | |
download | coreboot-0f2dd1eff9930e30dddd9aabceb5d85ee3b4e980.tar.xz |
include/device: Split i2c.h into three
Split `i2c.h` into three pieces to ease reuse of the generic defi-
nitions. No code is changed.
* `i2c.h` - keeps the generic definitions
* `i2c_simple.h` - holds the current, limited to one controller driver
per board, devicetree independent I2C interface
* `i2c_bus.h` - will become the devicetree compatible interface for
native I2C (e.g. non-SMBus) controllers
Change-Id: I382d45c70f9314588663e1284f264f877469c74d
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: https://review.coreboot.org/20845
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src/mainboard/google/smaug')
-rw-r--r-- | src/mainboard/google/smaug/bootblock.c | 2 | ||||
-rw-r--r-- | src/mainboard/google/smaug/mainboard.c | 2 | ||||
-rw-r--r-- | src/mainboard/google/smaug/pmic.c | 2 | ||||
-rw-r--r-- | src/mainboard/google/smaug/romstage.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/google/smaug/bootblock.c b/src/mainboard/google/smaug/bootblock.c index 783705dffe..fd5d293b6c 100644 --- a/src/mainboard/google/smaug/bootblock.c +++ b/src/mainboard/google/smaug/bootblock.c @@ -16,7 +16,7 @@ #include <arch/io.h> #include <bootblock_common.h> #include <console/console.h> -#include <device/i2c.h> +#include <device/i2c_simple.h> #include <soc/addressmap.h> #include <soc/clk_rst.h> #include <soc/clock.h> diff --git a/src/mainboard/google/smaug/mainboard.c b/src/mainboard/google/smaug/mainboard.c index 8c445d8365..c783ca4727 100644 --- a/src/mainboard/google/smaug/mainboard.c +++ b/src/mainboard/google/smaug/mainboard.c @@ -20,7 +20,7 @@ #include <boot/coreboot_tables.h> #include <delay.h> #include <device/device.h> -#include <device/i2c.h> +#include <device/i2c_simple.h> #include <soc/addressmap.h> #include <soc/clk_rst.h> #include <soc/clock.h> diff --git a/src/mainboard/google/smaug/pmic.c b/src/mainboard/google/smaug/pmic.c index 25e870a123..77de277afa 100644 --- a/src/mainboard/google/smaug/pmic.c +++ b/src/mainboard/google/smaug/pmic.c @@ -17,7 +17,7 @@ #include <boardid.h> #include <console/console.h> #include <delay.h> -#include <device/i2c.h> +#include <device/i2c_simple.h> #include <stdint.h> #include <stdlib.h> diff --git a/src/mainboard/google/smaug/romstage.c b/src/mainboard/google/smaug/romstage.c index 213fad7437..fd7c07f84d 100644 --- a/src/mainboard/google/smaug/romstage.c +++ b/src/mainboard/google/smaug/romstage.c @@ -15,7 +15,7 @@ #include <delay.h> #include <soc/addressmap.h> -#include <device/i2c.h> +#include <device/i2c_simple.h> #include <soc/clock.h> #include <soc/funitcfg.h> #include <soc/nvidia/tegra/i2c.h> |