diff mbox series

[v6] USB: serial: ftdi_sio: Add MTP NVM support

Message ID 1530017688-1731-1-git-send-email-loic.poulain@linaro.org
State New
Headers show
Series [v6] USB: serial: ftdi_sio: Add MTP NVM support | expand

Commit Message

Loic Poulain June 26, 2018, 12:54 p.m. UTC
Most of FTDI's devices have an EEPROM which records FTDI devices
configuration setting (e.g. the VID, PID, I/O config...) and user
data. For example, FT232R and FTX chips have 128-byte and 2048-byte
internal EEPROM respectively.

This patch adds support for FTDI EEPROM read/write via USB control
transfers and register a new nvm device to the nvmem core.

This permits to expose the EEPROM as a sysfs file, allowing userspace
to read/modify FTDI configuration and its user data without having to
rely on a specific userspace USB driver.

Moreover, any upcoming new tentative to add CBUS GPIO support could
integrate CBUS EEPROM configuration reading in order to determine
which of the CBUS pins are available as GPIO.

Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>

Signed-off-by: Loic Poulain <loic.poulain@linaro.org>

---
 v2: Use ifdef instead of IS_ENABLED
     error message in case of nvmem registering failure
     Fix space/tab in Kconfig
 v3: Make nvmem a child of the usb dev instead of the serial port
     Add macros defining eeprom sizes
     Check read/write size is a nultiple of the eeprom word-size
     Remove useless change in Kconfig
 v4: Reword commit message
     Remove default-yes from Kconfig
     Change includes ordering
     Use default linux size defines
     Use get_unaligned_le16 helper
     Prepend EEPROM functions with ftdi_
     Error message in ftdi_eeprom_register()
 v5: Fix missing linux/sizes header
 v6: Ordering new headers insertion
     Remove unecessary additional buf pointer from read/write_eeprom

 drivers/usb/serial/Kconfig    |  10 ++++
 drivers/usb/serial/ftdi_sio.c | 118 ++++++++++++++++++++++++++++++++++++++++++
 drivers/usb/serial/ftdi_sio.h |  28 ++++++++++
 3 files changed, 156 insertions(+)

-- 
2.7.4

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

Comments

Ajay Gupta June 29, 2018, 7:52 p.m. UTC | #1
Hi Loic.
Thanks for fixing comments. Looks good to me now.

On 6/26/18, Loic Poulain <loic.poulain@linaro.org> wrote:
> Most of FTDI's devices have an EEPROM which records FTDI devices

> configuration setting (e.g. the VID, PID, I/O config...) and user

> data. For example, FT232R and FTX chips have 128-byte and 2048-byte

> internal EEPROM respectively.

>

> This patch adds support for FTDI EEPROM read/write via USB control

> transfers and register a new nvm device to the nvmem core.

>

> This permits to expose the EEPROM as a sysfs file, allowing userspace

> to read/modify FTDI configuration and its user data without having to

> rely on a specific userspace USB driver.

>

> Moreover, any upcoming new tentative to add CBUS GPIO support could

> integrate CBUS EEPROM configuration reading in order to determine

> which of the CBUS pins are available as GPIO.

>

> Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>

> Signed-off-by: Loic Poulain <loic.poulain@linaro.org>


Reviewed-by: Ajay Gupta <ajaykuee@gmail.com>

> ---

>  v2: Use ifdef instead of IS_ENABLED

>      error message in case of nvmem registering failure

>      Fix space/tab in Kconfig

>  v3: Make nvmem a child of the usb dev instead of the serial port

>      Add macros defining eeprom sizes

>      Check read/write size is a nultiple of the eeprom word-size

>      Remove useless change in Kconfig

>  v4: Reword commit message

>      Remove default-yes from Kconfig

>      Change includes ordering

>      Use default linux size defines

>      Use get_unaligned_le16 helper

>      Prepend EEPROM functions with ftdi_

