Re: [U-Boot] [PATCH 1/3] PPC 85xx: Detect e500v2 / e500mc during runtime

2014-03-06 Thread Kumar Gala
On Jan 23, 2014, at 6:11 AM, Alexander Graf wrote: > > On 21.01.2014, at 03:25, Scott Wood wrote: > >> On Sun, 2014-01-19 at 16:19 +0100, Alexander Graf wrote: >>> With the qemu-ppce500 machine type we can run the same board with >>> either an e500v2 or an e500mc core plugged in. >>> >>> Thi

Re: [U-Boot] [PATCH 1/7][v2] powerpc/mpc85xx: Move LAW_EN define outside of config

2014-03-06 Thread Kumar Gala
On Mar 6, 2014, at 6:12 AM, Prabhakar Kushwaha wrote: > LAW_EN is only defined if CONFIG_SYS_CCSRBAR_DEFAULT is not equal to > CONFIG_SYS_CCSRBAR_PHYS. in SPL framework CCSRBAR is not relocated hence > both are same. This cause compilation error. > > So LAW_EN define outside of configs > > Sig

Re: [U-Boot] [PATCH 1/3] PPC 85xx: Detect e500v2 / e500mc during runtime

2014-03-06 Thread Kumar Gala
On Mar 6, 2014, at 9:50 AM, Scott Wood wrote: > On Thu, 2014-03-06 at 09:48 -0600, Kumar Gala wrote: >> On Jan 23, 2014, at 6:11 AM, Alexander Graf wrote: >> >>> >>> On 21.01.2014, at 03:25, Scott Wood wrote: >>> >>>> On Sun, 2014-01-1

Re: [U-Boot] [PATCH] powerpc/85xx: Add workaround for errata USB-14 (enable on P204x/P3041/P50x0)

2013-03-07 Thread Kumar Gala
On Mar 5, 2013, at 2:40 PM, Wolfgang Denk wrote: > Dear Xu Lei-B33228, > > Please do not top post / full quote. Thanks. > > In message > <8cb6a38adf9e994697ff8a45e96e0853388...@039-sn1mpn1-004.039d.mgd.msft.net> > you wrote: >> >> Thank you and I agree with you. It is a little ugly but

Re: [U-Boot] [PATCH v3 6/8] fdt: cmd_fdt: Call fdt_chosen() from "fdt boardsetup"

2012-09-27 Thread Kumar Gala
On Sep 26, 2012, at 9:20 AM, Stefan Roese wrote: > Hi Kumar, > > On 09/26/2012 03:36 PM, Kumar Gala wrote: >>> By calling fdt_chosen(), the chosen node will be updated / >>> created by the "fdt boardsetup" command. This is useful for >>> setti

Re: [U-Boot] Problems with a P2020 board

2012-09-26 Thread Kumar Gala
On Aug 30, 2012, at 2:56 AM, Mark Marshall wrote: > - Timer Interrupts seem to stop. Once U-boot has started the timer > interrupts seem to stop. I have added a test command that prints out > the timestamp variable (from arch/powerpc/lib/interrupts.c). I can > see that when we enter the

Re: [U-Boot] Problems with a P2020 board

2012-09-26 Thread Kumar Gala
On Sep 26, 2012, at 7:09 AM, Joakim Tjernlund wrote: > Joakim Tjernlund/Transmode wrote on 2012/08/30 15:12:08: >> >>> >>> Hi. >>> >>> We have a new board which we are suing with U-boot. The CPU is a P2020. >>> I am having a few minor problems, and I was hoping to get some help. >>> >>> -

Re: [U-Boot] [PATCH v3 6/8] fdt: cmd_fdt: Call fdt_chosen() from "fdt boardsetup"

2012-09-26 Thread Kumar Gala
On Sep 26, 2012, at 4:11 AM, Stefan Roese wrote: > By calling fdt_chosen(), the chosen node will be updated / > created by the "fdt boardsetup" command. This is useful for > setting of the kernel commandline via the "bootargs" > env variable. > > With this change, the "fdt boardsetup" can be use

[U-Boot] Please pull u-boot-mpc85xx (for v2012.10)

2012-09-22 Thread Kumar Gala
5xx: Initial SP alignment is wrong. powerpc: Stack Pointer not properly aligned Kumar Gala (3): Add e6500 processor detection Add IFC offset for DPAA/Corenet platforms Added new ext fields to IFC Liu Gang (6): powerpc/corenet_ds: Update README.srio-boot-corenet pow

Re: [U-Boot] [PATCH] pci: fix some warnings related to assumptions about

2012-09-22 Thread Kumar Gala
On Sep 21, 2012, at 5:34 PM, Anatolij Gustschin wrote: > Hi, > > On Wed, 19 Sep 2012 09:47:36 -0500 > Kumar Gala wrote: > >> The following commit introduced some warnings associated with using >> pci_addr_t instead of a proper 32-b

Re: [U-Boot] arch/powerpc/lib/board.c:get_effective_memsize() for 4GB+ systems

2012-09-21 Thread Kumar Gala
On Sep 21, 2012, at 6:54 AM, Robert Thorhuus wrote: >> -Original Message- >> From: Tabi Timur-B04825 [mailto:b04...@freescale.com] >> Sent: den 21 september 2012 13:37 >> To: Robert Thorhuus >> Cc: Kumar Gala; u-boot@lists.denx.de >> Subjec

Re: [U-Boot] arch/powerpc/lib/board.c:get_effective_memsize() for 4GB+ systems

2012-09-20 Thread Kumar Gala
On Sep 19, 2012, at 10:28 AM, Robert Thorhuus wrote: > Hello! > > I'm having problem with my U-Boot for a PowerPC system. I think the root > cause is that the function get_effective_memsize() (in file > arch/powerpc/lib/board.c) returns 0. > > ulong get_effective_memsize(void) > { > #ifndef

