[U-Boot] [PATCH 1/1] drivers: mmc: Add sdhci driver for Broadcom iProc platform

2019-09-12 Thread Arun Parameswaran
Add SDHCI driver for iProc family of Broadcom devices. Signed-off-by: Corneliu Doban Signed-off-by: Pramod Kumar Signed-off-by: Pavithra Ravi Signed-off-by: Bharat Kumar Reddy Gooty Signed-off-by: Vladimir Olovyannikov Signed-off-by: Arun Parameswaran --- .../include/asm/iproc-common

[U-Boot] exFAT support in u-boot

2018-01-05 Thread Arun Kuttiyara Varghese
exfat] ] The reason to use exFAT in u-boot is to use the same SD card for - data storage in multiple platforms - use the same SD card as a bootable one [ with out formatting ]. Please let me know. Thanks, Arun ___ U-Boot mailing list U-Boot@lists.denx.de

[U-Boot] [PATCH v1 1/1] net: phy: Add AFE settings to the Broadcom Cygnus phy

2017-07-19 Thread Arun Parameswaran
Added the AFE (Analog Front End) settings for stability to the Broadcom Cygnus phy. This improves the time take to perform auto negotiation. Signed-off-by: Arun Parameswaran --- drivers/net/phy/broadcom.c | 64 +- 1 file changed, 63 insertions(+), 1

Re: [U-Boot] u-boot hangs after enabling secured boot : gumstix-overo

2016-05-30 Thread Arun Kuttiyara Varghese
e RSA options for the board. Thanks & Regards, Arun On Wed, May 18, 2016 at 11:59 PM, Simon Glass wrote: > Hi Arun, > > On 3 May 2016 at 19:50, Arun Kuttiyara Varghese > wrote: > > Hi Simon, > > > > Thanks for the help. > > > > There is an

Re: [U-Boot] u-boot hangs after enabling secured boot : gumstix-overo

2016-05-03 Thread Arun Kuttiyara Varghese
vice */, but couldn't get much info. What is RSA Mod Exp device and how to make sure that I have that ? Any input to debugging will be greatly helpful. Thanks & Regards, Arun On Sun, May 1, 2016 at 2:55 PM, Simon Glass wrote: > Hi Arun, > > On 28

[U-Boot] u-boot hangs after enabling secured boot : gumstix-overo

2016-04-29 Thread Arun Kuttiyara Varghese
OF_SEPARATE #define CONFIG_FIT #define CONFIG_FIT_SIGNATURE #define CONFIG_RSA #define CONFIG_FIT_VERBOSE and I am compiling u-boot by using below line : make ARCH=arm CROSS_COMPILE=arm-linux-gnueabi- EXT_DTB=/work/u-boot.dtb all -j4 Please let me know if you have any ideas on how to d

[U-Boot] [PATCH 2/2] u-boot breaks for the Overo boards since the following commit: a6b541b09022acb6f7c2754100ae26bd44eed1d9

2015-04-28 Thread Arun Bharadwaj
numbers <= 2410 and not required for the newer boards. For these older boards, u-boot v2014.10 still works fine. Signed-off-by: Arun Bharadwaj --- board/overo/common.c | 14 -- 1 file changed, 14 deletions(-) diff --git a/board/overo/common.c b/board/overo/common.c index bdfa5ca..f6f6

[U-Boot] [PATCH 1/2] This separates the SPL-specific code from the u-boot-specific code for the Overo board following the discussion at http://lists.denx.de/pipermail/u-boot/2015-April/211622.html

2015-04-28 Thread Arun Bharadwaj
The code is split up into spl.c, overo.c and common.c (which has the code common to both) Signed-off-by: Arun Bharadwaj --- board/overo/Makefile | 6 +- board/overo/common.c | 355 +++ board/overo/overo.c | 117 + board/overo

[U-Boot] [v2 PATCH 0/2] omap3-overo: Code cleanup and reduce the size of MLO binary.

2015-04-28 Thread Arun Bharadwaj
This is the v2 of the two-patch series. v1 can be found here: http://lists.denx.de/pipermail/u-boot/2015-April/211651.html The only change in this version is that the earlier version missed printing the board revision, so fixed that. Arun Bharadwaj (2): This separates the SPL-specific code

Re: [U-Boot] [PATCH 1/2] overo: Code cleanup; split into SPL-specific and u-boot-specific code

