[U-Boot] [PATCH] OMAP3: EVM: Convert omap3_evm_version to u32

2010-12-17 Thread Dirk Behme
Convert the variable omap3_evm_version to u32 to work around some broken linkers from older tool chains. E.g. CodeSourcery's 2009q1-203 ld 2.19.51.20090205. Without this, these linkers stop linking 'omap3_evm' or at least issue a warning. Like arm-none-linux-gnueabi-ld: section .bss [8003f5e0 ->

[U-Boot] Quote (Tote bags/Backpacks/Duffles and Briefcases) .....z 2MQAJId

2010-12-17 Thread Ideas Promo-Tina
___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] Quote (Tote bags/Backpacks/Duffles and Briefcases) .....z 2MQAJId

2010-12-17 Thread Ideas Promo-Tina
___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] Quote (Tote bags/Backpacks/Duffles and Briefcases) .....z 2MQAJId

2010-12-17 Thread Ideas Promo-Tina
___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] Quote (Tote bags/Backpacks/Duffles and Briefcases) .....z 2MQAJId

2010-12-17 Thread Ideas Promo-Tina
___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] Please pull u-boot-mpc85xx.git

2010-12-17 Thread Kumar Gala
[ a few minor bug fixes for v2010.12 ] The following changes since commit 3ac45988ab1605baaf83bd3acb80a197c9a208c2: Prepare v2010.12-rc3 (2010-12-17 10:15:38 +0100) are available in the git repository at: git://git.denx.de/u-boot-mpc85xx master Jerry Huang (2): fsl_esdhc: Use mmc_set_

Re: [U-Boot] [PATCH] p1022ds: enable reginfo command

2010-12-17 Thread Kumar Gala
On Dec 17, 2010, at 5:26 PM, Matthew McClintock wrote: > From: Matthew McClintock > > Add reginfo as a default command for p1022ds boards > > Signed-off-by: Matthew McClintock > --- > include/configs/P1022DS.h |1 + > 1 files changed, 1 insertions(+), 0 deletions(-) applied - k

[U-Boot] [PATCH v2 6/9] mpc85xx: Enable unique mode registers and dynamic ODT for DDR3

2010-12-17 Thread York Sun
Added fsl_ddr_get_version() function to for DDR3 to poll DDRC IP version (major, minor, errata) to determine if unique mode registers are available. If true, always use unique mode registers. Dynamic ODT is enabled if needed. The table is documented in doc/README.fsl-ddr. This function may also nee

[U-Boot] [PATCH v2 9/9] corenet_ds: Extend board specific parameters

2010-12-17 Thread York Sun
Extend board specific parameters to include cpo, write leveling override Extend write leveling sample to 0xf Adding rcw overrid for quad-rank RDIMMs Signed-off-by: York Sun --- arch/powerpc/include/asm/fsl_ddr_sdram.h |3 + board/freescale/corenet_ds/ddr.c | 155 +++-

[U-Boot] [PATCH v2 8/9] mpc85xx: Implement workaround for erratum DDR-A003

2010-12-17 Thread York Sun
Erratum DDR-A003 requires workaround to correctly set RCW10 for registered DIMM. Also adding polling after enabling DDR controller to ensure completion. Signed-off-by: York Sun --- arch/powerpc/cpu/mpc85xx/cmd_errata.c|4 ++ arch/powerpc/cpu/mpc85xx/ddr-gen3.c | 81 +++

[U-Boot] [PATCH v2 5/9] mpc85xx: Adding more registers and options

2010-12-17 Thread York Sun
Add writing to cdr1, cdr2, err_disable, err_int_en and debug registers Add options to override rcw, address parity to RDIMMs. Use array for debug registers. Signed-off-by: York Sun --- arch/powerpc/cpu/mpc85xx/ddr-gen3.c | 10 -- arch/powerpc/include/asm/fsl_ddr_sdram.h | 12 +++

[U-Boot] [PATCH v2 7/9] Adding more SPD registers

2010-12-17 Thread York Sun
Adding byte 32 and 33 Signed-off-by: York Sun --- include/ddr_spd.h |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/include/ddr_spd.h b/include/ddr_spd.h index 710e528..d632a1e 100644 --- a/include/ddr_spd.h +++ b/include/ddr_spd.h @@ -219,7 +219,9 @@ typedef struct d

[U-Boot] [PATCH v2 4/9] corenet_ds: Enable ECC for corenet_ds

2010-12-17 Thread York Sun
ECC can be turned on/off by hwconfig without recompiling. So enable it by default. Signed-off-by: York Sun --- include/configs/corenet_ds.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/corenet_ds.h b/include/configs/corenet_ds.h index 454a30a..49f0a26

[U-Boot] [PATCH v2 1/9] mpc8xxx: Display RDIMM if detected

2010-12-17 Thread York Sun
Print a message when a RDIMM is detected. Signed-off-by: York Sun --- .../cpu/mpc8xxx/ddr/lc_common_dimm_params.c| 19 +++ 1 files changed, 7 insertions(+), 12 deletions(-) diff --git a/arch/powerpc/cpu/mpc8xxx/ddr/lc_common_dimm_params.c b/arch/powerpc/cpu/mpc8xxx/dd

[U-Boot] [PATCH v2 3/9] mpc8xxx: Enable ECC on/off control in hwconfig

