[U-Boot] [PATCH 2/2] powerpc/c29xpcie: add support for C29XPCIE board

2013-07-01 Thread y
as published by the Free +# Software Foundation; either version 2 of the License, or (at your option) +# any later version. +# + +include $(TOPDIR)/config.mk + +LIB= $(obj)lib$(BOARD).o + +COBJS-y+= $(BOARD).o +COBJS-y+= cpld.o +COBJS-y+= ddr.o +COBJS-y+= law.o

[U-Boot] [PATCH 1/2] powerpc/85xx: Add C29x SoC support

2013-07-01 Thread y
From: Mingkai Hu The Freescale C29x family is a high performance crypto co-processor. It combines a single e500v2 core with necessary SEC engine. There're three SoC types(C291, C292, C293) with the following features: - 512K L2 Cache/SRAM and 512 KB platform SRAM - DDR3/DDR3L 32bit DDR control

[U-Boot] [PATCH] eb_cpux9k2: fix chip select

2012-04-29 Thread y
From: Jens Scharsig * fix chip select initialization for frame buffer, this will be increase frame buffer access speed Signed-off-by: Jens Scharsig --- board/BuS/eb_cpux9k2/cpux9k2.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/board/BuS/eb_cpux9k2/cpux9k2.c

[U-Boot] [PATCH RESEND v2 0/4] usb:gadget: USB Mass Storage Gadget

2013-03-05 Thread y
From: Piotr Wilczek This patch series add support for the USB Mass Storage (UMS) New "ums" command provide access to on-device persistent memory. The storage_common.c and f_mass_storage.c source files are ported from v2.6.36 Linux kernel Changes in v2: - removed commented code; Lukasz Majewski

[U-Boot] [PATCH RESEND v2 1/4] usb:composite: USB Mass Storage - storage_common.c from Linux kernel

2013-03-05 Thread y
From: Lukasz Majewski The storage_common.c source file from v2.6.36 Linux kernel. commit d26a6aa08b9f12b44fb1ee65625e7480d3d5bb81 Author: Michal Nazarewicz Date: Mon Nov 9 14:15:23 2009 +0100 USB: g_mass_storage: code cleaned up and comments updated Signed-off-by: Lukasz Majewski Signed-of

[U-Boot] [PATCH RESEND v2 3/4] usb:gadget: USB Mass Storage Gadget support

2013-03-05 Thread y
| 55 ++ 4 files changed, 148 insertions(+) create mode 100644 common/cmd_usb_mass_storage.c create mode 100644 include/usb_mass_storage.h diff --git a/common/Makefile b/common/Makefile index 54fcc81..8ec95d2 100644 --- a/common/Makefile +++ b/common/Makefile @@ -174,6 +174,7

[U-Boot] [PATCH RESEND v2 4/4] arm:trats: Use new ums command

2013-03-05 Thread y
From: Lukasz Majewski This patch enables new "ums" command on Trats board Signed-off-by: Lukasz Majewski Signed-off-by: Piotr Wilczek Signed-off-by: Kyungmin Park CC: Minkyu Kang --- Changes in v2: None board/samsung/trats/trats.c | 63 +++ include

[U-Boot] [PATCH v2 2/5] coldfire: Clean _config rules and move simple ones to boards.cfg

2011-08-31 Thread y
From: Stany MARCEL Signed-off-by: Stany MARCEL --- Changes for v2: - Move boards with simple configurations to boards.cfg - Some build corrections MAKEALL|6 -- Makefile | 126 ++- boards.cfg

[U-Boot] [PATCH v2 3/5] coldfire: Permit build in a different directory

2011-08-31 Thread y
From: Stany MARCEL Add $(obj) before lib$(CPU) to permit build in a different directory Signed-off-by: Stany MARCEL --- Changes for v2: - None arch/m68k/cpu/mcf5227x/Makefile |2 +- arch/m68k/cpu/mcf523x/Makefile|2 +- arch/m68k/cpu/mcf532x/Makefile|2 +- arch/m68k/cp

[U-Boot] [PATCH v2 4/5] coldfire: Remove link files entries to prevent multiple definitions

