Re: [U-Boot] [PATCH] rsa: read out public_exponent value based on 32-bit alignment

2018-12-28 Thread Marek Vasut
On 12/28/18 8:30 AM, Ooi, Joyce wrote: > Hi Marek, Hi, > Any comments about this? Use get_unaligned() ? > Thanks, > Joyce Ooi > >> -Original Message- >> From: Ooi, Joyce >> Sent: Saturday, December 8, 2018 4:18 PM >> To: Marek Vasut ; Michal Simek ; >> Siva Durga Prasad Paladugu >> Cc

Re: [U-Boot] [PATCH v3] net: phy: add TSE PCS support to dwmac-socfpga

2018-12-28 Thread Marek Vasut
On 12/28/18 7:57 AM, Ooi, Joyce wrote: >> -Original Message- >> From: Marek Vasut [mailto:ma...@denx.de] >> Sent: Thursday, December 27, 2018 4:21 PM >> To: Ooi, Joyce ; Joe Hershberger >> >> Cc: See, Chin Liang ; Ong, Hean Loong >> ; Priyanka Jain ; u- >> b...@lists.denx.de >> Subject: Re

Re: [U-Boot] [PATCH v3] net: phy: add TSE PCS support to dwmac-socfpga

2018-12-28 Thread Marek Vasut
On 12/28/18 8:28 AM, Ooi, Joyce wrote: >> -Original Message- >> From: Marek Vasut [mailto:ma...@denx.de] >> Sent: Thursday, December 27, 2018 2:55 AM >> To: Ooi, Joyce ; Joe Hershberger >> >> Cc: See, Chin Liang ; Ong, Hean Loong >> ; Priyanka Jain ; u- >> b...@lists.denx.de >> Subject: Re

Re: [U-Boot] [PATCH 3/3] video: rockchip: Use TrueType fonts with jerry

2018-12-28 Thread Philipp Tomsich
> On 27.12.2018, at 23:25, Simon Glass wrote: > > As an example of how to enable TrueType fonts, move chromebook_jerry over > to use these. > > Signed-off-by: Simon Glass Reviewed-by: Philipp Tomsich ___ U-Boot mailing list U-Boot@lists.denx.de h

Re: [U-Boot] [PATCH 2/3] video: Add a default TrueType font

2018-12-28 Thread Philipp Tomsich
> On 27.12.2018, at 23:25, Simon Glass wrote: > > At present it is possible to enable TrueType support but not include any > fonts. This results in a blank display. Select Nimbus as the default font > to avoid this. > > Signed-off-by: Simon Glass Reviewed-by: Philipp Tomsich __

Re: [U-Boot] [PATCH 1/3] video: Add information about using TrueType fonts

2018-12-28 Thread Philipp Tomsich
On 27.12.2018, at 23:25, Simon Glass wrote: > > U-Boot supports using TrueType fonts on the console, which is useful for > presenting a nice UI to users, e.g. for system recovery. > > Add information about how to compile this on ARM platforms, since this is > not obvious. > > Signed-off-by: Sim

[U-Boot] [PATCH 2/2 (RFT)] am335x: igep003x: Add Device Tree Support and DM_MMC driver

2018-12-28 Thread Enric Balletbo i Serra
This adds device tree and the DM_MMC driver for the AM335x IGEP based boards. Signed-off-by: Enric Balletbo i Serra --- arch/arm/dts/Makefile | 3 +- arch/arm/dts/am335x-base0033.dts | 95 + arch/arm/dts/am335x-igep0033.dtsi | 323 ++ configs/a

[U-Boot] [PATCH 1/2] igep003x: MAINTAINER: Remove myself as maintainer and add Javier

2018-12-28 Thread Enric Balletbo i Serra
I can't continue maintaining the board because I don't have access to the hardware anymore, so remove myself from the entry and add Javier who has volunteered to help and maintain the board. Signed-off-by: Enric Balletbo i Serra Signed-off-by: Javier Martínez Canillas --- board/isee/igep003x/MA