2010-12-17 Thread York Sun
Add fsl_ddr:ecc=on in hwconfig. If ECC is enabled in board configuration file, ECC can be turned on/off by this switch. If this switch is omitted, it is ON by default. Syntax is hwconfig=fsl_ddr:ecc=on Signed-off-by: York Sun --- arch/powerpc/cpu/mpc8xxx/ddr/options.c |9 ++--- doc/READ

[U-Boot] [PATCH v2 2/9] make the hwconfig buffer deeper

2010-12-17 Thread York Sun
To temporarily fix buffer issue when running at flash, use bigger buffer to push down the stack deeper. Signed-off-by: York Sun --- common/hwconfig.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common/hwconfig.c b/common/hwconfig.c index 3c9759f..1b33d95 100644 ---

Re: [U-Boot] [PATCH 11/11] powerpc/8xxx: Replace is_fsl_pci_cfg with is_serdes_configured

2010-12-17 Thread Kumar Gala
[Forgot to CC board maintainers, please review] On Dec 17, 2010, at 5:33 PM, Kumar Gala wrote: > Now that we have serdes support for all 85xx/86xx/Pxxx chips we can > replace the is_fsl_pci_cfg() code with the is_serdes_configured(). > > Signed-off-by: Kumar Gala > --- > arch/powerpc/cpu/mpc8xx

[U-Boot] [PATCH 09/15] powerpc/85xx: Rework TQM boards pci_init_board to use common FSL PCIe code

2010-12-17 Thread Kumar Gala
Remove duplicated code in TQM 85xx boards and utliize the common fsl_pcie_init_board(). Signed-off-by: Kumar Gala CC: w...@denx.de --- board/tqc/tqm85xx/law.c |9 + board/tqc/tqm85xx/tqm85xx.c | 41 - 2 files changed, 13 insertions(+), 37

[U-Boot] [PATCH 15/15] powerpc/85xx: Rework SBC8548 pci_init_board to use common FSL PCIe code

2010-12-17 Thread Kumar Gala
Remove duplicated code in SBC8548 board and utliize the common fsl_pcie_init_board(). We also now dynamically setup the LAWs for PCI controllers based on which PCIe controllers are enabled. Signed-off-by: Kumar Gala CC: Paul Gortmaker --- board/sbc8548/law.c |8 --- board/sbc8548/s

[U-Boot] [PATCH 13/15] powerpc/86xx: Rework MPC8610HPCD pci_init_board to use common FSL PCIe code

2010-12-17 Thread Kumar Gala
Remove duplicated code in MPC8610HPCD board and utliize the common fsl_pcie_init_board(). We also now dynamically setup the LAWs for PCI controllers based on which PCIe controllers are enabled. Signed-off-by: Kumar Gala --- board/freescale/mpc8610hpcd/law.c |8 +--- board/freescale/

[U-Boot] [PATCH 14/15] powerpc/86xx: Rework SBC8641 pci_init_board to use common FSL PCIe code

2010-12-17 Thread Kumar Gala
Remove duplicated code in SBC8641 board and utliize the common fsl_pcie_init_board(). We also now dynamically setup the LAWs for PCI controllers based on which PCIe controllers are enabled. Signed-off-by: Kumar Gala CC: Paul Gortmaker --- board/sbc8641d/law.c |4 --- board/sbc8641d/sb

[U-Boot] [PATCH 12/15] powerpc/85xx: Rework P1_P2_RDB pci_init_board to use common FSL PCIe code

2010-12-17 Thread Kumar Gala
Remove duplicated code in P1_P2_RDB boards and utliize the common fsl_pcie_init_board(). We also now dynamically setup the LAWs for PCI controllers based on which PCIe controllers are enabled. Signed-off-by: Kumar Gala --- board/freescale/p1_p2_rdb/law.c |6 +--- board/freescale/p1_p2_rdb/p

[U-Boot] [PATCH 11/15] powerpc/85xx: Rework MPC8569MDS pci_init_board to use common FSL PCIe code

2010-12-17 Thread Kumar Gala
Remove duplicated code in MPC8569MDS board and utliize the common fsl_pcie_init_board(). We also now dynamically setup the LAWs for PCI controllers based on which PCIe controllers are enabled. Signed-off-by: Kumar Gala --- board/freescale/mpc8569mds/law.c|4 +-- board/freescale/mpc8

[U-Boot] [PATCH 10/15] powerpc/85xx: Rework MPC8568MDS pci_init_board to use common FSL PCIe code

2010-12-17 Thread Kumar Gala
Remove duplicated code in MPC8568MDS board and utliize the common fsl_pcie_init_board(). We also now dynamically setup the LAWs for PCI controllers based on which PCIe controllers are enabled. Signed-off-by: Kumar Gala --- board/freescale/mpc8568mds/law.c|6 +--- board/freescale/mpc

[U-Boot] [PATCH 08/15] powerpc/8xxx: Rework XES boards pci_init_board to use common FSL PCIe code

2010-12-17 Thread Kumar Gala
Remove duplicated code in MPC8572 DS board and utliize the common fsl_pcie_init_board(). Signed-off-by: Kumar Gala CC: Peter Tyser --- board/xes/common/fsl_8xxx_pci.c | 82 --- board/xes/xpedite517x/law.c |8 board/xes/xpedite520x/law.c |

[U-Boot] [PATCH 07/15] powerpc/85xx: Rework MPC8548CDS pci_init_board to use common FSL PCIe code

2010-12-17 Thread Kumar Gala
Remove duplicated code in MPC8548CDS board and utliize the common fsl_pcie_init_board(). We also now dynamically setup the LAWs for PCI controllers based on which PCIe controllers are enabled. Signed-off-by: Kumar Gala --- board/freescale/mpc8548cds/law.c| 10 +-- board/freescale/

