To solve CAAM coherency issue on ls2080a and ls2085a.
When Caches are enabled and CAAM's DMA's AXI transcations are not
made cacheable, Core reads/write data from/to Caches and CAAM does from
Main Memory. This forces data flushes to synchronize various data structures
But even if any data in proxim
For secure boot, currently we were using fixed bootargs for
all SoCs. This is not needed and we can use the bootargs
which are used in non-secure boot.
Incase bootargs are not defined for non-secure boot of any
platform, we use default bootargs.
Signed-off-by: Aneesh Bansal
Signed-off-by: Saksham
In case of fatal failure during secure boot execution (e.g. header not found)
it is needed that the execution stops.
Earlier, we were asserting reset request in case in case of failure. But if
the RESET_REQ is not tied off to HRESET, this allows the execution to continue.
This can either be taken
Currently, fsl_secboot_validate function used to set env variable "img_addr"
to contain address of image being validated.
The function has been changed to output image addr via argument
img_addr_ptr. The command esbc_validate sets the env variable
"img_addr".
This change helps when fsl_secboot_va
When MMU is disabled, 64bit Write must be at a memory aligned at
64bit Boundary. So, this commit splits the 64bit write into 2 -32bit
writes as the memory location is not guaranteed to be 64bit aligned.
The alignment exception only occurs when MMU is disabled.
Signed-off-by: Aneesh Bansal
Signed-
"fdt_high" env variable has been changed to 0xa000 for ls2080a
and ls2085a during Secure Boot. This env_varible is used to specify
the upper limit to be used for copying flat device tree.
This address must be visible to kernel.
The "fdt_high" value has been set during Secure Boot to same value
The GUR (DCFG) registers in CCSR space are in LE format
for ls2080/ls2085. Defined a config CONFIG_SYS_FSL_CCSR_GUR_LE in
arch/arm/include/asm/arch-fsl-layerscape/config.h
Signed-off-by: Aneesh Bansal
Signed-off-by: Saksham Jain
---
Changes for v2:
- No changes
Changes for v3:
-
During Secure Boot, a bootscript is validated using its header.
This patch copies both these images to DDR from NOR and then validates and
executed them from DDR. (If NOR is the boot source for LS2080 and LS2085).
This copy step is done to make this step common across booting sources.
Because in c
During secure boot, SMMU is enabled on POR by SP bootrom.
SMMU needs to be put in Bypass mode in uboot to
enable CAAM transcations to pass through.
During Nonsecure Boot, SP BootROM doesn't enable SMMU and
at reset SMMU is in bypass mode.
Signed-off-by: Aneesh Bansal
Signed-off-by: Saksham Jain
2016-02-08 22:49 GMT+02:00 Tom Rini :
> On Tue, Feb 02, 2016 at 10:15:28PM +0200, Eddy Petrișor wrote:
>
>> The case of memory of size 0 is not that different from a memory of any other
>> size, so we remove the duplicate code and treat the small differences when it
>> is the case.
>>
>> Signed-off
Following changes have been made to enable secure boot:
1) Sec_init has been called in starting to initialize SEC Block (CAAM)
which will be used for Secure Boot validation later for both ls2080a qds
and rdb
2) 64Bit address in ESBC Header has been enabled as this SoC is based on
armv8
3) Secure Bo
For Secure Boot, a header is used to identify key table, signature
and image address. For LS-CH3, there is a new header structure being used.
The following changes are there in the new header:
1) Currently IE Table (Key extension) feature is not supported
2) Single Key feature is not supported. Ke
During secure boot, Linux image along with other images are validated
using bootscript. This bootscript also needs to be validated before
it is executed. This requires a header for bootscript.
When secure boot is enabled, default bootcmd is changed to first validate
bootscript using the header and
For ls2080, Added configs for various IPs used during secure boot
Added address and endianness for SEC and Security Monitor.
SRK - Fuses in SFP (Fused for public keys hash)
These are stored in LE format.
Signed-off-by: Aneesh Bansal
Signed-off-by: Saksham Jain
---
Changes for v2:
- No
Secure Boot ESBC has been enabled on FSL LS208x platforms.
Changes for v2:
- changed function fsl_secboot_validate to return address of image
- corrected Bootscript header for ls1043 and ls1021
Changes for v3:
- minor changes to remove compilation warnings
Changes ofr v4:
In LS2080/LS2085, SFP is LE and Ver is 3.4
The base address is 0x01e80200
SFP will be used in Secure Boot to read fuses.
Signed-off-by: Aneesh Bansal
Signed-off-by: Saksham Jain
---
Changes for v2:
- No changes
Changes for v3:
- No changes
Changes for v4:
- Cleaned up com
On 02/08/2016 08:55 PM, Vagrant Cascadian wrote:
> Fixes typo of pxe_addr_r with pxefile_addr_r.
Reviewed-by: Stephen Warren
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
Fixes typo of pxe_addr_r with pxefile_addr_r.
Signed-off-by: Vagrant Cascadian
---
doc/README.distro | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/README.distro b/doc/README.distro
index 3715c8c..e1b7216 100644
--- a/doc/README.distro
+++ b/doc/README.distro
@@ -243,7
I will take this over from Peter Barada, since I work with it daily
at Logic PD.
Signed-off-by: Adam Ford
---
board/logicpd/omap3som/MAINTAINERS | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/board/logicpd/omap3som/MAINTAINERS
b/board/logicpd/omap3som/MAINTAINERS
index ffe2
From: Stephen Warren
If BUILD_TAG is part of KBUILD_CFLAGS, then any time the value changes,
all files get rebuilt. In a continuous integration environment, the value
will change every build. This wastes time assuming that incremental
builds would otherwise occur.
To solve this, remove BUILD_TAG
From: Stephen Warren
This provides runtime test coverage in Travis, in addition to the existing
build coverage.
Signed-off-by: Stephen Warren
---
.travis.yml | 8
1 file changed, 8 insertions(+)
diff --git a/.travis.yml b/.travis.yml
index 8caaeb34553e..18bf2ed4fcdb 100644
--- a/.tra
From: Stephen Warren
The code replaced pexpect with custom code long ago. Don't import the
unused module so it doesn't need to be installed.
Signed-off-by: Stephen Warren
---
test/py/conftest.py | 1 -
1 file changed, 1 deletion(-)
diff --git a/test/py/conftest.py b/test/py/conftest.py
index
Convert ls1021aqds_nor_lpuart and ls1021aqds_ddr4_nor_lpuart
to driver model suport. Enable lpuart port driver.
Signed-off-by: York Sun
CC: Alison Wang
CC: Bin Meng
---
arch/arm/dts/Makefile|1 +
arch/arm/dts/ls1021a-qds-lpuart.dts | 16
Based on the work done by Overo, this seems to help some compilers
that have a hard time fitting all the code into the allocated space.
Signed-off-by: Adam Ford
---
include/configs/omap3_logic.h | 6 ++
1 file changed, 6 insertions(+)
diff --git a/include/configs/omap3_logic.h b/include/con
Since a recent merge 5160def "dm: lpuart: Drop the legacy code",
ls1021aqds_ddr4_nor_lpuart and ls1021aqds_nor_lpuart failed to
compile because they are using legacy driver for lpuart. Following
ls1021atwr, ls1021aqds should be converted as well.
Not tested on boards yet. Serial DM driver is not e
Split duart configuration as device tree file. Move /chosen node
out of board commone device tree. Convert ls1021aqds nor and SD
configurations to driver model support (qspi already uses DM).
Enable ns16550 DM serial driver for nor configurations.
Signed-off-by: York Sun
CC: Alison Wang
CC: Bin
Simon,
Is there a way to exclude specific emails from the CC list when using patman?
The no-longer-existed email address got rejected by SMTP server.
York
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot
From: Stephen Warren
Add documentation describing the new --gdbserver feature, and some common
pytest options.
Signed-off-by: Stephen Warren
---
test/py/README.md | 60 +++
1 file changed, 56 insertions(+), 4 deletions(-)
diff --git a/test/p
From: Stephen Warren
Invoke each "ut"-based unit test as a separate pytest.
Now that the DM unit test runs under test/py, remove the manual shell
script that invokes it.
Signed-off-by: Stephen Warren
Acked-by: Simon Glass
Tested-by: Simon Glass # v2, on sandbox
---
v3: Adapt to new symbol fi
From: Stephen Warren
This information may be useful for both debugging, and processes that want
to perform simple forms of introspection on the U-Boot binary, such as
determining the set of "ut" subtests that are compiled in.
Signed-off-by: Stephen Warren
Acked-by: Simon Glass
---
v3: s/syms/s
On Mon, Feb 08, 2016 at 01:55:10PM -0700, Stephen Warren wrote:
> On 02/08/2016 01:49 PM, Tom Rini wrote:
> >On Thu, Feb 04, 2016 at 04:11:50PM -0700, Stephen Warren wrote:
> >
> >>From: Stephen Warren
> >>
> >>Implement command--line option --gdbserver COMM, which does two things:
> >>
> >>a) Run
On 02/06/2016 02:31 PM, Simon Glass wrote:
Boards with a saved environment may use 'lcd' in their stdout environment
variable, expecting that this will enable output to the LCD. When the board
moves to use driver model for video, this will no-longer work. Add a
work-around to fix this. A warning
On Thu, Feb 04, 2016 at 11:54:20AM -0700, Stephen Warren wrote:
> From: Stephen Warren
>
> The recent change to memalign() caused the allocation failure detection
> code to be dead code; the "retry" logic is always activated under the same
> condition that the original failure detection code is,
On 02/08/2016 01:49 PM, Tom Rini wrote:
On Thu, Feb 04, 2016 at 04:11:50PM -0700, Stephen Warren wrote:
From: Stephen Warren
Implement command--line option --gdbserver COMM, which does two things:
a) Run the sandbox process under gdbserver, using COMM as gdbserver's
communication channel
On Sun, Feb 07, 2016 at 04:50:50PM +0100, Paul Kocialkowski wrote:
> There are various different boards with the same hardware sold as LG Optimus
> Black, such as P970, P970g and KU5900. Since this port is functional for all
> variants, it doesn't make sense to keep references to P970.
>
> Signed
On Sat, Feb 06, 2016 at 07:57:29AM +0100, David Müller (ELSOFT AG) wrote:
> Signed-off-by: David Müller
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.
On Sat, Feb 06, 2016 at 07:57:27AM +0100, David Müller (ELSOFT AG) wrote:
> Signed-off-by: David Müller
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.
On Sat, Feb 06, 2016 at 07:57:26AM +0100, David Müller (ELSOFT AG) wrote:
> Signed-off-by: David Müller
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.
On Sat, Feb 06, 2016 at 07:57:28AM +0100, David Müller (ELSOFT AG) wrote:
> Signed-off-by: David Müller
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.
On Sat, Feb 06, 2016 at 07:57:25AM +0100, David Müller (ELSOFT AG) wrote:
> Signed-off-by: David Müller
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.
On Fri, Feb 05, 2016 at 05:55:14PM +0900, Masahiro Yamada wrote:
> The build command of u-boot-spl.dtb is not constant, but dependent
> on CONFIG_OF_SPL_REMOVE_PROPS. Use $(call if_changed,...) so that
> the change of CONFIG_OF_SPL_REMOVE_PROPS is detected.
>
> Also, add tools/fdtgrep to the dep
On Fri, Feb 05, 2016 at 08:49:39PM +0900, Masahiro Yamada wrote:
> Signed-off-by: Masahiro Yamada
> Reviewed-by: Bin Meng
> Reviewed-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot
On Fri, Feb 05, 2016 at 10:45:47PM -0700, Stephen Warren wrote:
> The ARM Linux kernel requires the DT to be in memory accessible early
> during the boot process. This always happens naturally on the RPi 1,
> since the maximum memory size of 512MiB, and additionally some of that
> is reserved for
On Fri, Feb 05, 2016 at 10:45:46PM -0700, Stephen Warren wrote:
> Update rpi-common.h's documentation that describes the rationale for
> choosing various addresses for standardized variables used by boot
> scripts. This comment was correct when written, but not updated when some
> of the values we
On Wed, Jan 27, 2016 at 04:47:55AM +0100, Marek Vasut wrote:
> Add trivial support for changing the U-Boot command prompt string
> by setting PS1 and PS2 environment variables. Only static variables
> are supported.
>
> Signed-off-by: Marek Vasut
> Reviewed-by: Heiko Schocher
> Reviewed-by: Sim
On Fri, Feb 05, 2016 at 04:12:50PM +0900, Masahiro Yamada wrote:
> Commit 9c11135ce053 ("image: fix getenv_bootm_size() function") fixed
> the case where "bootm_low" is defined, but "bootm_size" is not.
> Instead, it broke the case where neither "bootm_low" nor "bootm_size"
> is defined. Fix this
On Fri, Feb 05, 2016 at 05:55:12PM +0900, Masahiro Yamada wrote:
> These rules are only used for SOCFPGA, SUNXI, but no need to hide
> them from other SoCs.
>
> Signed-off-by: Masahiro Yamada
> Reviewed-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Dig
On Fri, Feb 05, 2016 at 05:55:13PM +0900, Masahiro Yamada wrote:
> FORCE is needed for $(call if_changed,...) to be evaluated every time.
> Otherwise, the command is not executed when the command line has
> changed but any prerequisite has not been updated.
>
> Signed-off-by: Masahiro Yamada
> R
On Thu, Feb 04, 2016 at 12:13:44PM +0200, Stanislav Galabov wrote:
> This patch adds U-Boot API support (used by FreeBSD loader) for MIPS
> platforms.
>
> Signed-off-by: Stanislav Galabov
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
On Thu, Feb 04, 2016 at 04:11:50PM -0700, Stephen Warren wrote:
> From: Stephen Warren
>
> Implement command--line option --gdbserver COMM, which does two things:
>
> a) Run the sandbox process under gdbserver, using COMM as gdbserver's
>communication channel.
>
> b) Disables all timeouts,
On Wed, Feb 03, 2016 at 10:41:34AM -0700, Stephen Warren wrote:
> From: Stephen Warren
>
> Without this, builds default to using new Travis CI infra-structure which
> does no allow sudo. The builds need sudo in order to install the ELDK
> compilers. Consequently, almost all builds fail without t
On Tue, Feb 02, 2016 at 10:15:28PM +0200, Eddy Petrișor wrote:
> The case of memory of size 0 is not that different from a memory of any other
> size, so we remove the duplicate code and treat the small differences when it
> is the case.
>
> Signed-off-by: Eddy Petrișor
Applied to u-boot/master
On Wed, Feb 03, 2016 at 04:08:09PM +0100, Lubomir Rintel wrote:
> Let's set "ethaddr" when we get the ethernet address too, so that
> fdt_fixup_ethernet() sets the address in the device tree and the Linux
> driver can pick it up.
>
> Signed-off-by: Lubomir Rintel
> Tested-by: Stephen Warren
Ap
On Tue, Feb 02, 2016 at 03:51:37PM +0530, Mugunthan V N wrote:
> Add keystone net DT support for k2g evm.
>
> Signed-off-by: Mugunthan V N
> Reviewed-by: Tom Rini
> Acked-by: Joe Hershberger
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
On Tue, Feb 02, 2016 at 03:51:38PM +0530, Mugunthan V N wrote:
> enable net driver model for k2g evm as keystone_net supports
> driver model
>
> Signed-off-by: Mugunthan V N
> Reviewed-by: Tom Rini
> Acked-by: Joe Hershberger
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Descript
On Tue, Feb 02, 2016 at 03:51:36PM +0530, Mugunthan V N wrote:
> enable net driver model for k2e evm as keystone_net supports
> driver model
>
> Signed-off-by: Mugunthan V N
> Reviewed-by: Tom Rini
> Acked-by: Joe Hershberger
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Descript
On Tue, Feb 02, 2016 at 03:51:35PM +0530, Mugunthan V N wrote:
> enable net driver model for k2l evm as keystone_net supports
> driver model
>
> Signed-off-by: Mugunthan V N
> Reviewed-by: Tom Rini
> Acked-by: Joe Hershberger
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Descript
On Tue, Feb 02, 2016 at 03:51:33PM +0530, Mugunthan V N wrote:
> Adopt keystone_net driver to adopt device driver model
>
> Signed-off-by: Mugunthan V N
> Reviewed-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
On Tue, Feb 02, 2016 at 03:51:34PM +0530, Mugunthan V N wrote:
> enable net driver model for k2hk evm as keystone_net supports
> driver model
>
> Signed-off-by: Mugunthan V N
> Reviewed-by: Tom Rini
> Acked-by: Joe Hershberger
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Descrip
On Tue, Feb 02, 2016 at 03:51:32PM +0530, Mugunthan V N wrote:
> When Micrel phy is selected without CONFIG_PHY_MICREL_KSZ9031 or
> CONFIG_PHY_MICREL_KSZ9021 there is a build error. Fixing this
> by adding proper ifdefs
>
> drivers/net/phy/micrel.c:370:39: error: array type has incomplete elemen
On Tue, Feb 02, 2016 at 03:51:31PM +0530, Mugunthan V N wrote:
> remove board_eth_init when CONFIG_DM_ETH is defined
>
> Signed-off-by: Mugunthan V N
> Reviewed-by: Tom Rini
> Acked-by: Joe Hershberger
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
_
On Mon, Feb 01, 2016 at 06:27:21AM -0600, Adam Ford wrote:
> UBIFS is the preferred FS, and YAFFS isn't officially included in
> Linux. Removing this feature reduces the code size.
>
> Signed-off-by: Adam Ford
> Reviewed-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
On Sun, Jan 31, 2016 at 09:16:17AM -0700, Simon Glass wrote:
> Update the README to reflect the current status.
>
> Signed-off-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing
On Sun, Jan 31, 2016 at 01:34:39PM -0600, Adam Ford wrote:
> Android Fastboot requires USB. The TWL4030 PMIC on omap3_logic handles USB
> traffic.
> This patch sets up the USB gadget and Android Fastboot to match what is done
> in the
> omap3_beagle project.
>
> Signed-off-by: Adam Ford
> Rev
On Sun, Jan 31, 2016 at 05:13:33PM -0600, Adam Ford wrote:
> The interface automatically converts one 32-bit word into two 16 words.
> The README said it is permissible to use this flag in that scenario.
>
> Signed-off-by: Adam Ford
> Reviewed-by: Tom Rini
Applied to u-boot/master, thanks!
--
On Sun, Jan 31, 2016 at 09:16:16AM -0700, Simon Glass wrote:
> This does not appear to be used, and has not been converted to driver model
> by the deadline (doc/driver-model/serial-howto.txt).
>
> Signed-off-by: Simon Glass
> Reviewed-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
On Sun, Jan 31, 2016 at 09:16:14AM -0700, Simon Glass wrote:
> This does not appear to be used, and has not been converted to driver model
> by the deadline (doc/driver-model/serial-howto.txt).
>
> Signed-off-by: Simon Glass
> Reviewed-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
On Sun, Jan 31, 2016 at 09:16:12AM -0700, Simon Glass wrote:
> This does not appear to be used, and has not been converted to driver model
> by the deadline (doc/driver-model/serial-howto.txt).
>
> Signed-off-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description
On Sun, Jan 31, 2016 at 09:16:15AM -0700, Simon Glass wrote:
> This does not appear to be used, and has not been converted to driver model
> by the deadline (doc/driver-model/serial-howto.txt).
>
> Signed-off-by: Simon Glass
> Reviewed-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
On Sun, Jan 31, 2016 at 09:16:13AM -0700, Simon Glass wrote:
> This does not appear to be used, and has not been converted to driver model
> by the deadline (doc/driver-model/serial-howto.txt).
>
> Signed-off-by: Simon Glass
> Reviewed-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
On Fri, Jan 29, 2016 at 08:12:34PM -0600, Adam Ford wrote:
> Previously, Omap3_logic assumed X-loader was present. With this
> patch, we can finally replace X-loader with an MLO generated by
> U-Boot. This requires ECC to be setup to match the Linux Kernel
> and the PBIAS confgured for the SD ca
On Fri, Jan 29, 2016 at 09:35:52AM +0100, Lubomir Rintel wrote:
> The P5 header was not present on "Model B" any board prior to Revision 2.0,
> there's no need for a separate device tree.
>
> Also, it looks like "rev2" is incorrectly used to only cover the 512MiB
> memory models; there also were
On Sat, Jan 30, 2016 at 06:43:59AM -0600, Adam Ford wrote:
> The defconfig patch will enable the the SPL and NAND settings.
> The update to Kconfig will allow the SPL to configured in and
> built.
>
> Signed-off-by: Derald D. Woods
> Signed-off-by: Adam Ford
> Reviewed-by: Tom Rini
Applied to
On Thu, Jan 28, 2016 at 10:24:44PM -0700, Stephen Warren wrote:
> This source has been blessed by Dom Cobley at the RPi Foundation, so seems
> like the best source to refer to. It's a superset of and consistent with
> the other sources.
>
> Cc: Lubomir Rintel
> Cc: Eric Anholt
> Signed-off-by:
On Tue, Jan 26, 2016 at 08:42:48AM +0100, Heiko Schocher wrote:
> introduce a README how to use tbot for testing U-Boot
> and/or linux kernels.
>
> Signed-off-by: Heiko Schocher
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
On Wed, Jan 27, 2016 at 04:47:54AM +0100, Marek Vasut wrote:
> Pull the code which displays U-Boot prompt and reads the command line
> into a separate function. No functional change.
>
> Signed-off-by: Marek Vasut
> Reviewed-by: Heiko Schocher
> Reviewed-by: Simon Glass
Applied to u-boot/mast
On Thu, Jan 28, 2016 at 10:24:44PM -0700, Stephen Warren wrote:
> This source has been blessed by Dom Cobley at the RPi Foundation, so seems
> like the best source to refer to. It's a superset of and consistent with
> the other sources.
>
> Cc: Lubomir Rintel
> Cc: Eric Anholt
> Signed-off-by:
On Thu, Jan 21, 2016 at 07:50:07PM -0600, Adam Ford wrote:
> Enhance pin muxing to enable more board features and reduce power
> based on Tony's device tree work.
>
> Signed-off-by: Adam Ford
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
_
On Tue, Jan 26, 2016 at 06:12:20PM -0800, Vikas Manocha wrote:
> This patch removes the uart clock enable from serial driver & move it in the
> board code.
>
> Signed-off-by: Vikas Manocha
> Reviewed-by: Simon Glass
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digita
On Wed, Dec 09, 2015 at 01:13:27PM +0100, Andreas Fenkart wrote:
> Signed-off-by: Andreas Fenkart
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.d
On Wed, Dec 09, 2015 at 01:13:26PM +0100, Andreas Fenkart wrote:
> Signed-off-by: Andreas Fenkart
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.d
On Wed, Dec 09, 2015 at 01:13:25PM +0100, Andreas Fenkart wrote:
> Signed-off-by: Andreas Fenkart
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.d
On Wed, Dec 09, 2015 at 01:13:24PM +0100, Andreas Fenkart wrote:
> disabled original parsing, but not yet removed since the
> argument indexing needs to be fixed
>
> Signed-off-by: Andreas Fenkart
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
On Wed, Dec 09, 2015 at 01:13:23PM +0100, Andreas Fenkart wrote:
> goal is to use getopt for all argument parsing instead of adhoc
> parsing in fw_getenv/fw_setenv functions
>
> Signed-off-by: Andreas Fenkart
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signat
On Wed, Dec 09, 2015 at 01:13:22PM +0100, Andreas Fenkart wrote:
> Signed-off-by: Andreas Fenkart
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.d
On Wed, Dec 09, 2015 at 01:13:21PM +0100, Andreas Fenkart wrote:
> passing argv/argc can produce off-by-one errors
>
> Signed-off-by: Andreas Fenkart
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot
On Sun, Feb 07, 2016 at 08:54:47PM -0600, Derald D. Woods wrote:
> Boot with the Linux zImage and am3517-evm.dtb pair, when SD/MMC media
> is present. This behavior can be overridden by creating a 'uEnv.txt'
> file with 'uenvcmd' defined.
>
> To boot an existing 'uImage', create the following 'uE
On Sat, Feb 06, 2016 at 03:17:04PM +0800, Thomas Chou wrote:
> The following changes since commit 94985cc9d3d7ed991ca8b2627d5894df5ea68f49:
>
> Merge branch 'master' of git://git.denx.de/u-boot-usb (2016-02-04 06:56:23
> -0500)
>
> are available in the git repository at:
>
> git://git.denx
On Sat, Feb 06, 2016 at 07:18:06PM +0100, Anatolij Gustschin wrote:
> Hi Tom,
>
> The following changes since commit 94985cc9d3d7ed991ca8b2627d5894df5ea68f49:
>
> Merge branch 'master' of git://git.denx.de/u-boot-usb (2016-02-04 06:56:23
> -0500)
>
> are available in the git repository at:
>
On Fri, Feb 05, 2016 at 12:52:49PM +0800, Bin Meng wrote:
> Hi Tom,
>
> This includes changes to move all x86 codes to use DM PCI APIs
> completely. Now DM_PCI_COMPAT is disabled in the x86 build.
>
> The following changes since commit 94985cc9d3d7ed991ca8b2627d5894df5ea68f49:
>
> Merge branc
On 02/08/2016 11:18 AM, Scott Wood wrote:
> On Mon, 2016-02-08 at 19:03 +, york sun wrote:
>> On 02/01/2016 09:06 AM, york sun wrote:
>>> On 01/25/2016 09:40 PM, Qianyu Gong wrote:
> -Original Message-
> From: Scott Wood [mailto:o...@buserror.net]
> Sent: Tuesday, Janua
On Mon, Feb 08, 2016 at 11:26:04AM -0800, Sergei Temerkhanov wrote:
> On Sat, Feb 6, 2016 at 12:44 PM, Simon Glass wrote:
> > Hi Eric,
> >
> > On 5 February 2016 at 14:43, Eric Anholt wrote:
> >> For Raspberry Pi, we had the input clock rate to the pl011 fixed in
> >> the rpi.c file, but it may b
On Sat, Feb 6, 2016 at 12:44 PM, Simon Glass wrote:
> Hi Eric,
>
> On 5 February 2016 at 14:43, Eric Anholt wrote:
>> For Raspberry Pi, we had the input clock rate to the pl011 fixed in
>> the rpi.c file, but it may be changed by firmware due to user changes
>> to config.txt. Since the firmware
On Mon, 2016-02-08 at 19:22 +, york sun wrote:
> On 02/08/2016 11:18 AM, Scott Wood wrote:
> > On Mon, 2016-02-08 at 19:03 +, york sun wrote:
> > > On 02/01/2016 09:06 AM, york sun wrote:
> > > > On 01/25/2016 09:40 PM, Qianyu Gong wrote:
> > > > >
> > > > > > -Original Message-
>
On Mon, 2016-02-08 at 19:03 +, york sun wrote:
> On 02/01/2016 09:06 AM, york sun wrote:
> > On 01/25/2016 09:40 PM, Qianyu Gong wrote:
> > >
> > > > -Original Message-
> > > > From: Scott Wood [mailto:o...@buserror.net]
> > > > Sent: Tuesday, January 26, 2016 1:17 AM
> > > > To: Qiany
On 02/01/2016 09:06 AM, york sun wrote:
> On 01/25/2016 09:40 PM, Qianyu Gong wrote:
>>
>>> -Original Message-
>>> From: Scott Wood [mailto:o...@buserror.net]
>>> Sent: Tuesday, January 26, 2016 1:17 AM
>>> To: Qianyu Gong ; u-boot@lists.denx.de
>>> Cc: b07...@freescale.com; Shaohui Xie
>>
On Mon, Feb 08, 2016 at 10:45:34AM -0700, Simon Glass wrote:
> Hi Muganthan,
>
> On 8 February 2016 at 04:23, Mugunthan V N wrote:
> > On Sunday 07 February 2016 01:59 AM, Simon Glass wrote:
> >> Hi Bin,
> >>
> >> On 3 February 2016 at 04:59, Mugunthan V N wrote:
> >>>
> >>> Implement scsi_init(
Hi Tom/Kamil,
Can you please apply this patch.
Cheers,
Vikas
> -Original Message-
> From: Vikas MANOCHA
> Sent: Wednesday, January 27, 2016 2:58 PM
> To: 'Simon Glass'
> Cc: Albert ARIBAUD; Kamil Lulko; U-Boot Mailing List; Peter Griffin; Antonio
> Borneo; re...@wp.pl; kunhuahuang
> Subj
On 02/06/2016 01:39 PM, Simon Glass wrote:
Hi Stephen,
On 6 February 2016 at 13:34, Stephen Warren wrote:
On 02/06/2016 01:30 PM, Simon Glass wrote:
On 4 February 2016 at 16:11, Stephen Warren wrote:
Implement command--line option --gdbserver COMM, which does two things:
a) Run the sandbox
Hi Maxime,
On Mon, Feb 8, 2016 at 12:19 AM, Maxime Ripard <
maxime.rip...@free-electrons.com> wrote:
> Hi Steve,
>
> On Thu, Feb 04, 2016 at 10:51:00AM -0800, Steve Rae wrote:
> > Hi Maxime,
> >
> > On Thu, Feb 4, 2016 at 4:20 AM, Maxime Ripard <
> > maxime.rip...@free-electrons.com> wrote:
> >
>
1 - 100 of 127 matches
Mail list logo