[U-Boot-Users] [PATCH] FDT memory and pci node fixes for MPC8260ADS

2008-06-07 Thread Matvejchikov Ilya
>From 3c7a1b900ab7b473fed62398fc76a16fa9c5940a Mon Sep 17 00:00:00 2001 From: Matvejchikov Ilya <[EMAIL PROTECTED](none)> Date: Sat, 7 Jun 2008 16:57:14 +0400 Subject: [PATCH] FDT memory and pci fixes for MPC8260ADS Signed-off-by: Matvejchikov Ilya <[EMAIL PROTECTED](none)> ---

[U-Boot-Users] [PATCH] Some copy-n-paste fixes in printf usage

2008-06-07 Thread Matvejchikov Ilya
>From 9bdd14533d7c6f0af336b59a2a026093be84eff9 Mon Sep 17 00:00:00 2001 From: Matvejchikov Ilya <[EMAIL PROTECTED](none)> Date: Sat, 7 Jun 2008 17:01:42 +0400 Subject: [PATCH] Some copy-n-paste fixes in printf usage Signed-off-by: Matvejchikov Ilya <[EMAIL PROTECTED](none)> --

[U-Boot-Users] [PATCH, resend] FDT memory and pci node fixes for MPC8260ADS

2008-07-06 Thread Matvejchikov Ilya
Signed-off-by: Matvejchikov Ilya <[EMAIL PROTECTED]> --- board/freescale/mpc8260ads/mpc8260ads.c | 27 +++ cpu/mpc8260/pci.c | 12 include/configs/MPC8260ADS.h|7 +++ 3 files changed, 46 insertions(+), 0 del

[U-Boot-Users] [PATCH, resend] Some copy-n-paste fixes in printf usage

2008-07-06 Thread Matvejchikov Ilya
Signed-off-by: Matvejchikov Ilya <[EMAIL PROTECTED]> --- board/cm5200/cm5200.c |2 +- board/ids8247/ids8247.c |2 +- board/mgcoge/mgcoge.c |6 +++--- board/mgsuvd/mgsuvd.c |8 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/board/cm5200/cm52

[U-Boot-Users] [PATCH] PPC: Some PCI generalization in the global_data structure.

2008-07-13 Thread Matvejchikov Ilya
: Matvejchikov Ilya <[EMAIL PROTECTED]> --- include/asm-ppc/global_data.h |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/include/asm-ppc/global_data.h b/include/asm-ppc/global_data.h index c5ac658..ac3e719 100644 --- a/include/asm-ppc/global_data.h +++ b/include/a

[U-Boot-Users] [PATCH] 8260: Fix gd->pci_clk usage

2008-07-13 Thread Matvejchikov Ilya
This patch fixes gd->pci_clk usage. Now it depends on CONFIG_PCI option. Signed-off-by: Matvejchikov Ilya <[EMAIL PROTECTED]> --- cpu/mpc8260/speed.c | 47 +++ 1 files changed, 27 insertions(+), 20 deletions(-) diff --git a/cpu/mpc8260/spee

Re: [U-Boot-Users] [PATCH] PPC: Some PCI generalization in the global_data structure.

2008-07-13 Thread Matvejchikov Ilya
> This makes no sense to me. > > Please keep in mind that the global_data stuff is intended for, and > only for, holding global information while we are still running from > flash (i. e. before relocation) so that we have neiter a writabel data > segment nor a valid bss segment. > > PCI initializat

Re: [U-Boot-Users] [PATCH, resend] FDT memory and pci node fixes for MPC8260ADS

2008-07-14 Thread Matvejchikov Ilya
>> +#if defined(CONFIG_OF_LIBFDT) >> +void ft_pci_setup(void *blob, bd_t *bd) >> +{ >> + do_fixup_by_prop_u32(blob, "device_type", "pci", 4, >> + "clock-frequency", bd->pci_clk, 1); >> +} >> +#endif > > Your patch causes problems: > > Configuring for MPC8260ADS board... > pci.c: In

[U-Boot-Users] [PATCH 1/2] PPC: Add pci_clk in the global_data for CPM2 processors

2008-07-30 Thread Matvejchikov Ilya
This patch adds pci_clk field to the global_data structure for the processors which have CPM2 module in case the CONFIG_PCI is defined. Signed-off-by: Matvejchikov Ilya <[EMAIL PROTECTED]> --- include/asm-ppc/global_data.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff

[U-Boot-Users] [PATCH 2/2] 8260: Making the use of gd->pci_clk dependant on the CONFIG_PCI

2008-07-30 Thread Matvejchikov Ilya
Signed-off-by: Matvejchikov Ilya <[EMAIL PROTECTED]> --- cpu/mpc8260/speed.c | 47 +++ 1 files changed, 27 insertions(+), 20 deletions(-) diff --git a/cpu/mpc8260/speed.c b/cpu/mpc8260/speed.c index 38cd0d9..8d280fb 100644 --- a/cpu/mpc8260/s