[U-Boot] [PATCH] pci: fix some warnings related to assumptions about

2012-09-19 Thread Kumar Gala
some platforms pci_addr_t is defined as a 64-bit data type so its not proper to use with pci_{read,write}_config_dword. Signed-off-by: Kumar Gala --- drivers/pci/pci.c |6 +++--- drivers/pci/pci_auto.c |2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/pci

Re: [U-Boot] [PATCH v2 1/5] pci: fix errant data types and corresponding access functions

2012-09-19 Thread Kumar Gala
On Aug 29, 2012, at 7:16 PM, Andrew Sharp wrote: > In a couple of places, unsigned int and pci_config_*_dword were being > used when u16 and _word should be used. Unsigned int was also being > used in a couple of places that should be pci_addr_t. > > Signed-off-by: Andrew Sharp > --- > drivers

Re: [U-Boot] [PATCH] hwconfig: Move HWCONFIG_BUFFER_SIZE into hwconfig.h

2012-08-17 Thread Kumar Gala
On Aug 15, 2012, at 7:53 PM, York Sun wrote: > Before proper environment is setup, we extract hwconfig and put it into a > buffer with size HWCONFIG_BUFFER_SIZE. We need to enlarge the buffer to > accommodate longer string. Since this macro is used in multiple files, we > move it into hwconfig.h.

Re: [U-Boot] [PATCH 1/3] powerpc/fsl-corenet: remove dead variant symbols

2012-08-17 Thread Kumar Gala
On Aug 15, 2012, at 12:19 PM, Scott Wood wrote: > On 08/15/2012 09:21 AM, Kumar Gala wrote: >> >> On Aug 14, 2012, at 4:45 PM, Scott Wood wrote: >> >>> On 08/14/2012 04:31 PM, Kumar Gala wrote: >>>> >>>> On Aug 14, 2012, at 3:14 PM, Sc

Re: [U-Boot] [PATCH 6/7] powerpc/85xx: update P4080DS MDIO bus multiplexer support

2012-08-16 Thread Kumar Gala
On Aug 14, 2012, at 11:47 AM, Timur Tabi wrote: > The Freescale P4080DS has a complex multiplexed MDIO bus, where the > muxing varies per SerDes protocol. This is because the protocol > determines in which PCI slot the various SGMII and XGMII interface > cards belong, as well as whether the RGMI

Re: [U-Boot] [PATCH 6/7] powerpc/85xx: update P4080DS MDIO bus multiplexer support

2012-08-16 Thread Kumar Gala
On Aug 14, 2012, at 11:47 AM, Timur Tabi wrote: > The Freescale P4080DS has a complex multiplexed MDIO bus, where the > muxing varies per SerDes protocol. This is because the protocol > determines in which PCI slot the various SGMII and XGMII interface > cards belong, as well as whether the RGMI

Re: [U-Boot] [PATCH 1/3] powerpc/fsl-corenet: remove dead variant symbols

2012-08-15 Thread Kumar Gala
On Aug 14, 2012, at 4:45 PM, Scott Wood wrote: > On 08/14/2012 04:31 PM, Kumar Gala wrote: >> >> On Aug 14, 2012, at 3:14 PM, Scott Wood wrote: >> >>> These are not supported as individual build targets, but instead >>> are supported by another tar

Re: [U-Boot] [PATCH] dts/Makefile: Check for empty $(LDSCRIPT)