2015-04-22 Thread Arun Bharadwaj
Yes, I can move get_board_revision into common.c. Then we can retain the earlier printf. On Wed, Apr 22, 2015 at 9:45 AM, Ash Charles wrote: > On Tue, Apr 21, 2015 at 4:56 PM, Arun Bharadwaj wrote: > > - printf("Board revision: %d\n", get_board_revision()); > It i

[U-Boot] [PATCH 2/2] overo: u-boot breaks for the Overo boards after v2014.10

2015-04-21 Thread Arun Bharadwaj
not proceed. This piece of code is anyway necessary only for really old Overo boards with revision numbers <= 2410 and not required for the newer boards. For these older boards, u-boot v2014.10 still works fine. Signed-off-by: Arun Bharadwaj --- board/overo/spl.c | 14 -- 1 f

[U-Boot] [PATCH 1/2] overo: Code cleanup; split into SPL-specific and u-boot-specific code

2015-04-21 Thread Arun Bharadwaj
This separates the SPL-specific code from the u-boot-specific code for the Overo board following the discussion at http://lists.denx.de/pipermail/u-boot/2015-April/211622.html The code is split up into spl.c, overo.c and common.c (which has the code common to both) Signed-off-by: Arun Bharadwaj

Re: [U-Boot] Question regarding MLO size

2015-04-21 Thread Arun Bharadwaj
Hi Tom, Thanks for your inputs. I have cleaned up the board/overo/ code like you suggested. I will send a separate email with the patches requesting for review. -Arun On Tue, Apr 21, 2015 at 1:16 PM, Tom Rini wrote: > On Tue, Apr 21, 2015 at 01:12:37PM -0700, Ash Charles wrote: > &g

[U-Boot] [PATCH 0/2] overo: Code cleanup and reduce the size of MLO binary.

2015-04-21 Thread Arun Bharadwaj
ter the commit a6b541b09022acb6f7c2754100ae26bd44eed1d9 Arun Bharadwaj (2): This separates the SPL-specific code from the u-boot-specific code for the Overo board following the discussion at http://lists.denx.de/pipermail/u-boot/2015-April/211622.html u-boot breaks for the Ov

[U-Boot] Question regarding MLO size

2015-04-21 Thread Arun Bharadwaj
setenv("expansionname", "palo35"); break; case GUMSTIX_PALO43: printf("Recognized Palo43 expansion board (rev %d %s)\n", -Arun ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] Uboot_Header_Modification_by_CVS

2014-01-19 Thread Arun K. Varghese
aders. Eg : In u-boot-2010.09/arch/i386/cpu/sc520/sc520_asm.S * $Revision: 1.2 $ * $Date: 1999/09/22 12:49:33 $ * $Author: chipf $ If I do a check in, it will be changed to * $Revision: 1.1.1.2 $ * $Date: 2013/12/16 12:49:33 $ * $Author: Arun $ Doubts - 1. Why only few files have

Re: [U-Boot] Help me on finding board similar to NIC card in U-bootloader

2010-10-10 Thread arun
hi hari have u got support for *BCM8727* dual 10 GbE SFI-to-XAUI PHY in the boot loader. If so could u please share that to me. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] microblaze: Add FDT support

2010-04-15 Thread Arun Bhanu
This patch adds FDT (flattened device tree) support to microblaze arch. Tested with Linux arch/microblaze kernels with and without compiled in FDT on Xilinx ML506 board. Signed-off-by: Arun Bhanu --- arch/microblaze/lib/bootm.c | 39 ++- 1 files changed

[U-Boot] Regarding NAND flash support in IMX31 and bootm in ubootv2

2009-10-21 Thread R Arun Kumar
the kernel image works fine in old u-boot version 2009-08 Any help Please? Arun The log is == == U-Boot 2.0.0-rc9 (Oct 21 2009 - 09:35:47) Board: Phytec phyCORE-i.MX31 NAND device: Manufacturer ID: 0x20, Chip ID: 0x76 (ST Micro NAND 64MiB 3

[U-Boot] Linux boot using bootz

2009-10-20 Thread R Arun Kumar
v/env0. Using default environment running /env/bin/init... Hit any key to stop autoboot: 3 type update_kernel nand|nor [] to update kernel into flash type update_root nand|nor [] to update rootfs into flash uboot:/ bootargs="noinitrd console=ttymxc0 root=/dev/nfs nfsroot= 192.168.50.247:

[U-Boot] Regarding NAND flash support in IMX31

2009-10-16 Thread R Arun Kumar
No space left on device uboot:/ ==== * R Arun Kumar ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] Regarding NAND flash support in IMX31

