We already could tell the difference in the callback between an import
and "other" which we called interactive. Now add further distinction
between interactive (i.e. running env set / env edit / env ask / etc.
from the U-Boot command line) and programmatic (i.e. when u-boot source
calls any variant
In some cases it can be helpful to have context in the callback about
the calling situation. This is needed for following patches.
Signed-off-by: Joe Hershberger
Reviewed-by: Simon Glass
---
Changes in v2: None
common/cmd_nvedit.c | 10 ++
common/env_attr.c | 5 +++--
common/en
Separate the ability to define tests and assert status of test functions
from the dm tests so they can be used more consistenly throughout all
tests.
Signed-off-by: Joe Hershberger
---
Changes in v2:
-New for version 2
include/dm/test.h | 35 +-
include/test/test.h
Allow the features that use env_attrs to specify regexs for the name
Signed-off-by: Joe Hershberger
Reviewed-by: Simon Glass
---
Changes in v2:
-Added description to README
README | 8 +
common/env_attr.c | 85 ++
inclu
The asserts are sometimes called from the context of the test command
itself so make sure that a return that happens as a result of a failure
is compatible with that command return. When called within a test, the
return value is ignored.
Signed-off-by: Joe Hershberger
---
Changes in v2:
-New for
Add a new "test" subcommand to the env command.
This will run unit tests on the env code. This should be targetable to
any device that supports the env features needed for the tests.
Signed-off-by: Joe Hershberger
---
Changes in v2:
-New for version 2
Makefile| 1 +
common/cm
There's not much point in having a failure count if we always give up on
the first failure. Also stop clearing the entire state between tests.
Make sure that any failures are still passed out to the command line.
Signed-off-by: Joe Hershberger
---
Changes in v2:
-New for version 2
test/dm/tes
Check that the common network stack's env vars conform to the proper
format for IP addresses.
Signed-off-by: Joe Hershberger
Reviewed-by: Simon Glass
---
Changes in v2: None
include/env_flags.h | 12 +++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/include/env_flags.
Add a test of the env_attr_lookup() function.
Signed-off-by: Joe Hershberger
---
Changes in v2:
-New for version 2
test/env/Makefile | 1 +
test/env/attr.c | 62 +++
2 files changed, 63 insertions(+)
create mode 100644 test/env/attr.c
di
This function returned numbers for error codes. Change them to error
codes.
Signed-off-by: Joe Hershberger
Reviewed-by: Simon Glass
---
Changes in v2: None
common/env_attr.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/common/env_attr.c b/common/env_attr.c
index 6
The logic to find the whole matching name was split needlessly between
the reverse_strstr function and its caller. Fully contain it to make the
interface for calling it more consistent.
Signed-off-by: Joe Hershberger
---
Changes in v2:
-Fix bisectability issue
-Fix corner case in reverse_name_s
Enable the new env unit tests on sandbox.
Signed-off-by: Joe Hershberger
---
Changes in v2:
-New for version 2
configs/sandbox_defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/configs/sandbox_defconfig b/configs/sandbox_defconfig
index 2bf3799..ff05c95 100644
--- a/configs/sandbox
Enable regex support on sandbox.
Signed-off-by: Joe Hershberger
Reviewed-by: Simon Glass
---
Changes in v2: None
configs/sandbox_defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/configs/sandbox_defconfig b/configs/sandbox_defconfig
index 5de7fbe..340f5eb 100644
--- a/configs/sand
The behavior of the env attrs depends on CONFIG_REGEX. Add an additional
test if that variable is set.
Signed-off-by: Joe Hershberger
---
Changes in v2:
-New for version 2
test/env/attr.c | 27 +++
1 file changed, 27 insertions(+)
diff --git a/test/env/attr.c b/test/en
Use a regular expression to apply the default formatting flags for all
ethaddr env vars.
Signed-off-by: Joe Hershberger
Reviewed-by: Simon Glass
---
Changes in v2:
-Added comments about the use of .flags in the dm eth test
include/env_flags.h | 11 ---
test/dm/eth.c | 3 +++
2
Instead of checking for changes to the env each time we enter the
net_loop, use the env callbacks to update the values of the variables.
Don't update the variables when the source was programmatic, since the
variables were the source of the new value.
Signed-off-by: Joe Hershberger
Reviewed-by: S
The defconfigs should not be edited directly. They should be generated
by editing the .config (through menuconfig or whatever) and then run
make savedefconfig to have the Kconfig system generate a clean defconfig
I did this for sandbox here with no actual changes.
Signed-off-by: Joe Hershberger
Enable some additional ENV commands in sandbox to aid in build testing
and run testing.
Signed-off-by: Joe Hershberger
Reviewed-by: Simon Glass
---
Changes in v2: None
include/configs/sandbox.h | 5 +
1 file changed, 5 insertions(+)
diff --git a/include/configs/sandbox.h b/include/config
Hey Simon, Masahiro
May I suggest an alternative solution to this issue.
What if each Kconfigs option could be set as "y" (compile for u-boot only )or
"s" (compile for u-boot and SPL)
Just as the kernel can set Kconfig to "y" or "m".
With minor modifications to the Makefile, SPL target will com
On Wed, Apr 29, 2015 at 10:25 AM, Simon Glass wrote:
> Add a function to return the address of the Interrupt Descriptor Table.
>
> Signed-off-by: Simon Glass
> ---
>
> Changes in v2: None
>
> arch/x86/cpu/interrupts.c| 5 +
> arch/x86/include/asm/interrupt.h | 2 ++
> 2 files changed
Hi Simon,
On Wed, Apr 29, 2015 at 10:08 AM, Simon Glass wrote:
> Hi Bin,
>
> On 28 April 2015 at 02:16, Bin Meng wrote:
>> Hi Simon,
>>
>> On Tue, Apr 28, 2015 at 6:48 AM, Simon Glass wrote:
>>> Add a function to return the address of the Interrupt Descriptor Table.
>>>
>>> Signed-off-by: Simon
On Wed, Apr 29, 2015 at 10:25 AM, Simon Glass wrote:
> Provide access to this x86 instruction from C code.
>
> Signed-off-by: Simon Glass
> ---
>
> Changes in v2:
> - Remove unnecessary \t\n after mfence assembler instruction
>
> arch/x86/include/asm/cpu.h | 5 +
> 1 file changed, 5 insertio
Hi Simon,
On Wed, Apr 29, 2015 at 10:25 AM, Simon Glass wrote:
> This provides a way of passing information to Linux without requiring the
> full ACPI horror. Provide a rudimentary implementation sufficient to be
> recognised and parsed by Linux.
>
> Signed-off-by: Simon Glass
> ---
Looks good,
Update the ci_udc driver to support bulk transfer
and also added capability of having multiple dtds
if requested data is more than 16K.
These changes are tested for both the DFU and lthor.
Signed-off-by: Siva Durga Prasad Paladugu
---
Changes for v2:
- Rebase it to u-boot-usb/master
---
drivers/
Hi Simon,
On Wed, Apr 29, 2015 at 10:25 AM, Simon Glass wrote:
> It is useful to be able to keep track of the available CPUs in a multi-CPU
> system. This uclass is mostly intended for use with SMP systems.
>
> The uclass provides methods for getting basic information about each CPU.
>
> Signed-o
Hi Simon,
On Wed, Apr 29, 2015 at 10:25 AM, Simon Glass wrote:
> Add a function similar to print_size() that works for frequencies. It can
> handle from Hz to GHz.
>
> Signed-off-by: Simon Glass
> ---
>
> Changes in v2:
> - Correct bugs in number output
>
> include/display_options.h | 11 ++
On Wed, Apr 29, 2015 at 10:25 AM, Simon Glass wrote:
> Before adding one more function, create a separate header to help reduce
> the size of common.h. Add the missing function comments and tidy up.
>
> Signed-off-by: Simon Glass
> ---
>
> Changes in v2:
> - Use capitals for the header guard
> -
The change to refactor these functions created a regression.
commit c1d6f91952d0761f61b0f0f96e4c7aa32eee2788
Author: Przemyslaw Marczak
Date: Wed Apr 15 13:07:17 2015 +0200
dm: core: add internal functions for getting the device without probe
With this change, the dm unit tests started failing
On Wed, Apr 29, 2015 at 10:11 AM, Simon Glass wrote:
> Now that reset_cpu() functions correctly, use it instead of directly
> accessing the port.
>
> Signed-off-by: Simon Glass
> Reviewed-by: Bin Meng
> ---
>
> Changes in v2: None
>
> arch/x86/cpu/quark/quark.c | 2 +-
> 1 file changed, 1 inser
On Wed, Apr 29, 2015 at 10:11 AM, Simon Glass wrote:
> Now that reset_cpu() functions correctly, use it instead of directly
> accessing the port.
>
> Signed-off-by: Simon Glass
> ---
>
> Changes in v2:
> - Correct call to reset_cpu() which was missing a parameter!
> - Tidy up reset calls to do th
On Wed, Apr 29, 2015 at 10:11 AM, Simon Glass wrote:
> The existing code is pretty ancient and is unreliable on modern hardware.
> Generally it will hang.
>
> We can use port 0xcf9 to initiate reset on more modern hardware (say in the
> last 10 years). Update the reset_cpu() function to do this, a
Hi Simon,
On Wed, Apr 29, 2015 at 10:25 AM, Simon Glass wrote:
> This series adds a new CPU uclass which is intended to be useful on any
> architecture. So far it has a very simple interface and a command to show
> CPU details.
>
> This series also introduces multi-core init for x86. It is implem
+Masahiro (new address)
Hi Hanna,
On 27 April 2015 at 07:43, Hanna Hawa wrote:
> Hi everyone,
>
>
>
> I’m working on the latest u-boot 2015.04 trying to rebase my repository to
> latest code.
I would suggest going with upstream/master (targeting 2015.07) since
there are several driver model cha
It is useful to be able to keep track of the available CPUs in a multi-CPU
system. This uclass is mostly intended for use with SMP systems.
The uclass provides methods for getting basic information about each CPU.
Signed-off-by: Simon Glass
---
Changes in v2:
- Change header guard to capital le
Add a function to return the address of the Interrupt Descriptor Table.
Signed-off-by: Simon Glass
---
Changes in v2: None
arch/x86/cpu/interrupts.c| 5 +
arch/x86/include/asm/interrupt.h | 2 ++
2 files changed, 7 insertions(+)
diff --git a/arch/x86/cpu/interrupts.c b/arch/x86/cp
Since we do these sorts of operations a lot, it is useful to have a simpler
API, similar to clrsetbits_le32().
Signed-off-by: Simon Glass
---
Changes in v2: None
arch/x86/include/asm/msr.h | 19 +++
1 file changed, 19 insertions(+)
diff --git a/arch/x86/include/asm/msr.h b/arc
This driver supports multi-core init and sets up the CPU frequencies
correctly.
Signed-off-by: Simon Glass
---
Changes in v2: None
arch/x86/cpu/baytrail/Makefile | 1 +
arch/x86/cpu/baytrail/cpu.c | 206 +++
arch/x86/include/asm/arch-baytrai
We don't need to support really old x86 CPUs, so drop this code.
Signed-off-by: Simon Glass
---
Changes in v2: None
arch/x86/cpu/lapic.c | 20
arch/x86/include/asm/lapic.h | 7 ---
2 files changed, 12 insertions(+), 15 deletions(-)
diff --git a/arch/x86/cpu/l
Provide access to this x86 instruction from C code.
Signed-off-by: Simon Glass
---
Changes in v2:
- Remove unnecessary \t\n after mfence assembler instruction
arch/x86/include/asm/cpu.h | 5 +
1 file changed, 5 insertions(+)
diff --git a/arch/x86/include/asm/cpu.h b/arch/x86/include/asm/c
Add a simple command which provides access to a list of available CPUs along
with descriptions and basic information.
Signed-off-by: Simon Glass
Reviewed-by: Bin Meng
---
Changes in v2: None
common/Kconfig | 8
common/Makefile | 1 +
common/cmd_cpu.c | 113
Add MSR numbers for the fixed MTRRs.
Signed-off-by: Simon Glass
Reviewed-by: Bin Meng
---
Changes in v2: None
arch/x86/include/asm/mtrr.h | 14 ++
1 file changed, 14 insertions(+)
diff --git a/arch/x86/include/asm/mtrr.h b/arch/x86/include/asm/mtrr.h
index fda4eae..3841593 100644
Add a subset of this header file from Linux 4.0 to support atomic operations
in U-Boot.
Signed-off-by: Simon Glass
Reviewed-by: Bin Meng
---
Changes in v2: None
arch/x86/include/asm/atomic.h | 115 ++
1 file changed, 115 insertions(+)
create mode 10064
This permits init of additional CPU cores after relocation and when driver
model is ready.
Signed-off-by: Simon Glass
---
Changes in v2: None
arch/x86/cpu/cpu.c| 37 +
arch/x86/include/asm/cpu.h| 14 ++
arch/x86/include/as
Most modern x86 CPUs include more than one CPU core. The OS normally requires
that these 'Application Processors' (APs) be brought up by the boot loader.
Add the required support to U-Boot to init additional APs.
Signed-off-by: Simon Glass
---
Changes in v2: None
arch/x86/Kconfig
When we start up additional CPUs we want them to use the same Global
Descriptor Table. Store the address of this in global_data so we can
reference it later.
Signed-off-by: Simon Glass
Reviewed-by: Bin Meng
---
Changes in v2: None
arch/x86/cpu/cpu.c | 1 +
arch/x86/include/asm
Some device tree nodes do not have compatible strings but do require
drivers. This is pretty rare, and somewhat unfortunate. Add a function
to permit creation of a driver for any device tree node.
Signed-off-by: Simon Glass
---
Changes in v2: None
drivers/core/lists.c | 9 -
include/d
This printf() should not have made it into the code.
Signed-off-by: Simon Glass
Reviewed-by: Bin Meng
---
Changes in v2: None
arch/x86/cpu/baytrail/valleyview.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/x86/cpu/baytrail/valleyview.c
b/arch/x86/cpu/baytrail/valleyview.c
index a3
Try to make it a little clearer.
Signed-off-by: Simon Glass
Reviewed-by: Bin Meng
---
Changes in v2: None
common/board_f.c | 9 -
1 file changed, 4 insertions(+), 5 deletions(-)
diff --git a/common/board_f.c b/common/board_f.c
index 322e070..fbbad1b 100644
--- a/common/board_f.c
+++
Enable the CPU uclass and Simple Firmware interface for Minnowbaord MAX. This
enables multi-core support in Linux.
Signed-off-by: Simon Glass
---
Changes in v2: None
arch/x86/dts/minnowmax.dts | 20
configs/minnowmax_defconfig | 4
2 files changed, 24 insertions(+)
This provides a way of passing information to Linux without requiring the
full ACPI horror. Provide a rudimentary implementation sufficient to be
recognised and parsed by Linux.
Signed-off-by: Simon Glass
---
Changes in v2:
- Rename CONFIG_SFI to CONFIG_GENERATE_SFI_TABLE and move within Kconfig
Before adding one more function, create a separate header to help reduce
the size of common.h. Add the missing function comments and tidy up.
Signed-off-by: Simon Glass
---
Changes in v2:
- Use capitals for the header guard
- Change 'print' to 'Print' in comment
include/common.h | 16
Add a function similar to print_size() that works for frequencies. It can
handle from Hz to GHz.
Signed-off-by: Simon Glass
---
Changes in v2:
- Correct bugs in number output
include/display_options.h | 11 +++
lib/display_options.c | 38 ++
2 fi
This is annoying during development and serves no useful purpose since
warnings are clearly displayed now that we are using Kbuild. Remove this
option.
Signed-off-by: Simon Glass
Reviewed-by: Bin Meng
---
Changes in v2: None
arch/x86/cpu/config.mk | 2 +-
1 file changed, 1 insertion(+), 1 del
This series adds a new CPU uclass which is intended to be useful on any
architecture. So far it has a very simple interface and a command to show
CPU details.
This series also introduces multi-core init for x86. It is implemented and
enabled on Minnowboard MAX, a single/dual-core Atom board. The C
Now that reset_cpu() functions correctly, use it instead of directly
accessing the port.
Signed-off-by: Simon Glass
---
Changes in v2:
- Correct call to reset_cpu() which was missing a parameter!
- Tidy up reset calls to do the correct reset type
arch/x86/cpu/ivybridge/cpu.c | 5 ++---
a
Now that reset_cpu() functions correctly, use it instead of directly
accessing the port on boards that use a Firmware Support Package (FSP).
Signed-off-by: Simon Glass
Reviewed-by: Bin Meng
---
Changes in v2: None
arch/x86/lib/fsp/fsp_common.c | 7 ---
1 file changed, 7 deletions(-)
diff
Now that reset_cpu() functions correctly, use it instead of directly
accessing the port.
Signed-off-by: Simon Glass
Reviewed-by: Bin Meng
---
Changes in v2: None
arch/x86/cpu/quark/quark.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/x86/cpu/quark/quark.c b/arch/x8
The existing code is pretty ancient and is unreliable on modern hardware.
Generally it will hang.
We can use port 0xcf9 to initiate reset on more modern hardware (say in the
last 10 years). Update the reset_cpu() function to do this, and add a new
'full reset' function to perform a full power cycl
Hi Bin,
On 28 April 2015 at 02:16, Bin Meng wrote:
> Hi Simon,
>
> On Tue, Apr 28, 2015 at 6:48 AM, Simon Glass wrote:
>> Add a function to return the address of the Interrupt Descriptor Table.
>>
>> Signed-off-by: Simon Glass
>> ---
>>
>> arch/x86/cpu/interrupts.c| 5 +
>> arch/x8
Hi Bin,
On 26 April 2015 at 22:58, Bin Meng wrote:
> Hi Simon,
>
> On Sat, Apr 25, 2015 at 11:04 PM, Simon Glass wrote:
>> Now that reset_cpu() functions correctly, use it instead of directly
>> accessing the port.
>>
>> Signed-off-by: Simon Glass
>> ---
>>
>> arch/x86/cpu/ivybridge/cpu.c
Hi Bin,
On 26 April 2015 at 22:56, Bin Meng wrote:
> Hi Simon,
>
> On Sat, Apr 25, 2015 at 11:04 PM, Simon Glass wrote:
>> The existing code is pretty ancient and is unreliable on modern hardware.
>> Generally it will hang.
>>
>> We can use port 0xcf9 to initiate reset on more modern hardware (s
Hi Tom,
There is actually an EEPROM on new boards that we'd like to use in the
future in order to detect that we should use DDR3 (and frankly,
everything will be DDR3 going forward). We still don't have
everything sorted in hardware and at the factories for programming the
eeprom though. This pa
The following changes since commit 1733259d25015c28c47990ec11af99b3f62f811c:
Merge branch 'master' of git://git.denx.de/u-boot-video (2015-04-20 09:13:52
-0400)
are available in the git repository at:
git://git.denx.de/u-boot-socfpga.git HEAD
for you to fetch changes up to e5c57eea4f4ac8c2
On Tue, Apr 28, 2015 at 04:25:44PM -0700, Ash Charles wrote:
> Some variants of the Gumstix Pepper board use DDR3 memory instead of
> DDR2. This adds a machine variant to support these DDR3-based boards
> which can be built as 'pepper_ddr3_defconfig' rather than the normal
> 'pepper_defconfig'.
>
On Mon, Apr 27, 2015 at 02:52:49PM -0600, Simon Glass wrote:
> Hi Tom,
>
> On 25 April 2015 at 11:54, Tom Rini wrote:
> > On Sat, Apr 25, 2015 at 11:46:43AM -0600, Simon Glass wrote:
> >> The descriptor provided with the FSP does not seem to work. Update the
> >> instructions to use the descripto
This is because the gd pointer is not set early enough anymore,
such that the i2c_set_bus_num in get_board_revision can safely
execute. This results in a console hang at SPL and the boot does
not proceed.
This piece of code is anyway necessary only for really old Overo
boards with revision numbers
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/ove
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 from
On 24 April 2015 at 07:34, Hans de Goede wrote:
> Hi,
>
>
> On 24-04-15 14:42, Simon Glass wrote:
>>
>> Hi Hans,
>>
>> On 23 April 2015 at 10:15, Simon Glass wrote:
>>>
>>> Hi Hans,
>>>
>>> On 23 April 2015 at 00:55, Hans de Goede wrote:
Hi,
On 22-04-15 19:20, Simon Glas
On 20 April 2015 at 07:07, Simon Glass wrote:
> U-Boot on coreboot does not have a driver for the PCH so cannot see the
> SPI peripheral now that it has moved inside the PCH. Add a simple driver so
> that SPI flash works again.
>
> Signed-off-by: Simon Glass
> ---
>
> arch/x86/cpu/coreboot/pci.c
Some variants of the Gumstix Pepper board use DDR3 memory instead of
DDR2. This adds a machine variant to support these DDR3-based boards
which can be built as 'pepper_ddr3_defconfig' rather than the normal
'pepper_defconfig'.
Signed-off-by: Ash Charles
---
board/gumstix/pepper/MAINTAINERS | 1
On 19 April 2015 at 22:05, Simon Glass wrote:
> The MRC image is incorrect, or at least this one now does not seem to
> work. Fix it.
>
> Signed-off-by: Simon Glass
> ---
>
> doc/README.x86 | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Applied to u-boot-x86.
__
On Wed, Apr 29, 2015 at 09:05:57AM +1000, Peter Howard wrote:
> Signed-off-by: Peter Howard
> ---
> configs/omapl138_lcdk_defconfig | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/configs/omapl138_lcdk_defconfig b/configs/omapl138_lcdk_defconfig
> index 8f19721..4445c38 100644
> --- a/
If regular NAND booting fails to find a valid uImage in the
kernel partition in NAND, try to boot using a zImage and dtb found
in a UBI volume in the rootfs partition. This is the NAND analog
of mmc zImage booting for device-tree based kernels.
Signed-off-by: Ash Charles
Signed-off-by: Arun Bhar
Overo COMs have NAND flash that requires 4-bit ECC or better except for
the first sector which can use 1-bit ECC. The boot ROM expects to load
a payload from NAND written using 1-bit hardware-based ECC. In short,
write SPL to NAND something like this (4 times for redundancy):
#> nandecc hw
#> n
Signed-off-by: Ash Charles
---
board/overo/overo.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/board/overo/overo.c b/board/overo/overo.c
index 3f14b03..d5ac1ad 100644
--- a/board/overo/overo.c
+++ b/board/overo/overo.c
@@ -193,6 +193,7 @@ int misc_init_r(void)
expa
From: Arun Bharadwaj
Overo boards with board revision 0 use a 256MB RAM + 256MB NAND chip.
For an unknown reason, these boards fail to boot a 3.17.8 kernel based
on the RAM size configuration in u-boot. As a workaround, fake out the
RAM setting in u-boot (discussion [1]).
[1] http://gumstix.8.x
The Gumstix Arbor43C expansion board [1] uses a customized device tree
file. When this expansion board is detected, load this file.
[1] https://store.gumstix.com/index.php/products/635/
Signed-off-by: Ash Charles
---
board/overo/overo.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/board
This series collects several board-enablement fixes for the Gumstix
Overo as well as switching to BCH8 for NAND ECC, updating the UBI
boot sequence for DTB-based boots, and correcting a RAM configuration
for Overo COMs of Revision 0.
This series follows after the series previously submitted:
http:
From: Arun Bharadwaj
Signed-off-by: Arun Bharadwaj
Signed-off-by: Ash Charles
---
board/overo/overo.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/board/overo/overo.c b/board/overo/overo.c
index 2845e7c..3f14b03 100644
--- a/board/overo/overo.c
+++ b/board/overo/overo.c
@@ -185,6 +185,7
Signed-off-by: Peter Howard
---
configs/omapl138_lcdk_defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/configs/omapl138_lcdk_defconfig b/configs/omapl138_lcdk_defconfig
index 8f19721..4445c38 100644
--- a/configs/omapl138_lcdk_defconfig
+++ b/configs/omapl138_lcdk_defconfig
@@ -1,3 +
Dear Joe,
In message
you wrote:
>
> > I noticed you asked for a reference to the original hush code that is the
> > origin for U-Boot's adaptation. I couldn't find a reply to that question. I
> > also haven't been able to find anything with a quick we search. Do you know
> > where it did come f
Hi Tom,
A few bug fixes.
The following changes since commit cc555bd4f40a652471df4a3621d45ee57df0ca11:
Merge branch 'master' of git://git.denx.de/u-boot-spi (2015-04-28
07:28:43 -0400)
are available in the git repository at:
http://git.denx.de/u-boot-dm.git
for you to fetch changes up to
On Wed, Apr 22, 2015 at 8:04 AM, Maxime Ripard
wrote:
> Hi,
>
> I've been trying to use fastboot (and especially the boot command) on
> sunxi recently, and got it to work pretty fine (apart from PSCI, but
> that's another story).
>
> The only thing that worries me a bit is that by default, both th
This register is reserved and shouldn't have been exposed.
Accessing it may have unexpected result on different SoCs.
Signed-off-by: York Sun
---
include/fsl_immap.h |4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/include/fsl_immap.h b/include/fsl_immap.h
index d63cc19.
Hi James,
On Tue, Apr 28, 2015 at 2:13 PM, James Chargin wrote:
> Dear Joe,
>
> On 04/28/2015 11:35 AM, Joe Hershberger wrote:
>>
>> Hi James,
>>
>> On Tue, Apr 28, 2015 at 1:19 PM, James Chargin
>> wrote:
>>>
>>> Dear Joe Hershberger,
>>>
>>> On 04/28/2015 11:00 AM, Joe Hershberger wrote:
Dear Joe,
On 04/28/2015 11:35 AM, Joe Hershberger wrote:
Hi James,
On Tue, Apr 28, 2015 at 1:19 PM, James Chargin wrote:
Dear Joe Hershberger,
On 04/28/2015 11:00 AM, Joe Hershberger wrote:
Hi Joakim,
On Mon, Apr 27, 2015 at 8:39 AM, Joakim Tjernlund
wrote:
Trying to get a better handl
On Tue, Apr 28, 2015 at 1:52 PM, Tom Rini wrote:
>> Is CONFIG_SYS_USB_EVENT_POLL defined in the config? I found that without
>> that usb input was not reliable. Even with it enabled some wireless
>> keyboards behaved poorly.
>
> Just checked and yes it's set. I think I also had these not worki
Hi James,
On Tue, Apr 28, 2015 at 1:19 PM, James Chargin wrote:
> Dear Joe Hershberger,
>
> On 04/28/2015 11:00 AM, Joe Hershberger wrote:
>>
>> Hi Joakim,
>>
>> On Mon, Apr 27, 2015 at 8:39 AM, Joakim Tjernlund
>> wrote:
>>>
>>> Trying to get a better handle of HUSH shell expressions, this does
Dear Joe Hershberger,
On 04/28/2015 11:00 AM, Joe Hershberger wrote:
Hi Joakim,
On Mon, Apr 27, 2015 at 8:39 AM, Joakim Tjernlund
wrote:
Trying to get a better handle of HUSH shell expressions, this does not work as
I expect:
=> false && true || echo ECHO
=> false && false || echo ECHO
none
Hi Joakim,
On Mon, Apr 27, 2015 at 8:39 AM, Joakim Tjernlund
wrote:
> Trying to get a better handle of HUSH shell expressions, this does not work
> as I expect:
> => false && true || echo ECHO
> => false && false || echo ECHO
>
> none prints ECHO, seems like a bug?
I think it works as it should
To replicate:
1. add to include/configs/p1_p2_rdb_pc.h "#define CONFIG_CMD_GPIO"
2. run `make P1020RDB-PC_defconfig`
3. run CROSS_COMPILE=powerpc-linux- make
and you will get:
common/built-in.o: In function `do_gpio':
u-boot/common/cmd_gpio.c:186: undefined reference to `gpio_request'
u-boot/commo
On Tue, Apr 28, 2015 at 10:11 AM, Stefan Roese wrote:
> Hi Tim,
>
> On 28.04.2015 17:44, Tim Harvey wrote:
>>
>> The MX6 has OTP bits specifying the processor speed grade as well as
>> temperature grade.
>>
>> This series adds functions to return this information as well as adds the
>> details to
Hi Tim,
On 28.04.2015 17:44, Tim Harvey wrote:
The MX6 has OTP bits specifying the processor speed grade as well as
temperature grade.
This series adds functions to return this information as well as adds the
details to the CPU info displayed.
Additionally we use the temperature grade to repla
On Tue, Apr 28, 2015 at 1:52 PM, Tom Rini wrote:
> On Tue, Apr 28, 2015 at 06:45:43PM +0200, Jon Nettleton wrote:
>> On Tue, Apr 28, 2015 at 6:39 PM, Tom Rini wrote:
>>
>> > On Tue, Apr 28, 2015 at 12:20:46PM -0300, Fabio Estevam wrote:
>> > > On Tue, Apr 28, 2015 at 12:11 PM, Fabio Estevam
>> >
On Tue, Apr 28, 2015 at 06:45:43PM +0200, Jon Nettleton wrote:
> On Tue, Apr 28, 2015 at 6:39 PM, Tom Rini wrote:
>
> > On Tue, Apr 28, 2015 at 12:20:46PM -0300, Fabio Estevam wrote:
> > > On Tue, Apr 28, 2015 at 12:11 PM, Fabio Estevam
> > wrote:
> > > > Hi Tom,
> > > >
> > > > On Tue, Apr 28,
On Tue, Apr 28, 2015 at 1:45 PM, Jon Nettleton wrote:
...
> Is CONFIG_SYS_USB_EVENT_POLL defined in the config? I found that without
> that usb input was not reliable. Even with it enabled some wireless
> keyboards behaved poorly.
For the keyboard it may indeed help but what about the USB pendr
On Tue, Apr 28, 2015 at 6:39 PM, Tom Rini wrote:
> On Tue, Apr 28, 2015 at 12:20:46PM -0300, Fabio Estevam wrote:
> > On Tue, Apr 28, 2015 at 12:11 PM, Fabio Estevam
> wrote:
> > > Hi Tom,
> > >
> > > On Tue, Apr 28, 2015 at 11:48 AM, Tom Rini wrote:
> > >
> > >> Since we have FEC do we really
On Tue, Apr 28, 2015 at 12:39:41PM -0400, Tom Rini wrote:
> On Tue, Apr 28, 2015 at 12:20:46PM -0300, Fabio Estevam wrote:
> > On Tue, Apr 28, 2015 at 12:11 PM, Fabio Estevam wrote:
> > > Hi Tom,
> > >
> > > On Tue, Apr 28, 2015 at 11:48 AM, Tom Rini wrote:
> > >
> > >> Since we have FEC do we re
On 22/04/2015 17:37, Nikolay Dimitrov wrote:
> This is proposal for clamping the MMDC/DDR3 clocks to the maximum supported
> frequencies as per imx6 SOC models, and for dynamically calculating valid
> clock value based on mem_speed.
>
> Currently the code uses impossible values for mem_speed (1333
1 - 100 of 186 matches
Mail list logo