[U-Boot] [PATCH 06/15] powerpc/86xx: Rework MPC8641HPCN pci_init_board to use common FSL PCIe code

2010-12-17 Thread Kumar Gala
Remove duplicated code in MPC8641HPCN board and utliize the common fsl_pcie_init_board(). We also now dynamically setup the LAWs for PCI controllers based on which PCIe controllers are enabled. Signed-off-by: Kumar Gala --- board/freescale/mpc8641hpcn/law.c |7 +--- board/freescale/

[U-Boot] [PATCH 02/15] powerpc/85xx: Rework MPC8572DS pci_init_board to use common FSL PCIe code

2010-12-17 Thread Kumar Gala
Remove duplicated code in MPC8572DS board and utliize the common fsl_pcie_init_board(). We also now dynamically setup the LAWs for PCI controllers based on which PCIe controllers are enabled. Signed-off-by: Kumar Gala --- board/freescale/mpc8572ds/law.c |8 +-- board/freescale/mpc8572

[U-Boot] [PATCH 03/15] powerpc/85xx: Rework P2020DS pci_init_board to use common FSL PCIe code

2010-12-17 Thread Kumar Gala
Remove duplicated code in P2020DS board and utliize the common fsl_pcie_init_board(). We also now dynamically setup the LAWs for PCI controllers based on which PCIe controllers are enabled. Signed-off-by: Kumar Gala --- board/freescale/p2020ds/law.c |8 +-- board/freescale/p2020ds/p2020

[U-Boot] [PATCH 05/15] powerpc/85xx: Rework MPC8536DS pci_init_board to use common FSL PCIe code

2010-12-17 Thread Kumar Gala
Remove duplicated code in MPC8536DS board and utliize the common fsl_pcie_init_board(). Signed-off-by: Kumar Gala --- board/freescale/mpc8536ds/mpc8536ds.c | 125 ++-- 1 files changed, 24 insertions(+), 101 deletions(-) diff --git a/board/freescale/mpc8536ds/mpc8536

[U-Boot] [PATCH 04/15] powerpc/85xx: Rework MPC8544DS pci_init_board to use common FSL PCIe code

2010-12-17 Thread Kumar Gala
Remove duplicated code in MPC8544DS board and utliize the common fsl_pcie_init_ctrl(). We also now dynamically setup the LAWs for PCI controllers based on which PCIe controllers are enabled. We don't use the full fsl_pcie_init_ctrl() since we have to handle PCIE3 specially to setup the additional

[U-Boot] [PATCH 01/15] powerpc/fsl-pci: Add generic code to setup PCIe controllers

2010-12-17 Thread Kumar Gala
Since all the PCIe controllers are connected over SERDES on the SoCs we can utilize is_serdes_configured() to determine if a controller is enabled. After which we can setup the ATMUs and LAWs for the controller in a common fashion and allow board code to specify what the controller is connected to

[U-Boot] [PATCH] powerpc/85xx: Cleanup SGMII detection and reporting

2010-12-17 Thread Kumar Gala
Use new is_serdes_configured to determine if TSECs are in SGMII mode and report that on the various boards that use or can be configured in SGMII mode in board_eth_init() instead of in the PCI init code. Signed-off-by: Kumar Gala --- board/freescale/mpc8536ds/mpc8536ds.c | 27 +

[U-Boot] [PATCH 11/11] powerpc/8xxx: Replace is_fsl_pci_cfg with is_serdes_configured

2010-12-17 Thread Kumar Gala
Now that we have serdes support for all 85xx/86xx/Pxxx chips we can replace the is_fsl_pci_cfg() code with the is_serdes_configured(). Signed-off-by: Kumar Gala --- arch/powerpc/cpu/mpc8xxx/Makefile |1 - arch/powerpc/cpu/mpc8xxx/pci_cfg.c| 204 -

[U-Boot] [PATCH 10/11] powerpc/85xx: Add is_serdes_configured() support for P1021 SERDES

2010-12-17 Thread Kumar Gala
Add the ability to determine if a given IP block connected on SERDES is configured. This is useful for things like PCIe and SRIO since they are only ever connected on SERDES. Signed-off-by: Kumar Gala --- arch/powerpc/cpu/mpc85xx/Makefile |4 ++ arch/powerpc/cpu/mpc85xx/p1021_serdes.c

[U-Boot] [PATCH 09/11] powerpc/85xx: Add is_serdes_configured() support for MPC8544 SERDES

2010-12-17 Thread Kumar Gala
Add the ability to determine if a given IP block connected on SERDES is configured. This is useful for things like PCIe and SRIO since they are only ever connected on SERDES. Signed-off-by: Kumar Gala --- arch/powerpc/cpu/mpc85xx/Makefile |1 + arch/powerpc/cpu/mpc85xx/mpc8544_serde

[U-Boot] [PATCH 07/11] powerpc/85xx: Add is_serdes_configured() support for MPC8568 SERDES

2010-12-17 Thread Kumar Gala
Add the ability to determine if a given IP block connected on SERDES is configured. This is useful for things like PCIe and SRIO since they are only ever connected on SERDES. Signed-off-by: Kumar Gala --- arch/powerpc/cpu/mpc85xx/Makefile |1 + arch/powerpc/cpu/mpc85xx/mpc8568_serde

[U-Boot] [PATCH 08/11] powerpc/85xx: Add is_serdes_configured() support for MPC8569 SERDES

