Hi,

On Mon, Feb 26, 2018 at 07:49:10PM +0800, Li Jun wrote:
> User can define the typec port properties in tcpci node to setup
> the port config.
> 
> Signed-off-by: Li Jun <jun...@nxp.com>
> ---
> Changes for v2:
> - Use infra APIs to get sink and source config.
> - Improve the error message.
> 
>  drivers/staging/typec/tcpci.c | 70 
> ++++++++++++++++++++++++++++++++++++++-----
>  include/linux/usb/tcpm.h      |  6 ++--
>  2 files changed, 66 insertions(+), 10 deletions(-)
> 
> diff --git a/drivers/staging/typec/tcpci.c b/drivers/staging/typec/tcpci.c
> index b6abaf7..be6ed16 100644
> --- a/drivers/staging/typec/tcpci.c
> +++ b/drivers/staging/typec/tcpci.c
> @@ -426,17 +426,73 @@ static const struct regmap_config tcpci_regmap_config = 
> {
>       .max_register = 0x7F, /* 0x80 .. 0xFF are vendor defined */
>  };
>  
> -static const struct tcpc_config tcpci_tcpc_config = {
> -     .type = TYPEC_PORT_DFP,
> -     .default_role = TYPEC_SINK,
> -};
> -
> +/* Populate struct tcpc_config from device-tree */
>  static int tcpci_parse_config(struct tcpci *tcpci)
>  {
> +     struct tcpc_config *tcfg;
> +     struct device_node *child;
> +     int ret = -EINVAL;
> +
>       tcpci->controls_vbus = true; /* XXX */
>  
> -     /* TODO: Populate struct tcpc_config from ACPI/device-tree */
> -     tcpci->tcpc.config = &tcpci_tcpc_config;
> +     tcpci->tcpc.config = devm_kzalloc(tcpci->dev, sizeof(*tcfg),
> +                                       GFP_KERNEL);
> +     if (!tcpci->tcpc.config)
> +             return -ENOMEM;
> +
> +     tcfg = tcpci->tcpc.config;
> +
> +     child = of_get_child_by_name(tcpci->dev->of_node, "connector");
> +     if (!child) {
> +             dev_err(tcpci->dev, "failed to get connector node.\n");
> +             return -EINVAL;
> +     }

Why do you need separate child node for the connector? You will always
have only one connector per tcpc, i.e. the tcpci already represents the
connector and all its capabilities.


Thanks,

-- 
heikki
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to