Kyösti Mälkki has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/38160 )
Change subject: drivers/i2c/i2cmux2: Drop unused i2c multiplex ......................................................................
drivers/i2c/i2cmux2: Drop unused i2c multiplex
There is no documentation what hardware this was compatible with.
Change-Id: I9bfada83388373962929f35794bca56132ee3d9e Signed-off-by: Kyösti Mälkki kyosti.malkki@gmail.com --- D src/drivers/i2c/i2cmux2/Kconfig D src/drivers/i2c/i2cmux2/Makefile.inc D src/drivers/i2c/i2cmux2/i2cmux2.c 3 files changed, 0 insertions(+), 47 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/60/38160/1
diff --git a/src/drivers/i2c/i2cmux2/Kconfig b/src/drivers/i2c/i2cmux2/Kconfig deleted file mode 100644 index 0213e55..0000000 --- a/src/drivers/i2c/i2cmux2/Kconfig +++ /dev/null @@ -1,2 +0,0 @@ -config DRIVERS_I2C_I2CMUX2 - bool diff --git a/src/drivers/i2c/i2cmux2/Makefile.inc b/src/drivers/i2c/i2cmux2/Makefile.inc deleted file mode 100644 index 34e3613..0000000 --- a/src/drivers/i2c/i2cmux2/Makefile.inc +++ /dev/null @@ -1 +0,0 @@ -ramstage-$(CONFIG_DRIVERS_I2C_I2CMUX2) += i2cmux2.c diff --git a/src/drivers/i2c/i2cmux2/i2cmux2.c b/src/drivers/i2c/i2cmux2/i2cmux2.c deleted file mode 100644 index c3440af..0000000 --- a/src/drivers/i2c/i2cmux2/i2cmux2.c +++ /dev/null @@ -1,44 +0,0 @@ -/* - * This file is part of the coreboot project. - * - * 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 <device/device.h> -#include <device/smbus.h> - -static void i2cmux2_set_link(struct device *dev, unsigned int link) -{ - if (dev->enabled && dev->path.type == DEVICE_PATH_I2C) { - if (ops_smbus_bus(get_pbus_smbus(dev))) { - smbus_send_byte(dev, link); // output value - } - } -} - -static struct device_operations i2cmux2_operations = { - .read_resources = DEVICE_NOOP, - .set_resources = DEVICE_NOOP, - .enable_resources = DEVICE_NOOP, - .init = DEVICE_NOOP, - .scan_bus = scan_smbus, - .set_link = i2cmux2_set_link, -}; - -static void enable_dev(struct device *dev) -{ - if (dev->link_list != NULL) - dev->ops = &i2cmux2_operations; -} - -struct chip_operations drivers_i2c_i2cmux2_ops = { - CHIP_NAME("i2cmux2") - .enable_dev = enable_dev, -};
Nico Huber has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/38160 )
Change subject: drivers/i2c/i2cmux2: Drop unused i2c multiplex ......................................................................
Patch Set 1: Code-Review+2
Kyösti Mälkki has submitted this change. ( https://review.coreboot.org/c/coreboot/+/38160 )
Change subject: drivers/i2c/i2cmux2: Drop unused i2c multiplex ......................................................................
drivers/i2c/i2cmux2: Drop unused i2c multiplex
There is no documentation what hardware this was compatible with.
Change-Id: I9bfada83388373962929f35794bca56132ee3d9e Signed-off-by: Kyösti Mälkki kyosti.malkki@gmail.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/38160 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Nico Huber nico.h@gmx.de --- D src/drivers/i2c/i2cmux2/Kconfig D src/drivers/i2c/i2cmux2/Makefile.inc D src/drivers/i2c/i2cmux2/i2cmux2.c 3 files changed, 0 insertions(+), 47 deletions(-)
Approvals: build bot (Jenkins): Verified Nico Huber: Looks good to me, approved
diff --git a/src/drivers/i2c/i2cmux2/Kconfig b/src/drivers/i2c/i2cmux2/Kconfig deleted file mode 100644 index 0213e55..0000000 --- a/src/drivers/i2c/i2cmux2/Kconfig +++ /dev/null @@ -1,2 +0,0 @@ -config DRIVERS_I2C_I2CMUX2 - bool diff --git a/src/drivers/i2c/i2cmux2/Makefile.inc b/src/drivers/i2c/i2cmux2/Makefile.inc deleted file mode 100644 index 34e3613..0000000 --- a/src/drivers/i2c/i2cmux2/Makefile.inc +++ /dev/null @@ -1 +0,0 @@ -ramstage-$(CONFIG_DRIVERS_I2C_I2CMUX2) += i2cmux2.c diff --git a/src/drivers/i2c/i2cmux2/i2cmux2.c b/src/drivers/i2c/i2cmux2/i2cmux2.c deleted file mode 100644 index c3440af..0000000 --- a/src/drivers/i2c/i2cmux2/i2cmux2.c +++ /dev/null @@ -1,44 +0,0 @@ -/* - * This file is part of the coreboot project. - * - * 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 <device/device.h> -#include <device/smbus.h> - -static void i2cmux2_set_link(struct device *dev, unsigned int link) -{ - if (dev->enabled && dev->path.type == DEVICE_PATH_I2C) { - if (ops_smbus_bus(get_pbus_smbus(dev))) { - smbus_send_byte(dev, link); // output value - } - } -} - -static struct device_operations i2cmux2_operations = { - .read_resources = DEVICE_NOOP, - .set_resources = DEVICE_NOOP, - .enable_resources = DEVICE_NOOP, - .init = DEVICE_NOOP, - .scan_bus = scan_smbus, - .set_link = i2cmux2_set_link, -}; - -static void enable_dev(struct device *dev) -{ - if (dev->link_list != NULL) - dev->ops = &i2cmux2_operations; -} - -struct chip_operations drivers_i2c_i2cmux2_ops = { - CHIP_NAME("i2cmux2") - .enable_dev = enable_dev, -};