From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tom Date: Fri, 13 Nov 2009 08:00:56 -0600 Subject: [U-Boot] [PATCH 3/4 v2] DA8xx: Add MUSB host support In-Reply-To: <0554BEF07D437848AF01B9C9B5F0BC5D93FA8B23@dlee01.ent.ti.com> References: <1258093877-7562-1-git-send-email-ajay.gupta@ti.com> <1258093877-7562-2-git-send-email-ajay.gupta@ti.com> <1258093877-7562-3-git-send-email-ajay.gupta@ti.com> <0554BEF07D437848AF01B9C9B5F0BC5D93FA8B23@dlee01.ent.ti.com> Message-ID: <4AFD6698.90706@windriver.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Paulraj, Sandeep wrote: > Ajay, > > We have a problem with your licensing > >> Subject: [U-Boot] [PATCH 3/4 v2] DA8xx: Add MUSB host support >> >> Tested USB host functionality on DA830 EVM. >> >> Signed-off-by: Ajay Kumar Gupta >> Signed-off-by: Swaminathan S >> --- >> drivers/usb/musb/Makefile | 1 + >> drivers/usb/musb/da8xx.c | 138 >> +++++++++++++++++++++++++++++++++++++++++++++ >> drivers/usb/musb/da8xx.h | 79 ++++++++++++++++++++++++++ >> include/usb.h | 3 +- >> 4 files changed, 220 insertions(+), 1 deletions(-) >> create mode 100644 drivers/usb/musb/da8xx.c >> create mode 100644 drivers/usb/musb/da8xx.h >> >> diff --git a/drivers/usb/musb/Makefile b/drivers/usb/musb/Makefile >> index 09e0a5f..eb4d8fd 100644 >> --- a/drivers/usb/musb/Makefile >> +++ b/drivers/usb/musb/Makefile >> @@ -27,6 +27,7 @@ LIB := $(obj)libusb_musb.a >> >> COBJS-$(CONFIG_MUSB_HCD) += musb_hcd.o musb_core.o >> COBJS-$(CONFIG_USB_DAVINCI) += davinci.o >> +COBJS-$(CONFIG_USB_DA8XX) += da8xx.o >> >> COBJS := $(COBJS-y) >> SRCS := $(COBJS:.o=.c) >> diff --git a/drivers/usb/musb/da8xx.c b/drivers/usb/musb/da8xx.c >> new file mode 100644 >> index 0000000..5b02e33 >> --- /dev/null >> +++ b/drivers/usb/musb/da8xx.c >> @@ -0,0 +1,138 @@ >> +/* >> + * da8xx.c - TI's DA8xx platform specific usb wrapper functions. >> + * >> + * Author: Ajay Kumar Gupta >> + * >> + * Based on drivers/usb/musb/davinci.c >> + * >> + * Copyright (c) 2009 Texas Instruments Incorporated >> + * >> + * This package is free software; you can redistribute it and/or >> + * modify it under the terms of the license found in the file >> + * named COPYING that should have accompanied this file. >> + * >> + * THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR >> + * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED >> + * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. > > This is not going to work. I have discussed offline with Wolfgang and Tom. > This is going to probably get a NAK from both of them unless they have had a change of heart in the last month. > I know what you have done is in response to a possible U-Boot moving to GPL v3. The link you read is http://www.denx.de/wiki/U-Boot/Patches Tom