2012-08-14 Thread Kumar Gala
On Aug 14, 2012, at 8:42 AM, Kumar Gala wrote: > > On Aug 10, 2012, at 4:46 PM, Wolfgang Denk wrote: > >> Dear Horst Kronstorfer, >> >> In message <1342097912-8652-1-git-send-email-hkron...@frequentis.com> you >> wrote: >>> Make sure that $(L

Re: [U-Boot] [PATCH v2 3/3] Makefile: cosmetic: optimize usage of LIBS-y

2012-08-14 Thread Kumar Gala
On Aug 14, 2012, at 8:52 AM, Kumar Gala wrote: > > On Aug 10, 2012, at 4:17 PM, Wolfgang Denk wrote: > >> Dear daniel.schwierz...@gmail.com, >> >> In message <1342741198-9105-1-git-send-email-daniel.schwierz...@gmail.com> >> you wrote: >>>

Re: [U-Boot] [PATCH 1/3] powerpc/fsl-corenet: remove dead variant symbols

2012-08-14 Thread Kumar Gala
On Aug 14, 2012, at 3:14 PM, Scott Wood wrote: > These are not supported as individual build targets, but instead > are supported by another target. > > The dead p4040 defines in particular had bitrotted significantly. > > Signed-off-by: Scott Wood > --- > arch/powerpc/cpu/mpc85xx/Makefile

Re: [U-Boot] [PATCHv2 1/2] mpc85xx: Initial SP alignment is wrong.

2012-08-14 Thread Kumar Gala
tor settings. > Also use a temp register so gdb doesn't pick up intermediate values. > > Signed-off-by: Joakim Tjernlund > --- > > v2 - Address Scott Wood's comments > arch/powerpc/cpu/mpc85xx/start.S | 16 +--- > 1 files changed, 5 insertions(+

Re: [U-Boot] [PATCH] dts/Makefile: Check for empty $(LDSCRIPT)

2012-08-14 Thread Kumar Gala
On Aug 10, 2012, at 4:46 PM, Wolfgang Denk wrote: > Dear Horst Kronstorfer, > > In message <1342097912-8652-1-git-send-email-hkron...@frequentis.com> you > wrote: >> Make sure that $(LDSCRIPT) is not empty before calling process_lds >> with 'cat $(LDSCRIPT)' else cat will block waiting for inpu

Re: [U-Boot] [PATCH v2 3/3] Makefile: cosmetic: optimize usage of LIBS-y

2012-08-14 Thread Kumar Gala
On Aug 10, 2012, at 4:17 PM, Wolfgang Denk wrote: > Dear daniel.schwierz...@gmail.com, > > In message <1342741198-9105-1-git-send-email-daniel.schwierz...@gmail.com> > you wrote: >> From: Daniel Schwierzeck >> >> Signed-off-by: Daniel Schwierzeck >> >> --- >> Changes for v2: >> - optimized

Re: [U-Boot] usb ethernet working on panda?

2012-03-01 Thread Kumar Gala
On Feb 29, 2012, at 12:17 AM, Govindraj wrote: > On Wed, Feb 29, 2012 at 4:47 AM, Kumar Gala wrote: >> Does anyone have usb ethernet working on top of git tree on a panda board? >> > yes. > >> If so any gotcha's or details on how you have it working. > >

[U-Boot] usb ethernet working on panda?

2012-02-28 Thread Kumar Gala
Does anyone have usb ethernet working on top of git tree on a panda board? If so any gotcha's or details on how you have it working. thanks - k ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] fsl_lbc: add printout of LCRR and LBCR to local bus regs

2012-01-13 Thread Kumar Gala
On Dec 15, 2011, at 9:22 AM, Paul Gortmaker wrote: > It can be handy to have these in the output when trying to > debug odd behaviour. > > Signed-off-by: Paul Gortmaker applied to 85xx - k ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.d

Re: [U-Boot] [PATCH 85xx-next 0/8] Updates for Wind River sbc8548 board

2012-01-13 Thread Kumar Gala
On Dec 30, 2011, at 10:53 PM, Paul Gortmaker wrote: > This updates the sbc8548 board support with several improvements > for the end users. > > -ability to use SPD DDR config for easy RAM upgrades > -ability to use alternate SODIMM flash for backup u-boot image > -localbus config settings f

Re: [U-Boot] [PATCH 2/2] eXMeritus HWW-1U-1A: Minor environment variable tweaks

2012-01-13 Thread Kumar Gala
r. Rename the board variable to "setbootargs" > to avoid potential confusion. > > Finally, fix an incorrect address for the kernel in FLASH memory. > > Signed-off-by: Kyle Moffett > Cc: Andy Fleming > Cc: Kumar Gala > --- > include/c

Re: [U-Boot] [PATCH] MPC85xxCDS: Fix missing LCRR_DBYP bits for 66-133MHz LBC

2012-01-13 Thread Kumar Gala
On Dec 16, 2011, at 4:31 PM, Paul Gortmaker wrote: > These boards were meaning to deploy this value: > > #define LCRR_DBYP0x8000 > > but were missing a zero, and hence toggling a bit that > lands in an area marked as reserved in the 8548 reference > manual. > > According to the do

Re: [U-Boot] [PATCH 1/2] eXMeritus HWW-1U-1A: Add support for the AT24C128N I2C EEPROM

2012-01-13 Thread Kumar Gala
$loadaddr 0x2000 > saveenv > > The first three commands are saved in the "restore_eeprom" variable for > user convenience. (EG: "run restore_eeprom && saveenv") > > Signed-off-by: Kyle Moffett > Cc: Andy Fleming > Cc: Kumar Gala > --- >

Re: [U-Boot] [GIT PULL] please pull u-boot-mpc85xx

2012-01-13 Thread Kumar Gala
On Jan 13, 2012, at 10:24 AM, Paul Gortmaker wrote: > Hi Kumar, > > Was there a problem with my "add printout of LCRR" patch: > > http://patchwork.ozlabs.org/patch/131707/ > > or did it just get lost over the usual holiday period chaos? > > Thanks for merging the others, as they were the more

[U-Boot] [GIT PULL] please pull u-boot-mpc85xx

2012-01-12 Thread Kumar Gala
The following changes since commit 9a4209869bd2c37affd931d627b3c3e72952: Rob Herring (1): ARM: highbank: enable networking and pxe are available in the git repository at: git://git.denx.de/u-boot-mpc85xx.git master Kyle Moffett (2): eXMeritus HWW-1U-1A: Minor environment va

[U-Boot] [PATCH] post/Makefile: Only build FP post tests if enabled via CONFIG_SYS_POST_FPU

2012-01-12 Thread Kumar Gala
Signed-off-by: Kumar Gala --- post/Makefile |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/post/Makefile b/post/Makefile index 200e2f1..55b7d21 100644 --- a/post/Makefile +++ b/post/Makefile @@ -32,7 +32,7 @@ COBJS-$(CONFIG_POST_STD_LIST) += tests.o SPLIB

Re: [U-Boot] [PATCH 1/8] powerpc/srio: Correct the register defined errors in the struct ccsr_rio_t

2012-01-12 Thread Kumar Gala
On Jan 10, 2012, at 5:42 AM, Liu Gang wrote: > + u32 didcar; /* 0xc - Device Identity CAR */ Drop the '0xc' prefix in the comment, same comment for all registers. - k ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailma

Re: [U-Boot] [PATCH v2] sdhc_boot: Introduce CONFIG_FSL_FIXED_MMC_LOCATION option

2012-01-11 Thread Kumar Gala
1 + > include/configs/P2041RDB.h |1 + > include/configs/corenet_ds.h|1 + > include/configs/p1_p2_rdb_pc.h |1 + > 9 files changed, 9 insertions(+), 1 deletions(-) Acked-by: Kumar Gala - k ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] sdhc_boot: Introduce CONFIG_FSL_FIXED_MMC_LOCATION option

2012-01-11 Thread Kumar Gala
On Dec 20, 2011, at 10:33 AM, Fabio Estevam wrote: > Since commit 97039ab98 (env_mmc: Allow board code to override the environment > address) > mmc_get_env_addr is a weak-aliased function in common/env_mmc.c > > The mmc_get_env_addr implementation that exists at > board/freescale/common/sdhc_bo

Re: [U-Boot] [PATCH] configs: Remove CONFIG_NET_MULTI from board files

2012-01-11 Thread Kumar Gala
On Jan 11, 2012, at 6:47 AM, Fabio Estevam wrote: > CONFIG_NET_MULTI is not used anymore, so remove it from board files. > > Cc: Marek Vasut > Cc: Stefano Babic > Cc: Kumar Gala > Cc: Sandeep Paulraj > Signed-off-by: Fabio Estevam > --- > include/config

Re: [U-Boot] __mmc_get_env_addr() is not being called?

2011-12-18 Thread Kumar Gala
On Dec 16, 2011, at 3:42 AM, Stefano Babic wrote: > On 16/12/2011 10:33, Fabio Estevam wrote: > >> >> The weak function was introduced by this commit: >> http://git.denx.de/?p=u-boot.git;a=commitdiff;h=97039ab98c551c7860bc0977d684ef686159e0d7 >> >> which breaks non CONFIG_FSL_ESDHC users. > >

Re: [U-Boot] [PATCH 1/2] net/fm: check the old and new Fman microcode locations in NOR flash

2011-12-15 Thread Kumar Gala
On Dec 15, 2011, at 2:09 PM, Timur Tabi wrote: > Kumar Gala wrote: > >> I see no reason for this patch, if you're flashing a new u-boot flash >> the microcode to the new address as well. > > This is useful for people who have not moved the microcode. Are we goi

Re: [U-Boot] [PATCH 1/2] net/fm: check the old and new Fman microcode locations in NOR flash

2011-12-15 Thread Kumar Gala
On Dec 14, 2011, at 4:34 PM, Timur Tabi wrote: > On some Freescale reference boards for SOCs with Fman devices, the Fman > microcode is located at address 0xEF00 in NOR flash. Unfortunately, > this address is in the "middle of nowhere" and makes it difficult to > partition flash space for ot

[U-Boot] [GIT PULL] please pull u-boot-mpc85xx

2011-12-09 Thread Kumar Gala
The following changes since commit c4eba6ec5c58083b38340724c006294c7a4fe2eb: common/usb_kbd.c: fix bug introduced in commit 00b7d6e (2011-12-09 12:09:35 +0100) are available in the git repository at: git://git.denx.de/u-boot-mpc85xx.git master Kyle Moffett (1): mpc85xx: Add board supp

Re: [U-Boot] powerpc: FOO uses hard float, BAR uses soft float

2011-12-09 Thread Kumar Gala
with this in the past commit ce82ff05388b5ddafdf6082ef0776cce72c40b1c Author: Yuri Tikhonov Date: Sat Dec 20 14:54:21 2008 +0300 FPU POST: fix warnings when building with 2.18 binutils Also: commit e009cdeb63308f291c54b173484401aab4a3fe54 Author: Kumar Gala Date: Tue Jan 25 03:00:08 2011 -0600 powerpc: Fix FPU post related link warnings - k ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] mpc85xx: Add board support for the eXMeritus HWW-1U-1A devices