>      Error message in ftdi_eeprom_register()

>  v5: Fix missing linux/sizes header

>  v6: Ordering new headers insertion

>      Remove unecessary additional buf pointer from read/write_eeprom

>

>  drivers/usb/serial/Kconfig    |  10 ++++

>  drivers/usb/serial/ftdi_sio.c | 118

> ++++++++++++++++++++++++++++++++++++++++++

>  drivers/usb/serial/ftdi_sio.h |  28 ++++++++++

>  3 files changed, 156 insertions(+)

>

> diff --git a/drivers/usb/serial/Kconfig b/drivers/usb/serial/Kconfig

> index 533f127..5747562 100644

> --- a/drivers/usb/serial/Kconfig

> +++ b/drivers/usb/serial/Kconfig

> @@ -181,6 +181,16 @@ config USB_SERIAL_FTDI_SIO

>  	  To compile this driver as a module, choose M here: the

>  	  module will be called ftdi_sio.

>

> +config USB_SERIAL_FTDI_SIO_NVMEM

> +	bool "FTDI MTP non-volatile memory support"

> +	depends on USB_SERIAL_FTDI_SIO

> +	select NVMEM

> +	help

> +	  Say yes here to add support for the MTP non-volatile memory

> +	  present on FTDI. Most of FTDI's devices have an EEPROM which

> +	  records FTDI device's configuration setting as well as user

> +	  data.

> +

>  config USB_SERIAL_VISOR

>  	tristate "USB Handspring Visor / Palm m50x / Sony Clie Driver"

>  	help

> diff --git a/drivers/usb/serial/ftdi_sio.c b/drivers/usb/serial/ftdi_sio.c

> index 7ea221d..34daa8c 100644

> --- a/drivers/usb/serial/ftdi_sio.c

> +++ b/drivers/usb/serial/ftdi_sio.c

> @@ -34,12 +34,17 @@

>  #include <linux/tty_driver.h>

>  #include <linux/tty_flip.h>

>  #include <linux/module.h>

> +#include <linux/nvmem-provider.h>

> +#include <linux/sizes.h>

>  #include <linux/spinlock.h>

>  #include <linux/mutex.h>

>  #include <linux/uaccess.h>

>  #include <linux/usb.h>

>  #include <linux/serial.h>

>  #include <linux/usb/serial.h>

> +

> +#include <asm/unaligned.h>

> +

>  #include "ftdi_sio.h"

>  #include "ftdi_sio_ids.h"

>

> @@ -73,6 +78,8 @@ struct ftdi_private {

>  	unsigned int latency;		/* latency setting in use */

>  	unsigned short max_packet_size;

>  	struct mutex cfg_lock; /* Avoid mess by parallel calls of config ioctl()

> and change_speed() */

> +

> +	struct nvmem_device *eeprom;

>  };

>

>  /* struct ftdi_sio_quirk is used by devices requiring special attention.

> */

> @@ -1529,6 +1536,110 @@ static int get_lsr_info(struct usb_serial_port

> *port,

>  	return 0;

>  }

>

> +#ifdef CONFIG_USB_SERIAL_FTDI_SIO_NVMEM

> +

> +static int ftdi_write_eeprom(void *priv, unsigned int off, void *val,

> +			     size_t bytes)

> +{

> +	struct usb_serial_port *port = priv;

> +	struct usb_device *udev = port->serial->dev;

> +

> +	if (bytes % 2) /* 16-bit eeprom */

> +		return -EINVAL;

> +

> +	while (bytes) {

> +		int rv;

> +

> +		rv = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),

> +				     FTDI_SIO_WRITE_EEPROM_REQUEST,

> +				     FTDI_SIO_WRITE_EEPROM_REQUEST_TYPE,

> +				     get_unaligned_le16(val), off / 2, NULL,

> +				     0, WDR_TIMEOUT);

> +		if (rv < 0)

