All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2 1/2] mx6sabre: Enable User Mass Storage
@ 2015-02-26 16:50 Fabio Estevam
  2015-02-26 16:50 ` [U-Boot] [PATCH v2 2/2] mx6sabre: Select BOUNCE_BUFFER and CMD_EXT options Fabio Estevam
  2015-02-26 18:53 ` [U-Boot] [PATCH v2 1/2] mx6sabre: Enable User Mass Storage Otavio Salvador
  0 siblings, 2 replies; 5+ messages in thread
From: Fabio Estevam @ 2015-02-26 16:50 UTC (permalink / raw)
  To: u-boot

User Mass Storage is very useful for flashing the on-board eMMC.

Add support for it.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
Changes since v1:
- Remove EXT2/EXT4 and BOUNCE_BUFFER support

 include/configs/mx6sabre_common.h | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/include/configs/mx6sabre_common.h b/include/configs/mx6sabre_common.h
index f0f721e..337b865 100644
--- a/include/configs/mx6sabre_common.h
+++ b/include/configs/mx6sabre_common.h
@@ -279,4 +279,18 @@
 #define CONFIG_IMX_HDMI
 #define CONFIG_IMX_VIDEO_SKIP
 
+#define CONFIG_CI_UDC
+#define CONFIG_USBD_HS
+#define CONFIG_USB_GADGET_DUALSPEED
+
+#define CONFIG_USB_GADGET
+#define CONFIG_CMD_USB_MASS_STORAGE
+#define CONFIG_USB_GADGET_MASS_STORAGE
+#define CONFIG_USBDOWNLOAD_GADGET
+#define CONFIG_USB_GADGET_VBUS_DRAW	2
+
+#define CONFIG_G_DNL_VENDOR_NUM		0x0525
+#define CONFIG_G_DNL_PRODUCT_NUM	0xa4a5
+#define CONFIG_G_DNL_MANUFACTURER	"FSL"
+
 #endif                         /* __MX6QSABRE_COMMON_CONFIG_H */
-- 
1.9.1

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

* [U-Boot] [PATCH v2 2/2] mx6sabre: Select BOUNCE_BUFFER and CMD_EXT options
  2015-02-26 16:50 [U-Boot] [PATCH v2 1/2] mx6sabre: Enable User Mass Storage Fabio Estevam
@ 2015-02-26 16:50 ` Fabio Estevam
  2015-02-26 18:53   ` Otavio Salvador
  2015-02-26 19:44   ` Nikolay Dimitrov
  2015-02-26 18:53 ` [U-Boot] [PATCH v2 1/2] mx6sabre: Enable User Mass Storage Otavio Salvador
  1 sibling, 2 replies; 5+ messages in thread
From: Fabio Estevam @ 2015-02-26 16:50 UTC (permalink / raw)
  To: u-boot

Add EXT2/EXT4 and BOUNCE_BUFFER support.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
Changes since v1:
- Newly introduced in this series

 include/configs/mx6sabre_common.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/configs/mx6sabre_common.h b/include/configs/mx6sabre_common.h
index 337b865..67d74d0 100644
--- a/include/configs/mx6sabre_common.h
+++ b/include/configs/mx6sabre_common.h
@@ -56,6 +56,8 @@
 #define CONFIG_GENERIC_MMC
 #define CONFIG_BOUNCE_BUFFER
 #define CONFIG_CMD_EXT2
+#define CONFIG_CMD_EXT4
+#define CONFIG_CMD_EXT4_WRITE
 #define CONFIG_CMD_FAT
 #define CONFIG_DOS_PARTITION
 
-- 
1.9.1

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

* [U-Boot] [PATCH v2 1/2] mx6sabre: Enable User Mass Storage
  2015-02-26 16:50 [U-Boot] [PATCH v2 1/2] mx6sabre: Enable User Mass Storage Fabio Estevam
  2015-02-26 16:50 ` [U-Boot] [PATCH v2 2/2] mx6sabre: Select BOUNCE_BUFFER and CMD_EXT options Fabio Estevam
@ 2015-02-26 18:53 ` Otavio Salvador
  1 sibling, 0 replies; 5+ messages in thread
