]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
usb: misc: onboard_dev: extend platform data to add power on delay field
authorRadhey Shyam Pandey <radhey.shyam.pandey@amd.com>
Sat, 7 Sep 2024 18:03:15 +0000 (23:33 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 11 Sep 2024 13:36:25 +0000 (15:36 +0200)
Introduce dedicated field 'power_on_delay_us' in onboard platform data
and update its delay for USB5744 configuration. Hub itself requires some
delay after reset to get to state where configuration data is going to
be accepted. Without delay upcoming support for configuration via SMBUS
is reporting a failure on the first SMBus write.

i2c 2-002d: error -ENXIO: BYPASS_UDC_SUSPEND bit configuration failed

Similar delay is likely also required for default configuration but
because there is enough time (code execution) between reset and usage
of the hub any issue is not visible but it doesn't mean delay shouldn't
be reflected.

Signed-off-by: Radhey Shyam Pandey <radhey.shyam.pandey@amd.com>
Suggested-by: Matthias Kaehlcke <mka@chromium.org>
Link: https://lore.kernel.org/r/1725732196-70975-2-git-send-email-radhey.shyam.pandey@amd.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/misc/onboard_usb_dev.c
drivers/usb/misc/onboard_usb_dev.h

index 56710e6b165315c0e2a3f45f68ee1aa35d0a82f7..da27c48fc11df4debf9c74718725a595559569e7 100644 (file)
@@ -98,6 +98,7 @@ static int onboard_dev_power_on(struct onboard_dev *onboard_dev)
 
        fsleep(onboard_dev->pdata->reset_us);
        gpiod_set_value_cansleep(onboard_dev->reset_gpio, 0);
+       fsleep(onboard_dev->pdata->power_on_delay_us);
 
        onboard_dev->is_powered_on = true;
 
index fbba549c0f47bf2560edf2f7c34ac484863a1bc1..317b3eb99c0255269bb0dbf27b9aa29ef1bc15bd 100644 (file)
@@ -10,6 +10,7 @@
 
 struct onboard_dev_pdata {
        unsigned long reset_us;         /* reset pulse width in us */
+       unsigned long power_on_delay_us; /* power on delay in us */
        unsigned int num_supplies;      /* number of supplies */
        const char * const supply_names[MAX_SUPPLIES];
        bool is_hub;
@@ -24,6 +25,7 @@ static const struct onboard_dev_pdata microchip_usb424_data = {
 
 static const struct onboard_dev_pdata microchip_usb5744_data = {
        .reset_us = 0,
+       .power_on_delay_us = 10000,
        .num_supplies = 2,
        .supply_names = { "vdd", "vdd2" },
        .is_hub = true,