[U-Boot] [PATCH 1/1] efi_loader: LoadImage: always allocate new pages

2018-12-28 Thread Heinrich Schuchardt
If we want to properly unload images in Exit() the memory should always be allocated in the same way. As we allocate memory when reading from file we should do the same when the original image is in memory. Further patches will be needed: - use LoadImage() in bootefi and bootmgr - implement correc

[U-Boot] [PATCH 4/5] efi_loader: signature of StartImage and Exit

2018-12-28 Thread Heinrich Schuchardt
We use u16* for Unicode strings and efi_uintn_t for UINTN. Correct the signature of efi_exit() and efi_start_image(). Signed-off-by: Heinrich Schuchardt --- include/efi_api.h | 6 +++--- lib/efi_loader/efi_boottime.c | 10 +- 2 files changed, 8 insertions(+), 8 deletions(-)

[U-Boot] [PATCH 0/5] efi_loader: rework loading and starting of images

2018-12-28 Thread Heinrich Schuchardt
This patch series starts the necessary changes needed to correctly implement the unloading of images in Exit(). If we want to properly unload images in Exit() the memory should always be allocated in the same way. As we allocate memory when reading from file we should do the same when the original

[U-Boot] [PATCH 1/5] efi_loader: LoadImage: always allocate new pages

2018-12-28 Thread Heinrich Schuchardt
If we want to properly unload images in Exit() the memory should always be allocated in the same way. As we allocate memory when reading from file we should do the same when the original image is in memory. Further patches will be needed: - use LoadImage() in bootefi and bootmgr - implement correc

[U-Boot] [PATCH 2/5] efi_loader: set entry point in efi_load_pe()

2018-12-28 Thread Heinrich Schuchardt
Up to now efi_load_pe() returns the entry point or NULL in case of an error. This does not allow to return correct error codes from LoadImage(). Let efi_load_pe() return a status code and fill in the entry point in the corresponding field of the image object. Signed-off-by: Heinrich Schuchardt -

[U-Boot] [PATCH 5/5] efi_loader: use efi_start_image() for bootefi

2018-12-28 Thread Heinrich Schuchardt
Remove the duplicate code in efi_do_enter() and use efi_start_image() to start the image invoked by the bootefi command. Signed-off-by: Heinrich Schuchardt --- cmd/bootefi.c | 22 +- include/efi_loader.h | 4 lib/efi_loader/efi_boottime.c | 6 +

[U-Boot] [PATCH 3/5] efi_loader: avoid unnecessary pointer to long conversion

2018-12-28 Thread Heinrich Schuchardt
debug() support supports %p to print pointers. The debug message is unique. So there is not need to write a possibly distracting line number. Signed-off-by: Heinrich Schuchardt --- cmd/bootefi.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cmd/bootefi.c b/cmd/bootefi.c

Re: [U-Boot] [PATCH v2 1/1] arm64: mvebu: defconfig: enable CONFIG_CMD_NVME

2018-12-28 Thread Stefan Roese
On 26.12.18 10:37, Heinrich Schuchardt wrote: An NVME drive may be installed on the MACCHIATObin board using the PCIe slot or on the Clearfog Pro using mini a PCI-e slot. With the configuration change it becomes usable. Signed-off-by: Heinrich Schuchardt --- configs/clearfog_gt_8k_defconfig

Re: [U-Boot] [PATCH v3 5/8] rockchip: rk3399: Add improved pinctrl driver.

2018-12-28 Thread David Wu
Hi Christoph, This patch seems is less of code about drive strength, for some modules, like LCD, Ethernet is still needed. 在 2018/12/27 下午9:13, Christoph Müllner 写道: Hi David, On 12/27/18 1:49 PM, David Wu wrote: Hi Christoph, I once submitted a series of patches that they can support all

Re: [U-Boot] [PATCH v3 5/8] rockchip: rk3399: Add improved pinctrl driver.