2011-12-08 Thread Kumar Gala
~200W. > > Additional notes: > * SPD detection is only known to work with the DO-160-certified DIMMs > > * CPU reset is a little quirky due to hardware misfeature. Proper >support for the hardware reset mechanism has been left for a later >patch serie

Re: [U-Boot] [PATCH] powerpc/bootm: Flush ramdisk and device tree image when booting on MP

2011-12-07 Thread Kumar Gala
On Dec 7, 2011, at 10:17 AM, Tabi Timur-B04825 wrote: > On Wed, Dec 7, 2011 at 8:42 AM, Kumar Gala wrote: > >> + if (flag & BOOTM_STATE_OS_PREP) { >> + boot_prep_linux(images); >>return 0; >> + } >>

[U-Boot] [PATCH] powerpc/bootm: Flush ramdisk and device tree image when booting on MP

2011-12-07 Thread Kumar Gala
k and device tree up for. Thus we need to ensure we've flushed the regions of memory utilized by ramdisk and device tree so the loadding and any modifications (from decompression or fdt updates) are made visible to the secondary cores. Signed-off-by: Kumar Gala --- arch/powerpc/lib/boot

Re: [U-Boot] [PATCH 2/2 v2] Allow for parallel builds and saved output

2011-12-07 Thread Kumar Gala
On Nov 21, 2011, at 5:40 PM, Andy Fleming wrote: > The MAKEALL script cleverly runs make with the appropriate options > to use all of the cores on the system, but your average U-Boot build > can't make much use of more than a few cores. If you happen to have > a many-core server, your builds wil

Re: [U-Boot] [PATCH] p2041rdb: fix serdes clock map

2011-12-07 Thread Kumar Gala
On Dec 1, 2011, at 7:38 PM, Shaohui Xie wrote: > Description of SerDes clock Bank2 setting in p2041 hardware specification > is wrong, the clock map which based on it is wrong either, so fix the > serdes clock map. > > wrong setting of SERDES Reference Clocks Bank2: > SW2[5:6] = ON OFF =>100

[U-Boot] [GIT PULL] Pull request u-boot-85xx.git

2011-12-06 Thread Kumar Gala
The following changes since commit ea45cb0adcf4baa8f939fea4c848f3e1906f19d9: net: Make sure IPaddr_t is 32 bits in size (2011-12-06 22:15:32 +0100) are available in the git repository at: git://git.denx.de/u-boot-mpc85xx.git master Shaohui Xie (1): p2041rdb: fix serdes clock map boar

Re: [U-Boot] [PATCH v2] Standalone Apps: Standalone apps should need only exports.h.