2010-12-17 Thread Kumar Gala
Add the ability to determine if a given IP block connected on SERDES is configured. This is useful for things like PCIe and SRIO since they are only ever connected on SERDES. Signed-off-by: Kumar Gala --- arch/powerpc/cpu/mpc85xx/Makefile |1 + arch/powerpc/cpu/mpc85xx/mpc8569_serde

[U-Boot] [PATCH 06/11] powerpc/85xx: Add is_serdes_configured() support for MPC8548 SERDES

2010-12-17 Thread Kumar Gala
Add the ability to determine if a given IP block connected on SERDES is configured. This is useful for things like PCIe and SRIO since they are only ever connected on SERDES. Signed-off-by: Kumar Gala --- arch/powerpc/cpu/mpc85xx/Makefile |1 + arch/powerpc/cpu/mpc85xx/mpc8548_serde

[U-Boot] [PATCH 05/11] powerpc/85xx: Add is_serdes_configured() support for MPC8572 SERDES

2010-12-17 Thread Kumar Gala
Add the ability to determine if a given IP block connected on SERDES is configured. This is useful for things like PCIe and SRIO since they are only ever connected on SERDES. Signed-off-by: Kumar Gala --- arch/powerpc/cpu/mpc85xx/Makefile |1 + arch/powerpc/cpu/mpc85xx/mpc8572_serde

[U-Boot] [PATCH 04/11] powerpc/85xx: Add is_serdes_configured() support for P2020 SERDES

2010-12-17 Thread Kumar Gala
Add the ability to determine if a given IP block connected on SERDES is configured. This is useful for things like PCIe and SRIO since they are only ever connected on SERDES. Signed-off-by: Kumar Gala --- arch/powerpc/cpu/mpc85xx/Makefile |2 + arch/powerpc/cpu/mpc85xx/p2020_serdes.c

[U-Boot] [PATCH 03/11] powerpc/86xx: Add SERDES support on MPC8641 & MPC8610

2010-12-17 Thread Kumar Gala
Add the ability to determine if a given IP block connected on SERDES is configured. This is useful for things like PCIe and SRIO since they are only ever connected on SERDES. This mimics the code we have in place for the 85xx platforms. Signed-off-by: Kumar Gala --- arch/powerpc/cpu/mpc86xx/Ma

[U-Boot] [PATCH 01/11] powerpc/85xx: Replace CONFIG_SYS_HAS_SERDES with a weak function

2010-12-17 Thread Kumar Gala
Instead of a #define use a null weak function for fsl_serdes_init Signed-off-by: Kumar Gala --- arch/powerpc/cpu/mpc85xx/cpu_init.c |8 ++-- include/configs/MPC8536DS.h |1 - include/configs/P1022DS.h |1 - include/configs/corenet_ds.h|1 - 4 files c

[U-Boot] [PATCH 02/11] powerpc/85xx: Create a SERDES section in Makefile

2010-12-17 Thread Kumar Gala
Created a section in the Makefile for SoC specific SERDES code. Also added P1013 SERDES (use P1022 SERDES code). Signed-off-by: Kumar Gala --- arch/powerpc/cpu/mpc85xx/Makefile |7 +-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/arch/powerpc/cpu/mpc85xx/Makefile b/ar

[U-Boot] [PATCH 1/2] pci: Add find_hose_by_cfg_addr() helper function

2010-12-17 Thread Kumar Gala
Being able to get back a pci_controller struct back by searching for it means we can do things like dynamically allocate them or not have to expose the static structures to all users. Signed-off-by: Kumar Gala --- drivers/pci/pci.c | 11 +++ include/pci.h |1 + 2 files changed,

[U-Boot] [PATCH 2/2] powerpc/fsl-pci: Use new find_hose_by_cfg_addr for FSL PCI dts fixup

2010-12-17 Thread Kumar Gala
Previously we passed in a specifically named struct pci_controller to determine if we had setup the particular PCI bus. Now we can search for the struct so we dont have to depend on the name or the struct being statically allocated. Signed-off-by: Kumar Gala --- arch/powerpc/include/asm/fsl_pci

[U-Boot] [PATCH] p1022ds: enable reginfo command

2010-12-17 Thread Matthew McClintock
From: Matthew McClintock Add reginfo as a default command for p1022ds boards Signed-off-by: Matthew McClintock --- include/configs/P1022DS.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/configs/P1022DS.h b/include/configs/P1022DS.h index 13f1125..272bd9f 100

[U-Boot] [PATCH V3 3/6] mpc85xx boards: initdram() cleanup/bugfix

2010-12-17 Thread Becky Bruce
Correct initdram to use phys_size_t to represent the size of dram; instead of changing this all over the place, and correcting all the other random errors I've noticed, create a common initdram that is used by all non-corenet 85xx parts. Most of the initdram() functions were identical, with 2 comm

[U-Boot] [PATCH V3 6/6] MPC8xxx DDR: align informational prints