2018-12-28 Thread David Wu
Hi Philipp, 在 2018/12/27 下午10:31, Philipp Tomsich 写道: David, On 27.12.2018, at 13:49, David Wu wrote: Hi Christoph, I once submitted a series of patches that they can support all Socs' Pinctrl and how do you feel about using them. http://patchwork.ozlabs.org/patch/868849/ Which reminds

Re: [U-Boot] [PATCH] imx6q_logic: Enable MMC booting from SPL

2018-12-28 Thread Adam Ford
On Thu, Dec 27, 2018 at 10:53 AM Adam Ford wrote: > > The MMC booting wasn't previously fitting into the codespace. > This patch enables MMC booting from the baseboard by reducing > some DM overhead during SPL. > I'm going to NAK my own work because I found some bugs after I re-based on master, s

Re: [U-Boot] [PATCH] rsa: read out public_exponent value based on 32-bit alignment

2018-12-28 Thread Ooi, Joyce
> -Original Message- > From: Marek Vasut [mailto:ma...@denx.de] > Sent: Friday, December 28, 2018 6:05 PM > To: Ooi, Joyce ; Michal Simek > ; Siva Durga Prasad Paladugu > > Cc: u-boot@lists.denx.de; See, Chin Liang ; Chee, > Tien Fong ; Tan, Ley Foon > > Subject: Re: [PATCH] rsa: read out

Re: [U-Boot] [PATCH v3] net: phy: add TSE PCS support to dwmac-socfpga

2018-12-28 Thread Ooi, Joyce
> -Original Message- > From: Marek Vasut [mailto:ma...@denx.de] > Sent: Friday, December 28, 2018 6:06 PM > To: Ooi, Joyce ; Joe Hershberger > > Cc: See, Chin Liang ; Ong, Hean Loong > ; Priyanka Jain ; u- > b...@lists.denx.de > Subject: Re: [U-Boot] [PATCH v3] net: phy: add TSE PCS suppor

[U-Boot] [PATCH V2] imx6q_logic: Enable MMC booting from SPL

2018-12-28 Thread Adam Ford
The MMC booting wasn't previously fitting into the codespace. This patch enables MMC booting from the baseboard by reducing some DM overhead during SPL. Signed-off-by: Adam Ford --- V2: Recalculate MMC index so it can boot from either internal SOM or baseboard micro SD socket. diff --git a

[U-Boot] [PATCH 2/2] ARM: DTS: imx6q-logicpd: Update DTS/DTSI files

2018-12-28 Thread Adam Ford
The i.MX6 SOM and development kits have undergone significant updates and changes over the past few months. This re-sync's the U-Boot with Logic PD's BSP. Signed-off-by: Adam Ford diff --git a/arch/arm/dts/imx6-logicpd-baseboard.dtsi b/arch/arm/dts/imx6-logicpd-baseboard.dtsi new file mode 100

[U-Boot] [PATCH] ARM: imx6q_logic: Enable DM_USB and dependent regulators

2018-12-28 Thread Adam Ford
With the updated device trees in place, this patch enables DM_USB which uses several regulators also enabled with this patch. Signed-off-by: Adam Ford diff --git a/configs/imx6q_logic_defconfig b/configs/imx6q_logic_defconfig index d0362665bb..3358c08cb6 100644 --- a/configs/imx6q_logic_defconfi

[U-Boot] [PATCH] ARM: imx6q_logic: Enable Falcon Mode and fatwrite

2018-12-28 Thread Adam Ford
This patch enables Falcon Mode by default and updates the README file to show instructions on how to run from the micro SD card or eMMC. This patch also enables fatwrite to help assist with writing the 'args' to the microSD card. Signed-off-by: Adam Ford diff --git a/board/logicpd/imx6/README b

[U-Boot] [PATCH] imx8m: clock: Fix oscilattor values

2018-12-28 Thread Fabio Estevam
OSC_27M_CLK should return 27MHz and OSC_32K_CLK should return 32768Hz to reflect the reality. This also keeps the values in sync with the Linux clock tree. Signed-off-by: Fabio Estevam --- arch/arm/mach-imx/imx8m/clock.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ar