2011-08-31 Thread y
From: Stany MARCEL Signed-off-by: Stany MARCEL --- Changes for v2: - Missing Corrections of link files for m54451evb board board/BuS/EB+MCF-EV123/u-boot.lds|5 - board/astro/mcf5373l/u-boot.lds |4 board/cobra5272/u-boot.lds |5 - board/esd/tasreg

[U-Boot] [PATCH v2 1/5] coldfire: Change timer_init return type from void to int

2011-08-31 Thread y
From: Stany MARCEL timer_init protorype change for uniformization with other architectures Signed-off-by: Stany MARCEL --- Changes for v2: - Remove extern of timer_init arch/m68k/cpu/mcf547x_8x/slicetimer.c |4 +++- arch/m68k/lib/board.c |2 -- arch/m68k/lib/time.c

[U-Boot] V2 of OMAP3 USB device Support

2009-09-28 Thread y
The technical change is better handling of address setting on the usb handshaking setup phase. Other changes from Jean's comments 2/8 USB add macros for debugging usb device setup. static inline function replacing debug macros 3/8 TWL4030 Add usb PHY support add empty lines between variables

[U-Boot] [PATCH 2/8] USB add macros for debugging usb device setup.

2009-09-28 Thread y
From: Tom Rix When developing usb device features, it is useful to print out common usb structures. Signed-off-by: Tom Rix --- include/usbdescriptors.h | 26 include/usbdevice.h | 103 ++ 2 files changed, 129 insertions(+), 0 del

[U-Boot] [PATCH 1/8] USB Consolidate descriptor definitions

2009-09-28 Thread y
From: Tom Rix The header files usb.h and usbdescriptors.h have the same or similarly named structure definitions for usb_device_descriptor usb_string_descriptor usb_endpoint_descriptor usb_config_descriptor vs usb_configuration_descriptor usb_interface_descriptor There should only be one defini

[U-Boot] [PATCH 3/8] TWL4030 Add usb PHY support

2009-09-28 Thread y
+COBJS-y := twl4030.o + +COBJS := $(COBJS-y) +SRCS := $(COBJS:.o=.c) +OBJS := $(addprefix $(obj),$(COBJS)) + +all: $(LIB) + +$(LIB):$(obj).depend $(OBJS) + $(AR) $(ARFLAGS) $@ $(OBJS) + +# + +# defines $(obj

[U-Boot] [PATCH 5/8] OMAP3 zoom1 Add usbtty configuration

2009-09-28 Thread y
From: Tom Rix The primary console of zoom1 is the serial out from the jumpers accessed by removing the back panel. A secondary console is to use the usbtty. The user can set this manually by doing setenv stdout usbtty; setenv stdin usbtty; setenv stderr usbtty saveenv usbtty will be usable by

[U-Boot] [PATCH 6/8] OMAP3 beagle Add usbtty configuration

2009-09-28 Thread y
From: Tom Rix The primary console of beagle is the serial header. A secondary console is to use the usbtty. The user can set this manually by doing setenv stdout usbtty; setenv stdin usbtty; setenv stderr usbtty saveenv usbtty will be usable by accessing the /dev/ttyACM0 on a linux host. Sig

[U-Boot] [PATCH 7/8] USBTTY make some function declarations easier to use.

2009-09-28 Thread y
From: Tom Rix Zoom2 needs to use these declarations and the include directory is a better place from them than in the middle of the driver directory. It did not make sense to create a new file for just a couple of lines so they were appended to the serial.h Signed-off-by: Tom Rix --- include/s

[U-Boot] [PATCH 8/8] OMAP3 zoom2 Use usbtty if the debug board is not connected.

2009-09-28 Thread y
From: Tom Rix The preferred serial output comes from the debug board. When the debug board is disconnected, fall back on using usbtty from the usb connector on the Zoom2 board. This shows up as /dev/ttyACM0 in a linux host. Signed-off-by: Tom Rix --- board/logicpd/zoom2/zoom2_serial.c | 12

[U-Boot] [PATCH 4/8] OMAP3 Add usb device support

