All of lore.kernel.org
 help / color / mirror / Atom feed
From: Marek Vasut <marex@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 2/2] exynos5: arndale: Add network support
Date: Thu, 12 Dec 2013 11:03:42 +0100	[thread overview]
Message-ID: <201312121103.42706.marex@denx.de> (raw)
In-Reply-To: <1382165367-6618-3-git-send-email-inderpal.singh@linaro.org>

On Saturday, October 19, 2013 at 08:49:27 AM, Inderpal Singh wrote:
> From: Chander Kashyap <chander.kashyap@linaro.org>
> 
> Arndale board has AX88760, which is USB 2.0 Hub & USB 2.0 Ethernet Combo
> controller, connected to HSIC Phy of USB host controller via USB3503 hub.
> 
> This patch implements a board specific board_usb_init function in ehci
> driver to perform reset sequence for USB3503 hub and enables the relevant
> config options for network to work.
> 
> Signed-off-by: Inderpal Singh <inderpal.singh@linaro.org>
> Signed-off-by: Chander Kashyap <chander.kashyap@linaro.org>
> ---
>  board/samsung/arndale/arndale.c |   23 +++++++++++++++++++++++
>  drivers/usb/host/ehci-exynos.c  |    9 +++++++++
>  include/configs/arndale.h       |    6 ++++++
>  3 files changed, 38 insertions(+)
> 
> diff --git a/board/samsung/arndale/arndale.c
> b/board/samsung/arndale/arndale.c index 052fecd..44f20b9 100644
> --- a/board/samsung/arndale/arndale.c
> +++ b/board/samsung/arndale/arndale.c
> @@ -7,10 +7,23 @@
>  #include <common.h>
>  #include <asm/arch/pinmux.h>
>  #include <asm/arch/dwmmc.h>
> +#include <asm/arch/gpio.h>
>  #include <asm/arch/power.h>
> 
>  DECLARE_GLOBAL_DATA_PTR;
> 
> +#ifdef CONFIG_USB_EHCI_EXYNOS
> +void board_usb_init(int value)
> +{
> +	struct exynos5_gpio_part1 *gpio = (struct exynos5_gpio_part1 *)
> +						samsung_get_base_gpio_part1();
> +
> +	/* Configure gpios for usb 3503 hub's reset and connect */
> +	s5p_gpio_direction_output(&gpio->x3, 5, value);
> +	s5p_gpio_direction_output(&gpio->d1, 7, value);
> +}
> +#endif
> +
>  int board_init(void)
>  {
>  	gd->bd->bi_boot_params = (PHYS_SDRAM_1 + 0x100UL);
> @@ -91,6 +104,16 @@ int board_early_init_f(void)
>  }
>  #endif
> 
> +#ifdef CONFIG_BOARD_LATE_INIT
> +int board_late_init(void)
> +{
> +#ifdef CONFIG_PREBOOT
> +	setenv("preboot", CONFIG_PREBOOT);
> +	setenv("usbethaddr", "00:40:5c:26:0a:5b");

Why do you need these 'setenv' calls ? This logic seems completely broken. The 
'preboot' env variable is set already by defining the CONFIG_PREBOOT and the 
usbethaddr shall be set by user.
[...]

  reply	other threads:[~2013-12-12 10:03 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-10-19  6:49 [U-Boot] [PATCH 0/2] Add usb eth support Inderpal Singh
2013-10-19  6:49 ` [U-Boot] [PATCH 1/2] usb: ehci: exynos: set/reset hsic phys Inderpal Singh
2013-10-19  6:49 ` [U-Boot] [PATCH 2/2] exynos5: arndale: Add network support Inderpal Singh
2013-12-12 10:03   ` Marek Vasut [this message]
2013-12-14 14:00     ` Inderpal Singh
2013-12-14 14:20       ` Marek Vasut
2013-12-14 14:28         ` Inderpal Singh
2013-12-14 17:14           ` Marek Vasut
2013-11-19  5:39 ` [U-Boot] [PATCH 0/2] Add usb eth support Chander Kashyap
2013-12-02 10:21   ` Chander Kashyap
2013-12-12  8:24     ` Minkyu Kang
2013-12-12 10:04       ` Marek Vasut

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201312121103.42706.marex@denx.de \
    --to=marex@denx.de \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.