From: Otavio Salvador @ 2015-02-26 18:53 UTC (permalink / raw)
  To: u-boot

On Thu, Feb 26, 2015 at 1:50 PM, Fabio Estevam
<fabio.estevam@freescale.com> wrote:
> User Mass Storage is very useful for flashing the on-board eMMC.
>
> Add support for it.
>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>

Acked-by: Otavio Salvador <otavio@ossystems.com.br>


-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750

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

* [U-Boot] [PATCH v2 2/2] mx6sabre: Select BOUNCE_BUFFER and CMD_EXT options
  2015-02-26 16:50 ` [U-Boot] [PATCH v2 2/2] mx6sabre: Select BOUNCE_BUFFER and CMD_EXT options Fabio Estevam
@ 2015-02-26 18:53   ` Otavio Salvador
  2015-02-26 19:44   ` Nikolay Dimitrov
  1 sibling, 0 replies; 5+ messages in thread
From: Otavio Salvador @ 2015-02-26 18:53 UTC (permalink / raw)
  To: u-boot

On Thu, Feb 26, 2015 at 1:50 PM, Fabio Estevam
<fabio.estevam@freescale.com> wrote:
> Add EXT2/EXT4 and BOUNCE_BUFFER support.
>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>


Acked-by: Otavio Salvador <otavio@ossystems.com.br>

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750

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

* [U-Boot] [PATCH v2 2/2] mx6sabre: Select BOUNCE_BUFFER and CMD_EXT options
  2015-02-26 16:50 ` [U-Boot] [PATCH v2 2/2] mx6sabre: Select BOUNCE_BUFFER and CMD_EXT options Fabio Estevam
  2015-02-26 18:53   ` Otavio Salvador
@ 2015-02-26 19:44   ` Nikolay Dimitrov
  1 sibling, 0 replies; 5+ messages in thread
From: Nikolay Dimitrov @ 2015-02-26 19:44 UTC (permalink / raw)
  To: u-boot

Hi Fabio,

On 02/26/2015 06:50 PM, Fabio Estevam wrote:
> Add EXT2/EXT4 and BOUNCE_BUFFER support.
>
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
> Changes since v1:
> - Newly introduced in this series
>
>   include/configs/mx6sabre_common.h | 2 ++
>   1 file changed, 2 insertions(+)
>
> diff --git a/include/configs/mx6sabre_common.h b/include/configs/mx6sabre_common.h
> index 337b865..67d74d0 100644
> --- a/include/configs/mx6sabre_common.h
> +++ b/include/configs/mx6sabre_common.h
> @@ -56,6 +56,8 @@
>   #define CONFIG_GENERIC_MMC
>   #define CONFIG_BOUNCE_BUFFER
>   #define CONFIG_CMD_EXT2
> +#define CONFIG_CMD_EXT4
> +#define CONFIG_CMD_EXT4_WRITE
>   #define CONFIG_CMD_FAT
>   #define CONFIG_DOS_PARTITION

I don't see the BOUNCE_BUFFER config option changed, and also no change
related to EXT2.

Kind regards,
Nikolay

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

end of thread, other threads:[~2015-02-26 19:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-26 16:50 [U-Boot] [PATCH v2 1/2] mx6sabre: Enable User Mass Storage Fabio Estevam
2015-02-26 16:50 ` [U-Boot] [PATCH v2 2/2] mx6sabre: Select BOUNCE_BUFFER and CMD_EXT options Fabio Estevam
2015-02-26 18:53   ` Otavio Salvador
2015-02-26 19:44   ` Nikolay Dimitrov
2015-02-26 18:53 ` [U-Boot] [PATCH v2 1/2] mx6sabre: Enable User Mass Storage Otavio Salvador

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.