2010-12-17 Thread Becky Bruce
Add spaces to cause the informational prints to line up with the ones from init_func_ram() in board.c. Output now looks like this: DRAM: Detected 4096 MB of memory This U-Boot only supports < 4G of DDR You could rebuild it with CONFIG_PHYS_64BIT DDR: 2 GiB (DDR2, 64-bit

[U-Boot] [PATCH V3 5/6] 85xx boards: Rename CONFIG_DDR_DLL to CONFIG_SYS_FSL_ERRATUM_DDR_MSYNC_IN

2010-12-17 Thread Becky Bruce
This config option is for an erratum workaround; rename it to be more clear. Also, drop it from config files don't need it and were undefining it. Signed-off-by: Becky Bruce --- arch/powerpc/cpu/mpc85xx/cmd_errata.c |3 +++ arch/powerpc/cpu/mpc85xx/cpu.c|2 +- doc/README.mpc85xx

[U-Boot] [PATCH V3 4/6] mpc85xx: rename sdram_init() lbc_sdram_init()

2010-12-17 Thread Becky Bruce
sdram_init() is used to initialize sdram on the lbc. Rename it accordingly. Signed-off-by: Becky Bruce --- arch/powerpc/cpu/mpc85xx/cpu.c |2 +- arch/powerpc/cpu/mpc8xxx/fsl_lbc.c |4 ++-- arch/powerpc/include/asm/fsl_lbc.h |2 +- board/freescale/mpc8540ads/mpc854

[U-Boot] [PATCH V3 2/6] mpc85xx/tlb.c: Allow platforms to specify wimge bits

2010-12-17 Thread Becky Bruce
Some platforms might want to override the default wimge=0 for DDR. Add CONFIG_SYS_PPC_DDR_WIMGE for those platforms to use. This will initially only be used by TQM85xx, but could be useful for other boards or testing going forward. Note that the name of this define is not 85xx-specific. WIMGE is

[U-Boot] [PATCH V3 1/6] tqm85xx: create fixed_sdram() to do sdram setup

2010-12-17 Thread Becky Bruce
Also, change this code to use phys_size_t instead of long int. Using common naming for this function will enable us to use the common initdram() for 85xx going forward. Other than the type change, this is just a code rearrange. Signed-off-by: Becky Bruce --- board/tqc/tqm85xx/sdram.c | 37 +++

[U-Boot] [PATCH V3 00/06] Go to common initdram() on 85xx-based boards

2010-12-17 Thread Becky Bruce
This patch series consists of a bunch of cleanups that allow us to use a common initdram() on all of the non-corenet 85xx-based boards. Also, switch to using phys_size_t to represent the size of memory returned. Most of these patches are just code rearranges or renaming things to get a common sch

[U-Boot] [PATCH v2] env: re-add support for auto-completion

2010-12-17 Thread Mike Frysinger
Currently, only basic completion is supported (no globs), but this is what we had previously. Signed-off-by: Mike Frysinger --- v2 - sort the results common/command.c|3 +-- common/env_common.c | 40 +++- include/common.h|1 + includ

[U-Boot] easy money online

2010-12-17 Thread SAT.GR
dear subscriber too many people not more smarter than you are making 100,000 $+ per year from the first months with no site with no merce please believe me So i have for you some good FREE e-books for you for your success you can download them ABSOLUTELLY FREE from here: http://www.wix

Re: [U-Boot] [PATCH] arm: Add armv6 and armv7 optimized swab functions

2010-12-17 Thread Måns Rullgård
Rob Herring writes: > From: Rob Herring > > swab functions are heavily used by FDT code, so enable > optimized assembly code for ARMv6 and later. > > Signed-off-by: Rob Herring > --- > arch/arm/include/asm/byteorder.h | 16 > 1 files changed, 16 insertions(+), 0 deletions(-)

Re: [U-Boot] [PATCH] arm: Add armv6 and armv7 optimized swab functions

2010-12-17 Thread Rob Herring
Wolfgang, On 12/17/2010 02:21 PM, Wolfgang Denk wrote: > Dear Rob Herring, > > In message<1292425994-24331-1-git-send-email-robherri...@gmail.com> you > wrote: >> From: Rob Herring >> >> swab functions are heavily used by FDT code, so enable >> optimized assembly code for ARMv6 and later. >> >>

Re: [U-Boot] [RFC PATCH 2/2] env: re-add support for auto-completion

2010-12-17 Thread Wolfgang Denk
Dear Mike Frysinger, In message <201012171535.08619.vap...@gentoo.org> you wrote: > > > Why can we not collect the results and sort them like we do for "env > > print" ? > > hmm, i dont think the previous code did do any sorting. it just relied on > the > results of the env code being sorted a

Re: [U-Boot] Pull request: nand flash next

2010-12-17 Thread Wolfgang Denk
Dear Scott Wood, In message <20101217203359.ga10...@udp111988uds.am.freescale.net> you wrote: > The following changes since commit 326a69452745352ab09fe9b11d3d2fa4e9213c1c: > Mike Frysinger (1): > config.mk: unify duplicated flag setting > > are available in the git repository at: > >

Re: [U-Boot] [PATCH/next] 74xx_7xx/mpc86xx/ppmc7xx: Fix do_reset() declaration

2010-12-17 Thread Wolfgang Denk
Dear Mike Frysinger, In message <201012171531.41016.vap...@gentoo.org> you wrote: > > > git doesn't want to do that. Too many merges inbetween already. > > np. if you want to pick up Peter's patch, i'll send another one for the api > examples file. Please do. TIA. Best regards, Wolfgang Den

Re: [U-Boot] [RFC PATCH 2/2] env: re-add support for auto-completion

2010-12-17 Thread Mike Frysinger
On Friday, December 17, 2010 15:10:14 Wolfgang Denk wrote: > Mike Frysinger wrote: > > Currently, only basic completion is supported (no globs), but this is > > what we had previously. The downside is that the results are not > > returned in any sorted order. The upside is that we get any results

[U-Boot] Pull request: nand flash next

2010-12-17 Thread Scott Wood
The following changes since commit 326a69452745352ab09fe9b11d3d2fa4e9213c1c: Mike Frysinger (1): config.mk: unify duplicated flag setting are available in the git repository at: git://git.denx.de/u-boot-nand-flash.git next Florian Fainelli (1): NAND: add NAND_CMD_PARAM (0xec) d

Re: [U-Boot] oamp3: bug in clock.c with gcc 4.5.1?

2010-12-17 Thread Alexander Holler
Hello, Am 17.12.2010 15:20, schrieb Wolfgang Denk: >> I think I've nailed down, why an u-boot compiled with gcc 4.5.1 fails >> here. Compiling arch/arm/cpu/armv7/omap3/clock.c with >> ... >> That means get_sys_clk_speed() will allways return S12M, at least that >> is what I'm reading here. And I

Re: [U-Boot] [PATCH/next] 74xx_7xx/mpc86xx/ppmc7xx: Fix do_reset() declaration

2010-12-17 Thread Mike Frysinger
On Friday, December 17, 2010 14:41:45 Wolfgang Denk wrote: > Mike Frysinger wrote: > > also, because this is [next], i'm not sure if wolfgang will want to > > squash these fixes into the existing change > > git doesn't want to do that. Too many merges inbetween already. np. if you want to pick

Re: [U-Boot] [PATCH] Don't add symlink in srctree when using an objtree

2010-12-17 Thread Wolfgang Denk
Dear =?UTF-8?q?Lo=C3=AFc=20Minier?=, In message <1291510334-650-1-git-send-email-loic.min...@linaro.org> you wrote: > When building with srctree != objtree, the build creates arch/soc/cpu > specific symlinks in the source tree. This means that the same source > tree can't be used for multiple bui

Re: [U-Boot] video/mx3fb: fix clock divider

2010-12-17 Thread Wolfgang Denk
In message <20101216114147.d4af3bb...@gemini.denx.de> you wrote: > From: Stefano Babic > > Fix clock divider for COM57H5M10XRC display. > The previous setting caused flicker. > > Tested on Qong (EVBLite with COM57H5M10XRC). > > Signed-off-by: Stefano Babic > > --- > > > diff --git a/drivers

Re: [U-Boot] [PATCH] arm: Add armv6 and armv7 optimized swab functions

2010-12-17 Thread Wolfgang Denk
Dear Rob Herring, In message <1292425994-24331-1-git-send-email-robherri...@gmail.com> you wrote: > From: Rob Herring > > swab functions are heavily used by FDT code, so enable > optimized assembly code for ARMv6 and later. > > Signed-off-by: Rob Herring > --- > arch/arm/include/asm/byteorder

Re: [U-Boot] [PATCH] config.mk: unify duplicated flag setting

2010-12-17 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1292415451-18909-1-git-send-email-vap...@gentoo.org> you wrote: > Multiple rules are using the expanded AFLAGS/CFLAGS settings and some are > getting so long that the rules need to be line wrapped. So unify them in > one variable, use that variable in the rule, an

Re: [U-Boot] [PATCH] powerpc: fix register usage in some inline assembly code

2010-12-17 Thread Wolfgang Denk
Dear Timur Tabi, In message <1292368731-3819-1-git-send-email-ti...@freescale.com> you wrote: > In some usages of inline assembly, hard-coded registers were specified when a > scratch register should have been used instead. > > Signed-off-by: Timur Tabi > --- > > I can't test the kgdb changes,

Re: [U-Boot] [PATCH 3/4] powerpc/85xx: Remove support for PM854/PM856 boards

2010-12-17 Thread Wolfgang Denk
Dear Kumar Gala, In message <1292299966-8801-3-git-send-email-ga...@kernel.crashing.org> you wrote: > The PM854/PM856 boards are no longer maintained and thus we are removing > support for them. > > Signed-off-by: Kumar Gala Board vendor indicated that they prefer to maintain their code out of

Re: [U-Boot] [PATCH] arm1136: timer: Replace bss variable by gd

2010-12-17 Thread Wolfgang Denk
Dear Albert & Heiko, In message <4d01e031.3090...@free.fr> you wrote: > > > Reuse the gd->tbl value for timestamp and add gd->lastinc for lastinc bss > > values in the arm1136 timer driver for mx31 and omap24xx > > > > The usage of bss values in drivers before initialisation of bss is forbid> > >

Re: [U-Boot] [RFC PATCH 2/2] env: re-add support for auto-completion

2010-12-17 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1291807565-4831-2-git-send-email-vap...@gentoo.org> you wrote: > Currently, only basic completion is supported (no globs), but this is what > we had previously. The downside is that the results are not returned in > any sorted order. The upside is that we get any

Re: [U-Boot] [RFC PATCH 1/2] hashtable: drop all non-reentrant versions

2010-12-17 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1291807565-4831-1-git-send-email-vap...@gentoo.org> you wrote: > The non-reentrant versions of the hashtable functions operate on a single > shared hashtable. So if two different people try using these funcs for > two different purposes, they'll cause problems for

Re: [U-Boot] [PATCH 1/2] Add support for XZ decompression algorithm.

2010-12-17 Thread Wolfgang Denk
Dear Luigi 'Comio' Mantellini, In message <1291562184-27126-1-git-send-email-luigi.mantell...@idf-hit.com> you wrote: > XZ (aka LZMA2) is the new version of lzma compression format. > The following patch add a cut-down version of XZ Embedded library (v20100702) > that supports only single-call AP

Re: [U-Boot] [PATCH/next] 74xx_7xx/mpc86xx/ppmc7xx: Fix do_reset() declaration

2010-12-17 Thread Wolfgang Denk
Dear Peter Tyser, In message <1291393727-337-1-git-send-email-pty...@xes-inc.com> you wrote: > The following commit: > > commit 882b7d726febe65579d6502c271412ecb05821d7 > Author: Mike Frysinger > Date: Wed Oct 20 03:41:17 2010 -0400 > > do_reset: unify duplicate prototypes > > missed the

Re: [U-Boot] [PATCH/next] 74xx_7xx/mpc86xx/ppmc7xx: Fix do_reset() declaration

2010-12-17 Thread Wolfgang Denk
Dear Mike Frysinger, In message <201012031708.00812.vap...@gentoo.org> you wrote: > > also, because this is [next], i'm not sure if wolfgang will want to squash > these fixes into the existing change git doesn't want to do that. Too many merges inbetween already. Best regards, Wolfgang Denk

Re: [U-Boot] [PATCH 2/2] PowerPC, nand_spl: Add relocation support for -fpic

2010-12-17 Thread Wolfgang Denk
Dear Joakim Tjernlund, In message <1291393838-19683-2-git-send-email-joakim.tjernl...@transmode.se> you wrote: > By rearranging the linker script we get support for > relocation of -fpic for free. > Move __got2_entries outside _GOT2_TABLE_ defining scope > matching the rest of PowerPC > > Signed

Re: [U-Boot] [PATCH 1/2] PowerPC: Add relocation support for -fpic

2010-12-17 Thread Wolfgang Denk
Dear Joakim Tjernlund, In message <1291393838-19683-1-git-send-email-joakim.tjernl...@transmode.se> you wrote: > By rearranging the linker script we get support for > relocation of -fpic for free. > > Signed-off-by: Joakim Tjernlund > --- > arch/powerpc/cpu/74xx_7xx/u-boot.lds |5 +++-- >

Re: [U-Boot] Karo TX25 environment variable

2010-12-17 Thread Doninelli Davide
Il giorno 17-dic-2010, alle ore 20.09, Fabio Estevam ha scritto: ong here. MX25 runs at 400 MHz maximum hi, i have recompiled u-boot with last stable release U-Boot 2010.09 and i have the same problem, i tried to move environment variables in a different memory block but the problem is still t

Re: [U-Boot] [PATCH][v4] RTC driver for PT7C4338 chip.

2010-12-17 Thread Wolfgang Denk
Dear Kumar Gala, In message you wrote: > > > PT7C4338 chip is being manufactured by Pericom Technology Inc. ... > Is this going into 'next'? No... ...because it already got added :-P Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 1

Re: [U-Boot] [PATCH][v4] RTC driver for PT7C4338 chip.

2010-12-17 Thread Wolfgang Denk
Dear Priyanka Jain, In message <1288084939-21835-1-git-send-email-priyanka.j...@freescale.com> you wrote: > PT7C4338 chip is being manufactured by Pericom Technology Inc. > It is a serial real-time clock which provides: > 1)Low-power clock/calendar. > 2)Programmable square-wave output. > It has 5