2011-12-06 Thread Kumar Gala
On Dec 6, 2011, at 1:53 PM, Wolfgang Denk wrote: > Dear Mike Partington, > > In message <1288211469-32443-1-git-send-email-mpart...@lexmark.com> you wrote: >> Modify exports.h to remove its dependencies on other files, thus >> enabling standalone apps to require only exports.h from the U-Boot >>

Re: [U-Boot] [PATCH 1/2] Include common.h in qsort.c to fix build warning

2011-12-06 Thread Kumar Gala
ssert' > [-Wimplicit-function-declaration] > > Signed-off-by: Simon Glass > --- > lib/qsort.c |1 + > 1 files changed, 1 insertions(+), 0 deletions(-) Acked-by: Kumar Gala --- w/o this we actually have compile failure with the tree: In file included from qsort.c:19:0:

Re: [U-Boot] [PATCH] MAKEALL: Add -l option to only list build targets

2011-12-03 Thread Kumar Gala
Would be nice if the commit message explained why you're adding this feature. - k On Dec 3, 2011, at 1:32 AM, Marek Vasut wrote: > Signed-off-by: Marek Vasut > Cc: Wolfgang Denk > --- > MAKEALL | 15 +-- > 1 files changed, 13 insertions(+), 2 deletions(-)

Re: [U-Boot] [PATCH 11/14] board/freescale/mpc8610hpcd/mpc8610hpcd.c: Fix GCC 4.6 build warning

2011-11-30 Thread Kumar Gala
On Nov 30, 2011, at 2:17 AM, Wolfgang Denk wrote: > Fix: > mpc8610hpcd.c: In function 'pci_init_board': > mpc8610hpcd.c:238:15: warning: variable 'pordevsr' set but not used > [-Wunused-but-set-variable] > > Signed-off-by: Wolfgang Denk > Cc: Kumar Gala

Re: [U-Boot] [PATCH 12/14] arch/powerpc/cpu/mpc86xx/cpu.c: Fix GCC 4.6 build warning

2011-11-30 Thread Kumar Gala
On Nov 30, 2011, at 2:17 AM, Wolfgang Denk wrote: > Fix: > cpu.c: In function 'checkcpu': > cpu.c:51:7: warning: variable 'ver' set but not used > [-Wunused-but-set-variable] > > Signed-off-by: Wolfgang Denk > Cc: Kumar Gala > --- > total

[U-Boot] [GIT PULL] Pull request u-boot-85xx.git

2011-11-29 Thread Kumar Gala
module_type values from JEDEC DDR3 SPD Specification mpc85xx: support board-specific reset function mpc85xx: support for Freescale COM Express P2020 Jia Hongtao (1): powerpc/85xx: fixup flexcan device tree clock-frequency Kumar Gala (2): powerpc/85xx: Add workaround for erratum

Re: [U-Boot] [PATCH v6] mpc85xx: support for Freescale COM Express P2020

2011-11-29 Thread Kumar Gala
On Nov 23, 2011, at 10:25 AM, Ira W. Snyder wrote: > This adds support for the Freescale COM Express P2020 board. This board > is similar to the P1_P2_RDB, but has some extra (as well as missing) > peripherals. > > Unlike all other mpc85xx boards, it uses a watchdog timeout to reset. > Using the

Re: [U-Boot] [PATCH] powerpc/85xx: verify the localbus device tree address before booting the OS

2011-11-29 Thread Kumar Gala
On Nov 16, 2011, at 1:28 PM, Timur Tabi wrote: > The localbus controller node in the device tree is typically a root node, > even though the controller is part of CCSR. If we were to put the lbc > node under the SOC node, then the 'ranges' property in the lbc node would > translate through the '

Re: [U-Boot] [PATCH v5 1/3] mpc85xx: support board-specific reset function

2011-11-29 Thread Kumar Gala
On Nov 21, 2011, at 3:20 PM, Ira W. Snyder wrote: > This is useful for boards which cannot be reset in the usual way for the > 85xx CPU. An example is a board which can only be reset by a hardware > watchdog. > > Signed-off-by: Ira W. Snyder > --- > > Unchanged from v1. > > arch/powerpc/cpu/m

Re: [U-Boot] [PATCH v5 2/3] mpc8xxx: update module_type values from JEDEC DDR3 SPD Specification

2011-11-29 Thread Kumar Gala
On Nov 21, 2011, at 3:20 PM, Ira W. Snyder wrote: > Newer JEDEC DDR3 SPD Specifications define several additional values for > the DDR3 module_type field which were undefined when this code was > written. Update the code to handle the newer module types. > > Signed-off-by: Ira W. Snyder > Cc: Y

Re: [U-Boot] [PATCH] powerpc/p3060qds: Add board related support for P3060QDS platform

2011-11-29 Thread Kumar Gala
s/ports > USB: Two USB2.0, USB1(TYPE-A) and USB2(TYPE-AB) on board > I2C: Four I2C controllers > UART: Supports two dUARTs up to 115200 bps for console > RapidIO: Two RapidIO, sRIO1 and sRIO2 > > Signed-off-by: Shengzhou Liu > Signed-off-by: York Sun > Signed-off-by:

Re: [U-Boot] [PATCH 2/2] powerpc/85xx: always implement the work-around for Erratum SATA_A001

2011-11-29 Thread Kumar Gala
On Nov 21, 2011, at 5:10 PM, Timur Tabi wrote: > On the P1022/P1013, the work-around for erratum SATA_A001 was implemented > only if U-Boot initializes SATA, but SATA is not initialized by default. So > move the work-around to the CPU initialization function, so that it's always > executed on th

Re: [U-Boot] [PATCH 1/2] powerpc/85xx: CONFIG_FSL_SATA_V2 should be defined in config_mpc85xx.h

