lkml.org 
[lkml]   [2021]   [Apr]   [21]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH v9] USB: serial: cp210x: Add support for GPIOs on CP2108
On Thu, Apr 08, 2021 at 05:36:07PM +0700, Pho Tran wrote:
> From: Pho Tran <pho.tran@silabs.com>
>
> Similar to other CP210x devices, GPIO interfaces (gpiochip) should be
> supported for CP2108.

> +/*
> + * Quad Port Config definitions
> + * Refer to https://www.silabs.com/documents/public/application-notes/an978-cp210x-usb-to-uart-api-specification.pdf
> + * for more information.
> + * CP210X_VENDOR_SPECIFIC, CP210X_GET_PORTCONFIG call reads these 0x49 bytes
> + * on a CP2108 chip.
> + * CP2108 Quad Port State structure(used in Quad Port Config structure)
> + */
> +struct cp210x_quad_port_state {
> + __le16 gpio_mode_PB0;
> + __le16 gpio_mode_PB1;
> + __le16 gpio_mode_PB2;
> + __le16 gpio_mode_PB3;
> + __le16 gpio_mode_PB4;
> +
> +
> + __le16 gpio_lowpower_PB0;
> + __le16 gpio_lowpower_PB1;
> + __le16 gpio_lowpower_PB2;
> + __le16 gpio_lowpower_PB3;
> + __le16 gpio_lowpower_PB4;
> +
> + __le16 gpio_latch_PB0;
> + __le16 gpio_latch_PB1;
> + __le16 gpio_latch_PB2;
> + __le16 gpio_latch_PB3;
> + __le16 gpio_latch_PB4;
> +};
> +
> +// Cp2108 Quad Port Config structure
> +struct cp210x_quad_port_config {
> + struct cp210x_quad_port_state reset_state;
> + struct cp210x_quad_port_state suspend_state;
> + u8 ipdelay_IFC[4];
> + u8 enhancedfxn_IFC[4];
> + u8 enhancedfxn_device;
> + u8 extclkfreq[4];
> +} __packed;

One more thing; I noticed that the layout of the other port-config
structures do not match the ones used by your library API, which is what
the above pdf documents (e.g. they have additional padding).

Did you verify that the above layout is actually correct? And did you
try changing the pin functions in EEPROM and make sure that your code
handles it as expected?

Is there any corresponding document for the actual device protocol?

Johan

\
 
 \ /
  Last update: 2021-04-21 16:54    [W:0.062 / U:0.120 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site