public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] wandboard: enable SATA with imx6q
@ 2016-06-09  8:33 Gilles Chanteperdrix
  2016-06-18  9:18 ` Stefano Babic
  0 siblings, 1 reply; 3+ messages in thread
From: Gilles Chanteperdrix @ 2016-06-09  8:33 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Gilles Chanteperdrix <gilles.chanteperdrix@xenomai.org>
---
 board/wandboard/wandboard.c |  6 ++++++
 include/configs/wandboard.h | 12 ++++++++++++
 2 files changed, 18 insertions(+)

diff --git a/board/wandboard/wandboard.c b/board/wandboard/wandboard.c
index 4ce74cd..8340dd1 100644
--- a/board/wandboard/wandboard.c
+++ b/board/wandboard/wandboard.c
@@ -345,6 +345,12 @@ int board_early_init_f(void)
 #if defined(CONFIG_VIDEO_IPUV3)
 	setup_display();
 #endif
+#ifdef CONFIG_CMD_SATA
+	/* Only mx6q wandboard has SATA */
+	if (is_cpu_type(MXC_CPU_MX6Q))
+		setup_sata();
+#endif
+
 	return 0;
 }
 
diff --git a/include/configs/wandboard.h b/include/configs/wandboard.h
index 99f5c0c..92af6543 100644
--- a/include/configs/wandboard.h
+++ b/include/configs/wandboard.h
@@ -28,6 +28,18 @@
 #define CONFIG_MXC_UART
 #define CONFIG_MXC_UART_BASE		UART1_BASE
 
+/* SATA Configs */
+
+#define CONFIG_CMD_SATA
+#ifdef CONFIG_CMD_SATA
+#define CONFIG_DWC_AHSATA
+#define CONFIG_SYS_SATA_MAX_DEVICE	1
+#define CONFIG_DWC_AHSATA_PORT_ID	0
+#define CONFIG_DWC_AHSATA_BASE_ADDR	SATA_ARB_BASE_ADDR
+#define CONFIG_LBA48
+#define CONFIG_LIBATA
+#endif
+
 /* Command definition */
 #define CONFIG_CMD_BMODE
 
-- 
2.8.2

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH] wandboard: enable SATA with imx6q
  2016-06-09  8:33 [U-Boot] [PATCH] wandboard: enable SATA with imx6q Gilles Chanteperdrix
@ 2016-06-18  9:18 ` Stefano Babic
  2016-06-18 14:10   ` Fabio Estevam
  0 siblings, 1 reply; 3+ messages in thread
From: Stefano Babic @ 2016-06-18  9:18 UTC (permalink / raw)
  To: u-boot

Hi Gilles,

On 09/06/2016 10:33, Gilles Chanteperdrix wrote:
> Signed-off-by: Gilles Chanteperdrix <gilles.chanteperdrix@xenomai.org>
> ---
>  board/wandboard/wandboard.c |  6 ++++++
>  include/configs/wandboard.h | 12 ++++++++++++
>  2 files changed, 18 insertions(+)
> 
> diff --git a/board/wandboard/wandboard.c b/board/wandboard/wandboard.c
> index 4ce74cd..8340dd1 100644
> --- a/board/wandboard/wandboard.c
> +++ b/board/wandboard/wandboard.c
> @@ -345,6 +345,12 @@ int board_early_init_f(void)
>  #if defined(CONFIG_VIDEO_IPUV3)
>  	setup_display();
>  #endif
> +#ifdef CONFIG_CMD_SATA
> +	/* Only mx6q wandboard has SATA */
> +	if (is_cpu_type(MXC_CPU_MX6Q))
> +		setup_sata();
> +#endif
> +
>  	return 0;
>  }
>  
> diff --git a/include/configs/wandboard.h b/include/configs/wandboard.h
> index 99f5c0c..92af6543 100644
> --- a/include/configs/wandboard.h
> +++ b/include/configs/wandboard.h
> @@ -28,6 +28,18 @@
>  #define CONFIG_MXC_UART
>  #define CONFIG_MXC_UART_BASE		UART1_BASE
>  
> +/* SATA Configs */
> +
> +#define CONFIG_CMD_SATA
> +#ifdef CONFIG_CMD_SATA
> +#define CONFIG_DWC_AHSATA
> +#define CONFIG_SYS_SATA_MAX_DEVICE	1
> +#define CONFIG_DWC_AHSATA_PORT_ID	0
> +#define CONFIG_DWC_AHSATA_BASE_ADDR	SATA_ARB_BASE_ADDR
> +#define CONFIG_LBA48
> +#define CONFIG_LIBATA
> +#endif
> +
>  /* Command definition */
>  #define CONFIG_CMD_BMODE
>  

Fine with me - I applied to -next branch.

Added Fabio in CC as board maintainer - I van still change before this
flows into master branch.


Best regards,
Stefano Babic


-- 
=====================================================================
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [U-Boot] [PATCH] wandboard: enable SATA with imx6q
  2016-06-18  9:18 ` Stefano Babic
@ 2016-06-18 14:10   ` Fabio Estevam
  0 siblings, 0 replies; 3+ messages in thread
From: Fabio Estevam @ 2016-06-18 14:10 UTC (permalink / raw)
  To: u-boot

Hi Stefano,

On Sat, Jun 18, 2016 at 6:18 AM, Stefano Babic <sbabic@denx.de> wrote:

> Fine with me - I applied to -next branch.
>
> Added Fabio in CC as board maintainer - I van still change before this
> flows into master branch.

Looks good:

Acked-by: Fabio Estevam <fabio.estevam@nxp.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-06-18 14:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-09  8:33 [U-Boot] [PATCH] wandboard: enable SATA with imx6q Gilles Chanteperdrix
2016-06-18  9:18 ` Stefano Babic
2016-06-18 14:10   ` Fabio Estevam

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox