[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <e9d83459-623e-34e1-ce9d-eb0b83ea170f@omp.ru>
Date: Sat, 12 Aug 2023 12:47:43 +0300
From: Sergey Shtylyov <s.shtylyov@....ru>
To: Utkarsh Patel <utkarsh.h.patel@...el.com>,
<linux-kernel@...r.kernel.org>, <linux-usb@...r.kernel.org>
CC: <heikki.krogerus@...ux.intel.com>,
<andriy.shevchenko@...ux.intel.com>, <pmalani@...omium.org>,
<bleung@...omium.org>
Subject: Re: [PATCH 4/4] usb: typec: intel_pmc_mux: Configure Displayport
Alternate mode 2.1
Hello!
On 8/12/23 12:07 AM, Utkarsh Patel wrote:
> Mux agent driver can configure cable details such as cable type and
> cable speed received as a part of displayport configuration to support
> Displayport Alternate mode 2.1.
>
> Reviewed-by: Andy Shevchenko <andriy.shevchenko@...ux.intel.com>
> Reviewed-by: Heikki Krogerus <heikki.krogerus@...ux.intel.com>
Hm, I think the R-b tags should follow your signoff...
> Signed-off-by: Utkarsh Patel <utkarsh.h.patel@...el.com>
> ---
> drivers/usb/typec/mux/intel_pmc_mux.c | 24 ++++++++++++++++++++++++
> 1 file changed, 24 insertions(+)
>
> diff --git a/drivers/usb/typec/mux/intel_pmc_mux.c b/drivers/usb/typec/mux/intel_pmc_mux.c
> index 888632847a74..218f6e25518d 100644
> --- a/drivers/usb/typec/mux/intel_pmc_mux.c
> +++ b/drivers/usb/typec/mux/intel_pmc_mux.c
[...]
> @@ -282,6 +288,24 @@ pmc_usb_mux_dp(struct pmc_usb_port *port, struct typec_mux_state *state)
> req.mode_data |= (state->mode - TYPEC_STATE_MODAL) <<
> PMC_USB_ALTMODE_DP_MODE_SHIFT;
>
> + if (!is_pmc_mux_tbt(port->pmc->iom_adev)) {
> + u8 cable_speed = (data->conf & DP_CONF_SIGNALLING_MASK) >>
> + DP_CONF_SIGNALLING_SHIFT;
> +
> + u8 cable_type = (data->conf & DP_CONF_CABLE_TYPE_MASK) >>
> + DP_CONF_CABLE_TYPE_SHIFT;
> +
> + req.mode_data |= PMC_USB_ALTMODE_CABLE_SPD(cable_speed);
> +
> + if (cable_type == DP_CONF_CABLE_TYPE_OPTICAL)
> + req.mode_data |= PMC_USB_ALTMODE_CABLE_TYPE;
> + else if (cable_type == DP_CONF_CABLE_TYPE_RE_TIMER)
> + req.mode_data |= PMC_USB_ALTMODE_ACTIVE_CABLE |
> + PMC_USB_ALTMODE_RETIMER_CABLE;
> + else if (cable_type == DP_CONF_CABLE_TYPE_RE_DRIVER)
> + req.mode_data |= PMC_USB_ALTMODE_ACTIVE_CABLE;
The chain of the *if* statements above is asking to use *switch* instead...
[...]
MBR, Sergey
Powered by blists - more mailing lists