Re: [U-Boot] Karo TX25 environment variable

2010-12-17 Thread Wolfgang Denk
Dear Fabio Estevam, In message <348512.24690...@web51008.mail.re2.yahoo.com> you wrote: > > > > CPU:   Freescale i.MX25 at 532 MHz > > Something is wrong here. MX25 runs at 400 MHz maximum. This is probably just an old version of U-Boot. Recent versions show this instead: CPU: Freesca

Re: [U-Boot] Karo TX25 environment variable

2010-12-17 Thread Fabio Estevam
--- On Fri, 12/17/10, davide doninelli wrote: > > CPU:   Freescale i.MX25 at 532 MHz > > Something is wrong here. MX25 runs at 400 MHz maximum. Regards, Fabio Estevam ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman

Re: [U-Boot] [PATCH 2/2][NEXT] mpc52xx, charon: change mtd default partitions

2010-12-17 Thread Wolfgang Denk
Dear Heiko Schocher, In message <1292577087-13517-1-git-send-email...@denx.de> you wrote: > new default partittions on nor flash: > > 640k (firmware) > 1408k (kernel) > 2m (initrd) > 4m (small-fs) > 24320k (big-fs) > 256k (dts) > > Signed-off-by: Heiko Schocher > --- > include/con

Re: [U-Boot] [PATCH 1/2][NEXT] mpc5200, tqm5200: correct MTDIDS_DEFAULT to fit with name linux assigns