> +			return rv;

> +

> +		off += 2;

> +		val += 2;

> +		bytes -= 2;

> +	}

> +

> +	return 0;

> +}

> +

> +static int ftdi_read_eeprom(void *priv, unsigned int off, void *val,

> +			    size_t bytes)

> +{

> +	struct usb_serial_port *port = priv;

> +	struct usb_device *udev = port->serial->dev;

> +

> +	if (bytes % 2) /* 16-bit eeprom */

> +		return -EINVAL;

> +

> +	while (bytes) {

> +		int rv;

> +

> +		rv = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),

> +				     FTDI_SIO_READ_EEPROM_REQUEST,

> +				     FTDI_SIO_READ_EEPROM_REQUEST_TYPE,

> +				     0, off / 2, val, 2, WDR_TIMEOUT);

> +		if (rv < 0)

> +			return rv;

> +

> +		off += 2;

> +		val += 2;

> +		bytes -= 2;

> +	}

> +

> +	return 0;

> +}

> +

> +static int ftdi_register_eeprom(struct usb_serial_port *port)

> +{

> +	struct ftdi_private *priv = usb_get_serial_port_data(port);

> +	struct usb_device *udev = port->serial->dev;

> +	struct nvmem_config nvmconf = {};

> +

> +	switch (priv->chip_type) {

> +	case FTX:

> +		nvmconf.size = SZ_2K;

> +		break;

> +	case FT232RL:

> +		nvmconf.size = SZ_128;

> +		break;

> +	default:

> +		return 0;

> +	}

> +

> +	nvmconf.word_size = 2;

> +	nvmconf.stride = 2;

> +	nvmconf.read_only = false;

> +	nvmconf.priv = port;

> +	nvmconf.dev = &udev->dev;

> +	nvmconf.reg_read = ftdi_read_eeprom;

> +	nvmconf.reg_write = ftdi_write_eeprom;

> +	nvmconf.owner = THIS_MODULE;

> +

> +	priv->eeprom = nvmem_register(&nvmconf);

> +	if (IS_ERR(priv->eeprom)) {

> +		dev_err(&udev->dev, "Unable to register FTDI EEPROM\n");

> +		priv->eeprom = NULL;

> +		return -ENOMEM;

> +	}

> +

> +	dev_info(&udev->dev, "Registered %d-byte FTDI EEPROM\n", nvmconf.size);

> +

> +	return 0;

> +}

> +

> +static void ftdi_unregister_eeprom(struct usb_serial_port *port)

> +{

> +	struct ftdi_private *priv = usb_get_serial_port_data(port);

> +

> +	if (priv->eeprom)

> +		nvmem_unregister(priv->eeprom);

> +}

> +

> +#endif /* CONFIG_USB_SERIAL_FTDI_SIO_NVMEM */

>

>  /* Determine type of FTDI chip based on USB config and descriptor. */

>  static void ftdi_determine_type(struct usb_serial_port *port)

> @@ -1814,6 +1925,10 @@ static int ftdi_sio_port_probe(struct usb_serial_port

> *port)

>  		priv->latency = 16;

>  	write_latency_timer(port);

>  	create_sysfs_attrs(port);

> +#ifdef CONFIG_USB_SERIAL_FTDI_SIO_NVMEM

> +	ftdi_register_eeprom(port);

> +#endif

> +

>  	return 0;

>  }

>

> @@ -1931,6 +2046,9 @@ static int ftdi_sio_port_remove(struct usb_serial_port

> *port)

