[U-Boot] [PATCH 1/2] usb: dwc2: correctly handle binding for g-tx-fifo-size
Marek Vasut
marex at denx.de
Mon Jun 17 15:54:00 UTC 2019
On 6/14/19 1:08 PM, Patrick Delaunay wrote:
> Manage g-tx-fifo-size as a array as specify in the binding.
>
> Signed-off-by: Patrick Delaunay <patrick.delaunay at st.com>
> ---
>
> arch/arm/dts/stm32mp157c-ev1-u-boot.dtsi | 4 ----
> drivers/usb/gadget/dwc2_udc_otg.c | 17 ++++++++++++++++-
> 2 files changed, 16 insertions(+), 5 deletions(-)
>
> diff --git a/arch/arm/dts/stm32mp157c-ev1-u-boot.dtsi b/arch/arm/dts/stm32mp157c-ev1-u-boot.dtsi
> index 5b19e44..994092a 100644
> --- a/arch/arm/dts/stm32mp157c-ev1-u-boot.dtsi
> +++ b/arch/arm/dts/stm32mp157c-ev1-u-boot.dtsi
> @@ -56,10 +56,6 @@
> };
> };
>
> -&usbotg_hs {
> - g-tx-fifo-size = <576>;
Should this really be in this patch ?
> -};
> -
> &v3v3 {
> regulator-always-on;
> };
> diff --git a/drivers/usb/gadget/dwc2_udc_otg.c b/drivers/usb/gadget/dwc2_udc_otg.c
> index 494ab53..7e6b5fc 100644
> --- a/drivers/usb/gadget/dwc2_udc_otg.c
> +++ b/drivers/usb/gadget/dwc2_udc_otg.c
> @@ -1039,6 +1039,8 @@ static int dwc2_udc_otg_ofdata_to_platdata(struct udevice *dev)
> int node = dev_of_offset(dev);
> ulong drvdata;
> void (*set_params)(struct dwc2_plat_otg_data *data);
> + u32 tx_fifo_sz_array[DWC2_MAX_HW_ENDPOINTS];
Can't you just read directly into platdata->tx_fifo_sz_array[] below,
and thus drop this temporary variable ?
btw is this fix for current release or next ?
> + int ret, i;
>
> if (usb_get_dr_mode(node) != USB_DR_MODE_PERIPHERAL) {
> dev_dbg(dev, "Invalid mode\n");
> @@ -1050,7 +1052,20 @@ static int dwc2_udc_otg_ofdata_to_platdata(struct udevice *dev)
> platdata->rx_fifo_sz = dev_read_u32_default(dev, "g-rx-fifo-size", 0);
> platdata->np_tx_fifo_sz = dev_read_u32_default(dev,
> "g-np-tx-fifo-size", 0);
> - platdata->tx_fifo_sz = dev_read_u32_default(dev, "g-tx-fifo-size", 0);
> +
> + platdata->tx_fifo_sz_nb =
> + dev_read_size(dev, "g-tx-fifo-size") / sizeof(u32);
> + if (platdata->tx_fifo_sz_nb > DWC2_MAX_HW_ENDPOINTS)
> + platdata->tx_fifo_sz_nb = DWC2_MAX_HW_ENDPOINTS;
> + if (platdata->tx_fifo_sz_nb) {
> + ret = dev_read_u32_array(dev, "g-tx-fifo-size",
> + tx_fifo_sz_array,
> + platdata->tx_fifo_sz_nb);
> + if (ret)
> + return ret;
> + for (i = 0; i < platdata->tx_fifo_sz_nb; i++)
> + platdata->tx_fifo_sz_array[i] = tx_fifo_sz_array[i];
> + }
>
> platdata->force_b_session_valid =
> dev_read_bool(dev, "u-boot,force-b-session-valid");
>
--
Best regards,
Marek Vasut
More information about the U-Boot
mailing list