On 30.09.2019 10:28, Eugen Hristev - M18282 wrote:
> From: Eugen Hristev
>
> Add onewire node for w1 support.
>
> Signed-off-by: Eugen Hristev
> ---
Applied this series to u-boot-atmel/next
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists
Applied this series to u-boot-atmel/next, thanks !
On 27.09.2019 16:08, Tudor Ambarus - M18064 wrote:
> From: Tudor Ambarus
>
> Add support for sam9x60 SOC, sam9x60ek board, dts, NAND and QSPI.
> Add defconfigs for MMC, NAND and QSPI.
>
> v3:
> - Enable MII utility commands and phy in qspi & na
On 01.10.2019 11:59, Tudor Ambarus - M18064 wrote:
> From: Tudor Ambarus
>
> JESD216 allow vendors to define their own SFDP tables.
>
> Add Microchip SFDP parser. The vendor table is allocated using
> resource-managed kmalloc - the table will be freed on driver detach.
> It will be accessible
In the current implementation, EFI_SIMPLEFILE_SYSTEM_PROTOCOL is always
installed to all the partitions even if some of them may house no file
system.
With this patch, that protocol will be installed only if any file system
exists.
Signed-off-by: AKASHI Takahiro
Reviewed-by: Heinrich Schuchardt
Currently, a whole disk without any partitions is not associated
with EFI_SIMPLE_FILE_SYSTEM_PROTOCOL. So even if it houses some
file system, there is a chance that we may not be able to access
it, particularly, when accesses are to be attempted after searching
that protocol against a device handle
fs_close() closes the connection to a file system which opened with
either fs_set_blk_dev() or fs_set_dev_with_part(). Many file system
functions implicitly call fs_close(), e.g. fs_closedir(), fs_exist(),
fs_ln(), fs_ls(), fs_mkdir(), fs_read(), fs_size(), fs_write()
and fs_unlink().
So just expor
This function is a variant of fs_get_type_name() and returns a filesystem
type with which the current device is associated.
We don't want to export fs_type variable directly because we have to take
care of it consistently within fs.c.
Signed-off-by: AKASHI Takahiro
Reviewed-by: Heinrich Schuchard
fs_ls(), fs_mkdir() and fs_unlink() sets fs_type to FS_TYPE_ANY
explicitly, but it is redundant as they call fs_close().
So just remove those lines.
Signed-off-by: AKASHI Takahiro
---
fs/fs.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/fs/fs.c b/fs/fs.c
index 64ba25fea8bf..b17b76a46ae0
Changes in v4 (Oct 7, 2019)
* modify commit message of patch#1 after Heinrich's suggestion
* add patch#2 after Heinrich's suggestion
* add a function description to efi_fs_exists() after Heinrich's
suggestion (patch#4)
Changes in v3 (Oct 4, 2019)
* add patch#1
* use newly-added fs_get_type() ins
With this patch, when setting UEFI variable with "env set -e" command,
we will be able to
- specify vendor guid with "-guid guid",
- specify variable attributes, BOOTSERVICE_ACCESS, RUNTIME_ACCESS,
respectively with "-bs" and "-rt",
- append a value instead of overwriting with "-a",
- use memory
On Sun, Oct 06, 2019 at 09:42:30PM -0400, Tom Rini wrote:
> On Mon, Oct 07, 2019 at 09:47:46AM +0900, AKASHI Takahiro wrote:
> > On Sat, Oct 05, 2019 at 08:53:39AM +0200, Heinrich Schuchardt wrote:
> > > On 10/4/19 3:20 AM, AKASHI Takahiro wrote:
> > > >With this patch, when setting UEFI variable w
On Sun, 2019-10-06 at 12:28 -0400, Simon South wrote:
> These two patches fix small issues with the Rockchip RK3328 SDRAM
> driver that prevented my PINE64 ROCK64 from booting and running
> normally using U-Boot's TPL [1].
>
> The first patch updates the phy_dll_bypass_set() function to use the
>
On Fri, Oct 04, 2019 at 09:15:19PM +0200, Heinrich Schuchardt wrote:
> On 10/4/19 5:05 AM, AKASHI Takahiro wrote:
> > Currently, a whole disk without any partitions is not associated
> > with EFI_SIMPLE_FILE_SYSTEM_PROTOCOL. So even if it houses some
> > file system, there is a chance that we may n
On Fri, Oct 04, 2019 at 09:13:08PM +0200, Heinrich Schuchardt wrote:
> On 10/4/19 5:05 AM, AKASHI Takahiro wrote:
> > In the current implementation, EFI_SIMPLEFILE_SYSTEM_PROTOCOL is always
> > installed to all the partitions even if some of them may house no file
> > system.
> >
> > With this patc
On Fri, Oct 04, 2019 at 09:04:59PM +0200, Heinrich Schuchardt wrote:
> On 10/4/19 5:05 AM, AKASHI Takahiro wrote:
> > This function is a variant of fs_get_type_name() and returns a filesystem
> > type with which the current device is associated.
> > We don't want to export fs_type variable directly
On Fri, Oct 04, 2019 at 08:53:00PM +0200, Heinrich Schuchardt wrote:
> On 10/4/19 5:05 AM, AKASHI Takahiro wrote:
> > This function is always paired with either fs_set_blk_desc() or
> > fs_set_blk_desc_with_part(). So just export it.
> >
> > Signed-off-by: AKASHI Takahiro
> > ---
> > fs/fs.c
On Sat, Oct 5, 2019 at 11:33 PM Bin Meng wrote:
>
> On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> >
> > At present this hedaer is only available on x86. To allow sandbox to use
> > it for testing, move it to a common location.
> >
> > Signed-off-by: Simon Glass
> > ---
> >
> > arch/x86/
On Sat, Oct 5, 2019 at 11:30 PM Bin Meng wrote:
>
> On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> >
> > At present libfdt is included in SPL/TPL if SPL/TPL_OF_CONTROL is enabled.
> > But if of-platdata is in use this is not required. Update the condition to
> > avoid building this extra c
On Sat, Oct 5, 2019 at 11:30 PM Bin Meng wrote:
>
> On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> >
> > U-Boot has two distinct phases: before and after relocation. These are
> > commonly referred to as F (running from Flash) and R (Relocated and
> > running from RAM). Some drivers want t
On Fri, Oct 04, 2019 at 08:09:57AM +0200, Heinrich Schuchardt wrote:
> On 10/4/19 6:45 AM, AKASHI Takahiro wrote:
> >This patch will lift the upper limit of maximum path length.
> >
> >Signed-off-by: AKASHI Takahiro
>
> Thanks for addressing this issue.
>
> Please, have a look at the side effect
On Sun, Oct 6, 2019 at 6:04 PM Bin Meng wrote:
>
> On Sat, Oct 5, 2019 at 11:30 AM Bin Meng wrote:
> >
> > On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> > >
> > > At present these functions are stubbed out. For more comprehensive testing
> > > with PCI devices it is useful to be able to
On Sun, Oct 6, 2019 at 7:19 PM Bin Meng wrote:
>
> On Sat, Oct 5, 2019 at 9:12 PM Bin Meng wrote:
> >
> > On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> > >
> > > If PCI auto-config runs out of memory, show a few more details to help
> > > diagnose the problem.
> > >
> > > Signed-off-by:
On Mon, Oct 07, 2019 at 09:47:46AM +0900, AKASHI Takahiro wrote:
> On Sat, Oct 05, 2019 at 08:53:39AM +0200, Heinrich Schuchardt wrote:
> > On 10/4/19 3:20 AM, AKASHI Takahiro wrote:
> > >With this patch, when setting UEFI variable with "env set -e" command,
> > >we will be able to
> > >- specify v
Hi Simon,
On Sun, Oct 6, 2019 at 5:15 PM Bin Meng wrote:
>
> On Thu, Oct 3, 2019 at 8:48 PM Bin Meng wrote:
> >
> > On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> > >
> > > These functions cannot work with of-platdata since libfdt is not
> > > available. At present when dev_read_...() fu
On Sat, Oct 5, 2019 at 11:18 PM Bin Meng wrote:
>
> On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> >
> > At present there is only one control for this and it is used for both SPL
> > and TPL. But SPL might have a lot more space than TPL so the extra cost of
> > a full printf() might be acc
On Sat, Oct 5, 2019 at 11:18 PM Bin Meng wrote:
>
> On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> >
> > This is currently a decimal value which is not as convenient or
> > meaningful. Also U-Boot tends to use hex everywhere.
> >
> > Convert this option to hex and add a comment for the siz
On Sat, Oct 5, 2019 at 11:18 PM Bin Meng wrote:
>
> On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> >
> > At present this is defined in Kconfig but there is a separate one in the
> > CONFIG whitelist. It looks like these are duplicates.
> >
> > Rename the non-Kconfig one and remove it from
On Sat, Oct 5, 2019 at 11:18 PM Bin Meng wrote:
>
> On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> >
> > At present the 'iod' command differs from 'md' in that it only shows a
> > single value. It is useful to see a dump of multiple values, particularly
> > when x86 peripherals contain reg
On Sat, Oct 05, 2019 at 08:53:39AM +0200, Heinrich Schuchardt wrote:
> On 10/4/19 3:20 AM, AKASHI Takahiro wrote:
> >With this patch, when setting UEFI variable with "env set -e" command,
> >we will be able to
> >- specify vendor guid with "-guid guid",
> >- specify variable attributes, BOOTSERVIC
On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
>
> The code in swapcase can be used by other sandbox drivers. Move it into a
> common place to allow this.
>
> Signed-off-by: Simon Glass
> ---
>
> arch/sandbox/include/asm/test.h | 15 +++
> drivers/misc/Makefile | 2 +-
On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
>
> At present these uclasses assumes that they are used with a device tree.
> Update them to support of-platdata as well.
>
> Signed-off-by: Simon Glass
> ---
>
> arch/x86/lib/lpc-uclass.c | 2 ++
> drivers/pch/pch-uclass.c | 2 ++
> 2 files
Hi Simon,
On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
>
> This function can be called before the timer is set up. Make sure that the
> init function is called so that it works correctly.
>
> Signed-off-by: Simon Glass
> ---
>
> drivers/timer/tsc_timer.c | 2 ++
> 1 file changed, 2 inser
On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
>
> This function ise effectively replaced by ofnode_read_pci_addr() which
> works with flat tree. Delete it to avoid code duplication.
>
> Signed-off-by: Simon Glass
> ---
>
> drivers/core/fdtaddr.c | 13 --
> include/fdtdec.h |
On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
>
> Add a few more CPU functions that are common on Intel CPUs. Also add
> attribution for the code source.
>
> Signed-off-by: Simon Glass
> ---
>
> arch/x86/cpu/intel_common/cpu.c | 60 +++
> arch/x86/include/asm/
On Mon, Oct 7, 2019 at 6:37 AM Heinrich Schuchardt wrote:
>
> With the __packed attribute sandbox_defconfig cannot be compiled with GCC
> 9.2.1:
>
> fs/cbfs/cbfs.c: In function ‘file_cbfs_fill_cache’:
> fs/cbfs/cbfs.c:164:16: error: taking address of packed member of
> ‘struct cbfs_cachenode’ may
On Sun, 2019-10-06 at 15:44 +0200, Marek Vasut wrote:
> On 10/6/19 1:19 AM, Dalon L Westergreen wrote:
> > On Sat, 2019-10-05 at 01:51 +0200, Marek Vasut wrote:
> > > On 10/5/19 12:30 AM, Dalon Westergreen wrote:
> > > > From: Dalon Westergreen Generic handoff
> > > > devicetree include uses a head
On Sun, 2019-10-06 at 20:05 +0200, Simon Goldschmidt wrote:
> Am 06.10.2019 um 19:44 schrieb Dalon L Westergreen:
> > On Sun, 2019-10-06 at 15:44 +0200, Marek Vasut wrote:
> > > On 10/6/19 1:19 AM, Dalon L Westergreen wrote:
> > > > On Sat, 2019-10-05 at 01:51 +0200, Marek Vasut wrote:
> > > > > On
With the __packed attribute sandbox_defconfig cannot be compiled with GCC
9.2.1:
fs/cbfs/cbfs.c: In function ‘file_cbfs_fill_cache’:
fs/cbfs/cbfs.c:164:16: error: taking address of packed member of
‘struct cbfs_cachenode’ may result in an unaligned pointer value
[-Werror=address-of-packed-member]
On Sun, Oct 06, 2019 at 10:50:45PM +0200, Heinrich Schuchardt wrote:
> 'make tests' requires cbfstool. But this file is not built by U-Boot.
>
> cbfstool can be built from https://github.com/coreboot/coreboot.git
> after copying some include files from
> https://github.com/coreboot/vboot.git but
On Sun, Oct 06, 2019 at 12:26:16PM +0200, Heinrich Schuchardt wrote:
> %s/plaforms/platforms/g
>
> Signed-off-by: Heinrich Schuchardt
> Reviewed-by: Bin Meng
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
___
U-
On Sat, Oct 05, 2019 at 10:10:11PM +0200, Simon Goldschmidt wrote:
> These boards don't have a watchdog enabled in SPL, so make sure
> CONFIG_SPL_WDT is not enabled.
>
> Fixes: commit 6874cb72204f ("watchdog: Split WDT from SPL_WDT")
>
> Signed-off-by: Simon Goldschmidt
Applied to u-boot/maste
On Thu, Aug 22, 2019 at 04:47:39PM +0900, AKASHI Takahiro wrote:
> With the patch below applied, host_block_dev structure was switched
> to be placed in platdata rather than priv. The command "host info"
> must be aligned with this change. Otherwise, we will see "Segmentation
> Fault."
>
> Fixes:
On Thu, Oct 03, 2019 at 06:32:11PM +0200, Maxime Ripard wrote:
> I'm not at bootlin anymore, and my mail address doesn't work any longer.
>
> Signed-off-by: Maxime Ripard
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: PGP signature
__
The following changes since commit dac51e9aaf6fd38298007b266feb6a80e9ec91ee:
Merge branch 'master' of git://git.denx.de/u-boot-sh (2019-10-05
20:06:58 -0400)
are available in the Git repository at:
https://gitlab.denx.de/u-boot/custodians/u-boot-efi.git
tags/efi-2020-01-rc1
for you to fetc
A trusted execution environment should also get loaded as loadable from
a fit image, so add the possibility to present a tee.elf to make_fit_atf.py
that then gets included as additional loadable into the generated its.
For ease of integration the additional loadable is created as atf_(x+1)
after a
From: Joseph Chen
Trusted-Firmware can also initialize a secure payload to use as a trusted
execution environment. In general for the arm64 case this is provided as
separate image and uboot is supposed to also place it in a predetermined
location in memory and add the necessary parameters to the
Am 06.10.2019 um 19:44 schrieb Dalon L Westergreen:
On Sun, 2019-10-06 at 15:44 +0200, Marek Vasut wrote:
On 10/6/19 1:19 AM, Dalon L Westergreen wrote:
On Sat, 2019-10-05 at 01:51 +0200, Marek Vasut wrote:
On 10/5/19 12:30 AM, Dalon Westergreen wrote:
From: Dalon Westergreen <
dalon.westergr
Hi Jagan,
On Wed, 2019-10-02 at 15:57 +0530, Jagan Teki wrote:
> On Mon, Sep 30, 2019 at 3:35 PM Bin Meng wrote:
> > Hi Jagan,
> >
> > On Sun, Sep 29, 2019 at 3:42 PM Jagan Teki
> > wrote:
> > > Sync the hifive-unleashed-a00 dts from Linux with
> > > below commit details:
> > > commit 11ae2d89
Hi Jagan,
On Sun, 2019-09-29 at 13:12 +0530, Jagan Teki wrote:
> Sync the hifive-unleashed-a00 dts from Linux with
> below commit details:
> commit 11ae2d892139a1086f257188d457ddcb71ab5257
> Author: Paul Walmsley
> Date: Thu Jul 25 13:41:31 2019 -0700
>
> riscv: dts: fu540-c000: drop "time
On Sun, 2019-10-06 at 15:44 +0200, Marek Vasut wrote:
> On 10/6/19 1:19 AM, Dalon L Westergreen wrote:
> > On Sat, 2019-10-05 at 01:51 +0200, Marek Vasut wrote:
> > > On 10/5/19 12:30 AM, Dalon Westergreen wrote:
> > > > From: Dalon Westergreen Generic handoff
> > > > devicetree include uses a head
On Sun, Oct 06, 2019 at 03:53:42PM +0200, Heinrich Schuchardt wrote:
> The growth of the UEFI sub-system leads to build failures for systems with
> strict limits on the U-Boot image size.
>
> CMD_NVEDIT_EFI supports displaying and editing of UEFI variables. The
> setting is not needed for booting
On Sun, Oct 06, 2019 at 04:57:29PM +, Auer, Lukas wrote:
> Hi Jean-Jacques,
>
> On Fri, 2019-09-20 at 17:28 +0200, Jean-Jacques Hiblot wrote:
> > To reduce the complexity of the Makefile, let the generator tell what its
> > dependencies are. For this purpose use the "--deps" option.
> >
>
>
Hi Jean-Jacques,
On Fri, 2019-09-20 at 17:28 +0200, Jean-Jacques Hiblot wrote:
> To reduce the complexity of the Makefile, let the generator tell what its
> dependencies are. For this purpose use the "--deps" option.
>
We recently added a generic FIT generator script for RISC-V, located at
arch/
On Sun, Oct 06, 2019 at 05:12:02PM +0200, Heinrich Schuchardt wrote:
> Set environment variables needed for colored output.
>
> Signed-off-by: Heinrich Schuchardt
> ---
> Hello Tom,
>
> I do not have my own Gitlab to test this. But we should get a more legible
> output with these variables set.
Fix a typo that caused incorrect values to be loaded into the DRAM
controller's deskew registers.
Signed-off-by: Simon South
---
drivers/ram/rockchip/sdram_rk3328.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/ram/rockchip/sdram_rk3328.c
b/drivers/ram/rockchip/sdr
Fix a pair of tests in phy_dll_bypass_set() that used incorrect units
for the DDR frequency, causing the DRAM controller to be misconfigured
in most cases.
Signed-off-by: Simon South
---
drivers/ram/rockchip/sdram_rk3328.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/d
These two patches fix small issues with the Rockchip RK3328 SDRAM
driver that prevented my PINE64 ROCK64 from booting and running
normally using U-Boot's TPL [1].
The first patch updates the phy_dll_bypass_set() function to use the
correct units for its DDR-frequency parameter, which is already
sp
On Sun, Oct 6, 2019 at 10:55 AM Baruch Siach wrote:
>
> Hi Adam,
>
> On Sun, Oct 06 2019, Adam Ford wrote:
> > On Sun, Oct 6, 2019 at 7:48 AM Baruch Siach wrote:
> >> On Sun, Oct 06 2019, Adam Ford wrote:
> >> > On Sun, Oct 6, 2019 at 7:30 AM Adam Ford wrote:
> >> >>
> >> >> On Sun, Oct 6, 2019
On Mon, Oct 7, 2019 at 12:09 AM Bin Meng wrote:
>
> On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> >
> > These functions are the same on modern Intel CPUs, so use common code to
> > set them.
> >
> > Signed-off-by: Simon Glass
> > ---
> >
> > arch/x86/cpu/broadwell/cpu.c
On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
>
> These functions are the same on modern Intel CPUs, so use common code to
> set them.
>
> Signed-off-by: Simon Glass
> ---
>
> arch/x86/cpu/broadwell/cpu.c | 7 ++
> arch/x86/cpu/broadwell/cpu_full.c | 9 --
On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
>
> Some MSR registers are defined twice in different parts of the file. Move
> them together and remove the duplicates. Also drop some thermal defines
> which are not used.
>
> Signed-off-by: Simon Glass
> ---
>
> arch/x86/cpu/baytrail/cpu.c
On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
>
> This code appears in a few places, so move it to a common file.
>
> Signed-off-by: Simon Glass
> ---
>
> arch/x86/cpu/broadwell/cpu_full.c| 20 +---
> arch/x86/cpu/intel_common/cpu.c | 22 ++
> a
On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
>
> Modern Intel CPUs use a standard bus clock value of 100MHz, so put this in
> a common file and tidy up the copies.
>
> Signed-off-by: Simon Glass
> ---
>
> arch/x86/cpu/broadwell/cpu.c | 2 +-
> arch/x86/cpu/broadwell/c
On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
>
> Remove the duplicate definition as it is not needed.
>
> Signed-off-by: Simon Glass
> ---
>
> arch/x86/cpu/broadwell/cpu.c | 2 +-
> arch/x86/cpu/broadwell/cpu_full.c | 2 +-
> arch/x86/cpu/intel_common/cpu.c | 2 +-
> arch/x86/inclu
Hi Adam,
On Sun, Oct 06 2019, Adam Ford wrote:
> On Sun, Oct 6, 2019 at 7:48 AM Baruch Siach wrote:
>> On Sun, Oct 06 2019, Adam Ford wrote:
>> > On Sun, Oct 6, 2019 at 7:30 AM Adam Ford wrote:
>> >>
>> >> On Sun, Oct 6, 2019 at 7:22 AM Baruch Siach wrote:
>> >> >
>> >> > Hi Adam,
>> >> >
>> >>
Set environment variables needed for colored output.
Signed-off-by: Heinrich Schuchardt
---
Hello Tom,
I do not have my own Gitlab to test this. But we should get a more legible
output with these variables set.
Best regards
Heinrich
---
Dockerfile | 4
1 file changed, 4 insertions(+)
di
On Sun, Oct 6, 2019 at 7:48 AM Baruch Siach wrote:
>
> Hi Adam,
>
> On Sun, Oct 06 2019, Adam Ford wrote:
> > On Sun, Oct 6, 2019 at 7:30 AM Adam Ford wrote:
> >>
> >> On Sun, Oct 6, 2019 at 7:22 AM Baruch Siach wrote:
> >> >
> >> > Hi Adam,
> >> >
> >> > On Sun, Oct 06 2019, Adam Ford wrote:
>
The growth of the UEFI sub-system leads to build failures for systems with
strict limits on the U-Boot image size.
CMD_NVEDIT_EFI supports displaying and editing of UEFI variables. The
setting is not needed for booting. Disabling it by default reduces the
size of the U-Boot image by 2 KiB.
Signed
On 10/6/19 1:19 AM, Dalon L Westergreen wrote:
> On Sat, 2019-10-05 at 01:51 +0200, Marek Vasut wrote:
>> On 10/5/19 12:30 AM, Dalon Westergreen wrote:
>>> From: Dalon Westergreen
>>> Generic handoff devicetree include uses a header generated bythe qts-filter-
>>> a10.sh script in mach-socfpga. T
On 10/6/19 1:25 AM, Dalon L Westergreen wrote:
> On Sat, 2019-10-05 at 01:49 +0200, Marek Vasut wrote:
>> On 10/5/19 12:30 AM, Dalon Westergreen wrote:
>>> From: Dalon Westergreen
>>> Add a common u-boot devicetree include file for the SocFPGAArria10 device.
>>
>> Isn't arch/arm/dts/socfpga_arria1
With upcoming patches u-boot.kwb gets too large.
Save 3740 bytes in u-boot.kwb by disabling Unicode support in the UEFI
sub-system.
Signed-off-by: Heinrich Schuchardt
---
configs/sheevaplug_defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/configs/sheevaplug_defconfig b/configs/shee
Hi Adam,
On Sun, Oct 06 2019, Adam Ford wrote:
> On Sun, Oct 6, 2019 at 7:30 AM Adam Ford wrote:
>>
>> On Sun, Oct 6, 2019 at 7:22 AM Baruch Siach wrote:
>> >
>> > Hi Adam,
>> >
>> > On Sun, Oct 06 2019, Adam Ford wrote:
>> > > On Sun, Oct 6, 2019 at 5:23 AM Baruch Siach wrote:
>> > >> (Adding
On Sun, Oct 6, 2019 at 7:30 AM Adam Ford wrote:
>
> On Sun, Oct 6, 2019 at 7:22 AM Baruch Siach wrote:
> >
> > Hi Adam,
> >
> > On Sun, Oct 06 2019, Adam Ford wrote:
> > > On Sun, Oct 6, 2019 at 5:23 AM Baruch Siach wrote:
> > >> (Adding MMC and i.MX maintainers to Cc)
> > >>
> > >> On Fri, Sep
On 10/6/19 2:33 PM, Heinrich Schuchardt wrote:
If errno_str() is called with an unsupported error number, do not return a
random pointer but a reasonable text.
Signed-off-by: Heinrich Schuchardt
This mail was sent by mistake. The correct patch is
[PATCH 1/2] lib: errno: check for unsupported
If errno_str() is called with an unsupported error number, do not return a
random pointer but a reasonable text.
Signed-off-by: Heinrich Schuchardt
---
lib/errno_str.c | 8 +++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/lib/errno_str.c b/lib/errno_str.c
index fbe56395d1..2
Provide a unit test for errno_str(). Test that known and unknown error
numbers are handled correctly.
Signed-off-by: Heinrich Schuchardt
---
test/lib/Makefile | 1 +
test/lib/test_errno_str.c | 50 +++
2 files changed, 51 insertions(+)
create mode 10
If errno_str() is called with an unsupported error number, do not return a
random pointer but a reasonable text.
Signed-off-by: Heinrich Schuchardt
---
lib/errno_str.c | 8 +++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/lib/errno_str.c b/lib/errno_str.c
index fbe56395d1..2
errno_str() should not return a random pointer for unknown error codes.
Provide a unit test for errno_str().
Heinrich Schuchardt (2):
lib: errno: check for unsupported error number
test: provide test for errno_str()
lib/errno_str.c | 8 ++-
test/lib/Makefile | 1 +
t
On Sun, Oct 6, 2019 at 7:22 AM Baruch Siach wrote:
>
> Hi Adam,
>
> On Sun, Oct 06 2019, Adam Ford wrote:
> > On Sun, Oct 6, 2019 at 5:23 AM Baruch Siach wrote:
> >> (Adding MMC and i.MX maintainers to Cc)
> >>
> >> On Fri, Sep 27 2019, Adam Ford wrote:
> >> > On Fri, Sep 27, 2019 at 4:38 AM Jona
Hi Adam,
On Sun, Oct 06 2019, Adam Ford wrote:
> On Sun, Oct 6, 2019 at 5:23 AM Baruch Siach wrote:
>> (Adding MMC and i.MX maintainers to Cc)
>>
>> On Fri, Sep 27 2019, Adam Ford wrote:
>> > On Fri, Sep 27, 2019 at 4:38 AM Jonathan Gray wrote:
>> >>
>> >> On Thu, Sep 26, 2019 at 05:07:21PM -030
On Sun, Oct 6, 2019 at 6:30 AM Adam Ford wrote:
>
> On Sun, Oct 6, 2019 at 5:23 AM Baruch Siach wrote:
> >
> > Hi Adam,
> >
> > (Adding MMC and i.MX maintainers to Cc)
> >
> > On Fri, Sep 27 2019, Adam Ford wrote:
> > > On Fri, Sep 27, 2019 at 4:38 AM Jonathan Gray wrote:
> > >>
> > >> On Thu, S
In cmd/regulator.c an error occurs with GCC 9.2.1 if CONFIG_ERRNO_STR is
not defined:
cmd/regulator.c: In function ‘failure’:
cmd/regulator.c:20:2: error: ‘%s’ directive argument is null
[-Werror=format-overflow=]
20 | printf("Error: %d (%s)\n", ret, errno_str(ret));
| ^
On Sun, Oct 6, 2019 at 5:23 AM Baruch Siach wrote:
>
> Hi Adam,
>
> (Adding MMC and i.MX maintainers to Cc)
>
> On Fri, Sep 27 2019, Adam Ford wrote:
> > On Fri, Sep 27, 2019 at 4:38 AM Jonathan Gray wrote:
> >>
> >> On Thu, Sep 26, 2019 at 05:07:21PM -0300, Fabio Estevam wrote:
> >> > Hi Vagrant
Macro ERRNO_MSG() ignores the error number but we should still use the same
constants as in include/linux/errno.h.
Signed-off-by: Heinrich Schuchardt
---
lib/errno_str.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/errno_str.c b/lib/errno_str.c
index 0ba950e970..fb
> > I just tested mx6cuboxi with 2019.10-rc4, and it fails to load
> > u-boot.img from MMC:
> >
> > 1 2019-09-26_17:31:27.63089 U-Boot SPL 2019.10-rc4+dfsg-1 (Sep 24 2019 -
> > 08:03:23 +)
> > 2 2019-09-26_17:31:27.63092 Trying to boot from MMC2
> > 3 2019-09-26_17:31:27.63095 MMC Device 1 not
On Sat, Oct 5, 2019 at 10:42 PM Bin Meng wrote:
>
> On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> >
> > The image-header currently sets it offset assuming that skip-at-start is
> > zero. This does not work on x86 where offsets end at 4GB. Add in this
> > value so that the offset is correc
On Sat, Oct 5, 2019 at 9:12 PM Bin Meng wrote:
>
> On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> >
> > At present the verbose flag only works for the 'build' command. This is
> > not intended, nor is it useful. Update the code to support the verbose
> > flag and make use of a command exce
On Sat, Oct 5, 2019 at 10:41 PM Bin Meng wrote:
>
> On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> >
> > At present this function is not present in the Entry base class so it is
> > hard to find the documentation for it. Move the docs from the section
> > class and expand it a little.
> >
On Sat, Oct 5, 2019 at 10:42 PM Bin Meng wrote:
>
> On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> >
> > If a log statement includes a variable and logging is disabled, this can
> > generate warnings about unused variables. Add a bit more complexity to the
> > macros to avoid this for the
On Sat, Oct 5, 2019 at 10:42 PM Bin Meng wrote:
>
> On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> >
> > Some x86 sections have special offsets which currently result in empty
> > data being returned from the 'extract' command. Fix this by taking account
> > of the skip-at-start property.
On Sat, Oct 5, 2019 at 10:42 PM Bin Meng wrote:
>
> On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> >
> > Provide these values which are part of the EC interface now.
> >
> > Signed-off-by: Simon Glass
> > ---
> >
> > include/ec_commands.h | 4
> > 1 file changed, 4 insertions(+)
> >
On Sat, Oct 5, 2019 at 9:12 PM Bin Meng wrote:
>
> On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> >
> > At present PCI address transaction is not supported so drivers must
> > manually read the correct BAR after reading the device tree info. The
> > ns16550 has a suitable implementation, s
On Sat, Oct 5, 2019 at 9:12 PM Bin Meng wrote:
>
> On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> >
> > At present this fails silently which can be confusing since some devices
> > on the PCI bus may not work correctly. Show a message in this case
>
> nits: missing . after case
Fixed, and
On Sat, Oct 5, 2019 at 9:12 PM Bin Meng wrote:
>
> On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> >
> > If PCI auto-config runs out of memory, show a few more details to help
> > diagnose the problem.
> >
> > Signed-off-by: Simon Glass
> > ---
> >
> > drivers/pci/pci_auto_common.c | 3 ++
On Sat, Oct 5, 2019 at 9:12 PM Bin Meng wrote:
>
> On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> >
> > When this UART is used early in boot (before PCI is set up) it is
> > convenient to store the PCI BDF of the UART so that it can be manually
> > configured. This is useful when it is use
On Sun, Oct 6, 2019 at 6:26 PM Heinrich Schuchardt wrote:
>
> %s/plaforms/platforms/g
>
> Signed-off-by: Heinrich Schuchardt
> ---
>
> .gitlab-ci.yml | 8
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
Reviewed-by: Bin Meng
___
U-Boot m
%s/plaforms/platforms/g
Signed-off-by: Heinrich Schuchardt
---
.gitlab-ci.yml | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a1c5b4fc76..0c4343468d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -59,7 +59,7 @@ stages:
Hi Adam,
(Adding MMC and i.MX maintainers to Cc)
On Fri, Sep 27 2019, Adam Ford wrote:
> On Fri, Sep 27, 2019 at 4:38 AM Jonathan Gray wrote:
>>
>> On Thu, Sep 26, 2019 at 05:07:21PM -0300, Fabio Estevam wrote:
>> > Hi Vagrant,
>> >
>> > On Thu, Sep 26, 2019 at 4:16 PM Vagrant Cascadian
>> > w
On Sat, Oct 5, 2019 at 1:03 PM Bin Meng wrote:
>
> On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> >
> > Fix these spelling errors the header file and documentation.
>
> in the header
>
> >
> > Fix a small typo in the PCI documentation.
> >
> > Signed-off-by: Simon Glass
> > ---
> >
> > d
On Sat, Oct 5, 2019 at 1:03 PM Bin Meng wrote:
>
> On Wed, Sep 25, 2019 at 10:58 PM Simon Glass wrote:
> >
> > At present U-Boot runs autoconfig in SPL but this is best left to U-Boot
> > proper. For TPL and SPL we can normally used fixed BARs and save code size
> > and time.
> >
> > Signed-off-b
1 - 100 of 123 matches
Mail list logo