[U-Boot] [PATCH v2] imx8m: clock: Fix oscillator values

2018-12-28 Thread Fabio Estevam
OSC_27M_CLK should return 27MHz and OSC_32K_CLK should return 32768Hz to reflect the reality. This also keeps the values in sync with the Linux clock tree. Signed-off-by: Fabio Estevam --- Changes since v1: - Fixed typo in the Subject line (oscillator) arch/arm/mach-imx/imx8m/clock.c | 4 ++--

Re: [U-Boot] [PATCH] rsa: read out public_exponent value based on 32-bit alignment

2018-12-28 Thread Marek Vasut
On 12/28/18 2:32 PM, Ooi, Joyce wrote: >> -Original Message- >> From: Marek Vasut [mailto:ma...@denx.de] >> Sent: Friday, December 28, 2018 6:05 PM >> To: Ooi, Joyce ; Michal Simek >> ; Siva Durga Prasad Paladugu >> >> Cc: u-boot@lists.denx.de; See, Chin Liang ; Chee, >> Tien Fong ; Tan, L

Re: [U-Boot] [PATCH v3] net: phy: add TSE PCS support to dwmac-socfpga

2018-12-28 Thread Marek Vasut
On 12/28/18 2:38 PM, Ooi, Joyce wrote: >> -Original Message- >> From: Marek Vasut [mailto:ma...@denx.de] >> Sent: Friday, December 28, 2018 6:06 PM >> To: Ooi, Joyce ; Joe Hershberger >> >> Cc: See, Chin Liang ; Ong, Hean Loong >> ; Priyanka Jain ; u- >> b...@lists.denx.de >> Subject: Re:

Re: [U-Boot] [PATCH 0/4] rockchip: sound: Add support for sound on chromebook_jerry

2018-12-28 Thread Philipp Tomsich
> On 28.12.2018, at 04:15, Simon Glass wrote: > > Sound support for jerry was never included in the initial port. Now that > sound has been converted to driver model it seems like a good opportunity > to fill this gap. Jerry uses an audio codec that is already supported by > U-Boot. > > Add th

Re: [U-Boot] [PATCH] test: dm: regmap: Fix the long test delay

2018-12-28 Thread sjg
Hi Neil, On Tue, 11 Dec 2018 at 01:27, Neil Armstrong wrote: > > On 10/12/2018 01:11, Simon Glass wrote: > > At present one of the regmap tests takes 5 seconds to run since it waits > > for a timeout. This should be handled using sandbox_timer_add_offset() > > which advances time for test purpose

Re: [U-Boot] [PATCH] dm: Tidy up 'dm tree' output when there are many devices

2018-12-28 Thread sjg
On Wed, Dec 05, 2018 at 06:42:52PM -0700, Simon Glass wrote: > At present the 'Index' column assumes there is only one digit. But on some > devices (e.g. snow) there are a lot of regulators and GPIO banks. Adjust > the output to allow for two digits without messing up the display. > > Also capatali

Re: [U-Boot] [PATCH v2] common: fdt_support: print hexadecimal numbers in debug

2018-12-28 Thread sjg
On Thu, Dec 06, 2018 at 03:20:47PM +0530, Sekhar Nori wrote: > We usually deal with hexadecimal addresses and sizes in > device-tree. Its much easier if debug logs print hexadecimal > values too. > > Reviewed-by: Simon Glass > Signed-off-by: Sekhar Nori Reviewed-by: Tom Rini -- Tom Applied

Re: [U-Boot] [PATCH 18/21] log: Check printf() arguments

2018-12-28 Thread sjg
At present logging does not check printf() arguments. Now that all users have been corrected, enable this to prevent further problems. Signed-off-by: Simon Glass --- include/log.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Applied to u-boot-dm/master, thanks! _

Re: [U-Boot] [PATCH 3/3] travis: Use buildman for building with clang

