Re: [U-Boot] [PATCH] S5PC2XX: clock: support pwm clock for evt1 (cpu revision 1)

2011-05-20 Thread Minkyu Kang
On 19 May 2011 15:35, Minkyu Kang  wrote:
> The source of pwm clock is fixed at evt1.
> And some registers for pwm clock are removed.
>
> Signed-off-by: Minkyu Kang 
> Signed-off-by: Kyungmin Park 
> ---

applied to u-boot-samsung

Minkyu Kang
-- 
from. prom.
www.promsoft.net
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH] mx51evk: Fix number of DDR banks

2011-05-20 Thread Stefano Babic
On 05/19/2011 06:32 PM, Fabio Estevam wrote:
> MX51EVK board has 2 banks of 256MB DDR memories instead of a single one with 
> 512MB.
> 
> Signed-off-by: Fabio Estevam 
> ---

Hi Fabio,

>  board/freescale/mx51evk/mx51evk.c |   18 +++---
>  include/configs/mx51evk.h |7 +--
>  2 files changed, 20 insertions(+), 5 deletions(-)
> 
> diff --git a/board/freescale/mx51evk/mx51evk.c 
> b/board/freescale/mx51evk/mx51evk.c
> index e2d3d74..ef7c6e4 100644
> --- a/board/freescale/mx51evk/mx51evk.c
> +++ b/board/freescale/mx51evk/mx51evk.c
> @@ -52,11 +52,23 @@ u32 get_board_rev(void)
>  
>  int dram_init(void)
>  {
> - /* dram_init must store complete ramsize in gd->ram_size */
> - gd->ram_size = get_ram_size((volatile void *)CONFIG_SYS_SDRAM_BASE,
> - PHYS_SDRAM_1_SIZE);
> + u32 size1, size2;
> +
> + size1 = get_ram_size((volatile void *)PHYS_SDRAM_1, PHYS_SDRAM_1_SIZE);
> + size2 = get_ram_size((volatile void *)PHYS_SDRAM_2, PHYS_SDRAM_2_SIZE);
> +
> + gd->ram_size = size1 + size2;
> +

Do we really need this patch ? I am trying to understand. I think we
need always to set up two (or more) banks if there is a hole between the
two banks. For example, if it would be possible to install a memory with
a smaller size. This is the case of the MX53loco, because the range
between CSD0 and CSD1 is 1GB.

This is not the case of the mx51evk, if I am correct. CSD0 and CSD1
address each 256MB, and memory from the software point of view is
contiguous.

Best regards,
Stefano Babic

-- 
=
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: off...@denx.de
=
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v4 1/4] MX5: Make the weim structure complete

2011-05-20 Thread Stefano Babic
On 05/19/2011 09:27 PM, Fabio Estevam wrote:
> Signed-off-by: Fabio Estevam 
> ---

Hi Fabio,


> + * WEIM CSnGCR1
> + */
> +#define CSEN(x)  (x)
> +#define SWR(x)   ((x) << 1)
> +#define SRD(x)   ((x) << 2)
> +#define MUM(x)   ((x) << 3)
> +#define WFL(x)   ((x) << 4)

Probably the macros for single bits can take confusion. Why do we need a
parameter ?
I am expecting that CSEN(1) sets the bit and CSEN(0) resets the bit, and
this is obviously not the case, because we use them in or-wise or to
mask some bits. For single bits there is no test about the parameter and
I could use CSEN(7), and that is completely wrong.

Is it not better to remove the parameter for single bits ? If we define
for example

SRD (1 << 2)

it is always clear what we want to do and there is no way to generate
confusion. And no need to check the parameter.

Best regards,
Stefano Babic

-- 
=
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: off...@denx.de
=
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH] mx51evk: Make use of the i.MX GPIO API

2011-05-20 Thread Stefano Babic
On 05/19/2011 09:15 PM, Fabio Estevam wrote:
> Make use of the i.MX GPIO API.

Hi Fabio,

thanks for cleanup this code.

> 
> While at it created a separate function for the FEC PHY reset,
> so that it can be decoupled from the power_init function.
> 
> Signed-off-by: Fabio Estevam 
> ---
>  board/freescale/mx51evk/mx51evk.c |   33 +
>  1 files changed, 17 insertions(+), 16 deletions(-)
> 
> diff --git a/board/freescale/mx51evk/mx51evk.c 
> b/board/freescale/mx51evk/mx51evk.c
> index ef7c6e4..2dabef9 100644
> --- a/board/freescale/mx51evk/mx51evk.c
> +++ b/board/freescale/mx51evk/mx51evk.c
> @@ -33,6 +33,11 @@
>  #include 
>  #include 
>  #include 
> +#include 
> +
> +#define MX51EVK_PHY_RESET(1 * 32 + 14)   /* GPIO2_14 */
> +#define MX51EVK_SD1_CD   (0 * 32 + 0)/* GPIO1_0 */
> +#define MX51EVK_SD2_CD   (0 * 32 + 6)/* GPIO1_6 */
>  
>  DECLARE_GLOBAL_DATA_PTR;
>  
> @@ -261,27 +266,22 @@ static void power_init(void)
>   pmic_reg_write(REG_MODE_1, val);
>   udelay(200);
>  
> - reg = readl(GPIO2_BASE_ADDR + 0x0);
> - reg &= ~0x4000;  /* Lower reset line */
> - writel(reg, GPIO2_BASE_ADDR + 0x0);
> -
> - reg = readl(GPIO2_BASE_ADDR + 0x4);
> - reg |= 0x4000;  /* configure GPIO lines as output */
> - writel(reg, GPIO2_BASE_ADDR + 0x4);
> -
> - /* Reset the ethernet controller over GPIO */
> - writel(0x1, IOMUXC_BASE_ADDR + 0x0AC);
> -
>   /* Enable VGEN3, VCAM, VAUDIO, VVIDEO, VSD regulators */
>   val = VGEN3EN | VGEN3CONFIG | VCAMEN | VCAMCONFIG |
>   VVIDEOEN | VAUDIOEN  | VSDEN;
>   pmic_reg_write(REG_MODE_1, val);
> +}
> +
> +static void reset_phy_fec(void)
> +{
> + mxc_request_iomux(MX51_PIN_EIM_A20, IOMUX_CONFIG_ALT1);
> + mxc_gpio_direction(MX51EVK_PHY_RESET, MXC_GPIO_DIRECTION_OUT);
>  
> + mxc_gpio_set(MX51EVK_PHY_RESET, 0); /* Lower reset line */
> +
>   udelay(500);
>  
> - reg = readl(GPIO2_BASE_ADDR + 0x0);
> - reg |= 0x4000;
> - writel(reg, GPIO2_BASE_ADDR + 0x0);
> + mxc_gpio_set(MX51EVK_PHY_RESET, 1); /* Set reset line to high */
>  }

Something is not clear to me. To get the same functionality, I am
expecting that the phy is reset, then the PMIC is programmed, and at the
end the phy is freed from reset.

You add reset_phy_fec(), that sets the phy in reset. In actual code, at
the end of power_init the phy is out of reset. Now who remove the reset
? I do not see in your code.

Best regards,
Stefano Babic

-- 
=
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: off...@denx.de
=
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH] MX31: drop warnings due to missing prototype for mxc_watchdog_reset()

2011-05-20 Thread Stefano Babic
Signed-off-by: Stefano Babic 
---
 arch/arm/include/asm/arch-mx31/clock.h |1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/arm/include/asm/arch-mx31/clock.h 
b/arch/arm/include/asm/arch-mx31/clock.h
index 1ff917e..9f7ae80 100644
--- a/arch/arm/include/asm/arch-mx31/clock.h
+++ b/arch/arm/include/asm/arch-mx31/clock.h
@@ -32,5 +32,6 @@ extern void mx31_set_pad(enum iomux_pins pin, u32 config);
 void mx31_uart1_hw_init(void);
 void mx31_spi2_hw_init(void);
 void mxc_hw_watchdog_enable(void);
+void mxc_hw_watchdog_reset(void);
 
 #endif /* __ASM_ARCH_CLOCK_H */
-- 
1.7.1

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] Hello Would You Like To Earn

2011-05-20 Thread Carmille . Burns
Hello u-boot

Would you like to earn an extra $200 everyday?, for just 45 minutes work? You 
could quit your job and make double the money at home working for yourself.

visit->http:tinyurl.com/42e38u9

Regards,

Carmille Burns

Survey Human Resources Dept.


___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] AT91: CFI support broken

2011-05-20 Thread e...@bus-elektronik.de
Hello,

since "AT91: fix timer.c - remove reset_timer()"



was commited the arm926ejs/at91 boards can't compile with cfi_flash support:

u-boot/drivers/mtd/cfi_flash.c:576: undefined reference to `reset_timer'

I think this patch should be revert, as long as other modules need the
reset_timer function.

Can anybody confirm this

Thanks

Jens Scharsig
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] USB on iMX25

2011-05-20 Thread Matthias Weißer
Am 19.05.2011 07:29, schrieb Sathish:
> Matthias Weißer  arcor.de>  writes:
>> Hi
>>
>> I am currently porting u-boot to a new board based on Freescales iMX25
>> processor. I would like to add USB support. As I can see there is no
>> support in current head for USB on iMX. Can someone give me some hints
>> what I have to do to enable USB host support on iMX25.
>>
>> Matthias
>>
>
> Hi Matthias,
> I'm also trying the same, did you got solution for your problem, if so kindly
> share with me.

Hi Sathish

I got it working and plan to submit a patchset for our iMX25 based board 
when the next merge window opens. I can send you the patch (which will 
probably break other iMX based boards) privatly if you are interested.

Matthias
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [STATUS] v2011.06-rc1 released

2011-05-20 Thread Reinhard Meyer
Dear Jens Scharsig,
> Hello,
>
> please apply the following patch
>
> http://patchwork.ozlabs.org/patch/83703/
>
> this will make at91rm9200ek and eb_cpux9k2 board work with current release.
> This patch also fix the broken arm/920t/at91 arch since last merge with
> arm custodian tree.

I will see to that asap.

Best regards
Reinhard
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] AT91: CFI support broken

2011-05-20 Thread Reinhard Meyer
Dear e...@bus-elektronik.de,
> Hello,
>
> since "AT91: fix timer.c - remove reset_timer()"
>
> 
>
> was commited the arm926ejs/at91 boards can't compile with cfi_flash support:
>
> u-boot/drivers/mtd/cfi_flash.c:576: undefined reference to `reset_timer'
>
> I think this patch should be revert, as long as other modules need the
> reset_timer function.
>
> Can anybody confirm this

I think we should fix the place where reset_timer() is still used, to use 
get_timer() only.
All other drivers that are used in atmel context do not use reset_timer(), but 
rely on the fact
that get_timer() is monotonic. reset_timer() resets the value back to zero.

Best Regards,
Reinhard
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v3 0/8] keymile arm boards update, part 2

2011-05-20 Thread Valentin Longchamp
Hi Albert,

Valentin Longchamp wrote:
> Hi Prafulla,
> 
> Prafulla Wadaskar wrote:
>>> -Original Message-
>>> From: Valentin Longchamp [mailto:valentin.longch...@keymile.com]
>>> Sent: Wednesday, May 11, 2011 8:52 PM
>>> To: Prafulla Wadaskar
>>> Cc: u-boot@lists.denx.de; holger.bru...@keymile.com
>>> Subject: Re: [PATCH v3 0/8] keymile arm boards update, part 2
>>>
>>> Hi Prafulla,
>>>
>>> Valentin Longchamp wrote:
 This series is the second effort of merging the Keymile boards support
 back into mainline.

 This series is a subset of the first patch series:
 http://lists.denx.de/pipermail/u-boot/2011-April/090013.html
 The first large series was split up to three independent series, which
 are easier to review and apply for the custodians.

 This series adds the km_arm specific parts of the series. All its
>>> changes
 concern our marvell based boards and that's why it should go through
>>> the
 u-boot-marvell git tree.

 Changes for v3: taken Prafulla's comments into account
>>> I have posted those one week ago, and I was wondering if you would be
>>> able to review/take them in you tree soon ?
>> Yes Valentin
>> I will review them in this week, sorry for delay.
>>
> 
> Thank you for the review. I guess now the series is ready go into mainline. 
> 
> With -rc1 to be freezed very soon, we really would like to see it getting 
> pushed before this freeze. This series is the last remaining part of our 
> effort to rationalize our code base for the Keymile boards and integrate it 
> into mainline and thus it would help us for our current/future developments 
> that this series goes as well to mainline for the current approaching release.
> 

Since Prafulla does not answer and Wolfgang yesterday tagged -rc1, could you 
please apply these patches to your ARM tree ?

I have noticed that Prafulla usually asked you for pull requests of his tree, 
and since he has acked the whole series, maybe they could go directly to your 
tree, so that they go to Wolfgang's tree rather quickly (because of -rc1).

Wolfgang, what is your opinion on how this should be merged ? The patches have 
really been posted quite a long time ago (they were split in 3 series in the 
meantime) and you have applied the other two series already. It would be good 
for us that the 3 series are able to make it for v2011.06.

Best regards

Valentin
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] AT91: CFI support broken

2011-05-20 Thread Jens Scharsig
Hello Stefan Roese,