2011-11-29 Thread Kumar Gala
On Nov 21, 2011, at 5:10 PM, Timur Tabi wrote: > Macro CONFIG_FSL_SATA_V2 is defined if the SOC has a V2 Freescale SATA > controller, so it should be defined in config_mpc85xx.h instead of the various > board header files. So now CONFIG_FSL_SATA_V2 is always defined on the P1013, > P1022, P2041,

Re: [U-Boot] [PATCH] [v2] powerpc/85xx: clean up and document the QE/FMAN microcode macros

2011-11-29 Thread Kumar Gala
On Nov 22, 2011, at 9:21 AM, Timur Tabi wrote: > Several macros are used to identify and locate the microcode binary image > that U-boot needs to upload to the QE or Fman. Both the QE and the Fman > use the QE Firmware binary format to package their respective microcode data, > which is why the

Re: [U-Boot] [PATCH] powerpc/85xx: Add workaround for erratum A-003474

2011-11-29 Thread Kumar Gala
On Nov 20, 2011, at 12:01 PM, York Sun wrote: > Erratum A-003474: Internal DDR calibration circuit is not supported > > Impact: > Experience shows no significant benefit to device operation with > auto-calibration enabled versus it disabled. To ensure consistent timing > results, Freescale recom

Re: [U-Boot] [u-boot][PATCH] uboot/flexcan: fixup flexcan clock-frequency

2011-11-29 Thread Kumar Gala
On Nov 15, 2011, at 1:04 AM, Jia Hongtao wrote: > Make the fixup matchable with dts and kernel. > Update the compatible from "fsl,flexcan-v1.0" to "fsl,p1010-flexcan" and > Change the "clock-freq" property to "clock-frequency". > We also change flexcan frequency from CCB-clock to CCB-clock/2 acco

Re: [U-Boot] [PATCH] drivers/bios_emulator/x86emu/ops2.c: Fix GCC 4.6 build warning

2011-11-24 Thread Kumar Gala
On Nov 24, 2011, at 11:14 AM, Marek Vasut wrote: >> Fix: >> >> x86emu/ops2.c: In function 'x86emuOp2_set_byte': >> x86emu/ops2.c:171:11: warning: variable 'name' set but not used >> [-Wunused-but-set-variable] >> >> Signed-off

[U-Boot] [PATCH] cmd_nvedit.c: Fix compiler warning introduced by checkpatch cleanup

2011-11-23 Thread Kumar Gala
cmd_nvedit.c: In function 'do_env_grep': cmd_nvedit.c:182:3: warning: suggest parentheses around assignment used as truth value Signed-off-by: Kumar Gala --- common/cmd_nvedit.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common/cmd_nvedit.c b/common/cm

[U-Boot] [PATCH] drivers/bios_emulator/x86emu/ops2.c: Fix GCC 4.6 build warning

2011-11-23 Thread Kumar Gala
Fix: x86emu/ops2.c: In function 'x86emuOp2_set_byte': x86emu/ops2.c:171:11: warning: variable 'name' set but not used [-Wunused-but-set-variable] Signed-off-by: Kumar Gala --- drivers/bios_emulator/x86emu/ops2.c |3 ++- 1 files changed, 2 insertions(+), 1 deleti

[U-Boot] [PATCH] arch/powerpc/cpu/mpc8xxx/ddr/interactive.c: Fix GCC 4.6 build warning

2011-11-23 Thread Kumar Gala
Fix: interactive.c: In function 'fsl_ddr_interactive': interactive.c:1357:15: warning: variable 'len' set but not used [-Wunused-but-set-variable] Signed-off-by: Kumar Gala --- arch/powerpc/cpu/mpc8xxx/ddr/interactive.c |3 +-- 1 files changed, 1 insertions(+), 2 dele

Re: [U-Boot] [PATCH v5 3/3] mpc85xx: support for Freescale COM Express P2020

2011-11-23 Thread Kumar Gala
On Nov 21, 2011, at 3:20 PM, Ira W. Snyder wrote: > This adds support for the Freescale COM Express P2020 board. This board > is similar to the P1_P2_RDB, but has some extra (as well as missing) > peripherals. > > Unlike all other mpc85xx boards, it uses a watchdog timeout to reset. > Using the

Re: [U-Boot] [PATCH] powerpc/85xx: clean up and document the QE/FMAN microcode macros

2011-11-22 Thread Kumar Gala
On Nov 8, 2011, at 5:40 PM, Timur Tabi wrote: > Several macros are used to identify and locate the microcode binary image > that U-boot needs to upload to the QE or Fman. Both the QE and the Fman > use the QE Firmware binary format to package their respective microcode data, > which is why the s

Re: [U-Boot] [PATCH] Allow for parallel builds and saved output

2011-11-20 Thread Kumar Gala
On Nov 20, 2011, at 12:11 AM, Simon Glass wrote: > Hi Kumar, > > On Tue, Nov 8, 2011 at 5:48 AM, Kumar Gala wrote: >> >> On Nov 3, 2011, at 11:22 AM, Simon Glass wrote: >> >>> Hi Andy, >>> >>> On Thu, Nov 3, 2011 at 12:28 AM, Andy Flem

Re: [U-Boot] [PATCH] powerpc/85xx: clean up and document the QE/FMAN microcode macros

2011-11-19 Thread Kumar Gala
On Nov 8, 2011, at 5:40 PM, Timur Tabi wrote: > Several macros are used to identify and locate the microcode binary image > that U-boot needs to upload to the QE or Fman. Both the QE and the Fman > use the QE Firmware binary format to package their respective microcode data, > which is why the s

Re: [U-Boot] [PATCH v3 2/2] mpc85xx: support for Freescale COM Express P2020