2018-12-28 Thread sjg
On Wed, Dec 05, 2018 at 05:35:28AM -0700, Simon Glass wrote: > Now that buildman supports clang, use it. > > Signed-off-by: Simon Glass Reviewed-by: Tom Rini -- Tom Applied to u-boot-dm/master, thanks! ___ U-Boot mailing list U-Boot@lists.denx.de h

Re: [U-Boot] [PATCH] sandbox: add memset_io(..), memcpy_fromio(..) and memcpy_toio(..)

2018-12-28 Thread sjg
On Tue, 4 Dec 2018 at 12:35, Christian Gmeiner wrote: > > From: Christian GMEINER > > These functions could be used by drivers. > > Signed-off-by: Christian GMEINER > --- > arch/sandbox/include/asm/io.h | 12 > 1 file changed, 12 insertions(+) > Reviewed-by: Simon Glass Applied

Re: [U-Boot] [PATCH 1/3] buildman: Drop comment about Ctrl-C problem

2018-12-28 Thread sjg
This bug is now fixed, so drop this comment. Signed-off-by: Simon Glass --- tools/buildman/README | 2 -- 1 file changed, 2 deletions(-) Applied to u-boot-dm/master, thanks! ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/

Re: [U-Boot] [PATCH 2/3] buildman: Add support for building with clang

2018-12-28 Thread sjg
On Wed, Dec 05, 2018 at 05:35:27AM -0700, Simon Glass wrote: > Add a -O option which allows building with clang. > > Signed-off-by: Simon Glass Reviewed-by: Tom Rini -- Tom Applied to u-boot-dm/master, thanks! ___ U-Boot mailing list U-Boot@lists.d

[U-Boot] [PATCH v2 2/2] dm: video: lcd: MIGRATION: Add migration plan for video

2018-12-28 Thread Simon Glass
Add a migration plan for video which is an important subsystem in U-Boot. Signed-off-by: Simon Glass --- Changes in v2: - Change 'PCI' to 'video' (typo) Makefile | 10 ++ doc/driver-model/MIGRATION.txt | 8 2 files changed, 18 insertions(+) diff --git a

[U-Boot] [PATCH v2 1/2] dm: pci: MIGRATION: Add migration plan for PCI

2018-12-28 Thread Simon Glass
Add a migration plan for PCI which is an important subsystem in U-Boot. Signed-off-by: Simon Glass --- Changes in v2: None Makefile | 10 ++ doc/driver-model/MIGRATION.txt | 10 ++ 2 files changed, 20 insertions(+) diff --git a/Makefile b/Makefile index a

Re: [U-Boot] [PATCH v2 2/2] dm: video: lcd: MIGRATION: Add migration plan for video

2018-12-28 Thread Simon Glass
Hi, On Fri, 28 Dec 2018 at 13:57, Simon Glass wrote: > > Add a migration plan for video which is an important subsystem in U-Boot. > > Signed-off-by: Simon Glass > --- > > Changes in v2: > - Change 'PCI' to 'video' (typo) > > Makefile | 10 ++ > doc/driver-model/MI

[U-Boot] [PATCH v3 1/2] dm: pci: MIGRATION: Add migration plan for PCI

2018-12-28 Thread Simon Glass
Add a migration plan for PCI which is an important subsystem in U-Boot. Signed-off-by: Simon Glass --- Changes in v3: - Fix the rerelease typo Changes in v2: None Makefile | 10 ++ doc/driver-model/MIGRATION.txt | 10 ++ 2 files changed, 20 insertions(+)

[U-Boot] [PATCH v3 2/2] dm: video: lcd: MIGRATION: Add migration plan for video

2018-12-28 Thread Simon Glass
Add a migration plan for video which is an important subsystem in U-Boot. Signed-off-by: Simon Glass --- Changes in v3: - Really change 'PCI' to 'video' (typo) Changes in v2: - Change 'PCI' to 'video' (typo) Makefile | 10 ++ doc/driver-model/MIGRATION.txt | 8 +

Re: [U-Boot] [PATCH] rsa: read out public_exponent value based on 32-bit alignment