2009-10-15 Thread R Arun Kumar
nand_ecclayout nand_hw_eccoob_8 = { .eccbytes = 5, .eccpos = {6, 7, 8, 9, 10}, .oobfree = {{0, 5}, {11, 5}} }; static struct nand_ecclayout nand_hw_eccoob_16 = { .eccbytes = 5, .eccpos = {6, 7, 8, 9, 10}, .oobfree = {{0, 6}, {12, 4}} }; Arun On Wed, Oct 14

Re: [U-Boot] Regarding NAND flash support in IMX31

2009-10-14 Thread R Arun Kumar
Arun On Wed, Oct 14, 2009 at 2:17 PM, Juergen Beisert wrote: > Arun, > > On Mittwoch, 14. Oktober 2009, R Arun Kumar wrote: > > I am trying to port U-boot 2.0.0 for my custom imx31 board and I am able > > to boot and load linux etc successfully. > > Does Linux wo

[U-Boot] Regarding NAND flash support in IMX31

2009-10-14 Thread R Arun Kumar
Hai I am trying to port U-boot 2.0.0 for my custom imx31 board and I am able to boot and load linux etc successfully. I want to add NAND flash support and it is observed that the NAND flash is been detected but with lot of "Bad erase block messages" Please

[U-Boot] How to create an ELF file which U-Boot understands and boots it

2009-03-31 Thread arun c
. Regards, Arun C ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] Fwd: [PATCH v2 0/5] Add multi-chips support for NAND, FSL-UPM and TQM8548

2009-02-16 Thread arun sharma
>* Index: u-boot/drivers/mtd/nand/fsl_upm.c *>* === *>* --- u-boot.orig/drivers/mtd/nand/fsl_upm.c *>* +++ u-boot/drivers/mtd/nand/fsl_upm.c *>* @@ -90,8 +90,11 @@ static void fun_cmd_ctrl(struct mtd_info *>* mar = cmd << (32 - fun

[U-Boot] Fwd: registered SORDIMM MT9HTF6472RHY-667F1

2009-02-16 Thread arun sharma
-- Forwarded message -- From: arun sharma Date: Fri, Feb 13, 2009 at 4:57 PM Subject: registered SORDIMM MT9HTF6472RHY-667F1 To: u-boot@lists.denx.de i am using mpc8360 emds board. it is working fine with socdimm. but with sordimm not working. there is minor change i have done

[U-Boot] registered SORDIMM MT9HTF6472RHY-667F1

2009-02-13 Thread arun sharma
i am using mpc8360 emds board. it is working fine with socdimm. but with sordimm not working. there is minor change i have done it for sordimm as follows for testing only. /* sdram_cfg[3] = RD_EN - registered DIMM enable */ // if (spd.mod_attr & 0x02) vivek // { printf("sdramcfg[3] registered DIM

Re: [U-Boot] configuring the board as a pci target in u-boot

2009-01-19 Thread arun c
On Mon, Jan 19, 2009 at 8:16 AM, wrote: > Hi Arun, > >> I want to configure my board as a PCI target, its based on >> mcf548x processor. What are the things to be taken care to >> configure a board as a PCI agent in u-boot? >> >> My processor can act as a

[U-Boot] configuring the board as a pci target in u-boot

2009-01-18 Thread arun c
st have to configure the PCI inbound windows and leave the rest to PCI master of the entire system. am I thinking wrong? Regards, Arun C ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH] Coldfire: XL Bus minor fixes

2008-12-04 Thread arun c
According to coldfire manual data timeout > address time out also use correct macro to program XARB_CFG Signed-off-by: Arun C <[EMAIL PROTECTED]> --- cpu/mcf547x_8x/cpu_init.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cpu/mcf547x_8x/cpu_init.c b/cpu/m

[U-Boot] Does u-boot support custom binaries?

2008-12-02 Thread arun c
ed by u-boot, it just want an environment to execute itself. Is this possible? Regards, Arun C ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] nor flash testing

2008-11-20 Thread arun c
Hi all, Is there any mechanism to test NOR FLASH in u-boot? I am looking for a mechanism similar to mtest. The intention is to test the flash for any address and data line fault(other faults also relevant to memories). Anybody got any pointers? Regards, Arun C