2011-11-19 Thread Kumar Gala
>> If you look at current board/freescale/p1_p2_rdb/law.c it doesn't have PCI >> LAWs anymore. I think for your example you just need an empty data >> structure: >> >> struct law_entry law_table[] = { >> }; >> >> this should hopefully make num_law_entries = 0; >> >> >>> > +};

Re: [U-Boot] sbc8548 build broken?

2011-11-17 Thread Kumar Gala
On Nov 17, 2011, at 5:33 PM, Robert Hurdle wrote: > Hello Mr. Denk, > > You wrote: >> you wrote: >>> >>> I downloaded the ELDK 4.2 and installed it. I got the u-boot >>> source from git://git.denx.de/u-boot-mpc85xx.git. >>> >>> When I try to build u-boot for sbc8548 I get the foll

Re: [U-Boot] Please pull u-boot-ti/master

2011-11-17 Thread Kumar Gala
On Nov 17, 2011, at 7:55 AM, Albert ARIBAUD wrote: > Hi Sandeep, > > Le 16/11/2011 16:24, s-paul...@ti.com a écrit : >> The following changes since commit 75acc4d7c1c9081e06d1197c6da01361cf1bce92: >> Heiko Schocher (1): >> arm, davinci: add DAVINCI_MMC_CLKID >> >> are available in the

Re: [U-Boot] [STATUS] Help needed - urgently

2011-11-17 Thread Kumar Gala
On Nov 17, 2011, at 8:10 AM, Wolfgang Denk wrote: > Dear Kumar Gala, > > In message you > wrote: >> >>> As a first step this requires someone who is brave enought oclean up >>> the existing state, which is indeed a mess. >> >> Can we say n

Re: [U-Boot] [STATUS] Help needed - urgently

2011-11-17 Thread Kumar Gala
On Nov 16, 2011, at 3:35 PM, Wolfgang Denk wrote: > Dear Kumar Gala, > > In message you > wrote: >> >> >>> Please let's try if this works. If you have any suggestions how to >>> help better, please don't hesitate to tell us. >> >

Re: [U-Boot] [STATUS] Help needed - urgently

2011-11-17 Thread Kumar Gala
On Nov 17, 2011, at 6:40 AM, Stefano Babic wrote: > On 11/16/2011 10:35 PM, Wolfgang Denk wrote: >> Dear Kumar Gala, >> >> In message you >> wrote: >>> >>> >>>> Please let's try if this works. If you have any suggest

[U-Boot] [PATCH] powerpc/85xx: Add workaround for erratum CPU-A003999

2011-11-16 Thread Kumar Gala
. This bit can be set when setting MSR[FP], and can be cleared when clearing MSR[FP]. Alternatively, the bit can be set once at boot time, and never cleared. There will be no performance degradation due to setting this bit. Signed-off-by: Kumar Gala --- arch/powerpc/cpu/mpc85xx/cmd_errata.c

Re: [U-Boot] [STATUS] Help needed - urgently

2011-11-16 Thread Kumar Gala
On Nov 15, 2011, at 9:01 AM, Wolfgang Denk wrote: > Hello all, > > I guess most of you will already have noticed that my activity on the > mailing list has significantly declined recently. I'm sorry for that, > but I find myself in a situation where I have even less time > available for U-Boot t

Re: [U-Boot] [PATCH] Revert "sandbox: Change md command to use map_physmem"

2011-11-14 Thread Kumar Gala
On Nov 12, 2011, at 2:07 PM, Simon Glass wrote: > Hi Kumar, > > On Sat, Nov 12, 2011 at 10:02 AM, Kumar Gala > wrote: >> This reverts commit 355a835747c6f7c5071ead295a7dfc489c73cb03. >> >> The original commit broke long standing assumption that md commands

Re: [U-Boot] [PATCH v3 2/2] mpc85xx: support for Freescale COM Express P2020