>> Hello,
>>
>> since "AT91: fix timer.c - remove reset_timer()"
>>
>> 
>>
>> was commited the arm926ejs/at91 boards can't compile with cfi_flash support:
>>
>> u-boot/drivers/mtd/cfi_flash.c:576: undefined reference to `reset_timer'
>>
>> I think this patch should be revert, as long as other modules need the
>> reset_timer function.
>>
>> Can anybody confirm this
> 
> I think we should fix the place where reset_timer() is still used, to use 
> get_timer() only.
> All other drivers that are used in atmel context do not use reset_timer(), 
> but rely on the fact
> that get_timer() is monotonic. reset_timer() resets the value back to zero.
> 
> Best Regards,
> Reinhard

what do you think about?

Best regards

Jens
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v3 0/8] keymile arm boards update, part 2

2011-05-20 Thread Wolfgang Denk
Dear Valentin Longchamp,

In message <4dd65683.60...@keymile.com> you wrote:
> 
> Wolfgang, what is your opinion on how this should be merged ? The
> patches have really been posted quite a long time ago (they were
> split in 3 series in the meantime) and you have applied the other two
> series already. It would be good for us that the 3 series are able to
> make it for v2011.06.

My understanding is that these patches are on Prafulla's desk.

Prafulla, can you please comment?

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: w...@denx.de
You are only young once, but you can stay immature indefinitely.
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Beagleboard patches, going upstream?

2011-05-20 Thread Jason Kridner
On Thu, May 19, 2011 at 6:49 PM, Darren Hart  wrote:

> I'm looking to include the following patches from TI's
> meta-texasinstruments OE layer recipe for u-boot. They have been sent to
> the list, two of them Acked, but have otherwise received no response and
> but I don't see them in the git repository. Are these going to be
> included upstream (git://git.denx.de/u-boot.git) ?
>

I'm on travel for the next week, but I should respond next week.  I started
work at fixing up the patches based on comments and resubmitting what all is
left, but I ran into a bug in my simplified implementation of the LED
command to address Wolfgang's comments.

My current work is at:
https://gitorious.org/beagleboard-validation/u-boot/commits/validation-20110504

Before submitting upstream, I need to fix 2 bugs:
* I cannot set STATUS_LED_BIT1's LED
* The GPIO state readback to provide toggling without maintaining state in
the software does not work

It would be most useful if some of the other patches were accepted or
commented upon.


> OMAP3-Beagle-Pin-Mux-initialization-glitch-fix.patch
>Jason said will pull in for ti tree
> OMAP-Remove-omapfb.debug-y-from-Beagle-and-Overo-env.patch
> OMAP3-Add-DSS-driver-for-OMAP3.patch
> BeagleBoard-Added-userbutton-command.patch
> Enable-DSS-driver-for-Beagle.patch
> Corrected-LED-name-match-finding-avoiding-extraneous.patch
> omap3_beagle-Switch-default-console-from-ttyS2-to-tt.patch
>Acked-by on list
> BeagleBoard-Load-kernel-via-MMC-ext2-not-fat.patch
>
>
> The following patches I do not see on the list. Koen, Jason, will these
> be sent upstream?
>
> OMAP3-beagle-pass-expansionboard-name-in-bootargs.patch from Koen
> OMAP3-BeagleBoard-updated-default-configuration.patch from Jason
>
>
> Is there another repository I should be looking at for the upstream
> status of these patches?
>
>
> --
> Darren Hart
> Intel Open Source Technology Center
> Yocto Project - Linux Kernel
>
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] Beagleboard patches, going upstream?

2011-05-20 Thread Anatolij Gustschin
Hi,

On Thu, 19 May 2011 15:49:02 -0700
Darren Hart  wrote:

> I'm looking to include the following patches from TI's
> meta-texasinstruments OE layer recipe for u-boot. They have been sent to
> the list, two of them Acked, but have otherwise received no response and
> but I don't see them in the git repository. Are these going to be
> included upstream (git://git.denx.de/u-boot.git) ?

These patches have been sent when the merge window was
closed, it seems. Also the submitter didn't put the
responsible custodian for OMAP ARM arch on CC.

> OMAP3-Beagle-Pin-Mux-initialization-glitch-fix.patch
>   Jason said will pull in for ti tree
> OMAP-Remove-omapfb.debug-y-from-Beagle-and-Overo-env.patch
> OMAP3-Add-DSS-driver-for-OMAP3.patch
> BeagleBoard-Added-userbutton-command.patch
> Enable-DSS-driver-for-Beagle.patch
> Corrected-LED-name-match-finding-avoiding-extraneous.patch
> omap3_beagle-Switch-default-console-from-ttyS2-to-tt.patch
>   Acked-by on list

DSS related patches are assigned to me, please see below.

...
> Is there another repository I should be looking at for the upstream
> status of these patches?

Probably it makes sense to look at the patch status in patchwork [1].
Video related patches are under review now [2],[3]. I hope to find
time to comment on these, soon.

[1] http://patchwork.ozlabs.org/project/uboot/list/
[2] http://patchwork.ozlabs.org/patch/92343/
[3] http://patchwork.ozlabs.org/patch/92344/

Anatolij
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] Faites des rencontres près de chez bous ! INSCRIPTION 100% GRATUITE !

2011-05-20 Thread Nicolle
EdenFlirt


Faites des rencontres près de chez bous ! 

Discouter en direct avec des milliers de célibataires !

INSCRIPTION 100% GRATUITE !



Inscrivez-vous sur: 
http://pro1.inforeg4you.com/links/edenflirt/9cec37cd418c855ba610322791cdf448/



***

Vous recevez ce message parce que vous vous êtes inscrit sur l'un des sites 
partenaires de “TIM-Solution Group”. Ce message que vous avez reçu est conforme 
à la législation en vigueur et aux délibérations des 22 et 30 mars 2005 sur la 
prospection par courrier électronique. Conformément à l'article 34 de la loi 
78-17 du 06 janvier 1978, relative à l'informatique, aux fichiers et aux 
libertés, vous disposez d'un droit d'accès, de rectification des données 
nominatives vous concernant. Vos données nominatives n'ont pas été transmises à 
l'annonceur. Si vous ne souhaitez plus bénéficier des offres spéciales vous 
pouvez vous désabonner en remplissant le formulaire ci-dessous: 

http://pro1.inforeg4you.com/unsubscribe/index.php?q=u-boot@lists.denx.de

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v3 0/8] keymile arm boards update, part 2

2011-05-20 Thread Prafulla Wadaskar


> -Original Message-
> From: Wolfgang Denk [mailto:w...@denx.de]
> Sent: Friday, May 20, 2011 6:36 PM
> To: Valentin Longchamp
> Cc: Prafulla Wadaskar; albert.u.b...@aribaud.net; u-boot@lists.denx.de;
> holger.bru...@keymile.com; Ashish Karkare; Prabhanjan Sarnaik; Heiko
> Schocher
> Subject: Re: [PATCH v3 0/8] keymile arm boards update, part 2
> 
> Dear Valentin Longchamp,
> 
> In message <4dd65683.60...@keymile.com> you wrote:
> >
> > Wolfgang, what is your opinion on how this should be merged ? The
> > patches have really been posted quite a long time ago (they were
> > split in 3 series in the meantime) and you have applied the other two
> > series already. It would be good for us that the 3 series are able to
> > make it for v2011.06.
> 
> My understanding is that these patches are on Prafulla's desk.
> 
> Prafulla, can you please comment?

Hi Wolfgang

I was offline, and will have limited network access this week. I'll check and 
pull them by coming Tuesday.

Regards..
Prafulla . .
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v9] Add support for Network Space v2 and parents

2011-05-20 Thread Simon Guinot
Hi Prafulla,

Please, consider adding this patch to the current release.

Thanks in advance.

Simon

On Tue, May 17, 2011 at 02:42:10PM +0200, Simon Guinot wrote:
> This patch add support for the Network Space v2 board and parents, based
> on the Marvell Kirkwood 6281 SoC. This include Network Space (Max) v2
> and Internet Space v2.
> 
> Additional information is available at:
> http://lacie-nas.org/doku.php?id=network_space_v2
> 
> Signed-off-by: Simon Guinot 
> ---
> Changes for v2:
>   - add entries to MAINTAINERS file
>   - move boards from root Makefile to boards.cfg
>   - move MACH_TYPE definition into netspace_v2.h
>   - remove CONFIG_SYS_HZ redefinition
>   - turn PHY initialization message into debug()
> 
> Changes for v3: none
> 
> Changes for v4:
>   - enhance commit message: add SoC information
> 
> Changes for v5: none
> 
> Changes for v6:
>   - enable device tree support
>   - clean some "#define" in netspace_v2.h
>   - enhance commit message: provide description URL and mention SoC
> family
>   - rebase against u-boot-{arm,marvell}/master branches
> 
> Changes for v7:
>   - rebase against u-boot-marvell/master branch
> 
> Changes for v8:
>   - update commit title (add netspace_v2 parents information).
>   - move GPIO button definition into header file.
>   - update CONFIG_IDENT_STRING with boards alias.
>   - handle wrong board definition.
>   - by default, use DHCP to get IP address.
> 
> Changes for v9:
>   - rebase against u-boot-marvell/master branch
> 
>  MAINTAINERS   |6 +
>  board/LaCie/netspace_v2/Makefile  |   49 ++
>  board/LaCie/netspace_v2/kwbimage.cfg  |  162 
> +
>  board/LaCie/netspace_v2/netspace_v2.c |  142 +
>  board/LaCie/netspace_v2/netspace_v2.h |   42 +
>  boards.cfg|3 +
>  include/configs/netspace_v2.h |  162 
> +
>  7 files changed, 566 insertions(+), 0 deletions(-)
>  create mode 100644 board/LaCie/netspace_v2/Makefile
>  create mode 100644 board/LaCie/netspace_v2/kwbimage.cfg
>  create mode 100644 board/LaCie/netspace_v2/netspace_v2.c
>  create mode 100644 board/LaCie/netspace_v2/netspace_v2.h
>  create mode 100644 include/configs/netspace_v2.h
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 24a55c2..47b724c 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -645,6 +645,12 @@ Sedji Gaouaou
>   at91sam9g10ek   ARM926EJS (AT91SAM9G10 SoC)
>   at91sam9m10g45ekARM926EJS (AT91SAM9G45 SoC)
>  
> +Simon Guinot 
> +
> + inetspace_v2ARM926EJS (Kirkwood SoC)
> + netspace_v2 ARM926EJS (Kirkwood SoC)
> + netspace_max_v2 ARM926EJS (Kirkwood SoC)
> +
>  Marius Gr?ger 
>  
>   impa7   ARM720T (EP7211)
> diff --git a/board/LaCie/netspace_v2/Makefile 
> b/board/LaCie/netspace_v2/Makefile
> new file mode 100644
> index 000..a245f2c
> --- /dev/null
> +++ b/board/LaCie/netspace_v2/Makefile
> @@ -0,0 +1,49 @@
> +#
> +# Copyright (C) 2011 Simon Guinot 
> +#
> +# Based on Kirkwood support:
> +# (C) Copyright 2009
> +# Marvell Semiconductor 
> +# Written-by: Prafulla Wadaskar 
> +#
> +# See file CREDITS for list of people who contributed to this
> +# project.
> +#
> +# This program is free software; you can redistribute it and/or
> +# modify it under the terms of the GNU General Public License as
> +# published by the Free Software Foundation; either version 2 of
> +# the License, or (at your option) any later version.
> +#
> +# This program is distributed in the hope that it will be useful,
> +# but WITHOUT ANY WARRANTY; without even the implied warranty of
> +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
> +# GNU General Public License for more details.
> +#
> +
> +include $(TOPDIR)/config.mk
> +
> +LIB  = $(obj)lib$(BOARD).o
> +
> +COBJS:= netspace_v2.o
> +
> +SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
> +OBJS := $(addprefix $(obj),$(COBJS))
> +SOBJS:= $(addprefix $(obj),$(SOBJS))
> +
> +$(LIB):  $(obj).depend $(OBJS) $(SOBJS)
> + $(call cmd_link_o_target, $(OBJS) $(SOBJS))
> +
> +clean:
> + rm -f $(SOBJS) $(OBJS)
> +
> +distclean:   clean
> + rm -f $(LIB) core *.bak .depend
> +
> +#
> +
> +# defines $(obj).depend target
> +include $(SRCTREE)/rules.mk
> +
> +sinclude $(obj).depend
> +
> +#
> diff --git a/board/LaCie/netspace_v2/kwbimage.cfg 
> b/board/LaCie/netspace_v2/kwbimage.cfg
> new file mode 100644
> index 000..361feeb
> --- /dev/null
> +++ b/board/LaCie/netspace_v2/kwbimage.cfg
> @@ -0,0 +1,162 @@
> +#
> +# Copyright (C) 2011 Simon Guinot 
> +#
> +# Based on Kirkwood support:
> +# (C) Copyright 2009
> +# Marvell Semiconductor 
> +# Written-by: Prafulla Wadaskar 
> +#
> +# See file CREDITS for list of people who contributed to this
> +# proj

[U-Boot] [GIT PULL] Pull request: u-boot-imx

2011-05-20 Thread Stefano Babic
Hi Albert,

please pull from u-boot-imx.

The following changes since commit 7a82c208143bbc774ffcb4e53239410f867a0794:

  Prepare v2011.06-rc1 (2011-05-19 22:23:50 +0200)

are available in the git repository at:
  git://www.denx.de/git/u-boot-imx.git master

Fabio Estevam (6):
  mx31pdk: Clean up mx31pdk.h file
  MX53: Add initial support for MX53SMD board.
  MX51: vision: Let video mode struct be independant of watchdog.
  MX51: vision2: Fix build for vision2 board.
  MX53: Handle silicon revision 2.1 case
  MX53: Remove CONFIG_SYS_BOOTMAPSZ from mx53 config files.

Jason Liu (2):
  MX53: support for freescale MX53LOCO board
  mx5: board: code clean up for checkboard code

Shawn Guo (2):
  mx5: Remove unnecessary CONFIG_SYS_BOOTMAPSZ definition
  mx5: Fix CONFIG_OF_LIBFDT redefined warning

Stefano Babic (3):
  MX31: Make get_reset_cause() static and drop unreachable code
  MX5: drop config.mk from efikamx board
  MX31: drop warnings due to missing prototype for mxc_watchdog_reset()

 MAINTAINERS|2 +
 arch/arm/cpu/arm1136/mx31/generic.c|6 +-
 arch/arm/cpu/armv7/mx5/soc.c   |   10 +-
 arch/arm/include/asm/arch-mx31/clock.h |1 +
 board/efikamx/efikamx.c|   42 +---
 board/freescale/mx51evk/mx51evk.c  |   36 +---
 board/freescale/mx53evk/mx53evk.c  |   21 +--
 .../config.mk => freescale/mx53loco/Makefile}  |   36 ++-
 board/freescale/mx53loco/imximage.cfg  |   96 ++
 board/freescale/mx53loco/mx53loco.c|  302

 .../config.mk => freescale/mx53smd/Makefile}   |   35 ++-
 board/freescale/mx53smd/imximage.cfg   |   96 ++
 board/freescale/mx53smd/mx53smd.c  |  229 +++
 board/ttcontrol/vision2/vision2.c  |   47 +---
 boards.cfg |6 +-
 include/configs/mx31pdk.h  |   32 +-
 include/configs/mx51evk.h  |3 -
 include/configs/mx53evk.h  |3 -
 include/configs/mx53loco.h |  185 
 include/configs/mx53smd.h  |  191 
 include/configs/vision2.h  |1 +
 21 files changed, 1191 insertions(+), 189 deletions(-)
 rename board/{efikamx/config.mk => freescale/mx53loco/Makefile} (51%)
 create mode 100644 board/freescale/mx53loco/imximage.cfg
 create mode 100644 board/freescale/mx53loco/mx53loco.c
 rename board/{ttcontrol/vision2/config.mk =>
freescale/mx53smd/Makefile} (50%)
 create mode 100644 board/freescale/mx53smd/imximage.cfg
 create mode 100644 board/freescale/mx53smd/mx53smd.c
 create mode 100644 include/configs/mx53loco.h
 create mode 100644 include/configs/mx53smd.h

Best regards,
Stefano

-- 
=
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-0 Fax: +49-8142-66989-80  Email: off...@denx.de
=
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH V7 3/3] MX53: support for freescale MX53LOCO board

2011-05-20 Thread Albert ARIBAUD
Hi Jason,

Sorry for chiming in so late, but...

Just one question. What is this with the patch numbering, i.e. 1/1, 2/2, 
3/3 ? I am having a hard time following what is what, especially 
considering the patch subjects are identical apart from version and part 
numbers.

Amicalement,
-- 
Albert.
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [GIT PULL] Pull request: u-boot-imx

2011-05-20 Thread Albert ARIBAUD
Hi Stefano,

Le 20/05/2011 17:58, Stefano Babic a écrit :
> Hi Albert,
>
> please pull from u-boot-imx.
>
> The following changes since commit 7a82c208143bbc774ffcb4e53239410f867a0794:
>
>Prepare v2011.06-rc1 (2011-05-19 22:23:50 +0200)
>
> are available in the git repository at:
>git://www.denx.de/git/u-boot-imx.git master
>
> Fabio Estevam (6):
>mx31pdk: Clean up mx31pdk.h file
>MX53: Add initial support for MX53SMD board.
>MX51: vision: Let video mode struct be independant of watchdog.
>MX51: vision2: Fix build for vision2 board.
>MX53: Handle silicon revision 2.1 case
>MX53: Remove CONFIG_SYS_BOOTMAPSZ from mx53 config files.
>
> Jason Liu (2):
>MX53: support for freescale MX53LOCO board
>mx5: board: code clean up for checkboard code
>
> Shawn Guo (2):
>mx5: Remove unnecessary CONFIG_SYS_BOOTMAPSZ definition
>mx5: Fix CONFIG_OF_LIBFDT redefined warning
>
> Stefano Babic (3):
>MX31: Make get_reset_cause() static and drop unreachable code
>MX5: drop config.mk from efikamx board
>MX31: drop warnings due to missing prototype for mxc_watchdog_reset()
>
>   MAINTAINERS|2 +
>   arch/arm/cpu/arm1136/mx31/generic.c|6 +-
>   arch/arm/cpu/armv7/mx5/soc.c   |   10 +-
>   arch/arm/include/asm/arch-mx31/clock.h |1 +
>   board/efikamx/efikamx.c|   42 +---
>   board/freescale/mx51evk/mx51evk.c  |   36 +---
>   board/freescale/mx53evk/mx53evk.c  |   21 +--
>   .../config.mk =>  freescale/mx53loco/Makefile}  |   36 ++-
>   board/freescale/mx53loco/imximage.cfg  |   96 ++
>   board/freescale/mx53loco/mx53loco.c|  302
> 
>   .../config.mk =>  freescale/mx53smd/Makefile}   |   35 ++-
>   board/freescale/mx53smd/imximage.cfg   |   96 ++
>   board/freescale/mx53smd/mx53smd.c  |  229 +++
>   board/ttcontrol/vision2/vision2.c  |   47 +---
>   boards.cfg |6 +-
>   include/configs/mx31pdk.h  |   32 +-
>   include/configs/mx51evk.h  |3 -
>   include/configs/mx53evk.h  |3 -
>   include/configs/mx53loco.h |  185 
>   include/configs/mx53smd.h  |  191 
>   include/configs/vision2.h  |1 +
>   21 files changed, 1191 insertions(+), 189 deletions(-)
>   rename board/{efikamx/config.mk =>  freescale/mx53loco/Makefile} (51%)
>   create mode 100644 board/freescale/mx53loco/imximage.cfg
>   create mode 100644 board/freescale/mx53loco/mx53loco.c
>   rename board/{ttcontrol/vision2/config.mk =>
> freescale/mx53smd/Makefile} (50%)
>   create mode 100644 board/freescale/mx53smd/imximage.cfg
>   create mode 100644 board/freescale/mx53smd/mx53smd.c
>   create mode 100644 include/configs/mx53loco.h
>   create mode 100644 include/configs/mx53smd.h
>
> Best regards,
> Stefano

Applied, thanks.

Amicalement,
-- 
Albert.
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH] Move wepep250,delta,xsengine to scrapyard

2011-05-20 Thread Marek Vasut
Drop wepep250 board from MAINTAINERS and add all these three boards to
doc/README.scrapyard

Signed-off-by: Marek Vasut 
---
 MAINTAINERS  |4 
 doc/README.scrapyard |3 +++
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index e2c48a8..5d110a8 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -639,10 +639,6 @@ Fabio Estevam 
 
mx31pdk i.MX31
 
-Peter Figuli 
-
-   wepep250xscale
-
 Daniel Gorsulowski 
 
meesc   ARM926EJS (AT91SAM9263 SoC)
diff --git a/doc/README.scrapyard b/doc/README.scrapyard
index 5cdf151..d7bf9a7 100644
--- a/doc/README.scrapyard
+++ b/doc/README.scrapyard
@@ -11,6 +11,9 @@ easily if here is something they might want to dig for...
 
 Board  ArchCPU removed Commit  last known maintainer/contact
 =
+xsengine ARM   PXA2xx  4262a7c   2010-10-20
+wepep250 ARM   PXA2xx  7369478   2010-10-20Peter Figuli 
+delta  ARM PXA2xx  75e2035   2010-10-20
 mp2usb ARM AT91RM2900  ee986e2 2011-01-25  Eric Bénard 

 barco  powerpc MPC8245 - 2010-11-23Marc Leeman 

 ERIC   powerpc 405GP   d9ba451   2010-11-21Swen Anderson 

-- 
1.7.4.1

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH 01/13] add XScale sub architecture (IXP/PXA) to board list

2011-05-20 Thread Marek Vasut
On Thursday, April 07, 2011 04:58:53 PM Wolfgang Denk wrote:
> Dear Marek Vasut,
> 
> In message <201104071529.42290.marek.va...@gmail.com> you wrote:
> > > Marek, it seems you forgot to clean up MAINTAINERS, and also to add
> > > the removed boards to the "doc/README.scrapyard" file.  Can you please
> > > provide cleanup patches for these commits:
> > > 
> > > 4262a7c   2010-10-22 01:38:01 +0200   PXA: Remove "xsengine" board
> > > 7369478   2010-10-22 01:38:01 +0200   PXA: Remove "wepep250" board
> > > 75e2035   2010-10-22 01:38:01 +0200   PXA: Remove "delta" board
> > 
> > I just dug this out ... is this still relevant ?
> 
> I think it is.
> 
> Best regards,
> 
> Wolfgang Denk

Hi, I believe I sent the patch finally ... I hope this can be closed then.

Damn it took so long it makes me feel embarrassed.
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [IXP42x PATCH series v4 01/17] add XScale sub architecture (IXP/PXA) to maintainer list

2011-05-20 Thread Marek Vasut
On Wednesday, April 06, 2011 11:49:02 PM Michael Schwingen wrote:
> Signed-off-by: Michael Schwingen 
> ---
> Changes for V2:
> 
> Changes for V3:
>  - change patch description
>  - drop wepep250 (should already be deleted)
> Changes for V4:
>  - add changelog
> 
>  MAINTAINERS |   44 ++--
>  1 files changed, 22 insertions(+), 22 deletions(-)
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 1d7e1f4..4b17b63 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -560,8 +560,8 @@ Stefano Babic 
>   ea20davinci
>   mx35pdk i.MX35
>   mx51evk i.MX51
> - polaris xscale
> - trizepsiv   xscale
> + polaris xscale/pxa
> + trizepsiv   xscale/pxa
>   vision2 i.MX51
> 
>  Jason Liu 
> @@ -593,7 +593,7 @@ Andreas Bie
> 
>  Cliff Brake 
> 
> - pxa255_idp  xscale
> + pxa255_idp  xscale/pxa
> 
>  Rick Bronson 
> 
> @@ -699,7 +699,7 @@ Sergey Kubushyn 
> 
>  Prakash Kumar 
> 
> - cerf250 xscale
> + cerf250 xscale/pxa
> 
>  Vipin Kumar 
> 
> @@ -777,9 +777,9 @@ John Rigby 
> 
>  Stefan Roese 
> 
> - ixdpg425xscale
> - pdnb3   xscale
> - scpuxscale
> + ixdpg425xscale/ixp
> + pdnb3   xscale/ixp
> + scpuxscale/ixp
> 
>  Alessandro Rubini 
>  Nomadik Linux Team 
> @@ -802,15 +802,15 @@ Heiko Schocher 
> 
>  Robert Schwebel 
> 
> - csb226  xscale
> - innokom xscale
> + csb226  xscale/pxa
> + innokom xscale/pxa
> 
>  Michael Schwingen 
> 
> - actux1  xscale
> - actux2  xscale
> - actux3  xscale
> - actux4  xscale
> + actux1  xscale/ixp
> + actux2  xscale/ixp
> + actux3  xscale/ixp
> + actux4  xscale/ixp
> 
>  Andrea Scian 
> 
> @@ -834,12 +834,12 @@ Greg Ungerer 
> 
>  Marek Vasut 
> 
> - balloon3xscale
> - colibri_pxa270  xscale
> - palmld  xscale
> - palmtc  xscale
> - vpac270 xscale
> - zipitz2 xscale
> + balloon3xscale/pxa
> + colibri_pxa270  xscale/pxa
> + palmld  xscale/pxa
> + palmtc  xscale/pxa
> + vpac270 xscale/pxa
> + zipitz2 xscale/pxa
>   efikamx i.MX51
> 
>  Hugo Villeneuve 
> @@ -890,9 +890,9 @@ Sughosh Ganu 
>  Unknown / orphaned boards:
>   Board   CPU Last known maintainer / Comment
>  .
> - cradle  xscale  Kyle Harris  / dead 
address
> - ixdp425 xscale  Kyle Harris  / dead 
address
> - lubbock xscale  Kyle Harris  / dead 
address
> + cradle  xscale/pxa  Kyle Harris  / 
> dead 
address
> + ixdp425 xscale/ixp  Kyle Harris  / 
> dead 
address
> + lubbock xscale/pxa  Kyle Harris  / 
> dead address
> 
>   imx31_phycore_eet i.MX31  Guennadi Liakhovetski  
> /
> resigned mx31adsi.MX31  Guennadi Liakhovetski 
> 
> / resigned

Acked-by: Marek Vasut 
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [IXP42x PATCH series v4 02/17] add support for IXP42x Rev. B1 and newer

2011-05-20 Thread Marek Vasut
On Wednesday, April 06, 2011 11:49:03 PM Michael Schwingen wrote:
> Signed-off-by: Michael Schwingen 
> ---
> Changes for V2:
> 
> Changes for V3:
>  - reformat to wrap long lines
> Changes for V4:
>  - add changelog
> 
>  arch/arm/cpu/ixp/npe/npe.c |7 +--
>  1 files changed, 5 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/arm/cpu/ixp/npe/npe.c b/arch/arm/cpu/ixp/npe/npe.c
> index 857bcad..6d92c53 100644
> --- a/arch/arm/cpu/ixp/npe/npe.c
> +++ b/arch/arm/cpu/ixp/npe/npe.c
> @@ -621,9 +621,12 @@ int npe_initialize(bd_t * bis)
>   if (ixFeatureCtrlDeviceRead() == 
IX_FEATURE_CTRL_DEVICE_TYPE_IXP42X) {
>   switch (ixFeatureCtrlProductIdRead() &
> IX_FEATURE_CTRL_SILICON_STEPPING_MASK) { case
> IX_FEATURE_CTRL_SILICON_TYPE_B0:
> + default: /* newer than B0 */
>   /*
> -  * If it is B0 Silicon, we only enable 
> port when its 
corresponding
> -  * Eth Coprocessor is available.
> +  * If it is B0 or newer Silicon, we
> +  * only enable port when its
> +  * corresponding Eth Coprocessor is
> +  * available.
>*/
>   if 
> (ixFeatureCtrlComponentCheck(IX_FEATURECTRL_ETH0) ==
>   IX_FEATURE_CTRL_COMPONENT_ENABLED)

Acked-by: Marek Vasut 
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [IXP42x PATCH series v4 03/17] trigger hardware watchdog in IXP42x serial driver

2011-05-20 Thread Marek Vasut
On Wednesday, April 06, 2011 11:49:04 PM Michael Schwingen wrote:
> Signed-off-by: Michael Schwingen 
> ---
> Changes for V2:
> 
> Changes for V3:
>  - coding style fixes
> Changes for V4:
>  - add changelog
> 
>  drivers/serial/serial_ixp.c |7 +--
>  1 files changed, 5 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/serial/serial_ixp.c b/drivers/serial/serial_ixp.c
> index dd26af4..a9acd47 100644
> --- a/drivers/serial/serial_ixp.c
> +++ b/drivers/serial/serial_ixp.c
> @@ -30,6 +30,7 @@
> 
>  #include 
>  #include 
> +#include 
> 
>  /*
>   *   14.7456 MHz
> @@ -85,7 +86,8 @@ int serial_init (void)
>  void serial_putc (const char c)
>  {
>   /* wait for room in the tx FIFO on UART */
> - while ((LSR(CONFIG_SYS_IXP425_CONSOLE) & LSR_TEMT) == 0);
> + while ((LSR(CONFIG_SYS_IXP425_CONSOLE) & LSR_TEMT) == 0)
> + WATCHDOG_RESET();   /* Reset HW Watchdog, if needed */
> 
>   THR(CONFIG_SYS_IXP425_CONSOLE) = c;
> 
> @@ -111,7 +113,8 @@ int serial_tstc (void)
>   */
>  int serial_getc (void)
>  {
> - while (!(LSR(CONFIG_SYS_IXP425_CONSOLE) & LSR_DR));
> + while (!(LSR(CONFIG_SYS_IXP425_CONSOLE) & LSR_DR))
> + WATCHDOG_RESET();   /* Reset HW Watchdog, if needed */
> 
>   return (char) RBR(CONFIG_SYS_IXP425_CONSOLE) & 0xff;
>  }

Please recheck for line-too-long here, but it might be just lack of sleep. 
Otherwise:

Acked-by: Marek Vasut 
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [IXP42x PATCH series v4 04/17] Fix IXP code to work after relocation was added

2011-05-20 Thread Marek Vasut
On Wednesday, April 06, 2011 11:49:05 PM Michael Schwingen wrote:
>  - jump to real flash location after reset before turning off flash mirror
>  - fix timer system to use HZ == 1000, remove broken interrupt-based code
> 
> Signed-off-by: Michael Schwingen 
> ---
> Changes for V2:
>  - fix patch description
> Changes for V3:
>  - use I/O accessors
>  - move timestamp variable from BSS to global data
>  - coding style fixes
> Changes for V4:
>  - add changelog
> 
>  arch/arm/cpu/ixp/cpu.c |5 --
>  arch/arm/cpu/ixp/start.S   |   59 ++--
>  arch/arm/cpu/ixp/timer.c   |  124
> +++- arch/arm/include/asm/arch-ixp/ixp425.h | 
>   5 +-
>  arch/arm/include/asm/global_data.h |3 +
>  5 files changed, 68 insertions(+), 128 deletions(-)
> 
> diff --git a/arch/arm/cpu/ixp/cpu.c b/arch/arm/cpu/ixp/cpu.c
> index ce275e5..942845d 100644
> --- a/arch/arm/cpu/ixp/cpu.c
> +++ b/arch/arm/cpu/ixp/cpu.c
> @@ -36,8 +36,6 @@
>  #include 
>  #include 
> 
> -ulong loops_per_jiffy;
> -
>  static void cache_flush(void);
> 
>  #if defined(CONFIG_DISPLAY_CPUINFO)
> @@ -51,17 +49,14 @@ int print_cpuinfo (void)
>   puts("CPU:   Intel IXP425 at ");
>   switch ((id & 0x03f0) >> 4) {
>   case 0x1c:
> - loops_per_jiffy = 887467;
>   speed = 533;
>   break;
> 
>   case 0x1d:
> - loops_per_jiffy = 666016;
>   speed = 400;
>   break;
> 
>   case 0x1f:
> - loops_per_jiffy = 442901;
>   speed = 266;
>   break;
>   }
> diff --git a/arch/arm/cpu/ixp/start.S b/arch/arm/cpu/ixp/start.S
> index 561c1f4..faa9a8f 100644
> --- a/arch/arm/cpu/ixp/start.S
> +++ b/arch/arm/cpu/ixp/start.S
> @@ -65,7 +65,8 @@
>   .endm
> 
>  .globl _start
> -_start: breset
> +_start:
> + ldr pc, _reset
>   ldr pc, _undefined_instruction
>   ldr pc, _software_interrupt
>   ldr pc, _prefetch_abort
> @@ -74,6 +75,7 @@ _start: b   reset
>   ldr pc, _irq
>   ldr pc, _fiq
> 
> +_reset: .word reset
>  _undefined_instruction: .word undefined_instruction
>  _software_interrupt: .word software_interrupt
>  _prefetch_abort: .word prefetch_abort
> @@ -167,12 +169,6 @@ reset:
>   str r1, [r2]
> 
>   /* make sure flash is visible at 0 */
> -#if 0
> - ldr r2, =IXP425_EXP_CFG0
> - ldr r1, [r2]
> - orr r1, r1, #0x8000
> - str r1, [r2]
> -#endif
>   mov r1, #CONFIG_SYS_SDR_CONFIG
>   ldr r2, =IXP425_SDR_CONFIG
>   str r1, [r2]
> @@ -216,19 +212,6 @@ reset:
>   str r1, [r4]
>   DELAY_FOR 0x4000, r0
> 
> - /* copy */
> - mov r0, #0
> - mov r4, r0
> - add r2, r0, #CONFIG_SYS_MONITOR_LEN
> - mov r1, #0x1000
> - mov r5, r1
> -
> -30:
> - ldr r3, [r0], #4
> - str r3, [r1], #4
> - cmp r0, r2
> - bne 30b
> -
>   /* invalidate I & D caches & BTB */
>   mcr p15, 0, r0, c7, c7, 0
>   CPWAIT  r0
> @@ -241,19 +224,12 @@ reset:
>   mcr p15, 0, r0, c7, c10, 4
>   CPWAIT  r0
> 
> - /* move flash to 0x5000 */
> + /* remove flash mirror at 0x */
>   ldr r2, =IXP425_EXP_CFG0
>   ldr r1, [r2]
>   bic r1, r1, #0x8000
>   str r1, [r2]
> 
> - nop
> - nop
> - nop
> - nop
> - nop
> - nop
> -
>   /* invalidate I & Data TLB */
>   mcr p15, 0, r0, c8, c7, 0
>   CPWAIT r0
> @@ -269,7 +245,7 @@ reset:
>   orr r0,r0,#0x13
>   msr cpsr,r0
> 
> -/* Set stackpointer in internal RAM to call board_init_f */
> +/* Set initial stackpointer in SDRAM to call board_init_f */
>  call_board_init_f:
>   ldr sp, =(CONFIG_SYS_INIT_SP_ADDR)
>   bic sp, sp, #7 /* 8-byte alignment for ABI compliance */
> @@ -580,28 +556,3 @@ reset_endless:
> 
>   b   reset_endless
> 
> -#ifdef CONFIG_USE_IRQ
> -
> -.LC0:.word   loops_per_jiffy
> -
> -/*
> - * 0 <= r0 <= 2000
> - */
> -.globl __udelay
> -__udelay:
> - mov r2, #0x6800
> - orr r2, r2, #0x00db
> - mul r0, r2, r0
> - ldr r2, .LC0
> - ldr r2, [r2]@ max = 0x0fff
> - mov r0, r0, lsr #11 @ max = 0x3fff
> - mov r2, r2, lsr #11 @ max = 0x0003
> - mul r0, r2, r0  @ max = 2^32-1
> - movsr0, r0, lsr #6
> -
> -delay_loop:
> - subsr0, r0, #1
> - bne delay_loop
> - mov pc, lr
> -
> -#endif /* CONFIG_USE_IRQ */
> diff --git a/arch/arm/cpu/ixp/timer.c b/arch/arm/cpu/ixp/timer.c
> index edf341f..7a44a08 100644
> --- a/arch/arm/cpu/ixp/timer.c
> +++ b/arch/arm/cpu/ixp/timer.c
> @@ -1,4 +1,7 @@
>  /*
> + * (C) Copyright 2010
> + * Michael Schwingen, mich...@schwingen.org
> + *
>   * (C) Copyright 2006
>   * Stefan Roese,

Re: [U-Boot] [IXP42x PATCH series v4 05/17] fix "depend" target in npe directory

2011-05-20 Thread Marek Vasut
On Wednesday, April 06, 2011 11:49:06 PM Michael Schwingen wrote:
> Signed-off-by: Michael Schwingen 
> ---
> Changes for V2:
> 
> Changes for V3:
> 
> Changes for V4:
>  - add changelog
> 
>  arch/arm/cpu/ixp/npe/Makefile |1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/arm/cpu/ixp/npe/Makefile b/arch/arm/cpu/ixp/npe/Makefile
> index c756a1d..14ab3c7 100644
> --- a/arch/arm/cpu/ixp/npe/Makefile
> +++ b/arch/arm/cpu/ixp/npe/Makefile
> @@ -27,6 +27,7 @@ LIB := $(obj)libnpe.o
> 
>  LOCAL_CFLAGS  += -I$(TOPDIR)/arch/arm/cpu/ixp/npe/include
> -DCONFIG_IXP425_COMPONENT_ETHDB -D__linux CFLAGS  += $(LOCAL_CFLAGS)
> +CPPFLAGS  += $(LOCAL_CFLAGS) # needed for depend
>  HOSTCFLAGS  += $(LOCAL_CFLAGS)
> 
>  COBJS-$(CONFIG_IXP4XX_NPE) := npe.o \

Acked-by: Marek Vasut 
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [IXP42x PATCH series v4 08/17] update/fix AcTux1 board

2011-05-20 Thread Marek Vasut
On Wednesday, April 06, 2011 11:49:09 PM Michael Schwingen wrote:
> Signed-off-by: Michael Schwingen 
> ---
> Changes for V2:
>  - move -ffunction-sections/--gc-sections to board config.mk
>  - add wildcard to bss segment in linker script
> Changes for V3:
>  - use I/O accessors
>  - coding style fixes
>  - add PCI clock/reset initialization
>  - use get_ram_size in dram_init
>  - add PCI support
>  - remove config.mk
>  - remove unused definitions from config.h
>  - add CONFIG_BOARD_SIZE_LIMIT
> Changes for V4:
>  - add changelog
>  - merge __bss_end change in u-boot.lds from master
> 
>  board/actux1/actux1.c|  111
> -- board/actux1/config.mk   | 
>   6 ---
>  board/actux1/u-boot.lds  |   41 -
>  boards.cfg   |5 ++-
>  include/configs/actux1.h |   63 +++---
>  5 files changed, 127 insertions(+), 99 deletions(-)
>  delete mode 100644 board/actux1/config.mk
> 
> diff --git a/board/actux1/actux1.c b/board/actux1/actux1.c
> index e73aff8..8fb8065 100644
> --- a/board/actux1/actux1.c
> +++ b/board/actux1/actux1.c
> @@ -37,49 +37,57 @@
>  #include 
>  #include 
>  #include 
> +#ifdef CONFIG_PCI
> +#include 
> +#include 
> +#endif
> 
>  #include "actux1_hw.h"
> 
>  DECLARE_GLOBAL_DATA_PTR;
> 
> -int board_init (void)
> +int board_early_init_f(void)
> +{
> + /* CS5: Debug port */
> + writel(0x9d520003, IXP425_EXP_CS5);
> + /* CS6: HwRel */
> + writel(0x81860001, IXP425_EXP_CS6);
> + /* CS7: LEDs */
> + writel(0x8093, IXP425_EXP_CS7);

Any idea what this magic means ?

> + return 0;
> +}
> +
> +int board_init(void)
>  {
>   gd->bd->bi_arch_number = MACH_TYPE_ACTUX1;
> 
>   /* adress of boot parameters */
>   gd->bd->bi_boot_params = 0x0100;
> 
> - GPIO_OUTPUT_CLEAR (CONFIG_SYS_GPIO_IORST);
> - GPIO_OUTPUT_ENABLE (CONFIG_SYS_GPIO_IORST);
> + GPIO_OUTPUT_CLEAR(CONFIG_SYS_GPIO_IORST);
> + GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_IORST);
> 
> - /* Setup GPIO's for PCI INTA */
> - GPIO_OUTPUT_DISABLE (CONFIG_SYS_GPIO_PCI1_INTA);
> - GPIO_INT_ACT_LOW_SET (CONFIG_SYS_GPIO_PCI1_INTA);
> + /* Setup GPIOs for PCI INTA */
> + GPIO_OUTPUT_DISABLE(CONFIG_SYS_GPIO_PCI1_INTA);
> + GPIO_INT_ACT_LOW_SET(CONFIG_SYS_GPIO_PCI1_INTA);
> 
> - /* Setup GPIO's for 33MHz clock output */
> - GPIO_OUTPUT_ENABLE (CONFIG_SYS_GPIO_PCI_CLK);
> - GPIO_OUTPUT_ENABLE (CONFIG_SYS_GPIO_EXTBUS_CLK);
> - *IXP425_GPIO_GPCLKR = 0x011001FF;
> + /* Setup GPIOs for 33MHz clock output */
> + GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_PCI_CLK);
> + GPIO_OUTPUT_ENABLE(CONFIG_SYS_GPIO_EXTBUS_CLK);
> + writel(0x011001FF, IXP425_GPIO_GPCLKR);
> 
> - /* CS5: Debug port */
> - *IXP425_EXP_CS5 = 0x9d520003;
> - /* CS6: HwRel */
> - *IXP425_EXP_CS6 = 0x81860001;
> - /* CS7: LEDs */
> - *IXP425_EXP_CS7 = 0x8093;
> -
> - udelay (533);
> - GPIO_OUTPUT_SET (CONFIG_SYS_GPIO_IORST);
> + udelay(533);
> + GPIO_OUTPUT_SET(CONFIG_SYS_GPIO_IORST);
> 
> - ACTUX1_LED1 (2);
> - ACTUX1_LED2 (2);
> - ACTUX1_LED3 (0);
> - ACTUX1_LED4 (0);
> - ACTUX1_LED5 (0);
> - ACTUX1_LED6 (0);
> - ACTUX1_LED7 (0);
> + ACTUX1_LED1(2);
> + ACTUX1_LED2(2);
> + ACTUX1_LED3(0);
> + ACTUX1_LED4(0);
> + ACTUX1_LED5(0);
> + ACTUX1_LED6(0);
> + ACTUX1_LED7(0);
> 
> - ACTUX1_HS (ACTUX1_HS_DCD);
> + ACTUX1_HS(ACTUX1_HS_DCD);
> 
>   return 0;
>  }
> @@ -87,20 +95,20 @@ int board_init (void)
>  /*
>   * Check Board Identity
>   */
> -int checkboard (void)
> +int checkboard(void)
>  {
> - char *s = getenv ("serial#");
> + char *s = getenv("serial#");
> 
> - puts ("Board: AcTux-1 rev.");
> - putc (ACTUX1_BOARDREL + 'A' - 1);
> + puts("Board: AcTux-1 rev.");
> + putc(ACTUX1_BOARDREL + 'A' - 1);
> 
>   if (s != NULL) {
> - puts (", serial# ");
> - puts (s);
> + puts(", serial# ");
> + puts(s);
>   }
> - putc ('\n');
> + putc('\n');
> 
> - return (0);
> + return 0;
>  }
> 
>  /*
> @@ -109,39 +117,36 @@ int checkboard (void)
>   * 1 = Rev. A
>   * 2 = Rev. B
>  
> */
> -u32 get_board_rev (void)
> +u32 get_board_rev(void)
>  {
>   return ACTUX1_BOARDREL;
>  }
> 
> -int dram_init (void)
> +int dram_init(void)
>  {
> - gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
> - gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
> -
> - return (0);
> + gd->ram_size = get_ram_size(CONFIG_SYS_SDRAM_BASE, 128<<20);
> + return 0;
>  }
> 
> -#if defined(CONFIG_CMD_PCI) || defined(CONFIG_PCI)
> -extern struct pci_controller hose;
> -extern void pci_ixp_init (struct pci_controller *hose);
> 
> -void pci_init_board (void)
> +#ifdef CONFIG_PCI
> +struct pci_controller hose;
> 

Re: [U-Boot] [IXP42x PATCH series v4 12/17] IXP NPE: add support for fixed-speed MII ports

2011-05-20 Thread Marek Vasut
On Wednesday, April 06, 2011 11:49:13 PM Michael Schwingen wrote:
> Signed-off-by: Michael Schwingen 
> ---
> Changes for V2:
> Changes for V3:
>  - coding style / indentation cleanup
>  - move config.h changes to AcTux2/AcTux3 board patches
> Changes for V4:
>  - add changelog
> 
>  arch/arm/cpu/ixp/npe/npe.c |   67
> +++ 1 files changed, 42
> insertions(+), 25 deletions(-)
> 
> diff --git a/arch/arm/cpu/ixp/npe/npe.c b/arch/arm/cpu/ixp/npe/npe.c
> index 6d92c53..f0e02bf 100644
> --- a/arch/arm/cpu/ixp/npe/npe.c
> +++ b/arch/arm/cpu/ixp/npe/npe.c
> @@ -359,36 +359,53 @@ static int npe_init(struct eth_device *dev, bd_t *
> bis)
> 
>   debug("%s: 1\n", __FUNCTION__);
> 
> - miiphy_read (dev->name, p_npe->phy_no, MII_BMSR, ®_short);
> -
> - /*
> -  * Wait if PHY is capable of autonegotiation and autonegotiation is not
> complete - */
> - if ((reg_short & BMSR_ANEGCAPABLE) && !(reg_short & BMSR_ANEGCOMPLETE)) 
> {
> - puts ("Waiting for PHY auto negotiation to complete");
> - i = 0;
> - while (!(reg_short & BMSR_ANEGCOMPLETE)) {
> - /*
> -  * Timeout reached ?
> -  */
> - if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
> - puts (" TIMEOUT !\n");
> - break;
> - }
> +#ifdef CONFIG_MII_NPE0_FIXEDLINK
> + if (0 == p_npe->eth_id) {
> + speed = CONFIG_MII_NPE0_SPEED;
> + duplex = CONFIG_MII_NPE0_FULLDUPLEX ? FULL : HALF;
> + } else
> +#endif
> +#ifdef CONFIG_MII_NPE1_FIXEDLINK
> + if (1 == p_npe->eth_id) {
> + speed = CONFIG_MII_NPE1_SPEED;
> + duplex = CONFIG_MII_NPE1_FULLDUPLEX ? FULL : HALF;
> + } else
> +#endif

Maybe you can bend the CPP here a bit to avoid code duplication ?

> + {
> + miiphy_read(dev->name, p_npe->phy_no, MII_BMSR, ®_short);
> +
> + /*
> +  * Wait if PHY is capable of autonegotiation and
> +  * autonegotiation is not complete
> +  */
> + if ((reg_short & BMSR_ANEGCAPABLE) &&
> + !(reg_short & BMSR_ANEGCOMPLETE)) {
> + puts("Waiting for PHY auto negotiation to complete");
> + i = 0;
> + while (!(reg_short & BMSR_ANEGCOMPLETE)) {
> + /*
> +  * Timeout reached ?
> +  */
> + if (i > PHY_AUTONEGOTIATE_TIMEOUT) {
> + puts(" TIMEOUT !\n");
> + break;
> + }
> 
> - if ((i++ % 1000) == 0) {
> - putc ('.');
> - miiphy_read (dev->name, p_npe->phy_no, 
> MII_BMSR, 
®_short);
> + if ((i++ % 1000) == 0) {
> + putc('.');
> + miiphy_read(dev->name, p_npe->phy_no,
> +  MII_BMSR, ®_short);
> + }
> + udelay(1000);   /* 1 ms */
>   }
> - udelay (1000);  /* 1 ms */
> + puts(" done\n");
> + /* another 500 ms (results in faster booting) */
> + udelay(50);
>   }
> - puts (" done\n");
> - udelay (50);/* another 500 ms (results in faster 
> booting) */
> + speed = miiphy_speed(dev->name, p_npe->phy_no);
> + duplex = miiphy_duplex(dev->name, p_npe->phy_no);
>   }
> 
> - speed = miiphy_speed (dev->name, p_npe->phy_no);
> - duplex = miiphy_duplex (dev->name, p_npe->phy_no);
> -
>   if (p_npe->print_speed) {
>   p_npe->print_speed = 0;
>   printf ("ENET Speed is %d Mbps - %s duplex connection\n",
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [IXP42x PATCH series v4 13/17] add dvlhost (dLAN 200 AV Wireless G) board

2011-05-20 Thread Marek Vasut
On Wednesday, April 06, 2011 11:49:14 PM Michael Schwingen wrote:
> Signed-off-by: Michael Schwingen 
> ---
> Changes for V2:
>  - move -ffunction-sections/--gc-sections to board config.mk
>  - add wildcard to bss segment in linker script
>  - add ethprime/ethrotate to default environment
> Changes for V3:
>  - use I/O accessors
>  - coding style fixes
>  - add PCI clock/reset initialization
>  - use get_ram_size in dram_init
>  - add PCI support
>  - remove config.mk
>  - remove unused definitions from config.h
>  - add CONFIG_BOARD_SIZE_LIMIT
> Changes for V4:
>  - add changelog
>  - add __bss_end to u-boot.lds
> 
>  MAINTAINERS|1 +
>  board/dvlhost/Makefile |   50 +
>  board/dvlhost/dvlhost.c|  130 +++
>  board/dvlhost/dvlhost_hw.h |   47 +
>  board/dvlhost/u-boot.lds   |   87 +++
>  board/dvlhost/watchdog.c   |   43 
>  boards.cfg |1 +
>  include/configs/dvlhost.h  |  248
>  8 files changed, 607
> insertions(+), 0 deletions(-)
>  create mode 100644 board/dvlhost/Makefile
>  create mode 100644 board/dvlhost/dvlhost.c
>  create mode 100644 board/dvlhost/dvlhost_hw.h
>  create mode 100644 board/dvlhost/u-boot.lds
>  create mode 100644 board/dvlhost/watchdog.c
>  create mode 100644 include/configs/dvlhost.h
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 4b17b63..97f8a38 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -811,6 +811,7 @@ Michael Schwingen 
>   actux2  xscale/ixp
>   actux3  xscale/ixp
>   actux4  xscale/ixp
> + dvlhost xscale/ixp
> 
>  Andrea Scian 
> 
> diff --git a/board/dvlhost/Makefile b/board/dvlhost/Makefile
> new file mode 100644
> index 000..af9a644
> --- /dev/null
> +++ b/board/dvlhost/Makefile
> @@ -0,0 +1,50 @@
> +#
> +# (C) Copyright 2000-2006
> +# Wolfgang Denk, DENX Software Engineering, w...@denx.de.
> +#
> +# See file CREDITS for list of people who contributed to this
> +# project.
> +#
> +# This program is free software; you can redistribute it and/or
> +# modify it under the terms of the GNU General Public License as
> +# published by the Free Software Foundation; either version 2 of
> +# the License, or (at your option) any later version.
> +#
> +# This program is distributed in the hope that it will be useful,
> +# but WITHOUT ANY WARRANTY; without even the implied warranty of
> +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> +# GNU General Public License for more details.
> +#
> +# You should have received a copy of the GNU General Public License
> +# along with this program; if not, write to the Free Software
> +# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
> +# MA 02111-1307 USA
> +#
> +
> +include $(TOPDIR)/config.mk
> +
> +LIB  = $(obj)lib$(BOARD).o
> +
> +COBJS:= dvlhost.o watchdog.o
> +
> +SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
> +OBJS := $(addprefix $(obj),$(COBJS))
> +SOBJS:= $(addprefix $(obj),$(SOBJS))
> +
> +$(LIB):  $(obj).depend $(OBJS)
> + $(call cmd_link_o_target, $(OBJS))
> +
> +clean:
> + rm -f $(SOBJS) $(OBJS)
> +
> +distclean:   clean
> + rm -f $(LIB) core *.bak $(obj).depend
> +
> +#
> +
> +# defines $(obj).depend target
> +include $(SRCTREE)/rules.mk
> +
> +sinclude $(obj).depend
> +
> +#
> diff --git a/board/dvlhost/dvlhost.c b/board/dvlhost/dvlhost.c
> new file mode 100644
> index 000..561e47f
> --- /dev/null
> +++ b/board/dvlhost/dvlhost.c
> @@ -0,0 +1,130 @@
> +/*
> + * (C) Copyright 2009
> + * Michael Schwingen, mich...@schwingen.org
> + *
> + * See file CREDITS for list of people who contributed to this
> + * project.
> + *
> + * This program is free software; you can redistribute it and/or
> + * modify it under the terms of the GNU General Public License as
> + * published by the Free Software Foundation; either version 2 of
> + * the License, or (at your option) any later version.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> + * GNU General Public License for more details.
> + *
> + * You should have received a copy of the GNU General Public License
> + * along with this program; if not, write to the Free Software
> + * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
> + * MA 02111-1307 USA
> + */
> +
> +#include 
> +#include 
> +#include 
> +#include 
> +#include 
> +#include 
> +#include 
> +#ifdef CONFIG_PCI
> +#include 
> +#include 
> +#endif
> +
> +#include "dvlhost_hw.h"
> +
> +DECLARE_GLOBAL_DATA_PTR;
> +
> +int board_early_init_f(void)
> +{
> + /* CS1: LED Latch */
> + writel(0xBFFF0002, IXP425_EXP_CS1);
> + return 0;
> +}
> +
> +int board_init(

[U-Boot] [PATCH v2] .gitignore: update list of u-boot.* files and add *.bin

2011-05-20 Thread Eric Cooper
This patch adds additional u-boot.* files mentioned in Makefile,
and adds *.bin since these are deleted as part of "make clean".

Signed-off-by: Eric Cooper 
---
Changes since v1:

Added more general *.bin pattern.

 .gitignore |8 +---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore
index 8ec3d06..34a2ca9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,6 +13,7 @@
 *~
 *.swp
 *.patch
+*.bin
 
 #
 # Top-level generic files
@@ -23,14 +24,15 @@
 /u-boot.hex
 /u-boot.imx
 /u-boot.map
-/u-boot.bin
 /u-boot.srec
 /u-boot.ldr
 /u-boot.ldr.hex
 /u-boot.ldr.srec
+/u-boot.img
+/u-boot.kwb
+/u-boot.sha1
+/u-boot.dis
 /u-boot.lds
-/u-boot-onenand.bin
-/u-boot-flexonenand.bin
 
 #
 # Generated files
-- 
1.7.4.4

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [STATUS] v2011.06-rc1 released

2011-05-20 Thread David Müller (ELSOFT AG)
Hello,

please also apply the following patch and friends

http://patchwork.ozlabs.org/patch/93595/

this will make VCMA9 board work with current U-Boot release.

Thank you

Dave
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot