Hi Tom,
The following changes since commit 19ce924ff914f315dc2fdf79f357825c513aed6e:
Prepare v2016.07 (2016-07-11 15:01:01 -0400)
are available in the git repository at:
git://git.denx.de/u-boot-x86.git master
for you to fetch changes up to 9532fe3b40ddf66ef976dee3d5cf1d8b3396bf4d:
x86:
On Tue, Jul 12, 2016 at 1:14 PM, Bin Meng wrote:
> On Mon, Jul 11, 2016 at 11:30 PM, Simon Glass wrote:
>> With the change to set up pinctrl after relocation, link fails to boot. Add
>> a special case in the link code to handle this.
>>
>> Fixes: d8906c1f (x86: Probe pinctrl driver in cpu_init_r(
Signed-off-by: Teddy Reed
---
tools/mkimage.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/tools/mkimage.c b/tools/mkimage.c
index ff3024a..0e501f8 100644
--- a/tools/mkimage.c
+++ b/tools/mkimage.c
@@ -225,6 +225,7 @@ static void process_args(int argc, char **argv)
hi Andreas,
Thanks for your catch. I will revise the typos.
On 2016年07月12日 12:30, Andreas Färber wrote:
Am 12.07.2016 um 05:18 schrieb Ziyuan Xu:
From: Xu Ziyuan
If we would like to boot from SD card, we have to implement mmc driver
in SPL stage, and get a slightly large SPL binrary. Rockchi
> -Original Message-
> From: U-Boot [mailto:u-boot-boun...@lists.denx.de] On Behalf Of Yunhui Cui
> Sent: Tuesday, July 12, 2016 8:20 AM
> To: york sun
> Cc: Yunhui Cui ; u-boot@lists.denx.de
> Subject: [U-Boot] [PATCH v3] driver: spi: fsl-qspi: disable AHB buffer
> prefetch
>
> From: Y
Hi Simon,
On Tue, Jun 28, 2016 at 9:44 PM, Stefan Roese wrote:
> This patch adds support for the SMBus block read/write functionality.
> Other protocols like the SMBus quick command need to get added
> if this is needed.
>
> This patch also removed the SMBus related defines from the Ivybridge
> p
On Tue, Jun 28, 2016 at 9:45 PM, Stefan Roese wrote:
> This patch includes the following changes:
>
> - Remove Designware I2C support from dts as its not used
> - Configure SMBus PADs in dts
> - Enable I2C commands and I2C support
> - Configure SMSC2513 USB hub via SMBus upon startup
> - Move envi
On Mon, Jul 11, 2016 at 11:30 PM, Simon Glass wrote:
> With the change to set up pinctrl after relocation, link fails to boot. Add
> a special case in the link code to handle this.
>
> Fixes: d8906c1f (x86: Probe pinctrl driver in cpu_init_r())
>
> Signed-off-by: Simon Glass
> ---
>
> arch/x86/c
On Mon, Jul 11, 2016 at 09:12:27AM +0200, Maxime Ripard wrote:
> On Wed, Jul 06, 2016 at 11:22:48AM +1000, David Gibson wrote:
> > On Tue, Jul 05, 2016 at 10:26:42AM +0200, Maxime Ripard wrote:
> > > Add a function to retrieve a writeable property only by the first
> > > characters of its name.
> >
Am 12.07.2016 um 05:18 schrieb Ziyuan Xu:
> From: Xu Ziyuan
>
> If we would like to boot from SD card, we have to implement mmc driver
> in SPL stage, and get a slightly large SPL binrary. Rockchip SoC's
"binary"
> bootrom code has the ability to load spl and u-boot, then boot.
>
> If CONFIG_R
From: Yunhui Cui
Warnins log:
drivers/spi/fsl_qspi.c: In function ‘qspi_ahb_read’:
drivers/spi/fsl_qspi.c:400:16: warning: cast to pointer from integer of
different size [-Wint-to-pointer-cast]
memcpy(rxbuf, (u8 *)(priv->cur_amba_base + priv->sf_addr), len);
Signed-off-by: Yunhui Cui
---
dr
We do so for the EFI binary already and it aids debugging.
Cc: Alexander Graf
Signed-off-by: Andreas Färber
---
include/config_distro_bootcmd.h | 4
1 file changed, 4 insertions(+)
diff --git a/include/config_distro_bootcmd.h b/include/config_distro_bootcmd.h
index 8f14457..0cf74e2 100644
On arm64 Linux device trees are organized by SoC vendor. Therefore we
need to search the vendor subdirectory as well.
Since the SoC vendor may be different from ${vendor}, introduce a new
${soc_vendor}. If this is not set, the behavior remains unchanged.
Cc: Alexander Graf
Signed-off-by: Andreas
Hi,
This series modifies the distro boot scripts to better cope with real-world
.dtb scenarios. In particular openSUSE images have the EFI GRUB2 and optional
.dtb files on separate partitions (fat vs. ext4) and installed to /boot/dtb-foo
symlink, which may be /dtb or /boot/dtb for U-Boot. The goal
Signed-off-by: Andreas Färber
---
include/configs/dragonboard410c.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/configs/dragonboard410c.h
b/include/configs/dragonboard410c.h
index 74a827d..8b019e9 100644
--- a/include/configs/dragonboard410c.h
+++ b/include/configs/dragonboard410
Just like boot configs or scripts, .dtb files may be in /boot.
Search $efi_dtb_prefixes for all $boot_prefixes.
Cc: Alexander Graf
Signed-off-by: Andreas Färber
---
include/config_distro_bootcmd.h | 24 +++-
1 file changed, 15 insertions(+), 9 deletions(-)
diff --git a/incl
A UEFI setup will typically have an EFI FAT partition, but device trees
are more likely to be located on, e.g., Linux volumes. By convention the
EFI partition will usually be placed first, so that we would find the
EFI removable media binary and enter it without device tree from disk.
Therefore af
Fix a macro line break whose alignment slipped in commit fba5f93.
Be consistent in having trailing spaces after semicolon.
While at it, drop a duplicate white line.
Cc: Alexander Graf
Signed-off-by: Andreas Färber
---
include/config_distro_bootcmd.h | 11 +--
1 file changed, 5 insertion
From: Xu Ziyuan
If we would like to boot from SD card, we have to implement mmc driver
in SPL stage, and get a slightly large SPL binrary. Rockchip SoC's
bootrom code has the ability to load spl and u-boot, then boot.
If CONFIG_ROCKCHIP_SPL_BACK_TO_BROM is enabled, the spl will return to
tbootro
As part of the startup process for boards using the SPL, the
meaning of board_init_f changed such that it should return normally
rather than calling board_init_r directly.
(see db910353a126d84fe8dff7a694ea792f50fcfb6a)
This was fixed in 32-bit arm, but broke when SPL was added to
64 bit arm. This f
From: Yunhui Cui
Errata: A-009282: QuadSPI data pre-fetch can result in incorrect data
We need this errata workaround when CONFIG_SYS_FSL_QSPI_AHB is enabled.
Signed-off-by: Yunhui Cui
---
drivers/spi/fsl_qspi.c | 12 +++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/d
On 07/11, 2016, 11:17 PM, York Wrote:
> On 07/11/2016 12:49 AM, Yunhui Cui wrote:
> > From: Yunhui Cui
> >
> > Errata: A-009282: QuadSPI data pre-fetch can result in incorrect data
> >
> > Signed-off-by: Yunhui Cui
> > ---
> > drivers/spi/fsl_qspi.c | 14 --
> > 1 file changed, 12
Hi,
On Jul 11, 2016 20:06, "Ziyuan Xu" wrote:
>
> hi Simon,
>
>
> On 2016年07月12日 07:29, Simon Glass wrote:
>>
>> Hi Ziyuan,
>>
>> On 27 June 2016 at 02:30, Ziyuan Xu wrote:
>>>
>>> From: Xu Ziyuan
>>>
>>> If we would like to boot from SD card, we have to implement mmc driver
>>> in SPL stage, a
Hi Simon,
CC Doug for this topic.
On 07/12/2016 07:54 AM, Simon Glass wrote:
Hi Kever,
On 11 July 2016 at 00:58, Kever Yang wrote:
Hi Simon,
On 07/09/2016 10:39 PM, Simon Glass wrote:
Hi Kever,
On 7 July 2016 at 20:45, Kever Yang wrote:
The grf setting for rkpwm is only need in rk3288,
hi Simon,
On 2016年07月12日 07:29, Simon Glass wrote:
Hi Ziyuan,
On 27 June 2016 at 02:30, Ziyuan Xu wrote:
From: Xu Ziyuan
If we would like to boot from SD card, we have to implement mmc driver
in SPL stage, and get a slightly large spl binrary. RK3288's bootrom code
has the ability to load s
Am 03.07.2016 um 18:59 schrieb Ricardo Salveti:
> Make the external devices the preferred ones when booting the system
> (usb is already the first option). This allows users to easily boot
> custom distributions without requiring them to reflash/customize u-boot.
>
> Cc: Mateusz Kulikowski
> Sign
hi Simon,
On 2016年07月12日 07:54, Simon Glass wrote:
Hi,
On 6 July 2016 at 03:34, Ziyuan Xu wrote:
This patchset add the fastboot support for rk3288, and I have tested on
firefly-rk3288 board.
Fix an issue which was mentioned in V1's cover-letter:
The DMA buffer was always zero after DMA trans
Hi,
On 6 July 2016 at 08:44, Ihar Filipau wrote:
> Hi All!
>
> I have stumbled upon the lack of support for storage devices in API's
> ub_dev_write()/API_dev_write() functions. Currently the function
> supports only the network devices.
>
> I have implemented the support for the storage by adapti
On 10 July 2016 at 21:14, Kever Yang wrote:
> The 'evb_rk3036' and 'kylin' is not a vendor name, let's replace them
> to 'rockchip' which is a real _vendor_ name, and meet the architecure
> 'board///'.
>
> More boards from rockchip like evb_rk3288, evb_rk3399 will comes later.
>
> Signed-off-by: K
Hi Kever,
On 11 July 2016 at 00:58, Kever Yang wrote:
> Hi Simon,
>
> On 07/09/2016 10:39 PM, Simon Glass wrote:
>>
>> Hi Kever,
>>
>> On 7 July 2016 at 20:45, Kever Yang wrote:
>>>
>>> The grf setting for rkpwm is only need in rk3288, other SoCs like
>>> RK3399 which also use rkpwm do not need
Hi,
On 6 July 2016 at 03:34, Ziyuan Xu wrote:
> This patchset add the fastboot support for rk3288, and I have tested on
> firefly-rk3288 board.
>
> Fix an issue which was mentioned in V1's cover-letter:
> The DMA buffer was always zero after DMA transfer is complete, It takes
> no effect that inv
Hi Kever,
On 10 July 2016 at 21:14, Kever Yang wrote:
> Hi Simon,
>
>
> On 07/09/2016 10:38 PM, Simon Glass wrote:
>
> Hi Kevin,
>
> On 7 July 2016 at 21:49, Eddie Cai wrote:
>
> 2016-07-08 11:30 GMT+08:00 Kever Yang :
>
> The 'evb_rk3036' and 'kylin' is not a vendor name, let's replace them
> t
On 27 June 2016 at 02:30, Ziyuan Xu wrote:
> From: Xu Ziyuan
>
> If we would like to boot from SD card, we have to implement mmc driver
> in SPL stage, and get a slightly large spl binrary. RK3288's bootrom code
> has the ability to load spl and u-boot, then boot.
>
> If CONFIG_ROCKCHIP_RK3288_SP
On 11 July 2016 at 03:14, Ziyuan Xu wrote:
> From: Xu Ziyuan
>
> evb-3288 board RK3288-based development board with 2 USB ports, HDMI,
> VGA, micro-SD card, audio, WiFi and Gigabit Ethernet. It also includes
> on-board 8G eMMC and 2GB of SDRAM. Expansion connector provide access to
> display pins
Hi Ziyuan,
On 27 June 2016 at 02:30, Ziyuan Xu wrote:
> From: Xu Ziyuan
>
> If we would like to boot from SD card, we have to implement mmc driver
> in SPL stage, and get a slightly large spl binrary. RK3288's bootrom code
> has the ability to load spl and u-boot, then boot.
>
> If CONFIG_ROCKCH
On Tue, Jul 12, 2016 at 12:54 AM, Andreas Färber wrote:
> Am 12.07.2016 um 00:52 schrieb Carlo Caione:
>> On Mon, Jul 11, 2016 at 11:38 PM, Andreas Färber wrote:
>>> Am 11.07.2016 um 22:36 schrieb Carlo Caione:
On Mon, Jul 11, 2016 at 10:15 PM, Andreas Färber wrote:
>>
>> [...]
>>
>
>>>
Am 12.07.2016 um 00:52 schrieb Carlo Caione:
> On Mon, Jul 11, 2016 at 11:38 PM, Andreas Färber wrote:
>> Am 11.07.2016 um 22:36 schrieb Carlo Caione:
>>> On Mon, Jul 11, 2016 at 10:15 PM, Andreas Färber wrote:
>
> [...]
>
DRAM: 2 GiB
No maUsing default environment
In:
On Mon, Jul 11, 2016 at 11:38 PM, Andreas Färber wrote:
> Am 11.07.2016 um 22:36 schrieb Carlo Caione:
>> On Mon, Jul 11, 2016 at 10:15 PM, Andreas Färber wrote:
[...]
>>>
>>> DRAM: 2 GiB
>>> No maUsing default environment
>>>
>>> In:serial@4c0
>>> Out: serial@4c0
>>> Err: serial@4c0
>
Hi,
On 4 July 2016 at 11:57, Simon Glass wrote:
>
> Note: This v3 series adds a test and fixes a few bugs found in generation of
> of-platdata.
>
> This series provides a way to compile in the contents of a device tree as C
> code into U-Boot, implementing an idea that Tom Rini came up with. It i
Hi Tom,
This includes the MMC block-device stuff (which needs lots of testing
time), cleaning up some fdtdec COMPAT strings and some patman improvements.
The following changes since commit 19ce924ff914f315dc2fdf79f357825c513aed6e:
Prepare v2016.07 (2016-07-11 15:01:01 -0400)
are available in
Am 11.07.2016 um 22:36 schrieb Carlo Caione:
> On Mon, Jul 11, 2016 at 10:15 PM, Andreas Färber wrote:
>> [...]
>> NOTICE: BL3-1: v1.0(debug):4d2e34d
>> NOTICE: BL3-1: Built : 17:08:35, Oct 29 2015
>> INFO:BL3-1: Initializing runtime services
>> INFO:BL3-1: Preparing for EL3 exit to norm
Dear Tom,
In message <20160711195212.GA25382@bill-the-cat> you wrote:
>
> I've released v2016.07 and it's now live on git and FTP and ACD. As a
> possible bonus, the tarball is now signed with my PGP key.
Thanks a lot. Release statistics are also up now, oth for the recent
[1] and for the prev
On Mon, Jul 11, 2016 at 10:15 PM, Andreas Färber wrote:
> Am 11.07.2016 um 21:48 schrieb Beniamino Galvani:
>> On Mon, Jul 11, 2016 at 05:23:15AM +0100, Peter Robinson wrote:
>>> On Mon, Jul 11, 2016 at 4:57 AM, Andreas Färber wrote:
Last output:
NOTICE: BL3-1: v1.0(debug):4d2e34d
Am 11.07.2016 um 21:48 schrieb Beniamino Galvani:
> On Mon, Jul 11, 2016 at 05:23:15AM +0100, Peter Robinson wrote:
>> On Mon, Jul 11, 2016 at 4:57 AM, Andreas Färber wrote:
>>> Last output:
>>>
>>> NOTICE: BL3-1: v1.0(debug):4d2e34d
>>> NOTICE: BL3-1: Built : 17:08:35, Oct 29 2015
>>> INFO:
Hey all,
I've released v2016.07 and it's now live on git and FTP and ACD. As a
possible bonus, the tarball is now signed with my PGP key.
Looking over the changes in this release, I would say it's another good,
solid, iterative improvement over the last. MMC has moved to DM, we
have more tests
On Mon, Jul 11, 2016 at 05:23:15AM +0100, Peter Robinson wrote:
> On Mon, Jul 11, 2016 at 4:57 AM, Andreas Färber wrote:
> > Last output:
> >
> > NOTICE: BL3-1: v1.0(debug):4d2e34d
> > NOTICE: BL3-1: Built : 17:08:35, Oct 29 2015
> > INFO:BL3-1: Initializing runtime services
> > INFO:BL
From: Tim Harvey
The CONFIG_HIDE_LOGO_VERSION config can be used to disable putting the
U-Boot version string on top of the logo.
Signed-off-by: Tim Harvey
---
Changes in v2:
- move len and space variables to functio top
- hide extra string if CONFIG_CONSOLE_EXTRA_INFO is defined
README
Am 11.07.2016 um 20:14 schrieb Bernhard Nortmann:
"transient" (='t') is like "any", but requests that a variable
should not be exported (ENV_FLAGS_VARACCESS_PREVENT_EXPORT).
"system" (='S') is meant for 'internal' variables that
aren't supposed to be changed by the user. It corresponds
to "trans
Hi Bernhard,
On Mon, Jul 11, 2016 at 1:14 PM, Bernhard Nortmann
wrote:
> This series evolved around the idea of introducing a new env_op
> type to control (and possibly restrict) the export of variables.
> This is especially useful if one wants to prevent dynamic
> configuration information from
I'm not sure why this breaks kernel loading.
Signed-off-by: Sandy Patterson
---
configs/rock2_defconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/configs/rock2_defconfig b/configs/rock2_defconfig
index 3e16b80..3a06b7e 100644
--- a/configs/rock2_defconfig
+++ b/configs/rock2_defconfig
I am not sure why this limit is changing. But my kernel
doesn't load when it's above 256. This was testing on the
rock2 board.
Signed-off-by: Sandy Patterson
---
include/configs/rk3288_common.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/configs/rk3288_comm
This reverts commit df120142f36b6ff8b12187b8860269763b2b3203.
Conflicts:
arch/arm/cpu/armv7/cache_v7.c
arch/arm/cpu/armv7/cache_v7_asm.S
Signed-off-by: Sandy Patterson
---
arch/arm/cpu/armv7/cache_v7.c | 24 +---
1 file changed, 21 insertions(+), 3 deletions
This reverts commit c09d29057ab0b04db0857d319c6bff74de31b9c3.
Conflicts:
arch/arm/cpu/armv7/cache_v7.c
arch/arm/cpu/armv7/cache_v7_asm.S
Signed-off-by: Sandy Patterson
---
arch/arm/cpu/armv7/Makefile | 2 +-
arch/arm/cpu/armv7/cache_v7.c| 119
I wasn't able to load the linux kernel using a Rock2 board
using the latest master branch. The board hangs after it has
handed executing over to the kernel. I found that the latest release
that worked was v2016.03.
I did some searching and I suspect the problem may be cache related.
This patchset
"fel_booted" and "fel_scriptaddr" have a special meaning and get
used by U-Boot internally.
This patch aims at both preventing user modification of these
values, and at excluding them from being stored on "saveenv".
As this is achieved by setting specialized access flags,
also enable the "env fla
This patch introduces a new "export" environment operation
(env_op_export) and the corresponding access flag
ENV_FLAGS_VARACCESS_PREVENT_EXPORT; so that env_flags_validate()
may now check requests to export specific variables.
In turn, hexport_r() makes uses of this ability to suppress the
export
Like setenv(), but automatically marks the entry as "don't export".
Signed-off-by: Bernhard Nortmann
---
cmd/nvedit.c | 21 +
include/common.h | 1 +
2 files changed, 22 insertions(+)
diff --git a/cmd/nvedit.c b/cmd/nvedit.c
index 88dbcb9..3c408f6 100644
--- a/cmd/nved
This is an attempt to prevent such information from ending up
in exported environment data, especially when doing "saveenv".
(http://lists.denx.de/pipermail/u-boot/2015-September/227611.html)
The patch makes use of the new setenv_transient() helper for
environment variables that get updated via ne
"transient" (='t') is like "any", but requests that a variable
should not be exported (ENV_FLAGS_VARACCESS_PREVENT_EXPORT).
"system" (='S') is meant for 'internal' variables that
aren't supposed to be changed by the user. It corresponds
to "transient" plus "read-only".
Signed-off-by: Bernhard Nor
This prevents a possible compiler warning similar to
"net/eth-uclass.c::: warning: enumeration value
'env_op_*' not handled in switch [-Wswitch]".
Signed-off-by: Bernhard Nortmann
---
net/eth-uclass.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/net/eth-uclass.c b/net/eth-uclass.c
inde
This series evolved around the idea of introducing a new env_op
type to control (and possibly restrict) the export of variables.
This is especially useful if one wants to prevent dynamic
configuration information from ending up in a saved environment -
the 'classic' example being network setup with
This patch modifies env_flags_validate() in such a way that any
operation will *always* be allowed if H_PROGRAMMATIC is present.
Without this change, programmatically changing environment vars
may fail depending on their flags, e.g. when trying to setenv*()
a variable that is marked "read-only".
h
Hi all
I'm working with zynqmp evalutation board (zcu102 revB) and currently I rely on
FSBL generated by petalinux and I'm thinking of dropping it ans using u-boot's
SPL. I have spent some time trying to configure and use SPL, but I've stuck on
booting up the board.
I've prepared SD card as de
Hi Tim,
On Fri, 8 Jul 2016 06:45:10 -0700
Tim Harvey thar...@gateworks.com wrote:
...
> I haven't seen any feedback on this. Do you have any comment or ack?
sorry for delay, I was on vacation. Applied slightly modified patch
to u-boot-video/next.
Thanks,
Anatolij
___
On 7/11/2016 12:05 PM, Jagan Teki wrote:
> On 11 July 2016 at 11:00, Vignesh R wrote:
>> Populating QSPI_RD_SNGL bit(0x1) in priv->cmd means that value
>> QSPI_INVAL (0x4) is not written to CMD field of QSPI_SPI_CMD_REG in
>> ti_qspi_cs_deactivate(). Therefore CS is never deactivated between
>>
From: Yunhui Cui
Errata: A-009282: QuadSPI data pre-fetch can result in incorrect data
Signed-off-by: Yunhui Cui
---
drivers/spi/fsl_qspi.c | 14 --
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/drivers/spi/fsl_qspi.c b/drivers/spi/fsl_qspi.c
index 75cbab2..99634db
Hi all
I'm working with zynqmp evalutation board (zcu102 revB) and currently I rely on
FSBL generated by petalinux and I'm thinking of dropping it ans using u-boot's
SPL. I have spent some time trying to configure and use SPL, but I've stuck on
booting up the board.
I've prepared SD card as de
With the change to set up pinctrl after relocation, link fails to boot. Add
a special case in the link code to handle this.
Fixes: d8906c1f (x86: Probe pinctrl driver in cpu_init_r())
Signed-off-by: Simon Glass
---
arch/x86/cpu/ivybridge/sdram.c | 5 +
1 file changed, 5 insertions(+)
diff
On 07/11/2016 12:49 AM, Yunhui Cui wrote:
> From: Yunhui Cui
>
> Errata: A-009282: QuadSPI data pre-fetch can result in incorrect data
>
> Signed-off-by: Yunhui Cui
> ---
> drivers/spi/fsl_qspi.c | 14 --
> 1 file changed, 12 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/s
On Mon, Jul 11, 2016 at 09:56:48AM -0300, Fabio Estevam wrote:
> Hi Tom,
>
> On Fri, May 13, 2016 at 9:30 AM, Tom Rini wrote:
> > On Thu, May 12, 2016 at 11:22:17PM -0300, Fabio Estevam wrote:
> >> On Thu, May 12, 2016 at 11:12 PM, Fabio Estevam wrote:
> >> > Hi Raul,
> >> >
> >> > In commit 020
On Sat, Jul 09, 2016 at 09:12:04PM +0800, jk wrote:
> It's easier to Cc rockchip maintainers on rockchip-releated patches.
>
> Signed-off-by: jk
Applied to u-boot/master, thanks!
--
Tom
signature.asc
Description: Digital signature
___
U-Boot maili
On 07/11/2016 04:23 PM, Stefano Babic wrote:
Hi Hannes,
Hi Stefano,
On 22/06/2016 12:07, Hannes Schmelzer wrote:
If MAC is directly connected to another MAC (like a switch for example)
we don't need to probe for a phy, autoneogation and so on. We simply
have to setup speed.
Signed-off-by: Ha
On Mon, Jul 11, 2016 at 04:09:48PM +0200, Stefano Babic wrote:
> Because a gpimage cannot be detected, a false
> GP header is printed instead of checking
> for further image types.
>
> Move gpimage as last to be linked, letting check
> all other image types and printing a GP header just
> in case
On Fri, Jul 08, 2016 at 03:25:23PM +0100, Andre Przywara wrote:
> Since we lack information about the DRAM initialization for the
> Allwinner A64 SoC, booting any A64 based board like the Pine64 is a bit
> involved at the moment.
> Add a README file to explain the process.
>
> Signed-off-by: Andr
On 30/06/2016 15:08, Peng Fan wrote:
> Typo fix, "PPL2 -> PLL2"
>
> Signed-off-by: Peng Fan
> Cc: Stefano Babic
> ---
> arch/arm/cpu/armv7/mx6/clock.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/cpu/armv7/mx6/clock.c b/arch/arm/cpu/armv7/mx6/clock.c
> inde
On Wed, Jun 22, 2016 at 7:07 AM, Hannes Schmelzer wrote:
> if we build for an i.mx6 (d)ual(l)ite CONFIC_MX6DL we shall use
> MX6DL_PAD instead the common MX6_PAD.
>
> Signed-off-by: Hannes Schmelzer
Please put this for the current release; this is a bugfix and a critical one.
--
Otavio Salvad
On 22/06/2016 12:07, Hannes Schmelzer wrote:
> if we build for an i.mx6 (d)ual(l)ite CONFIC_MX6DL we shall use
> MX6DL_PAD instead the common MX6_PAD.
>
> Signed-off-by: Hannes Schmelzer
> ---
>
> arch/arm/include/asm/arch-mx6/mx6-pins.h | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(
Hi Hannes,
On 22/06/2016 12:07, Hannes Schmelzer wrote:
> If MAC is directly connected to another MAC (like a switch for example)
> we don't need to probe for a phy, autoneogation and so on. We simply
> have to setup speed.
>
> Signed-off-by: Hannes Schmelzer
> ---
>
> doc/README.fec_mxc|
Because a gpimage cannot be detected, a false
GP header is printed instead of checking
for further image types.
Move gpimage as last to be linked, letting check
all other image types and printing a GP header just
in case no image is detected.
Signed-off-by: Stefano Babic
---
tools/Makefile | 4
On 11/07/2016 14:41, Fabio Estevam wrote:
> Hi Stefano,
>
> On Mon, Jun 13, 2016 at 1:49 PM, Fabio Estevam wrote:
>> On Mon, Jun 13, 2016 at 1:01 PM, Vanessa Maegima
>> wrote:
>>> Add USB host support.
>>>
>>> Tested by connecting a USB pen drive:
>>>
>>> => usb start
>>> starting USB...
>>> USB
On Mon, 2016-07-11 at 11:02 +0200, Hans de Goede wrote:
> > On Sat, 2016-07-09 at 15:12 +0200, Hans de Goede wrote:
> > >
> > > [...]
> > > +static void setup_environment(const void *fdt)
> >
> > It might be worth adding a commit to this function noting that it
> > must
> > remain idempotent.
>
Hi Tom,
On Fri, May 13, 2016 at 9:30 AM, Tom Rini wrote:
> On Thu, May 12, 2016 at 11:22:17PM -0300, Fabio Estevam wrote:
>> On Thu, May 12, 2016 at 11:12 PM, Fabio Estevam wrote:
>> > Hi Raul,
>> >
>> > In commit 0200020bc2b8192 ("imx6: Added DEK blob generator command") you
>> > did:
>> >
>>
This change gives common prefix for SDHCI_READ_STATUS_TIMEOUT.
Signed-off-by: Lukasz Majewski
---
drivers/mmc/sdhci.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/mmc/sdhci.c b/drivers/mmc/sdhci.c
index 604f18d..aa4cd4f 100644
--- a/drivers/mmc/sdhci.c
+++ b/
For some boards - e.g. odroid u3, it is necessary to adjust manually those
two timeouts.
Exynos4 based boards, which use SDHCI controller to read data from SD cards,
have SDHCI_QUIRK_BROKEN_R1B flag set. This quirk requires short timeout
values, since in fact it relies on timeout exit, because the
Those values are necessary to provide SDHCI controller SD card write speed
comparable to those before introducing the commit:
29905a451b7ecf86785a4404e926fb14a8daced3.
Such adjustments are required on boards with SDHCI's SDHCI_QUIRK_BROKEN_R1B
quirk flag set.
Signed-off-by: Lukasz Majewski
---
Hi Stefano,
On Mon, Jun 13, 2016 at 1:49 PM, Fabio Estevam wrote:
> On Mon, Jun 13, 2016 at 1:01 PM, Vanessa Maegima
> wrote:
>> Add USB host support.
>>
>> Tested by connecting a USB pen drive:
>>
>> => usb start
>> starting USB...
>> USB0: Port not available.
>> USB1: USB EHCI 1.00
>> scan
Hi Nikita,
On 10.07.2016 09:52, Nikita Kiryanov wrote:
Hi Christopher,
On Thu, Jul 07, 2016 at 03:30:25PM +0200, Christopher Spinrath wrote:
Hi Nikita,
On 07/07/2016 10:53 AM, Nikita Kiryanov wrote:
On Wed, Jun 22, 2016 at 07:17:53PM +0300, Igor Grinberg wrote:
On 06/19/2016 06:44 PM, Chris
On Mon, Jul 11, 2016 at 3:51 AM, Alexey Brodkin
wrote:
> On Sat, 2016-07-09 at 10:02 -0300, Otavio Salvador wrote:
>> On Sat, Jul 9, 2016 at 9:42 AM, Alexey Brodkin
>> wrote:
>> >
>> > Recently I started to notice that u-boot.img built for Wandboard
>> > by some toolchains becomes so large that i
The function fixup_silent_linux() is called in status BOOTM_STATE_LOADOS
to silence Linux if variable 'silent' is set.
Currently only the 'bootm' command state machine contains
BOOTM_STATE_LOADOS, but others like 'booti' or 'bootz' commands do not.
This means silent Linux does not work with these c
From: Xu Ziyuan
evb-3288 board RK3288-based development board with 2 USB ports, HDMI,
VGA, micro-SD card, audio, WiFi and Gigabit Ethernet. It also includes
on-board 8G eMMC and 2GB of SDRAM. Expansion connector provide access to
display pins, I2C, SPI, UART and GPIOs. This add some basic files
r
Hi,
On 10-07-16 10:17, Ian Campbell wrote:
On Sat, 2016-07-09 at 22:22 +0200, Hans de Goede wrote:
Now that we know that the BROM stores a value indicating the boot-
source
at the beginning of SRAM, use that instead of trying to recreate the
BROM's boot probing.
Signed-off-by: Hans de Goede
Hi,
On 10-07-16 10:15, Ian Campbell wrote:
On Sat, 2016-07-09 at 15:12 +0200, Hans de Goede wrote:
Currently we fill ethaddr with a fixed unique address based on the
SoCs
serial (from the sid) to make sure that boards which use the
integrated
emac / gmac get a fixed mac rather then a random one
On 07/07/2016 10:55 PM, York wrote:
> On 07/07/2016 12:52 AM, Yunhui Cui wrote:
> >
> >> On 07/07/2016 1:01 AM, york sun wrote:
> >> On 07/03/2016 08:27 PM, Yunhui Cui wrote:
> >>> From: Yunhui Cui
> >>>
> >>> A-009282: QuadSPI: QuadSPI data pre-fetch can result in incorrect
> >>> data
> >>> Aff
On Wed, Jul 06, 2016 at 11:22:48AM +1000, David Gibson wrote:
> On Tue, Jul 05, 2016 at 10:26:42AM +0200, Maxime Ripard wrote:
> > Add a function to retrieve a writeable property only by the first
> > characters of its name.
> >
> > Signed-off-by: Maxime Ripard
>
> This shouldn't be exported, so
94 matches
Mail list logo