Merge branch 'next' of https://gitlab.denx.de/u-boot/custodians/u-boot-x86 into next
authorTom Rini <trini@konsulko.com>
Wed, 18 Dec 2019 12:20:19 +0000 (07:20 -0500)
committerTom Rini <trini@konsulko.com>
Wed, 18 Dec 2019 12:20:19 +0000 (07:20 -0500)
- Various x86 common codes updated for TPL/SPL
- I2C designware driver updated for PCI
- ICH SPI driver updated to support Apollo Lake
- Add Intel FSP2 base support
- Intel Apollo Lake platform specific drivers support
- Add a new board Google Chromebook Coral

1  2 
arch/sandbox/include/asm/test.h
drivers/i2c/i2c-uclass.c

Simple merge
index 44aace3a36a9cbba145de6d4b9ced18034ec8b13,88c13e76cb7f83d2012a83cac3ca4f31623fabf7..fe77e646193c57449d70cf5a5acb6e163c4ae8ff
@@@ -469,23 -465,7 +469,23 @@@ int i2c_get_chip_offset_len(struct udev
        return chip->offset_len;
  }
  
- #ifdef CONFIG_DM_GPIO
 +int i2c_set_chip_addr_offset_mask(struct udevice *dev, uint mask)
 +{
 +      struct dm_i2c_chip *chip = dev_get_parent_platdata(dev);
 +
 +      chip->chip_addr_offset_mask = mask;
 +
 +      return 0;
 +}
 +
 +uint i2c_get_chip_addr_offset_mask(struct udevice *dev)
 +{
 +      struct dm_i2c_chip *chip = dev_get_parent_platdata(dev);
 +
 +      return chip->chip_addr_offset_mask;
 +}
 +
+ #if CONFIG_IS_ENABLED(DM_GPIO)
  static void i2c_gpio_set_pin(struct gpio_desc *pin, int bit)
  {
        if (bit)