2011-11-12 Thread Kumar Gala
>>> >>> +phys_size_t fixed_sdram(void) >>> +{ >>> + char buf[32]; >>> + fsl_ddr_cfg_regs_t ddr_cfg_regs; >>> + size_t ddr_size; >>> + struct cpu_type *cpu; >>> + ulong ddr_freq, ddr_freq_mhz; >>> + >>> + cpu = gd->cpu; >>> + /* P1020 and it's derivatives support max 32bit DDR width *

[U-Boot] [PATCH] Revert "sandbox: Change md command to use map_physmem"

2011-11-12 Thread Kumar Gala
This reverts commit 355a835747c6f7c5071ead295a7dfc489c73cb03. The original commit broke long standing assumption that md commands work on effective addresses. This normally isn't an issue for most systems that map 1:1, however on systems with a 36-bit address map it breaks. Signed-off-by:

[U-Boot] [GIT PULL] Pull request u-boot-85xx.git

2011-11-11 Thread Kumar Gala
pc/mpc85xx: Set SYSCLK to the required frequency powerpc/85xx: Set max alloc length to 10MB on P1022DS Kumar Gala (20): powerpc/85xx: Add support for Book-E MMU Arch v2.0 powerpc/85xx: Fix MPC8572DS NAND build powerpc/85xx: Fix NAND SPL support arch/powerpc/cpu/mpc85xx/

[U-Boot] [PATCH] powerpc/85xx: Fix builds of P1020/P2020RDB-PC_36BIT_NAND

2011-11-11 Thread Kumar Gala
Size grew a bit so nand-spl didn't fit in 4k, reduce done by removing LAW entries not needed during SPL phase. Signed-off-by: Kumar Gala --- board/freescale/p1_p2_rdb_pc/law.c | 10 ++ 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/board/freescale/p1_p2_rdb_pc/law

Re: [U-Boot] [PATCH 00/16] Fix GCC 4.6 build warning related to MPC85xx builds

2011-11-11 Thread Kumar Gala
On Nov 9, 2011, at 10:29 AM, Kumar Gala wrote: > Address 85xx specific gcc 4.6 warnings applied 1-16 - k ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] powerpc/85xx: Fix MPC8572DS NAND build

2011-11-11 Thread Kumar Gala
On Nov 8, 2011, at 11:04 AM, Kumar Gala wrote: > Reduce NAND SPL build size by not include TLB entries that arent used by > it. > > Signed-off-by: Kumar Gala > --- > board/freescale/mpc8572ds/tlb.c |2 ++ > 1 files changed, 2 insertions(+), 0 delet

Re: [U-Boot] [PATCH] powerpc/85xx: Fix NAND SPL support

2011-11-11 Thread Kumar Gala
On Nov 9, 2011, at 9:15 AM, Kumar Gala wrote: > We cause CCSRBAR to be relocated in the SPL phase of NAND boot which > isn't expected and breaks things. Fixing the board config.h to NOT > relocate CCSR during the CONFIG_NAND_SPL phase. > > Signed-off-by: Kumar Gala >

Re: [U-Boot] [PATCH] phylib: Enable AR8021 phy support

2011-11-11 Thread Kumar Gala
On Nov 11, 2011, at 3:19 AM, Xie Xiaobo wrote: > Enable AR8021 as it used on Freescale Combo boards. > The Combo boards included P1020RDB-PC, P1021RDB-PC, > P2020RDB-PC, P1020UTM-PC, and P1020MSBG-PC. > > Signed-off-by: Xie Xiaobo > --- > include/config_phylib_all_drivers.h |1 + > 1 files c

Re: [U-Boot] [PATCH]powerpc/85xx: Make inclusion of USB device fixup conditional

2011-11-11 Thread Kumar Gala
On Nov 7, 2011, at 10:51 PM, Ramneek Mehresh wrote: > Include call to usb device-fixup only when CONFIG_HAS_FSL_DR_USB is > defined for the platform - P1020RDB, P1010RDB, P1020-PC > > Signed-off-by: Ramneek Mehresh > --- > board/freescale/p1010rdb/p1010rdb.c |2 ++ > board/freescale/

Re: [U-Boot] [PATCH v2] powerpc/mpc85xx: Set SYSCLK to the required frequency

2011-11-11 Thread Kumar Gala
rwise, We will continue to calculate it with the next OD and RDW. > > Signed-off-by: Jerry Huang > CC: Kumar Gala > --- > changes for v2: > - move these macro to .c file > - change the subject to powerpc/mpc85xx > - add CC > > board/freescale/c

Re: [U-Boot] [PATCH 2/2] P1022DS: set max alloc length to 10MB

2011-11-11 Thread Kumar Gala
On Nov 1, 2011, at 8:16 PM, wrote: > From: Jerry Huang > > In order to support 1920x01080 resolution, we must increase the alloc length. > > Acked-by: Timur Tabi > > Signed-off-by: Jerry Huang > CC: Anatolij Gustschin > --- > include/configs/P1022DS.h |2 +- > 1 files changed, 1 inse

Re: [U-Boot] [PATCH v3 2/2] mpc85xx: support for Freescale COM Express P2020

2011-11-11 Thread Kumar Gala
On Nov 10, 2011, at 3:11 PM, Ira W. Snyder wrote: > This adds support for the Freescale COM Express P2020 board. This board > is similar to the P1_P2_RDB, but has some extra (as well as missing) > peripherals. > > Unlike all other mpc85xx boards, it uses a watchdog timeout to reset. > Using the

[U-Boot] gcc 4.6 warning in x86emu/ops2.c

2011-11-09 Thread Kumar Gala
Tried to look at this but decided to give up as it seems a bit too involved: LOG/P2020DS_SPIFLASH.ERR:x86emu/ops2.c: In function 'x86emuOp2_set_byte': LOG/P2020DS_SPIFLASH.ERR:x86emu/ops2.c:171:11: warning: variable 'name' set but not used [-Wunused-but-set-variable] - k

[U-Boot] [PATCH 16/16] arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c: Fix GCC 4.6 build warning

2011-11-09 Thread Kumar Gala
array bounds [-Warray-bounds] ctrl_regs.c:752:34: warning: array subscript is above array bounds [-Warray-bounds] Signed-off-by: Kumar Gala --- arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c |7 ++- 1 files changed, 2 insertions(+), 5 deletions(-) diff --git a/arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs

[U-Boot] [PATCH 15/16] arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c: Fix GCC 4.6 build warning

2011-11-09 Thread Kumar Gala
Fix: fsl_corenet_serdes.c: In function 'fsl_serdes_init': fsl_corenet_serdes.c:511:8: warning: variable 'buf' set but not used [-Wunused-but-set-variable] fsl_corenet_serdes.c:498:18: warning: variable 'lane_prtcl' set but not used [-Wunused-but-set-variab

[U-Boot] [PATCH 14/16] arch/powerpc/cpu/mpc8xxx/ddr/options.c: Fix GCC 4.6 build warning

2011-11-09 Thread Kumar Gala
Fix: options.c: In function 'populate_memctl_options': options.c:486:28: warning: variable 'pdodt' set but not used [-Wunused-but-set-variable] Signed-off-by: Kumar Gala --- arch/powerpc/cpu/mpc8xxx/ddr/options.c |4 1 files changed, 4 insertions(+), 0 deletions(-

[U-Boot] [PATCH 12/16] drivers/usb/host/ehci-fsl.c: Fix GCC 4.6 build warning

2011-11-09 Thread Kumar Gala
Fix: ehci-fsl.c: In function 'ehci_hcd_init': ehci-fsl.c:43:7: warning: variable 'usb_phy' set but not used [-Wunused-but-set-variable] Signed-off-by: Kumar Gala --- drivers/usb/host/ehci-fsl.c |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/d

  1   2   3   4   5   6   7   8   9   10   >