From mboxrd@z Thu Jan 1 00:00:00 1970 From: Minkyu Kang Date: Mon, 17 Nov 2014 23:02:58 +0900 Subject: [U-Boot] [PATCH v3 3/3] arm: odroid: usb: add support for usb host including ethernet In-Reply-To: <1414599763-15861-3-git-send-email-suriyan.r@gmail.com> References: <1414599763-15861-1-git-send-email-suriyan.r@gmail.com> <1414599763-15861-3-git-send-email-suriyan.r@gmail.com> Message-ID: <546A0012.5050101@samsung.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 30/10/14 01:22, Suriyan Ramasami wrote: > This change adds support for enabling the USB host features of the board. > This includes the USB3503A hub and the SMC LAN9730 ethernet controller > as well. > > Signed-off-by: Suriyan Ramasami > > --- > > Changes in v3: > * removed set_usb_ethaddr() and related code as the GUID registers do not > seem to be documented anywhere. This is sad, as this mechanism allows > for each Odroid to boot up with the same MAC address every time, but no > two odroids shall have the same MAC address on boot. This ensures multiple > odroids in the same LAN to come up without conflicting MAC addresses. > * Minkyu - Do not mix cpu_is... and proid_is... > > Changes in v2: > * Jaehoon - Split power.[ch] as a separate patch > * Removed an unneeded header file from ehci-exynos.c > * Jaehoon - Fix indentation in the dts file > > Changes in v1: > * First try > > arch/arm/dts/exynos4412-odroid.dts | 11 +++++++ > arch/arm/include/asm/arch-exynos/ehci.h | 13 ++++++++ > board/samsung/odroid/odroid.c | 32 +++++++++++++++++++ > drivers/usb/host/ehci-exynos.c | 55 ++++++++++++++++++++++++++++----- > include/configs/odroid.h | 13 ++++++++ > 5 files changed, 116 insertions(+), 8 deletions(-) > applied to u-boot-samsung. Thanks, Minkyu Kang.