Add i2c initialization hook and set usb5744 platform
data with function having required i2c initialization sequence.

Apart from the USB command attach, prevent the hub from suspend.
when the “USB Attach with SMBUS (0xAA56)” command is issued to the hub,
the hub is getting enumerated and then it puts in a suspend mode.
This causes the hub to NAK any SMBUS access made by the SMBUS Master
during this period and not able to see the hub's slave address while
running the "i2c probe" command.

Prevent the MCU from the putting the HUB in suspend mode through register
write. The BYPASS_UDC_SUSPEND bit (Bit 3) of the RuntimeFlags2 register at
address 0x411D controls this aspect of the hub. The BYPASS_UDC_SUSPEND
bit in register 0x411Dh must be set to ensure that the MCU is always
enabled and ready to respond to SMBus runtime commands. This register
needs to be written before the USB attach command is issued.
The byte sequence is as follows:
Slave addr: 0x2d           00 00 05 00 01 41 1D 08
Slave addr: 0x2d           99 37 00
Slave addr: 0x2d           AA 56 00

Signed-off-by: Venkatesh Yadav Abbarapu <venkatesh.abbar...@amd.com>
---
 common/usb_onboard_hub.c | 99 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 99 insertions(+)

diff --git a/common/usb_onboard_hub.c b/common/usb_onboard_hub.c
index 5caebf8574..94ea01a7b0 100644
--- a/common/usb_onboard_hub.c
+++ b/common/usb_onboard_hub.c
@@ -10,9 +10,15 @@
 #include <asm/gpio.h>
 #include <dm.h>
 #include <dm/device_compat.h>
+#include <i2c.h>
 #include <linux/delay.h>
 #include <power/regulator.h>
 
+#define USB5744_COMMAND_ATTACH        0x0056
+#define USB5744_COMMAND_ATTACH_LSB    0xAA
+#define USB5744_CONFIG_REG_ACCESS     0x0037
+#define USB5744_CONFIG_REG_ACCESS_LSB 0x99
+
 struct onboard_hub {
        struct udevice *vdd;
        struct gpio_desc *reset_gpio;
@@ -21,8 +27,89 @@ struct onboard_hub {
 struct onboard_hub_data {
        unsigned long reset_us;
        unsigned long power_on_delay_us;
+       int (*init)(struct udevice *dev);
 };
 
+static int usb5744_i2c_init(struct udevice *dev)
+{
+       /*
+        *  Prevent the MCU from the putting the HUB in suspend mode through 
register write.
+        *  The BYPASS_UDC_SUSPEND bit (Bit 3) of the RuntimeFlags2 register at 
address
+        *  0x411D controls this aspect of the hub.
+        *  Format to write to hub registers via SMBus- 2D 00 00 05 00 01 41 1D 
08
+        *  Byte 0: Address of slave 2D
+        *  Byte 1: Memory address 00
+        *  Byte 2: Memory address 00
+        *  Byte 3: Number of bytes to write to memory
+        *  Byte 4: Write configuration register (00)
+        *  Byte 5: Write the number of data bytes (01- 1 data byte)
+        *  Byte 6: LSB of register address 0x41
+        *  Byte 7: MSB of register address 0x1D
+        *  Byte 8: value to be written to the register
+        */
+       u8 data_buf[8] = {0x0, 0x5, 0x0, 0x1, 0x41, 0x1D, 0x08};
+       u8 config_reg_access_buf = USB5744_CONFIG_REG_ACCESS;
+       struct udevice *i2c_bus = NULL, *i2c_dev;
+       struct ofnode_phandle_args phandle;
+       u8 buf = USB5744_COMMAND_ATTACH;
+       struct dm_i2c_chip *i2c_chip;
+       int ret, slave_addr;
+
+       ret = dev_read_phandle_with_args(dev, "i2c-bus", NULL, 0, 0, &phandle);
+       if (ret) {
+               dev_err(dev, "i2c-bus not specified\n");
+               return ret;
+       }
+
+       ret = device_get_global_by_ofnode(ofnode_get_parent(phandle.node), 
&i2c_bus);
+       if (ret) {
+               dev_err(dev, "Failed to get i2c node, err: %d\n", ret);
+               return ret;
+       }
+
+       ret = ofnode_read_u32(phandle.node, "reg", &slave_addr);
+       if (ret)
+               return ret;
+
+       ret = i2c_get_chip(i2c_bus, slave_addr, 1, &i2c_dev);
+       if (ret) {
+               dev_err(dev, "%s: can't find i2c chip device for addr 0x%x\n", 
__func__,
+                       slave_addr);
+               return ret;
+       }
+
+       i2c_chip = dev_get_parent_plat(i2c_dev);
+       if (!i2c_chip) {
+               dev_err(dev, "parent platform data not found\n");
+               return -EINVAL;
+       }
+
+       i2c_chip->flags &= ~DM_I2C_CHIP_WR_ADDRESS;
+       /* SMBus write command */
+       ret = dm_i2c_write(i2c_dev, 0, (uint8_t *)&data_buf, 8);
+       if (ret) {
+               dev_err(dev, "data_buf i2c_write failed, err:%d\n", ret);
+               return ret;
+       }
+
+       /* Configuration register access command */
+       ret = dm_i2c_write(i2c_dev, USB5744_CONFIG_REG_ACCESS_LSB,
+                          &config_reg_access_buf, 2);
+       if (ret) {
+               dev_err(dev, "config_reg_access i2c_write failed, err: %d\n", 
ret);
+               return ret;
+       }
+
+       /* USB Attach with SMBus */
+       ret = dm_i2c_write(i2c_dev, USB5744_COMMAND_ATTACH_LSB, &buf, 2);
+       if (ret) {
+               dev_err(dev, "usb_attach i2c_write failed, err: %d\n", ret);
+               return ret;
+       }
+
+       return 0;
+}
+
 static int usb_onboard_hub_probe(struct udevice *dev)
 {
        struct onboard_hub_data *data =
@@ -61,7 +148,18 @@ static int usb_onboard_hub_probe(struct udevice *dev)
                udelay(data->power_on_delay_us);
        }
 
+       if (data->init) {
+               ret = data->init(dev);
+               if (ret) {
+                       dev_err(dev, "onboard i2c init failed: %d\n", ret);
+                       goto err;
+               }
+       }
+
        return 0;
+err:
+       dm_gpio_set_value(hub->reset_gpio, 0);
+       return ret;
 }
 
 static int usb_onboard_hub_remove(struct udevice *dev)
@@ -85,6 +183,7 @@ static int usb_onboard_hub_remove(struct udevice *dev)
 static const struct onboard_hub_data usb5744_data = {
        .reset_us = 10000,
        .power_on_delay_us = 10000,
+       .init = usb5744_i2c_init,
 };
 
 static const struct udevice_id usb_onboard_hub_ids[] = {
-- 
2.17.1

Reply via email to