2018-12-28 Thread Simon Goldschmidt
Am 28.12.2018 um 19:44 schrieb Marek Vasut: On 12/28/18 2:32 PM, Ooi, Joyce wrote: -Original Message- From: Marek Vasut [mailto:ma...@denx.de] Sent: Friday, December 28, 2018 6:05 PM To: Ooi, Joyce ; Michal Simek ; Siva Durga Prasad Paladugu Cc: u-boot@lists.denx.de; See, Chin Liang ; C

Re: [U-Boot] re-use dm data for pre-relocate and post-relocate

2018-12-28 Thread Simon Glass
Hi Kever, On Tue, 21 Nov 2017 at 03:24, Kever Yang wrote: > > Hi Simon, > There are a lot of points in here, so I will spread my comments throughout your email. > In order to make people easier to maintain a U-Boot for product, > > we want to re-use the dtb from kernel. Some peripheral lik

[U-Boot] [PATCH v2 0/5] dm: serial: Fix up some serial API errors

2018-12-28 Thread Simon Glass
New serial functions should use a driver pointer as the first argument. The old functions are only there for backwards compatibilty, and can be adjusted soon. For now, adjust the new functions to work correctly. Changes in v2: - Add a comment about reusing the device pointer - Fix @return comment

[U-Boot] [PATCH v2 1/5] serial: Move new functions to serial.h

2018-12-28 Thread Simon Glass
We should not be adding new functions to common.h. Move these recently added functions to serial.h. Signed-off-by: Simon Glass Reviewed-by: Andy Shevchenko --- Changes in v2: None include/common.h | 5 - include/serial.h | 4 2 files changed, 4 insertions(+), 5 deletions(-) diff --g

[U-Boot] [PATCH v2 2/5] dm: serial: Adjust serial_getconfig() to use proper API

2018-12-28 Thread Simon Glass
All driver-model functions should have a device as the first parameter. Update this function accordingly. Signed-off-by: Simon Glass Reviewed-by: Andy Shevchenko --- Changes in v2: None arch/x86/lib/acpi_table.c | 5 - drivers/serial/serial-uclass.c | 9 +++-- include/serial.h

[U-Boot] [PATCH v2 3/5] dm: serial: Adjust serial_setconfig() to use proper API

2018-12-28 Thread Simon Glass
All driver-model functions should have a device as the first parameter. Update this function accordingly. Signed-off-by: Simon Glass Reviewed-by: Andy Shevchenko --- Changes in v2: None drivers/serial/serial-uclass.c | 9 +++-- include/serial.h | 2 +- test/dm/serial.c

[U-Boot] [PATCH v2 5/5] dm: serial: Tidy up header file comments

2018-12-28 Thread Simon Glass
The getconfig() comment is out of date. Fix this and add comments for recently added functions. Signed-off-by: Simon Glass Reviewed-by: Andy Shevchenko --- Changes in v2: - Fix @return comment on getinfo() method include/serial.h | 34 +++--- 1 file changed, 31 ins

[U-Boot] [PATCH v2 4/5] dm: serial: Adjust serial_getinfo() to use proper API

2018-12-28 Thread Simon Glass
All driver-model functions should have a device as the first parameter. Update this function accordingly. Signed-off-by: Simon Glass Reviewed-by: Andy Shevchenko --- Changes in v2: - Add a comment about reusing the device pointer arch/x86/lib/acpi_table.c | 11 ++- drivers/serial

Re: [U-Boot] [PATCH 1/3] video: Add information about using TrueType fonts

2018-12-28 Thread Anatolij Gustschin
Hi Simon, On Thu, 27 Dec 2018 15:25:17 -0700 Simon Glass s...@chromium.org wrote: > U-Boot supports using TrueType fonts on the console, which is useful for > presenting a nice UI to users, e.g. for system recovery. > > Add information about how to compile this on ARM platforms, since this is >

Re: [U-Boot] [PATCH 2/3] video: Add a default TrueType font

2018-12-28 Thread Anatolij Gustschin
On Thu, 27 Dec 2018 15:25:18 -0700 Simon Glass s...@chromium.org wrote: > At present it is possible to enable TrueType support but not include any > fonts. This results in a blank display. Select Nimbus as the default font > to avoid this. > > Signed-off-by: Simon Glass > --- > > drivers/video

Re: [U-Boot] [PATCH 3/3] video: rockchip: Use TrueType fonts with jerry

2018-12-28 Thread Anatolij Gustschin
On Thu, 27 Dec 2018 15:25:19 -0700 Simon Glass s...@chromium.org wrote: > As an example of how to enable TrueType fonts, move chromebook_jerry over > to use these. > > Signed-off-by: Simon Glass > --- > > configs/chromebook_jerry_defconfig | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion

[U-Boot] [PATCH] dm: video: fix test failures with enabled default TrueType font

2018-12-28 Thread Anatolij Gustschin
With enabled default Nimbus font dm_test_video_truetype* tests fail. Update expected expressions to fix them. Signed-off-by: Anatolij Gustschin --- test/dm/video.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/dm/video.c b/test/dm/video.c index 5d1faac19c..6be5de

Re: [U-Boot] [PATCH v2] rockchip: sdram-common: fix wrong size for 4GB in 32bit SoC

2018-12-28 Thread Vagrant Cascadian
issue. U-Boot SPL 2019.01-rc2+dfsg-1~20181228~1 (Dec 28 2018 - 23:14:06 +) Returning to boot ROM... U-Boot 2019.01-rc2+dfsg-1~20181228~1 (Dec 28 2018 - 23:14:06 +) Model: Firefly-RK3288 DRAM: 4 GiB MMC: dwmmc@ff0c: 1, dwmmc@ff0f: 0 Loading Environment from MMC... *** Warning -

Re: [U-Boot] [PATCH v2] rockchip: sdram-common: fix wrong size for 4GB in 32bit SoC

2018-12-28 Thread Philipp Tomsich
> On 28.12.2018, at 02:56, Kever Yang wrote: > > This is workaround for issue we can't get correct size for 4GB ram > in 32bit system and available before we really need ram space > out of 4GB, eg.enable ARM LAPE(rk3288 supports 8GB ram). > The size of 4GB is '0x1 ', and this value will

Re: [U-Boot] [PATCH] dm: video: fix test failures with enabled default TrueType font

2018-12-28 Thread Simon Glass
On Fri, 28 Dec 2018 at 17:09, Anatolij Gustschin wrote: > > With enabled default Nimbus font dm_test_video_truetype* tests fail. > Update expected expressions to fix them. > > Signed-off-by: Anatolij Gustschin > --- > test/dm/video.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-)

Re: [U-Boot] [PATCH v2] rockchip: sdram-common: fix wrong size for 4GB in 32bit SoC

2018-12-28 Thread Philipp Tomsich
Kever, I agree that getting LPAE enabled on the RK3288 (in one of the next releases) would be great. We could then turn on PHYS64_BIT, never worry about this again (and not need a workaround at all) and have the hardware’s capabilities accurately modelled. Let me know if I can do anything to help

[U-Boot] [GIT PULL] UniPhier updates for v2019.01

2018-12-28 Thread Masahiro Yamada
Hi Tom, Please pull UniPhier updates v2019.01 - import DIV_ROUND_CLOSEST_ULL macro from Linux - import improvement and fix of Denali NAND driver from Linux - add NAND 200MHz clock to clk driver - allow CONFIG_BOOTCOMMAND to run custom boot command/script - sync DT with Linux 4.20 The follo

Re: [U-Boot] [PATCH] imx8mq_evk_defconfig: Move file system options to Kconfig

2018-12-28 Thread Peng Fan
> -Original Message- > From: Fabio Estevam [mailto:feste...@gmail.com] > Sent: 2018年12月28日 3:14 > To: sba...@denx.de > Cc: dl-uboot-imx ; u-boot@lists.denx.de; > spence...@gmail.com; Fabio Estevam > Subject: [PATCH] imx8mq_evk_defconfig: Move file system options to Kconfig > > Chris Spenc