diff options
author | Sudeep Holla <sudeep.holla@arm.com> | 2015-02-26 11:47:57 +0000 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2015-03-10 15:33:24 -0500 |
commit | ab7580c1479f9cc9d6a70a5184687a4d807fc612 (patch) | |
tree | 94202d0ee42ba432cf41fdad7b8eb4390ba78ca4 /drivers/usb/isp1760 | |
parent | adf9c3c85615f41c08559086e0d9ecdc6cc9db71 (diff) | |
download | linux-ab7580c1479f9cc9d6a70a5184687a4d807fc612.tar.gz linux-ab7580c1479f9cc9d6a70a5184687a4d807fc612.tar.bz2 linux-ab7580c1479f9cc9d6a70a5184687a4d807fc612.zip |
usb: isp1760: add peripheral/device controller chip id
As per the SAF1761 data sheet[0], the DcChipID register represents
the hardware version number (0001h) and the chip ID (1582h) for the
Peripheral Controller.
However as per the ISP1761 data sheet[1], the DcChipID register
represents the hardware version number (0015h) and the chip ID (8210h)
for the Peripheral Controller.
This patch adds support for both the chip ID values.
[0] http://www.nxp.com/documents/data_sheet/SAF1761.pdf
[1] http://pdf.datasheetcatalog.com/datasheets2/74/742102_1.pdf
Cc: Felipe Balbi <balbi@ti.com>
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Sudeep Holla <sudeep.holla@arm.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/isp1760')
-rw-r--r-- | drivers/usb/isp1760/isp1760-udc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/isp1760/isp1760-udc.c b/drivers/usb/isp1760/isp1760-udc.c index 9612d7990565..6d618b3fab07 100644 --- a/drivers/usb/isp1760/isp1760-udc.c +++ b/drivers/usb/isp1760/isp1760-udc.c @@ -1411,7 +1411,7 @@ static int isp1760_udc_init(struct isp1760_udc *udc) return -ENODEV; } - if (chipid != 0x00011582) { + if (chipid != 0x00011582 && chipid != 0x00158210) { dev_err(udc->isp->dev, "udc: invalid chip ID 0x%08x\n", chipid); return -ENODEV; } |