Hi Andy,
On Wed, Aug 30, 2017 at 11:04 PM, Andy Shevchenko
wrote:
> Intel Tangier SoC is a part of Intel Merrifield platform which doesn't
> utilize ACPI by default. Here is an attempt to unleash ACPI flexibility
> power on Intel Merrifield based platforms.
>
> The change brings minimum support o
On Wed, Aug 30, 2017 at 11:04 PM, Andy Shevchenko
wrote:
> This board is based on Intel Tangier SoC (Intel Merrifield platform)
> and may utilize ACPI powerfulness.
>
> Bring minimum support by appending initial DSDT table for it.
>
> Note, the addresses for generated tables are carefully chosen t
On Sat, Sep 02, 2017 at 11:56:45PM +0800, Bin Meng wrote:
> Hi Tom,
>
> These are some bug fixes for v2017.09.
>
> The following changes since commit 6ef2f90108e2cf101d931c71ea7904f2b6301641:
>
> Convert CONFIG_BCH to Kconfig (2017-09-01 20:45:26 -0400)
>
> are available in the git repositor
Since commit 3809e302 "Makefile: honor PYTHON configuration properly",
the build commands of libfdt are printed while previously were not.
This adds the missing '--quiet' back.
Signed-off-by: Bin Meng
---
tools/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/
This should not be printed by default. Prefix it with $(Q).
Fixes ee95d10b: ("fdt: Build the new python libfdt module")
Signed-off-by: Bin Meng
---
tools/Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/Makefile b/tools/Makefile
index 5605fa7..a0db19d 1006
Commit f494950b (efi_loader: call __efi_exit_check in efi_exit) added a call
to __efi_exit_check inside efi_exit to account for the fact that we're exiting
the efi_exit function via a longjmp call.
However, __efi_exit_check also swizzles gd to the application gd while the
longjmp will put us back
On 03.09.17 08:17, Heinrich Schuchardt wrote:
The target
$(obj)/helloworld.so:
exists twice in Makefile.lib.
If you add an echo command to each of the two recipes you get
warnings like:
scripts/Makefile.lib:383: warning:
overriding recipe for target 'drivers/power/battery/helloworld.so'
scrip
Otherwise the linking will fail since eth_env_set_enetaddr cannot
be found.
Signed-off-by: Marek Behun
---
board/CZ.NIC/turris_omnia/turris_omnia.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/board/CZ.NIC/turris_omnia/turris_omnia.c
b/board/CZ.NIC/turris_omnia/turris_
Several boards need CONFIG_NAND in order to migrate additional
settings to Kconfig. These configs include: SYS_NAND_ECCSIZE,
SYS_NAND_ECCBYTES, SYS_NAND_ECCSTEPS, SYS_NAND_MAX_ECCPOS, and
SYS_NAND_MAX_OOBFREE
Fixes 5bbc265becbe ("Convert CONFIG_NAND to Kconfig")
Signed-off-by: Adam Ford
---
con
This converts the following to Kconfig:
CONFIG_SYS_NAND_ECCSIZE
CONFIG_SYS_NAND_ECCBYTES
CONFIG_SYS_NAND_ECCSTEPS
CONFIG_SYS_NAND_MAX_ECCPOS
CONFIG_SYS_NAND_MAX_OOBFREE
Signed-off-by: Adam Ford
---
README | 4
arch/arm/include/asm/arch-l
There is already an entry in Kconfig with 'CONFIG_' prepended.
This patch renames them to match CONFIG_MTDIDS_DEFAULT and
CONFIG_MTDPARTS_DEFAULT to make the migration to Kconfig easier
in the future.
Signed-off-by: Adam Ford
diff --git a/include/configs/BSC9131RDB.h b/include/configs/BSC9131RDB
On 09/02/2017 06:37 PM, Rob Clark wrote:
Want to re-use this in fat dirent iterator in next patch.
Signed-off-by: Rob Clark
Reviewed-by: Łukasz Majewski
---
fs/fat/fat.c | 73 +++
include/fat.h | 1 +
2 files changed, 44 inserti
From: Fabio Estevam
Instead of having every board file to add its own g_dnl_bind_fixup()
implementation, move it to the common imx6 SPL code.
Signed-off-by: Fabio Estevam
---
Stefan,
I don't have access to Toradex board to test it, hence marking it
as RFC.
I have tested it with imx6q-sabresd
Add a header variadic-macro.h which defines the CALL_MACRO_FOR_EACH marco.
This macro can be used as follows:
#define TEST(x)
CALL_MACRO_FOR_EACH(TEST, a, b, c, d)
This will expand to
TEST(a) TEST(b) TEST(c) TEST(d)
The nice thing is that CALL_MACRO_FOR_EACH is a variadic macro, thus the
n
This is the first version of patches for adding a single-device
read-only BTRFS support to U-Boot.
Compression (zlib/lzo) is supported.
Data checksumming is unimplemented.
The code was tested on the Turris Omnia router, where BTRFS is
used as the main filesystem from which kernel and device-tree
BTRFS on disk structures are stored in Little Endian. Add functions
to convert this structures to cpu and to disk format.
On Little Endian hosts, these functions do nothing.
On Big Endian the CALL_MACRO_FROM_EACH from variadic-macro.h is used
to define all the members for each structure on which
The ext4, reiserfs and zfs filesystems all have their own implementation
of the same function, *_devread. Generalize this function into fs_devread
and put the code into fs/fs_internal.c.
Signed-off-by: Marek Behun
create mode 100644 fs/fs_internal.c
create mode 100644 include/fs_internal.h
di
Signed-off-by: Marek Behun
create mode 100644 fs/btrfs/Kconfig
create mode 100644 fs/btrfs/Makefile
create mode 100644 fs/btrfs/btrfs.c
create mode 100644 include/btrfs.h
diff --git a/fs/Kconfig b/fs/Kconfig
index e6803ac8cb..1cb9831be8 100644
--- a/fs/Kconfig
+++ b/fs/Kconfig
@@ -4,6 +4,8 @
This is needed for BTRFS.
Signed-off-by: Marek Behun
create mode 100644 lib/crc32c.c
diff --git a/include/u-boot/crc.h b/include/u-boot/crc.h
index 6764d58bab..6d08f5df98 100644
--- a/include/u-boot/crc.h
+++ b/include/u-boot/crc.h
@@ -28,4 +28,8 @@ uint32_t crc32_no_comp (uint32_t, const unsi
Add btrfs_tree.h and ctree.h from Linux which contains constants
and structures for the BTRFS filesystem.
Signed-off-by: Marek Behun
create mode 100644 fs/btrfs/btrfs_tree.h
create mode 100644 fs/btrfs/ctree.h
diff --git a/fs/btrfs/btrfs_tree.h b/fs/btrfs/btrfs_tree.h
new file mode 100644
ind
Signed-off-by: Marek Behun
create mode 100644 cmd/btrfs.c
diff --git a/cmd/Kconfig b/cmd/Kconfig
index d6d130edfa..77623052c4 100644
--- a/cmd/Kconfig
+++ b/cmd/Kconfig
@@ -1311,6 +1311,16 @@ config CMD_CROS_EC
endmenu
menu "Filesystem commands"
+config CMD_BTRFS
+ bool "Enable the 'b
Signed-off-by: Marek Behun
diff --git a/configs/turris_omnia_defconfig b/configs/turris_omnia_defconfig
index a3834acb96..9a456e67aa 100644
--- a/configs/turris_omnia_defconfig
+++ b/configs/turris_omnia_defconfig
@@ -26,6 +26,7 @@ CONFIG_CMD_USB=y
CONFIG_CMD_TFTPPUT=y
CONFIG_CMD_CACHE=y
CONFI
This adds the proper implementation for the BTRFS filesystem.
The implementation currently supports only read-only mode and
the filesystem can be only on a single device.
Checksums of data chunks is unimplemented.
Compression is implemented (ZLIB + LZO).
Signed-off-by: Marek Behun
create mode
On 09/02/2017 06:37 PM, Rob Clark wrote:
Untangle directory traversal into a simple iterator, to replace the
existing multi-purpose do_fat_read_at() + get_dentfromdir().
Signed-off-by: Rob Clark
Reviewed-by: Łukasz Majewski
---
fs/fat/fat.c | 326 +
On 09/02/2017 06:37 PM, Rob Clark wrote:
And drop a whole lot of ugly code!
+1
Reviewed-by: Łukasz Majewski
Signed-off-by: Rob Clark
---
fs/fat/fat.c | 723 ++
include/fat.h | 6 -
2 files changed, 75 insertions(+), 654 delet
On 09/02/2017 06:37 PM, Rob Clark wrote:
Needed to support efi file protocol. The fallback.efi loader wants
to be able to read the contents of the /EFI directory to find an OS
to boot.
Modelled after POSIX opendir()/readdir()/closedir(). Unlike the other
fs APIs, this is stateful (ie. state is
On 09/02/2017 06:38 PM, Rob Clark wrote:
Implement the readdir interface using the directory iterators.
Reviewed-by: Łukasz Majewski
Signed-off-by: Rob Clark
---
fs/fat/fat.c | 56
1 file changed, 56 insertions(+)
diff --git a/fs
On 09/02/2017 06:38 PM, Rob Clark wrote:
Add a generic implementation of 'ls' using opendir/readdir/closedir, and
replace fat's custom implementation. Other filesystems should move to
the generic implementation after they add opendir/readdir/closedir
support.
Reviewed-by: Łukasz Majewski
S
On 09/02/2017 06:38 PM, Rob Clark wrote:
Noticed when comparing our output to linux. There are some lcase bits
which control whether filename and/or extension should be downcase'd.
Reviewed-by: Łukasz Majewski
Signed-off-by: Rob Clark
---
fs/fat/fat.c | 17 -
fs/f
On 09/03/2017 04:56 PM, Fabio Estevam wrote:
From: Fabio Estevam
Instead of having every board file to add its own g_dnl_bind_fixup()
implementation, move it to the common imx6 SPL code.
Reviewed-by: Łukasz Majewski
Signed-off-by: Fabio Estevam
---
Stefan,
I don't have access to Toradex
On 09/03/2017 02:19 PM, Alexander Graf wrote:
>
>
> On 03.09.17 08:17, Heinrich Schuchardt wrote:
>> The target
>> $(obj)/helloworld.so:
>> exists twice in Makefile.lib.
>>
>> If you add an echo command to each of the two recipes you get
>> warnings like:
>>
>> scripts/Makefile.lib:383: warning:
On Sun, Sep 3, 2017 at 10:52 AM, Łukasz Majewski wrote:
> On 09/02/2017 06:37 PM, Rob Clark wrote:
>>
>> Want to re-use this in fat dirent iterator in next patch.
>>
>> Signed-off-by: Rob Clark
>
>
> Reviewed-by: Łukasz Majewski
>
thanks
btw, is there some way to make get_maintainers.pl to fin
Hi Marek,
This is needed for BTRFS.
Signed-off-by: Marek Behun
create mode 100644 lib/crc32c.c
Excuse me my ignorance, but in u-boot we already have:
./lib/crc32.c
is the crc32c algorithm a different one from venerable crc32?
diff --git a/include/u-boot/crc.h b/include/u-boot/crc.h
i
Signed-off-by: Lukasz Majewski
---
doc/git-mailrc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/git-mailrc b/doc/git-mailrc
index af10a3d..556db0a 100644
--- a/doc/git-mailrc
+++ b/doc/git-mailrc
@@ -31,7 +31,7 @@ alias jhersh Joe Hershberger
alias jwrdegoede
On 09/03/2017 05:47 PM, Rob Clark wrote:
On Sun, Sep 3, 2017 at 10:52 AM, Łukasz Majewski wrote:
On 09/02/2017 06:37 PM, Rob Clark wrote:
Want to re-use this in fat dirent iterator in next patch.
Signed-off-by: Rob Clark
Reviewed-by: Łukasz Majewski
thanks
btw, is there some way to
On 09/03/2017 02:19 PM, Alexander Graf wrote:
>
>
> On 03.09.17 08:17, Heinrich Schuchardt wrote:
>> The target
>> $(obj)/helloworld.so:
>> exists twice in Makefile.lib.
>>
>> If you add an echo command to each of the two recipes you get
>> warnings like:
>>
>> scripts/Makefile.lib:383: warning:
When enabling CONFIG_CMD_BLOB and/or CONFIG_CMD_DEKBLOB, the build fails
with a linker error:
...
LD u-boot
arch/arm/mach-imx/built-in.o: In function `blob_encap_dek':
/home/clemens/dev/u-boot/arch/arm/mach-imx/cmd_dek.c:46: undefined
reference to `blob_dek'
This is due to an error in the
On Sun, Sep 3, 2017 at 2:17 PM, Clemens Gruber
wrote:
> When enabling CONFIG_CMD_BLOB and/or CONFIG_CMD_DEKBLOB, the build fails
> with a linker error:
> ...
> LD u-boot
> arch/arm/mach-imx/built-in.o: In function `blob_encap_dek':
> /home/clemens/dev/u-boot/arch/arm/mach-imx/cmd_dek.c:46
Hi Łukasz,
the Castagnoli CRC32 algorithm just uses different polynomial. Perhaps
I should generalize the original CRC32.
Marek
On Sun, 3 Sep 2017 17:47:28 +0200
Łukasz Majewski wrote:
> Hi Marek,
>
> > This is needed for BTRFS.
> >
> > Signed-off-by: Marek Behun
> >
> > create mode 1006
On Wed, Aug 23, 2017 at 04:01:30PM +0200, Maxime Ripard wrote:
> Both the config option and the DT options specify the offset to set the GPT
> at in bytes, yet the code treats those values as block numbers.
>
> Fix that.
>
> Signed-off-by: Maxime Ripard
> Reviewed-by: Tom Rini
> Reviewed-by: P
On Wed, Aug 23, 2017 at 04:01:32PM +0200, Maxime Ripard wrote:
> The gpt_fill_pte will need to access the device block size. Let's pass the
> device descriptor as an argument.
>
> Signed-off-by: Maxime Ripard
> Reviewed-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
De
On Wed, Aug 23, 2017 at 04:01:31PM +0200, Maxime Ripard wrote:
> The start variable is only used inside a loop, and is never affected inside
> it, so it's a purely local variable.
>
> In the same way the partition size is accessed several times, so we can
> store it in a variable.
>
> Signed-off
On Wed, Aug 23, 2017 at 10:59:05PM +0200, Thomas Petazzoni wrote:
> CONFIG_SYS_BARGSIZE is already defined to 512 in common/image.c when
> not defined. Therefore, there is no point in having board
> configuration files define it to 512.
>
> Signed-off-by: Thomas Petazzoni
> Reviewed-by: Tom Rini
On Wed, Aug 23, 2017 at 10:59:04PM +0200, Thomas Petazzoni wrote:
> Now that include/config_fallbacks.h define a sane fallback for
> CONFIG_SYS_MAXARGS, we can drop the definition of this constant in all
> configurations that were using the default value.
>
> Signed-off-by: Thomas Petazzoni
> Re
On Sat, Sep 02, 2017 at 08:15:35AM -0700, Bin Meng wrote:
> memset() was given a sizeof(NVME_Q_NUM * sizeof(struct nvme_queue *)
> to clear, which is wrong.
>
> Reported-by: Coverity (CID: 166729)
> Signed-off-by: Bin Meng
> Reviewed-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
si
On Wed, Aug 23, 2017 at 04:01:33PM +0200, Maxime Ripard wrote:
> The current code checks that no partitions overlap with the GPT partition
> table using the offset of the first LBA usable for that partition.
>
> This works fine, unless you have a partition entry that is further away
> than it usu
On Wed, Aug 23, 2017 at 10:59:00PM +0200, Thomas Petazzoni wrote:
> Now that include/config_fallbacks.h define a sane fallback for
> CONFIG_SYS_CBSIZE, we can drop the definition of this constant in all
> configurations that were using the default value.
>
> Signed-off-by: Thomas Petazzoni
> Rev
On Wed, Aug 23, 2017 at 10:59:03PM +0200, Thomas Petazzoni wrote:
> CONFIG_SYS_MAXARGS contains the maximum number of arguments accepted
> by U-Boot commands. Since the vast majority of the platforms define it
> to 16, it makes sense to have a default definition to 16, which will
> allow to remove
On Sat, Sep 02, 2017 at 08:43:52AM -0700, Bin Meng wrote:
> This is not referenced anywhere. Drop it.
>
> Signed-off-by: Bin Meng
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@
On Sat, Sep 02, 2017 at 05:43:05PM -0500, Derald D. Woods wrote:
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot
On Sat, Sep 02, 2017 at 08:43:53AM -0700, Bin Meng wrote:
> This is actually not used. Drop it.
>
> Signed-off-by: Bin Meng
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.
On Wed, Aug 23, 2017 at 10:58:59PM +0200, Thomas Petazzoni wrote:
> CONFIG_SYS_CBSIZE contains the buffer size for input for the
> console. The vast majority of platforms define them to some reasonable
> value (256, 512 or 1024 bytes), and it is quite annoying to repeat
> this definition for all p
On Wed, Aug 23, 2017 at 10:59:02PM +0200, Thomas Petazzoni wrote:
> Now that the fallback value of CONFIG_SYS_PBSIZE in
> include/config_fallbacks.h has been adjusted, remove its definition
> from a large number of board configuration files.
>
> Signed-off-by: Thomas Petazzoni
> Reviewed-by: Tom
On Wed, Aug 23, 2017 at 10:59:06PM +0200, Thomas Petazzoni wrote:
> This commit removes definitions of CONFIG_SYS_BARGSIZE defined to be
> equal to CONFIG_SYS_CBSIZE in numerous configuration files.
>
> We remove such definitions in two situations:
>
Applied to u-boot/master, thanks!
--
Tom
On Wed, Aug 23, 2017 at 10:59:01PM +0200, Thomas Petazzoni wrote:
> Most of the platforms are using CONFIG_SYS_CBSIZE +
> sizeof(CONFIG_SYS_PROMPT) + 16 as their value for CONFIG_SYS_PBSIZE,
> so let's adopt this for the fallback value of CONFIG_SYS_PBSIZE.
>
> This will allow us to drop an expli
On Sun, Aug 27, 2017 at 01:46:22PM +0200, Lukasz Majewski wrote:
> According to fsync specification [1] some special files (e.g., a pipe, FIFO,
> or socket) don't support synchronization and return either EROFS or EINVAL.
>
> On the linux side the sys_fsync -> do_fsync() checks if the requested f
On Sat, Sep 02, 2017 at 08:15:36AM -0700, Bin Meng wrote:
> "lbas" with type "u16" (16 bits, unsigned) is promoted in
> "lbas << ns->lba_shift" to type "int" (32 bits, signed), then
> sign-extended to type "unsigned long long" (64 bits, unsigned).
> If "lbas << ns->lba_shift" is greater than 0x7FF
On Sun, Sep 03, 2017 at 04:37:48AM -0700, Bin Meng wrote:
> Since commit 3809e302 "Makefile: honor PYTHON configuration properly",
> the build commands of libfdt are printed while previously were not.
>
> This adds the missing '--quiet' back.
>
> Signed-off-by: Bin Meng
Applied to u-boot/maste
On Tue, Aug 29, 2017 at 06:36:59PM +0200, Heinrich Schuchardt wrote:
> %s/Desriptor/Descriptor/g
>
> Fix lines over 80 characters with said typo.
>
> Signed-off-by: Heinrich Schuchardt
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
On Sun, Aug 27, 2017 at 08:45:14PM +1000, Jonathan Gray wrote:
> Commit 4ecc988301bc8e981e6d7538c57cdb3aa82f7c1d assumes fls is in libc
> if __BSD_VISIBLE is defined. This appears to only be true on FreeBSD
> and DragonFlyBSD. OpenBSD defines __BSD_VISIBLE and does not have fls
> in strings.h/li
On Sat, Sep 02, 2017 at 08:43:54AM -0700, Bin Meng wrote:
> This is not used in U-Boot.
>
> Signed-off-by: Bin Meng
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
On Sat, Sep 02, 2017 at 08:15:37AM -0700, Bin Meng wrote:
> Execution cannot reach this statement: "nr_io_queues = result;"
>
> Reported-by: Coverity (CID: 166731)
> Signed-off-by: Bin Meng
> Reviewed-by: Tom Rini
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital
On Sun, Sep 03, 2017 at 04:37:49AM -0700, Bin Meng wrote:
> This should not be printed by default. Prefix it with $(Q).
>
> Fixes ee95d10b: ("fdt: Build the new python libfdt module")
> Signed-off-by: Bin Meng
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signa
Change to use 'debug' to output the error message if it fails to
read the driver descriptor block.
Signed-off-by: Bin Meng
---
Changes in v2:
- rebase on top of u-boot/master
disk/part_mac.c | 6 +-
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/disk/part_mac.c b/disk/part_m
These are currently out of alphabetical order.
Signed-off-by: Bin Meng
---
tools/.gitignore | 19 +--
1 file changed, 9 insertions(+), 10 deletions(-)
diff --git a/tools/.gitignore b/tools/.gitignore
index ac0c979..6a487d2 100644
--- a/tools/.gitignore
+++ b/tools/.gitignore
@@
Some files are generated during libfdt build. Ignore them.
Signed-off-by: Bin Meng
---
tools/.gitignore | 4
1 file changed, 4 insertions(+)
diff --git a/tools/.gitignore b/tools/.gitignore
index 6a487d2..5293d44 100644
--- a/tools/.gitignore
+++ b/tools/.gitignore
@@ -1,3 +1,4 @@
+/_libf
From: Hou Zhiqiang
This patch set depends on ls1088a platform support patchs:
http://patchwork.ozlabs.org/patch/800408/
http://patchwork.ozlabs.org/patch/800410/
http://patchwork.ozlabs.org/patch/800409/
http://patchwork.ozlabs.org/patch/803037/
http://patchwork.ozlabs.org/patch/803038/
http://pa
From: Hou Zhiqiang
Signed-off-by: Hou Zhiqiang
---
arch/arm/dts/fsl-ls1088a.dtsi | 48 +++
1 file changed, 48 insertions(+)
diff --git a/arch/arm/dts/fsl-ls1088a.dtsi b/arch/arm/dts/fsl-ls1088a.dtsi
index 421d2de799..d943a9efa3 100644
--- a/arch/arm/dts/
From: Hou Zhiqiang
The pcie config space of ls1088a is different from ls2080a.
Signed-off-by: Hou Zhiqiang
---
arch/arm/include/asm/arch-fsl-layerscape/immap_lsch3.h | 6 ++
1 file changed, 6 insertions(+)
diff --git a/arch/arm/include/asm/arch-fsl-layerscape/immap_lsch3.h
b/arch/arm/inc
From: Hou Zhiqiang
Enabled PCIe support and PCI command feature.
Signed-off-by: Hou Zhiqiang
---
configs/ls1088aqds_qspi_defconfig| 4
configs/ls1088aqds_sdcard_qspi_defconfig | 4
configs/ls1088ardb_qspi_defconfig| 4
configs/ls1088ardb_sdcard_qspi_defconfig | 4
So far these are using magic numbers. Replace them with macros.
Signed-off-by: Bin Meng
---
include/blk.h | 10 +++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/include/blk.h b/include/blk.h
index a106f9c..fced138 100644
--- a/include/blk.h
+++ b/include/blk.h
@@ -36,6 +
At present the IDE device number is initialized to -1, which means
we cannot type "ide read" command before setting the device number
via "ide device #".
For convenience, let's set the first device as the default one.
Signed-off-by: Bin Meng
---
cmd/ide.c | 2 +-
1 file changed, 1 insertion(+)
Hi Heinrich,
On Fri, Sep 1, 2017 at 1:24 AM, Heinrich Schuchardt wrote:
> On 08/31/2017 02:55 PM, Bin Meng wrote:
>> Hi Simon,
>>
>> On Thu, Aug 31, 2017 at 8:52 PM, Simon Glass wrote:
>>> Hi Bin,
>>>
>>> On 31 August 2017 at 10:53, Bin Meng wrote:
Hi Heinrich,
On Thu, Aug 31, 20
This converts the IDE driver to driver model so that block read and
write are fully functional.
Fixes: b7c6baef ("x86: Convert MMC to driver model")
Reported-by: Heinrich Schuchardt
Signed-off-by: Bin Meng
---
drivers/block/ide.c| 68 ++
incl
When there is no CDROM inserted, the block size is zero hence there
is no need to create a BLK device for it.
Signed-off-by: Bin Meng
---
drivers/block/ide.c | 7 +++
1 file changed, 7 insertions(+)
diff --git a/drivers/block/ide.c b/drivers/block/ide.c
index 58b295e..8125ff8 100644
--- a/
On Rab, 2017-08-30 at 10:45 +0200, Marek Vasut wrote:
> On 08/30/2017 07:59 AM, Chee, Tien Fong wrote:
> >
> > On Sel, 2017-08-29 at 13:51 +0200, Marek Vasut wrote:
> > >
> > > On 08/29/2017 12:45 PM, tien.fong.c...@intel.com wrote:
> > > >
> > > >
> > > > From: Tien Fong Chee
> > > >
> > > >
Hello Lukasz,
Am 02.09.2017 um 13:08 schrieb Łukasz Majewski:
Hi Heiko,
Would you find some time and run this patch through your test setup?
Thanks in advance.
Of course, as it is automated ;-)
Okay, I had to add an oneliner, to say tbot, which patchwork patch it
has to download... for the
From: Joshua Scott
Display more information about the current RAM configuration. With these
changes the output on a 88F6820 board is
SoC: MV88F6820-A0 at 1600 MHz
DRAM: 2 GiB (800 MHz, 32-bit, ECC not enabled)
Signed-off-by: Joshua Scott
Signed-off-by: Chris Packham
---
One of the hard
These SoCs are network packet processors (switch chips) with integrated
ARMv7 cores. They share a great deal of commonality with the Armada-XP
CPUs.
Signed-off-by: Chris Packham
---
There are actually a number of IDs for these chips, probably a dozen in
total. I haven't enumerated them all in thi
On 09/04/2017 05:59 AM, Bin Meng wrote:
> Hi Heinrich,
>
> On Fri, Sep 1, 2017 at 1:24 AM, Heinrich Schuchardt
> wrote:
>> On 08/31/2017 02:55 PM, Bin Meng wrote:
>>> Hi Simon,
>>>
>>> On Thu, Aug 31, 2017 at 8:52 PM, Simon Glass wrote:
Hi Bin,
On 31 August 2017 at 10:53, Bin Men
"U-Boot" schrieb am 01.09.2017 16:39:03:
> Von: Jagan Teki
> An: Hannes Schmelzer
> Kopie: "u-boot@lists.denx.de >> u-boot" ,
e...@systemsoft.no
> Datum: 01.09.2017 16:39
> Betreff: Re: [U-Boot] QSPI "sf probe ...", "sf read ..." on Altera SoC
FPGA
> Gesendet von: "U-Boot"
>
> On Fri, Sep 1
Adds SERDES voltage and reset SERDES lanes API and makes
enable/disable DDR controller support 0.9V API common.
Signed-off-by: Ashish Kumar
Signed-off-by: Rajesh Bhagat
---
Changes in v3:
Restructured LS1088A VID support to use common VID driver
Cosmetic review comments fixed
Added __iomem fo
Moves IR chip (IR36021) specific code in flag to resolve
compilation issue where it is not present. For example,
LS1088A is having a new LTC3882 voltage chip.
Signed-off-by: Ashish Kumar
Signed-off-by: Rajesh Bhagat
---
board/freescale/common/vid.c | 10 +-
1 file changed, 9 insertions(
Adds LTC3882 voltage regulator chip support in common VID driver.
And adds VID support for LS1088A QDS and RDB platforms.
Rajesh Bhagat (7):
armv8: lsch3: Add serdes and DDR voltage setup
board: common:vid: Add LS1088A VID Supported voltage values
board: common: vid: Add board specific vdd a
Restructures common driver to support LTC3882 voltage regulator
chip.
Signed-off-by: Ashish Kumar
Signed-off-by: Rajesh Bhagat
---
Changes in v3:
Restructured LS1088A VID support to use common VID driver
Added the coding for voltage in comments i.e. 1/4096V
Removed APIs getLSB/MSB and used bi
Adds below voltage values supported by LS1088A Soc:
1.025 V(default), 0.9875V, 0.9750 V, 0.9V, 1.0 V, 1.0125 V, 1.0250 V
Signed-off-by: Ashish Kumar
Signed-off-by: Rajesh Bhagat
---
board/freescale/common/vid.c | 21 +
1 file changed, 21 insertions(+)
diff --git a/board/fr
Adds a board specific API namely board_adjust_vdd which
is required to define the board VDD adjust settings.
Signed-off-by: Ashish Kumar
Signed-off-by: Rajesh Bhagat
---
board/freescale/common/vid.c | 13 +
1 file changed, 13 insertions(+)
diff --git a/board/freescale/common/vid.c
This patch adds the support for VID on LS1088AQDS and LS1088ARDB systems.
It reads the fusesr register and changes the VDD accordingly by adjusting the
voltage via LTC3882 regulator.
This patch also takes care of the special case of 0.9V VDD is present in
fusesr register. In that case,it also chan
Adds below LTC3882 voltage regulator config:
CONFIG_VOL_MONITOR_LTC3882_READ
CONFIG_VOL_MONITOR_LTC3882_SET
Signed-off-by: Ashish Kumar
Signed-off-by: Rajesh Bhagat
---
board/freescale/common/Kconfig | 16
1 file changed, 16 insertions(+)
diff --git a/board/freescale/common/Kc
Hi Marek,
On 03.09.2017 15:13, Marek Behún wrote:
Otherwise the linking will fail since eth_env_set_enetaddr cannot
be found.
Signed-off-by: Marek Behun
---
board/CZ.NIC/turris_omnia/turris_omnia.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/board/CZ.NIC/turris_om
On 04.09.2017 07:38, Chris Packham wrote:
These SoCs are network packet processors (switch chips) with integrated
ARMv7 cores. They share a great deal of commonality with the Armada-XP
CPUs.
Signed-off-by: Chris Packham
---
There are actually a number of IDs for these chips, probably a dozen in
On 04.09.2017 07:38, Chris Packham wrote:
From: Joshua Scott
Display more information about the current RAM configuration. With these
changes the output on a 88F6820 board is
SoC: MV88F6820-A0 at 1600 MHz
DRAM: 2 GiB (800 MHz, 32-bit, ECC not enabled)
Signed-off-by: Joshua Scott
Sig
Hi Alex,
On 31 August 2017 at 21:58, Alexander Graf wrote:
>
> On 08/31/2017 02:51 PM, Simon Glass wrote:
>>
>> On 27 August 2017 at 06:51, Heinrich Schuchardt wrote:
>>>
>>> Macro EFI_CALL was introduced to call an UEFI function.
>>
>> Should this be 'an EFI'. Or 'a UEFI'?
>
>
> In a nutshell,
93 matches
Mail list logo