2009-09-28 Thread y
+26,9 @@ include $(TOPDIR)/config.mk LIB:= $(obj)libusb_musb.a COBJS-$(CONFIG_MUSB_HCD) += musb_hcd.o musb_core.o +COBJS-$(CONFIG_MUSB_UDC) += musb_udc.o musb_core.o COBJS-$(CONFIG_USB_DAVINCI) += davinci.o +COBJS-$(CONFIG_USB_OMAP3) += omap3.o COBJS := $(COBJS-y) SRCS := $(COBJS:.o

[U-Boot] [PATCH] cpu/ppc4xx/fdt.c: avoid strcpy() to constant string

2009-10-20 Thread y
From: Wolfgang Denk strcpy() was iused with the target address being a pointer to a constant string, which potentially is read-only. Use a (writable) array of characters instead. Signed-off-by: Wolfgang Denk --- cpu/ppc4xx/fdt.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff

[U-Boot] [PATCH] tools: fw_printenv supports mmc device

2010-12-15 Thread y
From: Donghwa Lee I modified fw_printenv tools to use /dev/mmcblk0 node. Original fw_printenv tool can be access MTD devices, but, in some cases, environment variables can be stored other memory devices, for example, mmc devices. So, I modified a few code to use /dev/mmcblk0. Signed-off-by: Don

[U-Boot] [PATCH 3/4] nand_spl/spiboot/sdboot: Add ability to have smaller middle loader

2011-06-02 Thread y
McClintock --- Makefile | 38 +- mkconfig |1 + 2 files changed, 38 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 0400930..7a9cae7 100644 --- a/Makefile +++ b/Makefile @@ -317,6 +317,16 @@ ifeq ($(CONFIG_NAND_U_BOOT),y) ALL += $(obj)u

[U-Boot] [PATCH 1/4] common/env_common: Add CONFIG_SILENT_CONSOLE_AT_BOOT env option

2011-06-02 Thread y
From: Matthew McClintock Just setting CONFIG_SILENT_CONSOLE does not make the CONSOLE silent without the silent env variable set. This adds a new define to add this to the default environment easily Signed-off-by: Matthew McClintock --- README |4 common/env_common.c |

[U-Boot] [PATCH 4/4] Add P1021MDS board support

2011-06-02 Thread y
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=

[U-Boot] [PATCH 2/4] build/mkconfig: Add EXTRA_OPTS argument to make to modify build

2011-06-02 Thread y
From: Matthew McClintock Allow users to pass in extra defines via make so they can modify the build. Example make P1022DS EXTRA_OPTS=NAND is equivalent to make P1022DS_NAND Signed-off-by: Matthew McClintock --- mkconfig |8 +++- 1 files changed, 7 insertions(+), 1 deletions(-) diff

[U-Boot] [PATCH 1/2] Make "usage" messages more helpful.

2009-05-24 Thread y
From: Wolfgang Denk In case of incorrect command invocations U-Boot used to print pretty useless "usage" messages, for example: => nand markbad Usage: nand - NAND sub-system In the result, the user would have to run the "help" command to get the (available) information a

[U-Boot] [PATCH v2] arm: fix a comment

2013-05-09 Thread y
From: Masahiro Yamada Signed-off-by: Masahiro Yamada --- Changed for v2: - Fix one more comment arch/arm/lib/crt0.S |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/lib/crt0.S b/arch/arm/lib/crt0.S index a9657d1..a5bffb8 100644 --- a/arch/arm/lib/crt0.S +

[U-Boot] [PATCH] avr32: disable branch folding

2010-06-09 Thread y
From: Andreas Bießmann Due to a hardware bug mentioned in latest AP7000 datasheet errata (revision M from 09.09) branch folding is unreliable. This patch disables CPUCR.FE bitfield as stated in datasheet. Signed-off-by: Andreas Bießmann --- arch/avr32/cpu/start.S |7 --- 1 files change

[U-Boot] [PATCH] include/compiler.h: remove redunandt declaration of errno

2010-06-19 Thread y
From: Wolfgang Denk Commit 37566090 "compiler.h: unify system ifdef cruft here" added both a "#include " and a "extern int errno;" to include/compiler.h which is causing build warnings for some systems, for example for the "netstar" board: In file included from /home/wd/git/u-boot/work/l

[U-Boot] [PATCH v3 0/3] Modifies the erratum A006261 according to endianness

2016-08-17 Thread y
From: Sriram Dash Modifies erratum A006261 implementation due to the fact that P3041, P5020, and P5040 are all big endian for the USB PHY registers, but they were specified little endian. Enables the Phy init settings for P1010 Soc. Also, applies the erratum for P2041 rev 2.0, P2040 rev 2.0, P504

[U-Boot] [PATCH v3 1/3] mpc85xx: powerpc: usb: Modified the erratum A006261 according to endianness

2016-08-17 Thread y
From: Sriram Dash Modifies erratum implementation due to the fact that P3041, P5020, and P5040 are all big endian for the USB PHY registers, but they were specified little endian. Signed-off-by: Sriram Dash Signed-off-by: Rajesh Bhagat --- Changes in v3: - Modify the commit message - Modif

[U-Boot] [PATCH v3 2/3] mpc85xx: powerpc: usb: Enable Usb phy initialisation settings for P1010

2016-08-17 Thread y
From: Sriram Dash CONFIG_SYS_FSL_USB1_PHY_ENABLE is set and the USB Phy offset are set to enable the initial setting of Usb Phy for P1010. Signed-off-by: Sriram Dash Signed-off-by: Rajesh Bhagat --- Changes in v3: - Modify the commit message - Modify the commit description arch/powerpc/i

[U-Boot] [PATCH v3 3/3] mpc85xx: powerpc: usb: Update the list of Socs afftected by erratum A006261

2016-08-17 Thread y
From: Sriram Dash Apply the erratum A006261 for the following Socs: P2041 rev 2.0, P2040 rev 2.0, P5040 rev 2.0, 2.1 Do not apply erratum A006261 for the following Socs: T4160, T4080, T1040, T1042, T1020, T1022, T2080, T2081 Erratum A006261 is applicable for the following Socs: P1010(1.0, 2.0),

[U-Boot] [PATCH] ls2-2085ardb: Correct the model name of ls2085ardb

2016-01-14 Thread y
From: Ashish Kumar Signed-off-by: Ashish Kumar --- arch/arm/dts/fsl-ls2080a-rdb.dts |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/dts/fsl-ls2080a-rdb.dts b/arch/arm/dts/fsl-ls2080a-rdb.dts index 1a1813b..71d1969 100644 --- a/arch/arm/dts/fsl-ls2080a-rdb.dts

[U-Boot] [PATCH] ls2-2085a: Increase default hugepage count

2016-01-14 Thread y
From: Ashish Kumar * Increase default hugepage count to 256 from 16 * Note: default env variables are stored at 0x58020/0x58420 of size 0x2000 Signed-off-by: Ashish Kumar --- include/configs/ls2080a_common.h |2 +- include/configs/ls2080ardb.h |2 +- 2 files changed,

[U-Boot] tlb15_entry is set wrong in the 4K code when the MPC8572DS boots from nand flash

2014-01-30 Thread Y fan
Hello, The memory of the MPC8572DS can't be read correctly after the setup of the tlb1_entry in the 4K boot code. And also in the create_init_ram code, the tlb1_entry15&14 are set to be in the address space 0 which are supposed to be used in the address space 1. There seems somthing wrong with th

Re: [U-Boot] tlb15_entry is set wrong in the 4K code when the MPC8572DS boots from nand flash

2014-02-12 Thread Y fan
hu, 2014-01-30 at 15:57 +0100, Y fan wrote: > > Hello, > > > > The memory of the MPC8572DS can't be read correctly after the setup of > the > > tlb1_entry in the 4K boot code. > > What specific memory location can't be read? What part of the code is > faili

[U-Boot] Enabling E1000 driver support for P1_P2 Boards

2010-10-20 Thread y bhanu
Hi all, I have 2 questions. 1) I have a P1020RDB Board on which I am trying to configure by E1000 82574 PCI express Ethernet Card. I see support for 82571 but not for 82574. I don't know how different these chips. Can I expect this PCI express Card to work with the e1000 driver in U-boot? 2) I