2010-12-17 Thread Wolfgang Denk
Dear Heiko Schocher, In message <1292577080-13475-1-git-send-email...@denx.de> you wrote: > Signed-off-by: Heiko Schocher > --- > include/configs/TQM5200.h | 12 ++-- > 1 files changed, 6 insertions(+), 6 deletions(-) Applied to "next", thanks. Best regards, Wolfgang Denk -- DENX

Re: [U-Boot] Please pull u-boot-cfi-flash/next

2010-12-17 Thread Wolfgang Denk
Dear Stefan Roese, In message <201012171117.45326...@denx.de> you wrote: > Hi Wolfgang, > > The following changes since commit 97a85b223ab316d11f3a374fecc5d449a1c8a694: > > powerpc/nand spl: link libgcc (2010-12-16 23:19:14 +0100) > > are available in the git repository at: > git://www.denx

Re: [U-Boot] Please pull u-boot-ppc4xx/next

2010-12-17 Thread Wolfgang Denk
Dear Stefan Roese, In message <201012171115.56454...@denx.de> you wrote: > Hi Wolfgang, > > The following changes since commit 97a85b223ab316d11f3a374fecc5d449a1c8a694: > > powerpc/nand spl: link libgcc (2010-12-16 23:19:14 +0100) > > are available in the git repository at: > git://www.denx