>  {

>  	struct ftdi_private *priv = usb_get_serial_port_data(port);

>

> +#ifdef CONFIG_USB_SERIAL_FTDI_SIO_NVMEM

> +	ftdi_unregister_eeprom(port);

> +#endif

>  	remove_sysfs_attrs(port);

>

>  	kfree(priv);

> diff --git a/drivers/usb/serial/ftdi_sio.h b/drivers/usb/serial/ftdi_sio.h

> index dcd0b6e..9eab961 100644

> --- a/drivers/usb/serial/ftdi_sio.h

> +++ b/drivers/usb/serial/ftdi_sio.h

> @@ -36,6 +36,8 @@

>  #define FTDI_SIO_SET_ERROR_CHAR		7 /* Set the error character */

>  #define FTDI_SIO_SET_LATENCY_TIMER	9 /* Set the latency timer */

>  #define FTDI_SIO_GET_LATENCY_TIMER	10 /* Get the latency timer */

> +#define FTDI_SIO_READ_EEPROM		0x90 /* Read eeprom */

> +#define FTDI_SIO_WRITE_EEPROM		0x91 /* Write eeprom */

>

>  /* Interface indices for FT2232, FT2232H and FT4232H devices */

>  #define INTERFACE_A		1

> @@ -400,6 +402,32 @@ enum ftdi_sio_baudrate {

>   *

>   */

>

> + /* FTDI_SIO_READ_EEPROM */

> +#define FTDI_SIO_READ_EEPROM_REQUEST_TYPE 0xc0

> +#define FTDI_SIO_READ_EEPROM_REQUEST FTDI_SIO_READ_EEPROM

> +/*

> + *  BmRequestType:   1100 0000b

> + *  bRequest:        FTDI_SIO_READ_EEPROM

> + *  wValue:          0

> + *  wIndex:          Word Index

> + *  wLength:         2

> + *  Data:            return data (a word)

> + *

> + */

> +

> +/* FTDI_SIO_WRITE_EEPROM */

> +#define FTDI_SIO_WRITE_EEPROM_REQUEST_TYPE 0x40

> +#define FTDI_SIO_WRITE_EEPROM_REQUEST FTDI_SIO_WRITE_EEPROM

> +/*

> + *  BmRequestType:   0100 0000b

> + *  bRequest:        FTDI_SIO_WRITE_EEPROM

> + *  wValue:          Data (word)

> + *  wIndex:          Word Index

> + *  wLength:         0

> + *  Data:            None

> + *

> + */

> +

>  /* FTDI_SIO_GET_MODEM_STATUS */

>  /* Retrieve the current value of the modem status register */

>

> --

> 2.7.4

>

>

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Loic Poulain July 9, 2018, 8:47 a.m. UTC | #2
Hi Johan,

On 29 June 2018 at 21:52, Ajay Gupta <ajaykuee@gmail.com> wrote:
> Hi Loic.

> Thanks for fixing comments. Looks good to me now.

>

> On 6/26/18, Loic Poulain <loic.poulain@linaro.org> wrote:

>> Most of FTDI's devices have an EEPROM which records FTDI devices

>> configuration setting (e.g. the VID, PID, I/O config...) and user

>> data. For example, FT232R and FTX chips have 128-byte and 2048-byte

>> internal EEPROM respectively.

>>

>> This patch adds support for FTDI EEPROM read/write via USB control

>> transfers and register a new nvm device to the nvmem core.

>>

>> This permits to expose the EEPROM as a sysfs file, allowing userspace

>> to read/modify FTDI configuration and its user data without having to

>> rely on a specific userspace USB driver.

>>

>> Moreover, any upcoming new tentative to add CBUS GPIO support could

>> integrate CBUS EEPROM configuration reading in order to determine

>> which of the CBUS pins are available as GPIO.

>>

>> Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>

>> Signed-off-by: Loic Poulain <loic.poulain@linaro.org>

>

> Reviewed-by: Ajay Gupta <ajaykuee@gmail.com>


Any other comments?

Regards,
Loic
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Johan Hovold July 10, 2018, 9:19 a.m. UTC | #3
Hi,

I finally found some time to dig into the ftdi eeprom handling.

On Tue, Jun 26, 2018 at 02:54:48PM +0200, Loic Poulain wrote:
> Most of FTDI's devices have an EEPROM which records FTDI devices

> configuration setting (e.g. the VID, PID, I/O config...) and user

> data. For example, FT232R and FTX chips have 128-byte and 2048-byte

> internal EEPROM respectively.


The "internal" qualifier here is crucial; only FT232R and FTX have
internal EEPROMs of a known size. Other device types use external
EEPROMs of varying sizes, and which need not even be populated.

And judging from the heuristics used by libftdi, there's no good (known)
way to determine the size of the external EEPROMs, which means that this
cannot be generalised. Note that handling external EEPROMS also implies
dealing with explicit EEPROM erase commands, which does not seem to fit
the proposed interface.
 
> This patch adds support for FTDI EEPROM read/write via USB control

> transfers and register a new nvm device to the nvmem core.

>

> This permits to expose the EEPROM as a sysfs file, allowing userspace

> to read/modify FTDI configuration and its user data without having to

> rely on a specific userspace USB driver.


So I have doubts about the usefulness of all of this.

  - You cannot just write the EEPROM from user space without knowing the
    device-specific layout.

  - You also need to make sure to recalculate and update the checksum
    stored in the final word.

  - And for that you obviously need to know the EEPROM size (known for R
    and FTX).

So in the end you still need something like libftdi to be able to do
anything useful with this. Also note that the layout and protocol for
handling the EEPROM is only available under NDA or is based on
reverse-engineering guess work. For example, it seems like for FT232R
you need to set a specific latency timer to be able to write the EEPROM
(reliably). And so on.

And as the consequences of getting this wrong may result in a bricked
device, I'm even more sceptical about this.

> Moreover, any upcoming new tentative to add CBUS GPIO support could

> integrate CBUS EEPROM configuration reading in order to determine

> which of the CBUS pins are available as GPIO.


The CBUS configuration is stored in just a couple of words at a known
offset and could easily be retrieved without depending on the nvmem
subsystem when needed.

As I assume fiddling with the EEPROM should be rare (e.g. done during
development or by hobbyists) and would still depend user-space tools
(e.g. for layouts, checksums and external EEPROMs), I think we should
just leave it all to user space to deal with.

Johan
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Loic Poulain July 15, 2018, 8:30 p.m. UTC | #4
Hi Johan,

Thanks for the review.

On 10 July 2018 at 11:19, Johan Hovold <johan@kernel.org> wrote:
> Hi,

>

> I finally found some time to dig into the ftdi eeprom handling.

>

> On Tue, Jun 26, 2018 at 02:54:48PM +0200, Loic Poulain wrote:

>> Most of FTDI's devices have an EEPROM which records FTDI devices

>> configuration setting (e.g. the VID, PID, I/O config...) and user

>> data. For example, FT232R and FTX chips have 128-byte and 2048-byte

>> internal EEPROM respectively.

>

> The "internal" qualifier here is crucial; only FT232R and FTX have

> internal EEPROMs of a known size. Other device types use external

> EEPROMs of varying sizes, and which need not even be populated.

>

> And judging from the heuristics used by libftdi, there's no good (known)

> way to determine the size of the external EEPROMs, which means that this

> cannot be generalised. Note that handling external EEPROMS also implies

> dealing with explicit EEPROM erase commands, which does not seem to fit

> the proposed interface.

>

>> This patch adds support for FTDI EEPROM read/write via USB control

>> transfers and register a new nvm device to the nvmem core.

>>

>> This permits to expose the EEPROM as a sysfs file, allowing userspace

>> to read/modify FTDI configuration and its user data without having to

>> rely on a specific userspace USB driver.

>

> So I have doubts about the usefulness of all of this.

>

>   - You cannot just write the EEPROM from user space without knowing the

>     device-specific layout.

>

>   - You also need to make sure to recalculate and update the checksum

>     stored in the final word.


Correct, at least for the 'non-user', area. That means having a userspace tool
to manage this specific layout.This is not so complex thought.

>

>   - And for that you obviously need to know the EEPROM size (known for R

>     and FTX).

>

> So in the end you still need something like libftdi to be able to do

> anything useful with this. Also note that the layout and protocol for

> handling the EEPROM is only available under NDA or is based on

> reverse-engineering guess work. For example, it seems like for FT232R

> you need to set a specific latency timer to be able to write the EEPROM

> (reliably). And so on.


Yes, there is a bit more public information for FT-X, the application note
AN_201 describes the MTP memory map.

>

> And as the consequences of getting this wrong may result in a bricked

> device, I'm even more sceptical about this.

>

>> Moreover, any upcoming new tentative to add CBUS GPIO support could

>> integrate CBUS EEPROM configuration reading in order to determine

>> which of the CBUS pins are available as GPIO.

>

> The CBUS configuration is stored in just a couple of words at a known

> offset and could easily be retrieved without depending on the nvmem

> subsystem when needed.

>

> As I assume fiddling with the EEPROM should be rare (e.g. done during

> development or by hobbyists) and would still depend user-space tools

> (e.g. for layouts, checksums and external EEPROMs), I think we should

> just leave it all to user space to deal with.


I'm fine with that, to be honest I'm interested in adding GPIO control
but wanted to progress step by step, EEPROM access being the first one.
I thought it could have been valuable to expose it via nvmem, but like you said,
we can keep this internal for now.

So, I'll come back with new patche(s) for CBUS GPIOs.

Regards,
Loic
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Johan Hovold July 16, 2018, 12:25 p.m. UTC | #5
On Sun, Jul 15, 2018 at 10:30:39PM +0200, Loic Poulain wrote:
> Hi Johan,

> 

> Thanks for the review.

> 

> On 10 July 2018 at 11:19, Johan Hovold <johan@kernel.org> wrote:


> > The CBUS configuration is stored in just a couple of words at a known

> > offset and could easily be retrieved without depending on the nvmem

> > subsystem when needed.

> >

> > As I assume fiddling with the EEPROM should be rare (e.g. done during

> > development or by hobbyists) and would still depend user-space tools

> > (e.g. for layouts, checksums and external EEPROMs), I think we should

> > just leave it all to user space to deal with.

> 

> I'm fine with that, to be honest I'm interested in adding GPIO control

> but wanted to progress step by step, EEPROM access being the first one.

> I thought it could have been valuable to expose it via nvmem, but like you said,

> we can keep this internal for now.

> 

> So, I'll come back with new patche(s) for CBUS GPIOs.


Sounds good!

Thanks,
Johan
--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox series

Patch

diff --git a/drivers/usb/serial/Kconfig b/drivers/usb/serial/Kconfig
index 533f127..5747562 100644
--- a/drivers/usb/serial/Kconfig
+++ b/drivers/usb/serial/Kconfig
@@ -181,6 +181,16 @@  config USB_SERIAL_FTDI_SIO
 	  To compile this driver as a module, choose M here: the
 	  module will be called ftdi_sio.
 
+config USB_SERIAL_FTDI_SIO_NVMEM
+	bool "FTDI MTP non-volatile memory support"
+	depends on USB_SERIAL_FTDI_SIO
+	select NVMEM
+	help
+	  Say yes here to add support for the MTP non-volatile memory
+	  present on FTDI. Most of FTDI's devices have an EEPROM which
+	  records FTDI device's configuration setting as well as user
+	  data.
+
 config USB_SERIAL_VISOR
 	tristate "USB Handspring Visor / Palm m50x / Sony Clie Driver"
 	help
diff --git a/drivers/usb/serial/ftdi_sio.c b/drivers/usb/serial/ftdi_sio.c
index 7ea221d..34daa8c 100644
--- a/drivers/usb/serial/ftdi_sio.c
+++ b/drivers/usb/serial/ftdi_sio.c
@@ -34,12 +34,17 @@ 
 #include <linux/tty_driver.h>
 #include <linux/tty_flip.h>
 #include <linux/module.h>
+#include <linux/nvmem-provider.h>
+#include <linux/sizes.h>
 #include <linux/spinlock.h>
 #include <linux/mutex.h>
 #include <linux/uaccess.h>
 #include <linux/usb.h>
 #include <linux/serial.h>
 #include <linux/usb/serial.h>
+
+#include <asm/unaligned.h>
+
 #include "ftdi_sio.h"
 #include "ftdi_sio_ids.h"
 
@@ -73,6 +78,8 @@  struct ftdi_private {
 	unsigned int latency;		/* latency setting in use */
 	unsigned short max_packet_size;
 	struct mutex cfg_lock; /* Avoid mess by parallel calls of config ioctl() and change_speed() */
+
+	struct nvmem_device *eeprom;
 };
 
 /* struct ftdi_sio_quirk is used by devices requiring special attention. */
@@ -1529,6 +1536,110 @@  static int get_lsr_info(struct usb_serial_port *port,
 	return 0;
 }
 
+#ifdef CONFIG_USB_SERIAL_FTDI_SIO_NVMEM
+
+static int ftdi_write_eeprom(void *priv, unsigned int off, void *val,
+			     size_t bytes)
+{
+	struct usb_serial_port *port = priv;
+	struct usb_device *udev = port->serial->dev;
+
+	if (bytes % 2) /* 16-bit eeprom */
+		return -EINVAL;
+
+	while (bytes) {
+		int rv;
+
+		rv = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
+				     FTDI_SIO_WRITE_EEPROM_REQUEST,
+				     FTDI_SIO_WRITE_EEPROM_REQUEST_TYPE,
+				     get_unaligned_le16(val), off / 2, NULL,
+				     0, WDR_TIMEOUT);
+		if (rv < 0)
+			return rv;
+
+		off += 2;
+		val += 2;
+		bytes -= 2;
+	}
+
+	return 0;
+}
+
+static int ftdi_read_eeprom(void *priv, unsigned int off, void *val,
+			    size_t bytes)
+{
+	struct usb_serial_port *port = priv;
+	struct usb_device *udev = port->serial->dev;
+
+	if (bytes % 2) /* 16-bit eeprom */
+		return -EINVAL;
+
+	while (bytes) {
+		int rv;
+
+		rv = usb_control_msg(udev, usb_rcvctrlpipe(udev, 0),
+				     FTDI_SIO_READ_EEPROM_REQUEST,
+				     FTDI_SIO_READ_EEPROM_REQUEST_TYPE,
+				     0, off / 2, val, 2, WDR_TIMEOUT);
+		if (rv < 0)
+			return rv;
+
+		off += 2;
+		val += 2;
+		bytes -= 2;
+	}
+
+	return 0;
+}
+
+static int ftdi_register_eeprom(struct usb_serial_port *port)
+{
+	struct ftdi_private *priv = usb_get_serial_port_data(port);
+	struct usb_device *udev = port->serial->dev;
+	struct nvmem_config nvmconf = {};
+
+	switch (priv->chip_type) {
+	case FTX:
+		nvmconf.size = SZ_2K;
+		break;
+	case FT232RL:
+		nvmconf.size = SZ_128;
+		break;
+	default:
+		return 0;
+	}
+
+	nvmconf.word_size = 2;
+	nvmconf.stride = 2;
+	nvmconf.read_only = false;
+	nvmconf.priv = port;
+	nvmconf.dev = &udev->dev;
+	nvmconf.reg_read = ftdi_read_eeprom;
+	nvmconf.reg_write = ftdi_write_eeprom;
+	nvmconf.owner = THIS_MODULE;
+
+	priv->eeprom = nvmem_register(&nvmconf);
+	if (IS_ERR(priv->eeprom)) {
+		dev_err(&udev->dev, "Unable to register FTDI EEPROM\n");
+		priv->eeprom = NULL;
+		return -ENOMEM;
+	}
+
+	dev_info(&udev->dev, "Registered %d-byte FTDI EEPROM\n", nvmconf.size);
+
+	return 0;
+}
+
+static void ftdi_unregister_eeprom(struct usb_serial_port *port)
+{
+	struct ftdi_private *priv = usb_get_serial_port_data(port);
+
+	if (priv->eeprom)
+		nvmem_unregister(priv->eeprom);
+}
+
+#endif /* CONFIG_USB_SERIAL_FTDI_SIO_NVMEM */
 
 /* Determine type of FTDI chip based on USB config and descriptor. */
 static void ftdi_determine_type(struct usb_serial_port *port)
@@ -1814,6 +1925,10 @@  static int ftdi_sio_port_probe(struct usb_serial_port *port)
 		priv->latency = 16;
 	write_latency_timer(port);
 	create_sysfs_attrs(port);
+#ifdef CONFIG_USB_SERIAL_FTDI_SIO_NVMEM
+	ftdi_register_eeprom(port);
+#endif
+
 	return 0;
 }
 