Re: [U-Boot] Enabling E1000 driver support for P1_P2 Boards

2010-10-21 Thread y bhanu
AM, Kumar Gala wrote: > > On Oct 21, 2010, at 1:34 AM, y bhanu wrote: > >> Hi all, >> >> I have 2 questions. >> >> 1) >> I have a P1020RDB Board on which I am trying to configure by E1000 >> 82574 PCI express Ethernet Card. I see support for 82571

[U-Boot] Mathematics operation on uboot variables

2010-11-23 Thread Eran Y
Hi Is there any way to use mathematics operation on uboot environment or uboot local variables? since $varA+$varB and $(varA+varB) just save the string. -- View this message in context: http://old.nabble.com/Mathematics-operation-on-uboot-variables-tp30283797p30283797.html Sent from the Uboot

[U-Boot] Can you help me?

2011-09-30 Thread Philip Y Wong
I am Sgt John Adams of the US Army base in Iraq for peace keeping I found your contact detail in a address journal am seeking your assistance to evacuate the sum of $25,000,000 to you as long as I am assured that it will be safe in your care until I complete my service here in Iraq. This is not

Re: [U-Boot] [PATCH] ls2085a: esdhc: flush D-cache before 'mmc read'

2015-08-12 Thread Lu Y . B .
Hi Pantelis, > Hi Yangbo, > > > On Jun 24, 2015, at 05:13 , Yangbo Lu wrote: > > > > It needs to flush D-cache before 'mmc read' so that we can see the > > right data in DDR. And fix parameter for invalidate_dcache_range() > > after 'mmc read'. > > > > Signed-off-by: Yangbo Lu > > Cc: York Sun

