From mboxrd@z Thu Jan 1 00:00:00 1970 From: Priit Laes Date: Wed, 16 Jul 2014 14:28:58 +0300 Subject: [U-Boot] [linux-sunxi] [PATCH v2 2/5] sunxi: add USB EHCI driver In-Reply-To: References: Message-ID: <1405510138.24203.3.camel@plaes.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de ?hel kenal p?eval, T, 15.07.2014 kell 23:56, kirjutas Roman Byshko: > Signed-off-by: Roman Byshko > --- > drivers/usb/host/Makefile | 1 + > drivers/usb/host/ehci-sunxi.c | 212 > ++++++++++++++++++++++++++++++++++++++++++ > 2 files changed, 213 insertions(+) > create mode 100644 drivers/usb/host/ehci-sunxi.c > > diff --git a/drivers/usb/host/Makefile b/drivers/usb/host/Makefile > index 04c1a64..c4f5157 100644 > --- a/drivers/usb/host/Makefile > +++ b/drivers/usb/host/Makefile > @@ -35,6 +35,7 @@ obj-$(CONFIG_USB_EHCI_PPC4XX) += ehci-ppc4xx.o > obj-$(CONFIG_USB_EHCI_MARVELL) += ehci-marvell.o > obj-$(CONFIG_USB_EHCI_PCI) += ehci-pci.o > obj-$(CONFIG_USB_EHCI_SPEAR) += ehci-spear.o > +obj-$(CONFIG_USB_EHCI_SUNXI) += ehci-sunxi.o > obj-$(CONFIG_USB_EHCI_TEGRA) += ehci-tegra.o > obj-$(CONFIG_USB_EHCI_VCT) += ehci-vct.o > obj-$(CONFIG_USB_EHCI_RMOBILE) += ehci-rmobile.o > diff --git a/drivers/usb/host/ehci-sunxi.c > b/drivers/usb/host/ehci-sunxi.c > new file mode 100644 > index 0000000..8e2baa9 > --- /dev/null > +++ b/drivers/usb/host/ehci-sunxi.c > @@ -0,0 +1,212 @@ > +/* > + * Copyright (C) 2014 Roman Byshko > + * > + * Roman Byshko > + * > + * Based on code from > + * Allwinner Technology Co., Ltd. > + * > + * SPDX-License-Identifier: GPL-2.0+ > + */ > + > +#include > +#include Dupe ^^