summaryrefslogtreecommitdiffstats
path: root/drivers/usb/musb/musb_regs.h
diff options
context:
space:
mode:
authorCliff Cai2010-01-29 02:43:44 +0100
committerGreg Kroah-Hartman2010-03-02 23:54:48 +0100
commit0ded2f146acfaf71e5f4c15b80cf89b3af48134c (patch)
tree87be32bab16d05123f99bd76c15e0f14ca6039c8 /drivers/usb/musb/musb_regs.h
parentUSB: pxa27x_udc: Fix deadlocks on request queueing (diff)
downloadkernel-qcow2-linux-0ded2f146acfaf71e5f4c15b80cf89b3af48134c.tar.gz
kernel-qcow2-linux-0ded2f146acfaf71e5f4c15b80cf89b3af48134c.tar.xz
kernel-qcow2-linux-0ded2f146acfaf71e5f4c15b80cf89b3af48134c.zip
USB: musb: set version of Blackfin version
All current Blackfin parts are using RTL v1.9, but they don't expose the hardware registers to probe this dynamically. So hardcode the version to v1.9 for now. Need to move the local hwvers related defines higher up in the header so that sub-musb headers may utilize them. Signed-off-by: Cliff Cai <cliff.cai@analog.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Felipe Balbi <felipe.balbi@nokia.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/musb/musb_regs.h')
-rw-r--r--drivers/usb/musb/musb_regs.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/usb/musb/musb_regs.h b/drivers/usb/musb/musb_regs.h
index 895fb057e443..292894a2c247 100644
--- a/drivers/usb/musb/musb_regs.h
+++ b/drivers/usb/musb/musb_regs.h
@@ -533,7 +533,11 @@ static inline u8 musb_read_configdata(void __iomem *mbase)
static inline u16 musb_read_hwvers(void __iomem *mbase)
{
- return 0;
+ /*
+ * This register is invisible on Blackfin, actually the MUSB
+ * RTL version of Blackfin is 1.9, so just harcode its value.
+ */
+ return MUSB_HWVERS_1900;
}
static inline void __iomem *musb_read_target_reg_base(u8 i, void __iomem *mbase)