Re: [U-Boot] [PATCH 1/2] spl: Fix compile warning for arm64

2015-08-12 Thread Gong Q . Y .
Hi, Please help to review the two patches. Thanks!:) Regards, Qianyu -Original Message- From: Gong Qianyu [mailto:qianyu.g...@freescale.com] Sent: Thursday, July 30, 2015 2:07 PM To: u-boot@lists.denx.de Cc: Hu Mingkai-B21284; Gong Qianyu-B52263 Subject: [PATCH 1/2] spl: Fix compile war

Re: [U-Boot] [PATCH] arm/ls102xa:add hwconfig setting to support disable unused devices.

2015-08-14 Thread Zhang Z . Y .
Hi, Alison Please see the comments inline. Zhuoyu > -Original Message- > From: Wang Huan-B18965 > Sent: Friday, August 14, 2015 4:15 PM > To: Zhang Zhuoyu-B46552; Sun York-R58495 > Cc: u-boot@lists.denx.de; Jin Zhengxiong-R64188 > Subject: RE: [PATCH] arm/ls102xa:add hwconfig setting to

Re: [U-Boot] [PATCH v2 1/1] arm/ls102xa:add hwconfig setting to support disable unused devices.

2015-08-17 Thread Zhang Z . Y .
Hi, York Alison help me find out a macro definition mistake, v2 just correct this mistake. I will resend it again and add change-log in. Zhuoyu > -Original Message- > From: Sun York-R58495 > Sent: Saturday, August 15, 2015 12:07 AM > To: Zhang Zhuoyu-B46552 > Cc: u-boot@lists.denx.de;

[U-Boot] TFTP Timeout Interval problem

2015-08-31 Thread Gong Q . Y .
Hi, I got a problem with tftp and found this patch. - commit 620776d734e4b126c407f636bda825a594a17723 Author: Pavel Machek Date: Tue Aug 18 14:34:26 2015 +0200 tftp: adjust settings to be suitable for 100Mbit ethernet -- The default timeout is changed to 100 (ms) an

Re: [U-Boot] [PATCH] arm:ls1021a: Reserve secure code into RAM instead of OCRAM

2015-07-28 Thread Zhang Z . Y .
Hi, York Sorry for the delay, I wrongly filter this patch and missed it. As for your question, if platform does not define CONFIG_ARMV7_SECURE_BASE, U-boot will help define a default secure text section in linker script to reserve secure code. CONFIG_ARMV7_SECURE_BASE for LS1 is previously def

Re: [U-Boot] [PATCH] arm:ls1021a: Reserve secure code into RAM instead of OCRAM