@@ -1931,6 +2046,9 @@  static int ftdi_sio_port_remove(struct usb_serial_port *port)
 {
 	struct ftdi_private *priv = usb_get_serial_port_data(port);
 
+#ifdef CONFIG_USB_SERIAL_FTDI_SIO_NVMEM
+	ftdi_unregister_eeprom(port);
+#endif
 	remove_sysfs_attrs(port);
 
 	kfree(priv);
diff --git a/drivers/usb/serial/ftdi_sio.h b/drivers/usb/serial/ftdi_sio.h
index dcd0b6e..9eab961 100644
--- a/drivers/usb/serial/ftdi_sio.h
+++ b/drivers/usb/serial/ftdi_sio.h
@@ -36,6 +36,8 @@ 
 #define FTDI_SIO_SET_ERROR_CHAR		7 /* Set the error character */
 #define FTDI_SIO_SET_LATENCY_TIMER	9 /* Set the latency timer */
 #define FTDI_SIO_GET_LATENCY_TIMER	10 /* Get the latency timer */
+#define FTDI_SIO_READ_EEPROM		0x90 /* Read eeprom */
+#define FTDI_SIO_WRITE_EEPROM		0x91 /* Write eeprom */
 
 /* Interface indices for FT2232, FT2232H and FT4232H devices */
 #define INTERFACE_A		1
@@ -400,6 +402,32 @@  enum ftdi_sio_baudrate {
  *
  */
 
+ /* FTDI_SIO_READ_EEPROM */
+#define FTDI_SIO_READ_EEPROM_REQUEST_TYPE 0xc0
+#define FTDI_SIO_READ_EEPROM_REQUEST FTDI_SIO_READ_EEPROM
+/*
+ *  BmRequestType:   1100 0000b
+ *  bRequest:        FTDI_SIO_READ_EEPROM
+ *  wValue:          0
+ *  wIndex:          Word Index
+ *  wLength:         2
+ *  Data:            return data (a word)
+ *
+ */
+
+/* FTDI_SIO_WRITE_EEPROM */
+#define FTDI_SIO_WRITE_EEPROM_REQUEST_TYPE 0x40
+#define FTDI_SIO_WRITE_EEPROM_REQUEST FTDI_SIO_WRITE_EEPROM
+/*
+ *  BmRequestType:   0100 0000b
+ *  bRequest:        FTDI_SIO_WRITE_EEPROM
+ *  wValue:          Data (word)
+ *  wIndex:          Word Index
+ *  wLength:         0
+ *  Data:            None
+ *
+ */
+
 /* FTDI_SIO_GET_MODEM_STATUS */
 /* Retrieve the current value of the modem status register */