Re: [U-Boot] [NEXT] Pull request u-boot-blackfin.git (sf branch)

2010-12-17 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1292594185-20198-1-git-send-email-vap...@gentoo.org> you wrote: > The following changes since commit 97a85b223ab316d11f3a374fecc5d449a1c8a694: > > powerpc/nand spl: link libgcc (2010-12-16 23:19:14 +0100) > > are available in the git repository at: > git://ww

Re: [U-Boot] [PULL] please pull u-boot-atmel.git/for-upstream

2010-12-17 Thread Wolfgang Denk
Dear Reinhard Meyer, In message <4d0b2964.4060...@emk-elektronik.de> you wrote: > Dear Wolfgang, > > The following changes since commit 6741b5310f81ae5ae0132ad85b09fb31d6377b6c: > Asen Dimov (1): > pm9261: enable cache command > > are available in the git repository at: > > git://gi

Re: [U-Boot] Slow standalone routine with U-Boot

2010-12-17 Thread Wolfgang Denk
Dear Lennart Sundberg, In message you wrote: > > I am trying to implement a memory and CPU demanding standalone application > on the beagleboard by hacking U-Boot. > > To my surprise, the U-Boot program is ten times slower than the same > program running under Linux on the beagleboard. This

[U-Boot] Slow standalone routine with U-Boot

2010-12-17 Thread Lennart Sundberg
Dear Sirs, I am trying to implement a memory and CPU demanding standalone application on the beagleboard by hacking U-Boot. To my surprise, the U-Boot program is ten times slower than the same program running under Linux on the beagleboard. This test loop when inserted in u-boot/common/mai

Re: [U-Boot] [STATUS] v2010.12-rc3 released

2010-12-17 Thread Mike Frysinger
On Friday, December 17, 2010 04:29:25 Wolfgang Denk wrote: > Current status is so-so. Power Architecture appears to look OK. ARM > has still a lot of broken boards (which is not unexpected). I didn't > test much for other architectures. Comments and especially patches > welcome. Blackfin looks fin

Re: [U-Boot] [PATCH 2/2] PowerPC, nand_spl: Add relocation support for -fpic

2010-12-17 Thread Joakim Tjernlund
Wolfgang Denk wrote on 2010/12/17 17:13:47: > > Dear Joakim Tjernlund, > > In message > you > wrote: > > > > > Great! then we got: > > > [PATCH] PowerPC: Move -fPIC flag to common place > > > [PATCH] PowerPC: Add support for -msingle-pic-base > > > > How about the above 2 patches? > > I think I

Re: [U-Boot] [PATCH 2/2] PowerPC, nand_spl: Add relocation support for -fpic

2010-12-17 Thread Wolfgang Denk
Dear Joakim Tjernlund, In message you wrote: > > > Great! then we got: > > [PATCH] PowerPC: Move -fPIC flag to common place > > [PATCH] PowerPC: Add support for -msingle-pic-base > > How about the above 2 patches? I think I have them on my list for "next", but I got other things to do first.

Re: [U-Boot] u-boot hang after we changed the flash chip

2010-12-17 Thread raymond zhao
Just FYI. It is not the hardware problem. I update the u-boot to latest version and port all the configuration files. It just works. Must be something improved (or fixed) in the new u-boot version. So I learned the lesson, always use latest stable u-boot version. :-) Thanks for the help. Raymond

Re: [U-Boot] [PATCH 2/2] PowerPC, nand_spl: Add relocation support for -fpic

2010-12-17 Thread Joakim Tjernlund
> > Kim Phillips wrote on 2010/12/14 00:05:11: > > On Thu, 9 Dec 2010 13:02:58 -0600 > > Scott Wood wrote: > > > > > On Fri, 3 Dec 2010 10:30:38 -0600 > > > "Joakim Tjernlund" wrote: > > > > > > > By rearranging the linker script we get support for > > > > relocation of -fpic for free. > > > > M

Re: [U-Boot] [STATUS] v2010.12-rc3 released

2010-12-17 Thread Ben Gardiner
On Fri, Dec 17, 2010 at 4:29 AM, Wolfgang Denk wrote: > * U-Boot v2010.12-rc3 was released on Friday, December 17. > > * Release "v2010.12" is scheduled in 5 days: >  on December 22, 2010 (9 days delayed). > > Please help testing, and check if all your relevant patches have been > included. Teste

Re: [U-Boot] Karo TX25 environment variable

2010-12-17 Thread davide doninelli
Hi, this is last scan result. RedBoot> nand scan -r Force re-scan ... Doing low level scan to construct BBT Writing BBT to flash RedBoot> nand info Type:Samsung K9F1G08U0A 8-bit 2K page 128MB Total size: 0x0800 bytes (128 MiB) Total blocks:0x400 (1024) Block size:

[U-Boot] Karo TX25 environment variable

2010-12-17 Thread davide doninelli
Hi, My board is a Karo tx25 (imx25) and the purpose is to speedup the boot process. For thats reason i tried to change bootloader from Redboot to uboot. but i had some problem when save environment on nand. When i save the environment variables the first time work but aftre reboot see a badblo

  1   2   >