2015-07-30 Thread Zhang Z . Y .
Hi, York Could you help ACK this patch? Best Regards Zhuoyu > -Original Message- > From: Zhang Zhuoyu-B46552 > Sent: Wednesday, July 29, 2015 10:25 AM > To: Sun York-R58495 > Cc: u-boot@lists.denx.de; Jin Zhengxiong-R64188; Wang Huan-B18965 > Subject: RE: [PATCH] arm:ls1021a: Reserve sec

Re: [U-Boot] TFTP Timeout Interval problem

2015-08-31 Thread Gong Q . Y .
Hi, That's all right. Thanks a lot! Regards, Qianyu -Original Message- From: Pavel Machek [mailto:pa...@denx.de] Sent: Monday, August 31, 2015 8:16 PM To: Gong Qianyu-B52263 Cc: u-boot@lists.denx.de Subject: Re: TFTP Timeout Interval problem Hi! > I got a problem with tftp and found t

Re: [U-Boot] [PATCH 1/3] mmc: fsl_esdhc: enable dat[4:7] for eMMC4.5

2015-09-14 Thread Lu Y . B .
Hi York, Please see my comments below. > -Original Message- > From: Sun York-R58495 > Sent: Monday, September 14, 2015 11:57 PM > To: Lu Yangbo-B47093; u-boot@lists.denx.de > Subject: Re: [PATCH 1/3] mmc: fsl_esdhc: enable dat[4:7] for eMMC4.5 > > Yangbo, > > On 09/13/2015 08:04 PM, Yan

Re: [U-Boot] [PATCH 1/3] mmc: fsl_esdhc: enable dat[4:7] for eMMC4.5

2015-09-14 Thread Lu Y . B .
> On 09/14/2015 07:22 PM, Lu Yangbo-B47093 wrote: > > Hi York, > > > > Please see my comments below. > > > >> -Original Message- > >> From: Sun York-R58495 > >> Sent: Monday, September 14, 2015 11:57 PM > >> To: Lu Yangbo-B47093; u-boot@lists.denx.de > >> Subject: Re: [PATCH 1/3] mmc: fsl_e

Re: [U-Boot] [PATCH 09/14] armv8/ls1043ardb: Add nand boot support

