All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/2] omap3: fix NAND support for mcx board
@ 2015-07-26 12:32 Stefano Babic
  2015-07-26 12:32 ` [U-Boot] [PATCH 2/2] mcx: add Ethernet over USB Stefano Babic
  2015-07-26 12:49 ` [U-Boot] [PATCH 1/2] omap3: fix NAND support for mcx board Michael Trimarchi
  0 siblings, 2 replies; 5+ messages in thread
From: Stefano Babic @ 2015-07-26 12:32 UTC (permalink / raw)
  To: u-boot

mcx was not updated according to changes in
NAND driver.

Signed-off-by: Stefano Babic <sbabic@denx.de>
---
 include/configs/mcx.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/include/configs/mcx.h b/include/configs/mcx.h
index 0a7b7cf..d8766b9 100644
--- a/include/configs/mcx.h
+++ b/include/configs/mcx.h
@@ -309,7 +309,10 @@
  */
 
 /* **** PISMO SUPPORT *** */
+#define CONFIG_NAND
+#define CONFIG_SYS_NAND_BUSWIDTH_16BIT	16
 #define CONFIG_NAND_OMAP_GPMC
+#define CONFIG_NAND_OMAP_GPMC_PREFETCH
 #define CONFIG_ENV_IS_IN_NAND
 #define SMNAND_ENV_OFFSET		0x180000 /* environment starts here */
 
-- 
1.9.1

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

* [U-Boot] [PATCH 2/2] mcx: add Ethernet over USB
  2015-07-26 12:32 [U-Boot] [PATCH 1/2] omap3: fix NAND support for mcx board Stefano Babic
@ 2015-07-26 12:32 ` Stefano Babic
  2015-07-26 12:49 ` [U-Boot] [PATCH 1/2] omap3: fix NAND support for mcx board Michael Trimarchi
  1 sibling, 0 replies; 5+ messages in thread
From: Stefano Babic @ 2015-07-26 12:32 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Stefano Babic <sbabic@denx.de>
---
 include/configs/mcx.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/include/configs/mcx.h b/include/configs/mcx.h
index d8766b9..e17157e 100644
--- a/include/configs/mcx.h
+++ b/include/configs/mcx.h
@@ -111,6 +111,9 @@
 #define CONFIG_USB_ULPI_VIEWPORT_OMAP
 #define CONFIG_OMAP_EHCI_PHY1_RESET_GPIO	57
 #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 3
+#define	CONFIG_USB_HOST_ETHER
+#define	CONFIG_USB_ETHER_ASIX
+#define CONFIG_USB_ETHER_MCS7830
 
 /* commands to include */
 #define CONFIG_CMD_EXT2		/* EXT2 Support			*/
-- 
1.9.1

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

* [U-Boot] [PATCH 1/2] omap3: fix NAND support for mcx board
  2015-07-26 12:32 [U-Boot] [PATCH 1/2] omap3: fix NAND support for mcx board Stefano Babic
  2015-07-26 12:32 ` [U-Boot] [PATCH 2/2] mcx: add Ethernet over USB Stefano Babic
@ 2015-07-26 12:49 ` Michael Trimarchi
  2015-07-26 13:04   ` Stefano Babic
  1 sibling, 1 reply; 5+ messages in thread
From: Michael Trimarchi @ 2015-07-26 12:49 UTC (permalink / raw)
  To: u-boot

Hi Stefano

On Sun, Jul 26, 2015 at 2:32 PM, Stefano Babic <sbabic@denx.de> wrote:
> mcx was not updated according to changes in
> NAND driver.
>
> Signed-off-by: Stefano Babic <sbabic@denx.de>
> ---
>  include/configs/mcx.h | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/include/configs/mcx.h b/include/configs/mcx.h
> index 0a7b7cf..d8766b9 100644
> --- a/include/configs/mcx.h
> +++ b/include/configs/mcx.h
> @@ -309,7 +309,10 @@
>   */
>
>  /* **** PISMO SUPPORT *** */
> +#define CONFIG_NAND
> +#define CONFIG_SYS_NAND_BUSWIDTH_16BIT 16

Well the define name and the value is really funny ;)

Michael

>  #define CONFIG_NAND_OMAP_GPMC
> +#define CONFIG_NAND_OMAP_GPMC_PREFETCH
>  #define CONFIG_ENV_IS_IN_NAND
>  #define SMNAND_ENV_OFFSET              0x180000 /* environment starts here */
>
> --
> 1.9.1
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot



-- 
| Michael Nazzareno Trimarchi                     Amarula Solutions BV |
| COO  -  Founder                                      Cruquiuskade 47 |
| +31(0)851119172                                 Amsterdam 1018 AM NL |
|                  [`as] http://www.amarulasolutions.com               |

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

