This adds support for NXP's ISP1504 transceivers using the xcvr abstraction framework. Signed-off-by: Daniel Mack <daniel@xxxxxxxx> Cc: Greg Kroah-Hartman <gregkh@xxxxxxx> Cc: David Brownell <dbrownell@xxxxxxxxxxxxxxxxxxxxx> Cc: Sascha Hauer <s.hauer@xxxxxxxxxxxxxx> Cc: linux-usb@xxxxxxxxxxxxxxx --- drivers/usb/Makefile | 2 + drivers/usb/otg/Kconfig | 6 ++ drivers/usb/otg/Makefile | 1 + drivers/usb/otg/isp1504-xcvr.c | 97 ++++++++++++++++++++++++++++++++++++++ include/linux/usb/isp1504_xcvr.h | 6 ++ 5 files changed, 112 insertions(+), 0 deletions(-) create mode 100644 drivers/usb/otg/isp1504-xcvr.c create mode 100644 include/linux/usb/isp1504_xcvr.h diff --git a/drivers/usb/Makefile b/drivers/usb/Makefile index 19cb7d5..b2ff72b 100644 --- a/drivers/usb/Makefile +++ b/drivers/usb/Makefile @@ -42,3 +42,5 @@ obj-$(CONFIG_USB) += misc/ obj-$(CONFIG_USB_ATM) += atm/ obj-$(CONFIG_USB_SPEEDTOUCH) += atm/ + +obj-$(CONFIG_ISP1504_XCVR) += otg/ diff --git a/drivers/usb/otg/Kconfig b/drivers/usb/otg/Kconfig index 69feeec..af7debb 100644 --- a/drivers/usb/otg/Kconfig +++ b/drivers/usb/otg/Kconfig @@ -41,6 +41,12 @@ config ISP1301_OMAP This driver can also be built as a module. If so, the module will be called isp1301_omap. +config ISP1504_XCVR + bool "NXP ISP1504 Transceiver Driver" + help + Enable this to support the NXP ISP1504 USB OTG transceiver which + are likely found on embedded boards. + config TWL4030_USB tristate "TWL4030 USB Transceiver Driver" depends on TWL4030_CORE && REGULATOR_TWL4030 diff --git a/drivers/usb/otg/Makefile b/drivers/usb/otg/Makefile index 6d1abdd..25af020 100644 --- a/drivers/usb/otg/Makefile +++ b/drivers/usb/otg/Makefile @@ -11,6 +11,7 @@ obj-$(CONFIG_ISP1301_OMAP) += isp1301_omap.o obj-$(CONFIG_TWL4030_USB) += twl4030-usb.o obj-$(CONFIG_USB_LANGWELL_OTG) += langwell_otg.o obj-$(CONFIG_NOP_USB_XCEIV) += nop-usb-xceiv.o +obj-$(CONFIG_ISP1504_XCVR) += isp1504-xcvr.o ccflags-$(CONFIG_USB_DEBUG) += -DDEBUG ccflags-$(CONFIG_USB_GADGET_DEBUG) += -DDEBUG diff --git a/drivers/usb/otg/isp1504-xcvr.c b/drivers/usb/otg/isp1504-xcvr.c new file mode 100644 index 0000000..087985b --- /dev/null +++ b/drivers/usb/otg/isp1504-xcvr.c @@ -0,0 +1,97 @@ +/* + * isp1504 - NXP ISP 1504 USB transceiver + * + * Copyright (C) 2009 Daniel Mack <daniel@xxxxxxxx> + * + * Based on sources from + * + * Sascha Hauer <s.hauer@xxxxxxxxxxxxxx> + * Freescale Semiconductors + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + */ + +#include <linux/kernel.h> +#include <linux/usb.h> +#include <linux/usb/xcvr.h> + + +/* ISP 1504 register addresses */ +#define ISP1504_VID_LOW 0x00 /* Vendor ID low */ +#define ISP1504_VID_HIGH 0x01 /* Vendor ID high */ +#define ISP1504_PID_LOW 0x02 /* Product ID low */ +#define ISP1504_PID_HIGH 0x03 /* Product ID high */ +#define ISP1504_ITFCTL 0x07 /* Interface Control */ +#define ISP1504_OTGCTL 0x0A /* OTG Control */ + +/* add to above register address to access Set/Clear functions */ +#define ISP1504_REG_SET 0x01 +#define ISP1504_REG_CLEAR 0x02 + +/* 1504 OTG Control Register bits */ +#define USE_EXT_VBUS_IND (1 << 7) /* Use ext. Vbus indicator */ +#define DRV_VBUS_EXT (1 << 6) /* Drive Vbus external */ +#define DRV_VBUS (1 << 5) /* Drive Vbus */ +#define CHRG_VBUS (1 << 4) /* Charge Vbus */ +#define DISCHRG_VBUS (1 << 3) /* Discharge Vbus */ +#define DM_PULL_DOWN (1 << 2) /* enable DM Pull Down */ +#define DP_PULL_DOWN (1 << 1) /* enable DP Pull Down */ +#define ID_PULL_UP (1 << 0) /* enable ID Pull Up */ + +/* 1504 hardcoded IDs, used for probing */ +#define ISP1504_ULPI_VID 0x04cc +#define ISP1504_ULPI_PID 0x1504 + +static int isp1504_init(struct usb_xcvr *xcvr) +{ + int vid, pid; + + vid = (usb_xcvr_read(xcvr, ISP1504_VID_HIGH) << 8) | + usb_xcvr_read(xcvr, ISP1504_VID_LOW); + pid = (usb_xcvr_read(xcvr, ISP1504_PID_HIGH) << 8) | + usb_xcvr_read(xcvr, ISP1504_PID_LOW); + + pr_info("ULPI transceiver vendor/product ID 0x%x/0x%x\n", vid, pid); + if (vid != ISP1504_ULPI_VID || pid != ISP1504_ULPI_PID) { + pr_err("No ISP1504 found\n"); + return -ENODEV; + } + + return 0; +} + +static int isp1504_set_vbus(struct usb_xcvr *xcvr, bool on) +{ + if (on) + return usb_xcvr_write(xcvr, DRV_VBUS_EXT | DRV_VBUS | + USE_EXT_VBUS_IND | CHRG_VBUS, + ISP1504_OTGCTL + ISP1504_REG_SET); + else { + int ret = usb_xcvr_write(xcvr, DRV_VBUS_EXT | DRV_VBUS, + ISP1504_OTGCTL + ISP1504_REG_CLEAR); + if (ret) + return ret; + + return usb_xcvr_write(xcvr, USE_EXT_VBUS_IND | DISCHRG_VBUS, + ISP1504_OTGCTL + ISP1504_REG_SET); + } +} + +struct usb_xcvr_driver isp1504_xcvr_driver = { + .init = isp1504_init, + .set_vbus = isp1504_set_vbus, +}; +EXPORT_SYMBOL_GPL(isp1504_xcvr_driver); + diff --git a/include/linux/usb/isp1504_xcvr.h b/include/linux/usb/isp1504_xcvr.h new file mode 100644 index 0000000..5a53958 --- /dev/null +++ b/include/linux/usb/isp1504_xcvr.h @@ -0,0 +1,6 @@ +#ifndef __LINUX_USB_ISP1504_XCVR_H +#define __LINUX_USB_ISP1504_XCVR_H + +extern struct usb_xcvr_driver isp1504_xcvr_driver; + +#endif /* __LINUX_USB_ISP1504_XCVR_H */ -- 1.6.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html