2015-09-15 Thread Gong Q . Y .
upported in that patch (for non-NAND boot) or is that an error? > Sorry, this is really a patching mistake.:( > > > > config TARGET_LS2085A_EMU > > bool "Support ls2085a_emu" > > diff --git a/arch/arm/cpu/armv8/fsl-lsch2/Makefile > > b/

Re: [U-Boot] [PATCH 09/14] armv8/ls1043ardb: Add nand boot support

2015-09-16 Thread Gong Q . Y .
; > > > > > Also, the previous patch adds SUPPORT_SPL to ls1043ardb -- was it > > > supported in that patch (for non-NAND boot) or is that an error? > > > > > > > Sorry, this is really a patching mistake.:( > > > > > > > > > >

Re: [U-Boot] [Patch v2 11/16] armv8/ls1043ardb: Add nand boot support

2015-09-17 Thread Gong Q . Y .
> -Original Message- > From: Wood Scott-B07421 > Sent: Friday, September 18, 2015 4:16 AM > To: Gong Qianyu-B52263 > Cc: u-boot@lists.denx.de; Hu Mingkai-B21284; Sun York-R58495; Hou > Zhiqiang-B48286; Song Wenbin-B53747; Xie Shaohui-B21989; Wood Scott- > B07421 > Subject: Re: [Patch v2 11

Re: [U-Boot] [PATCH 09/14] armv8/ls1043ardb: Add nand boot support

2015-09-18 Thread Gong Q . Y .
gt; bool "Support Versatile Express Juno Development > Platform" > > > > > > select ARM64 > > > > > > + select SUPPORT_SPL > > > > > > > > > > The subject line says you're adding nand boot support to &

Re: [U-Boot] [Patch v2 02/16] common/board_f.c: modify the macro to use get_clocks() more common

2015-09-21 Thread Gong Q . Y .
> -Original Message- > From: Sun York-R58495 > Sent: Tuesday, September 22, 2015 1:27 AM > To: Gong Qianyu-B52263; u-boot@lists.denx.de > Cc: Hu Mingkai-B21284; Sun York-R58495; Hou Zhiqiang-B48286; Xie Shaohui- > B21989; Song Wenbin-B53747; Wood Scott-B07421 > Subject: Re: [Patch v2 02/16

Re: [U-Boot] [PATCH 3/3] spi: fsl_quadspi: Fix qspi_op_rdid memcpy issue

2015-12-14 Thread Gong Q . Y .
Oh, so sorry for the mess... The network seems to get problems..:( Regards, Qianyu > -Original Message- > From: Gong Qianyu [mailto:qianyu.g...@freescale.com] > Sent: Monday, December 14, 2015 6:37 PM > To: u-boot@lists.denx.de > Cc: Hu Mingkai-B21284; Sun York-R58495; Yuan Yao-B46683; >

Re: [U-Boot] [PATCH] i2c: mxc: allow executing the code that only applies to i.MX platforms

2015-12-14 Thread Gong Q . Y .
> -Original Message- > From: Sun York-R58495 > Sent: Monday, December 14, 2015 6:37 PM > To: Gong Qianyu-B52263; u-boot@lists.denx.de > Cc: Hu Mingkai-B21284; Sun York-R58495; Fan Peng-B51431 > Subject: Re: [PATCH] i2c: mxc: allow executing the code that only applies > to i.MX platforms >

Re: [U-Boot] [PATCH] i2c: mxc: allow executing the code that only applies to i.MX platforms

2015-12-14 Thread Gong Q . Y .
>> On 12/14/2015 07:03 PM, Gong Qianyu-B52263 wrote: >> >>> -Original Message- >>> From: Sun York-R58495 >>> Sent: Monday, December 14, 2015 6:37 PM >>> To: Gong Qianyu-B52263; u-boot@lists.denx.de >>> Cc: Hu Mingkai-B21284; Sun York-R58495; Fan Peng-B51431 >>> Subject: Re: [PATCH] i2c: m

Re: [U-Boot] [Patch V2 1/4] spi: fsl_qspi: fix compile warning for 64-bit platform

2015-12-16 Thread Gong Q . Y .
> -Original Message- > From: Jagan Teki [mailto:jt...@openedev.com] > Sent: Wednesday, December 16, 2015 12:55 AM > To: Gong Qianyu-B52263 > Cc: u-boot@lists.denx.de > Subject: Re: [U-Boot] [Patch V2 1/4] spi: fsl_qspi: fix compile warning > for 64-bit platform > > On 15 December 2015 at

Re: [U-Boot] mmc erase command fails with DAT0 timeout on eMMC on iMX6 board

2015-06-05 Thread Lu Y . B .
Hello Hector, I am not familiar with iMX6 based board. I only know the DAT0 checking was introduced in commit 7a5b80297bc6cef0c10e5f57ac0450678dc7bc5e And different cards may have different secure erase timeout value. This should be found in chip datasheet. But I've never meet your issue... >

Re: [U-Boot] [Patch V5 02/17] common/board_f.c: modify the macro to use get_clocks() more common

2015-10-15 Thread Gong Q . Y .
> -Original Message- > From: Kushwaha Prabhakar-B32579 > Sent: Friday, October 16, 2015 12:08 PM > To: Gong Qianyu-B52263; u-boot@lists.denx.de > Cc: Hu Mingkai-B21284; Sun York-R58495; Hou Zhiqiang-B48286; Xie Shaohui- > B21989; Song Wenbin-B53747; Wood Scott-B07421; Wang Huan-B18965; Gon

Re: [U-Boot] [Patch V5 11/17] armv8/fsl_lsch3: Change arch to fsl-layerscape

2015-10-16 Thread Gong Q . Y .
> -Original Message- > From: Prabhakar [mailto:prabha...@freescale.com] > Sent: Friday, October 16, 2015 2:20 PM > To: Gong Qianyu-B52263; u-boot@lists.denx.de > Cc: Hu Mingkai-B21284; Sun York-R58495; Hou Zhiqiang-B48286; Xie Shaohui- > B21989; Song Wenbin-B53747; Wood Scott-B07421; Wang

Re: [U-Boot] [Patch V5 12/17] armv8/fsl_lsch2: Add fsl_lsch2 SoC

2015-10-16 Thread Gong Q . Y .
> -Original Message- > From: Prabhakar [mailto:prabha...@freescale.com] > Sent: Friday, October 16, 2015 2:28 PM > To: Gong Qianyu-B52263; u-boot@lists.denx.de > Cc: Hu Mingkai-B21284; Sun York-R58495; Hou Zhiqiang-B48286; Xie Shaohui- > B21989; Song Wenbin-B53747; Wood Scott-B07421; Wang

Re: [U-Boot] [PATCH] net/eth: fix a bug in on_ethaddr()

2015-10-16 Thread Gong Q . Y .
> -Original Message- > From: Joe Hershberger [mailto:joe.hershber...@gmail.com] > Sent: Friday, September 04, 2015 5:46 AM > To: Gong Qianyu-B52263 > Cc: Joe Hershberger; u-boot; Hu Mingkai-B21284 > Subject: Re: [U-Boot] [PATCH] net/eth: fix a bug in on_ethaddr() > > Hi Gong, > > On Sun,

Re: [U-Boot] [Patch V7 04/18] net/fm/eth: Use mb() to be compatible for both ARM and PowerPC

2015-10-26 Thread Gong Q . Y .
> -Original Message- > From: Wood Scott-B07421 > Sent: Friday, October 23, 2015 9:42 PM > To: Hou Zhiqiang-B48286 > Cc: Gong Qianyu-B52263; u-boot@lists.denx.de; Hu Mingkai-B21284; Sun > York-R58495; Xie Shaohui-B21989; Song Wenbin-B53747; Kushwaha Prabhakar- > B32579; Wang Huan-B18965 > S

Re: [U-Boot] [Patch V2 2/4] armv8/ls1043ardb: dts: add dtb support

2015-11-06 Thread Gong Q . Y .
> -Original Message- > From: Wood Scott-B07421 > Sent: Thursday, November 05, 2015 7:51 AM > To: Gong Qianyu-B52263 > Cc: u-boot@lists.denx.de; Hu Mingkai-B21284; Sun York-R58495; Hou > Zhiqiang-B48286; Xie Shaohui-B21989; Song Wenbin-B53747; Wood Scott- > B07421; Kushwaha Prabhakar-B32579

Re: [U-Boot] [PATCH v2 02/11] Do not apply: tools: add genkconfig

2020-11-18 Thread Estilo y Alma Recordz
dc276b0113694ecc62913311e2580857754aa890173dfaa9d95afad6396bb741 " , " environmentId

Re: [U-Boot] [PATCH 0/2] kbuild - trivial fixes

2020-11-18 Thread Estilo y Alma Recordz
dc276b0113694ecc62913311e2580857754aa890173dfaa9d95afad6396bb741 " , " environmentId

Re: [U-Boot] [GIT PULL] fpga changes

2020-11-18 Thread Estilo y Alma Recordz

Re: [U-Boot] [PATCH v2 4/4] Correct return code from builtin_run_command_list()

2020-11-18 Thread Estilo y Alma Recordz

[U-Boot] [MAIL ABUSE #408-555-1213]

2011-03-27 Thread Kwon, John Y,M.D.
Dear mail user, This is to inform you that your mailbox has exceeded the storage limit which is 20GB as set up by our administrator service center, you are currently running on 20.9GB, To re-validate your mailbox please CLICK HERE

Bootargs in RPI not working

2022-12-21 Thread Sai Kiran Kumar Reddy Y
Hi, I have U-Boot 2022.10 version. I am trying to boot Raspberry Pi(Model 3B+) using U-Boot. In the U-Boot terminal when I set kernel command-line arguments, using "setenv bootargs root=/dev/mmblk0p3 ro rootwait console=serial0,115200 console=tty1", the Kernel is not loaded. Following are the mess

[U-Boot] Tonifícate con Slendertone

2010-04-27 Thread Productos de tonificación y Fitness
Productos de tonificación y Fitness – Tonifícate con Slendertone Slendertone – el líder mundial en productos de tonificación muscular. Los productos de tonificación y fitness Slendertone utilizan la tecnología de la electroestimulación para ejercitar y desarrollar los músculos de las mujeres y