* [U-Boot] [PATCH 1/2] omap3: fix NAND support for mcx board
  2015-07-26 12:49 ` [U-Boot] [PATCH 1/2] omap3: fix NAND support for mcx board Michael Trimarchi
@ 2015-07-26 13:04   ` Stefano Babic
  2015-07-26 13:07     ` Michael Trimarchi
  0 siblings, 1 reply; 5+ messages in thread
From: Stefano Babic @ 2015-07-26 13:04 UTC (permalink / raw)
  To: u-boot

Hi Michael,

On 26/07/2015 14:49, Michael Trimarchi wrote:
> Hi Stefano
> 
> On Sun, Jul 26, 2015 at 2:32 PM, Stefano Babic <sbabic@denx.de> wrote:
>> mcx was not updated according to changes in
>> NAND driver.
>>
>> Signed-off-by: Stefano Babic <sbabic@denx.de>
>> ---
>>  include/configs/mcx.h | 3 +++
>>  1 file changed, 3 insertions(+)
>>
>> diff --git a/include/configs/mcx.h b/include/configs/mcx.h
>> index 0a7b7cf..d8766b9 100644
>> --- a/include/configs/mcx.h
>> +++ b/include/configs/mcx.h
>> @@ -309,7 +309,10 @@
>>   */
>>
>>  /* **** PISMO SUPPORT *** */
>> +#define CONFIG_NAND
>> +#define CONFIG_SYS_NAND_BUSWIDTH_16BIT 16
> 
> Well the define name and the value is really funny ;)
> 

You're right - funnier is that is common (I copied & paste from another
board):

include/configs/omap3_beagle.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT	16
include/configs/am3517_crane.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT	16
include/configs/omap3_zoom1.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT	16
include/configs/omap3_overo.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT	16
include/configs/dig297.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT	16
include/configs/dra7xx_evm.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT
include/configs/omap3_igep00x0.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT	16
include/configs/omap3_logic.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT	16
include/configs/tt01.h: * #define CONFIG_SYS_NAND_BUSWIDTH_16BIT
include/configs/omap3_pandora.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT	16
include/configs/tao3530.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT	16
include/configs/devkit8000.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT	16
include/configs/tam3517-common.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT	16
include/configs/omap3_evm_common.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT	16


I drop it in V2, thanks.

Stefano

-- 
=====================================================================
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] 5+ messages in thread

* [U-Boot] [PATCH 1/2] omap3: fix NAND support for mcx board
  2015-07-26 13:04   ` Stefano Babic
@ 2015-07-26 13:07     ` Michael Trimarchi
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Trimarchi @ 2015-07-26 13:07 UTC (permalink / raw)
  To: u-boot

Hi

On Sun, Jul 26, 2015 at 3:04 PM, Stefano Babic <sbabic@denx.de> wrote:
> Hi Michael,
>
> On 26/07/2015 14:49, Michael Trimarchi wrote:
>> Hi Stefano
>>
>> On Sun, Jul 26, 2015 at 2:32 PM, Stefano Babic <sbabic@denx.de> wrote:
>>> mcx was not updated according to changes in
>>> NAND driver.
>>>
>>> Signed-off-by: Stefano Babic <sbabic@denx.de>
>>> ---
>>>  include/configs/mcx.h | 3 +++
>>>  1 file changed, 3 insertions(+)
>>>
>>> diff --git a/include/configs/mcx.h b/include/configs/mcx.h
>>> index 0a7b7cf..d8766b9 100644
>>> --- a/include/configs/mcx.h
>>> +++ b/include/configs/mcx.h
>>> @@ -309,7 +309,10 @@
>>>   */
>>>
>>>  /* **** PISMO SUPPORT *** */
>>> +#define CONFIG_NAND
>>> +#define CONFIG_SYS_NAND_BUSWIDTH_16BIT 16
>>
>> Well the define name and the value is really funny ;)
>>
>
> You're right - funnier is that is common (I copied & paste from another
> board):
>

Please prepare even a cleanup patch for the other if you have time ;)

Michael

> include/configs/omap3_beagle.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT   16
> include/configs/am3517_crane.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT   16
> include/configs/omap3_zoom1.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT    16
> include/configs/omap3_overo.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT    16
> include/configs/dig297.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT 16
> include/configs/dra7xx_evm.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT
> include/configs/omap3_igep00x0.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT 16
> include/configs/omap3_logic.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT    16
> include/configs/tt01.h: * #define CONFIG_SYS_NAND_BUSWIDTH_16BIT
> include/configs/omap3_pandora.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT  16
> include/configs/tao3530.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT        16
> include/configs/devkit8000.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT     16
> include/configs/tam3517-common.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT 16
> include/configs/omap3_evm_common.h:#define CONFIG_SYS_NAND_BUSWIDTH_16BIT       16
>
>
> I drop it in V2, thanks.
>
> Stefano
>
> --
> =====================================================================
> 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
> =====================================================================



-- 
| Michael Nazzareno Trimarchi                     Amarula Solutions BV |
| COO  -  Founder                                      Cruquiuskade 47 |
| +31(0)851119172                                 Amsterdam 1018 AM NL |
|                  [`as] http://www.amarulasolutions.com               |

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

end of thread, other threads:[~2015-07-26 13:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-26 12:32 [U-Boot] [PATCH 1/2] omap3: fix NAND support for mcx board Stefano Babic
2015-07-26 12:32 ` [U-Boot] [PATCH 2/2] mcx: add Ethernet over USB Stefano Babic
2015-07-26 12:49 ` [U-Boot] [PATCH 1/2] omap3: fix NAND support for mcx board Michael Trimarchi
2015-07-26 13:04   ` Stefano Babic
2015-07-26 13:07     ` Michael Trimarchi

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.