Re: [U-Boot] [PATCH] dm: ns16550: Add support for reg-offset property

2016-02-21 Thread Michal Simek
On 19.2.2016 21:55, Simon Glass wrote: > Hi Michal, > > On 16 February 2016 at 08:17, Michal Simek wrote: >> reg-offset is the part of standard 8250 binding in the kernel. >> It is shifting start of address space by reg-offset. >> On Xilinx platform this offset is

Re: [U-Boot] [RFC PATCH v1 2/2] arm: ls1021aqds: Enable driver model lpuart serial driver

2016-02-21 Thread Huan Wang
Hi, York, > On Tue, Feb 9, 2016 at 8:57 AM, York Sun wrote: > > Convert ls1021aqds_nor_lpuart and ls1021aqds_ddr4_nor_lpuart to driver > > model suport. Enable lpuart port driver. > > > > Signed-off-by: York Sun > > CC: Alison Wang > >

Re: [U-Boot] [RFC PATCH v1 1/2] arm: ls1021aqds: Convert to driver model and enable serial support

2016-02-21 Thread Huan Wang
> -Original Message- > From: York Sun [mailto:york@nxp.com] > Sent: Tuesday, February 09, 2016 8:57 AM > To: u-boot@lists.denx.de > Cc: jt...@openedev.com; s...@chromium.org; yamada.masah...@socionext.com; > lokeshvu...@ti.com; bmeng...@gmail.com; i...@hellion.org.uk; >

Re: [U-Boot] Issue with USB mass storage (thumb drives)

2016-02-21 Thread Schrempf Frieder
On 18.02.2016 18:14, Fabio Estevam wrote: > On Thu, Feb 18, 2016 at 1:32 PM, Marek Vasut wrote: > >>> Also one of our customers tested a few non-working sticks with this >>> change and reported, that it fixed it for him. >>> Here's a list of those devices, but I guess there are a

Re: [U-Boot] [PATCH 23/26] spl: Add an option to load a FIT containing U-Boot

2016-02-21 Thread Stefano Babic
On 22/02/2016 05:46, Simon Glass wrote: > Hi Stefano, > > On 4 February 2016 at 08:00, Stefano Babic wrote: >> Hi Simon, >> >> On 28/01/2016 17:39, Simon Glass wrote: >>> This provides a way to load a FIT containing U-Boot and a selection of >>> device >>> tree files. The

Re: [U-Boot] ls1021aqds_nor_lpuart_ boards

2016-02-21 Thread Stefano Babic
Hi, On 22/02/2016 04:19, Bhuvanchandra DV wrote: > Hi Stefano, > > Adding Bin Meng. > > On 02/21/2016 05:01 PM, Stefano Babic wrote: >> Hi Bhuvanchandra, >> >> your applied patch: >> >> commit 5160def267739518950e8e3bb78e0e6c3941cb3e >> Author: Bhuvanchandra DV >>

Re: [U-Boot] [RFC PATCH v1 0/2] Convert ls1021aqds to use driver model for serial ports

2016-02-21 Thread Huan Wang
Hi, York, > On 02/08/2016 04:57 PM, York Sun wrote: > > Since a recent merge 5160def "dm: lpuart: Drop the legacy code", > > ls1021aqds_ddr4_nor_lpuart and ls1021aqds_nor_lpuart failed to compile > > because they are using legacy driver for lpuart. Following ls1021atwr, > > ls1021aqds should be

[U-Boot] [PATCH] tools: Update openrisc toolchain information

2016-02-21 Thread Bin Meng
Since commit 87da2690ab81b5f29f83dc85c55f933e6ef414bc "openrisc: updating build tools naming convention", openrisc kernel.org toolchain is out of date and cannot build U-Boot. Update buildman and moveconfig tools to refer to the new one. Signed-off-by: Bin Meng ---

Re: [U-Boot] [PATCH 23/26] spl: Add an option to load a FIT containing U-Boot

2016-02-21 Thread Simon Glass
Hi Stefano, On 4 February 2016 at 08:00, Stefano Babic wrote: > Hi Simon, > > On 28/01/2016 17:39, Simon Glass wrote: >> This provides a way to load a FIT containing U-Boot and a selection of device >> tree files. The board can select the correct device tree by probing the >>

[U-Boot] [PATCH v2 21/25] exynos: dts: Add display-related device tree fragments

2016-02-21 Thread Simon Glass
Bring in device tree pieces related to display from Linux 4.4 for: - snow - peach_pit - peach_pi - spring Signed-off-by: Simon Glass --- Changes in v2: None arch/arm/dts/exynos5.dtsi | 3 +- arch/arm/dts/exynos5250-snow.dts | 44

[U-Boot] [PATCH v2 23/25] exynos: video: Rename variables for driver model

2016-02-21 Thread Simon Glass
Use 'priv' for a private pointer and 'regs' for a register pointer. Signed-off-by: Simon Glass --- Changes in v2: None drivers/video/exynos/exynos_dp.c | 434 +++--- drivers/video/exynos/exynos_dp_lowlevel.c | 71 +++--

[U-Boot] [PATCH v2 17/25] exynos: Disable LCD display for boards we can't convert

2016-02-21 Thread Simon Glass
Some boards have the LCD enabled but I cannot test operation for the driver model conversion. Disable the LCD on these to avoid build errors. Signed-off-by: Simon Glass --- Changes in v2: None board/samsung/trats/trats.c | 2 ++

[U-Boot] [PATCH v2 18/25] dts: Add clock and regulator binding files for max77802

2016-02-21 Thread Simon Glass
These are used by peach_pit and peach_pi. Add them so they can be referenced in the device tree files. Signed-off-by: Simon Glass --- Changes in v2: None include/dt-bindings/clock/maxim,max77802.h | 22 ++

[U-Boot] [PATCH v2 19/25] exynos: Allow PWM0 pinmux to be set up

2016-02-21 Thread Simon Glass
This is commonly used for LCD backlight control. Add pinmux support for it on exynos5250 and 5420. Signed-off-by: Simon Glass --- Changes in v2: None arch/arm/mach-exynos/pinmux.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/arch/arm/mach-exynos/pinmux.c

[U-Boot] [PATCH v2 22/25] exynos: video: Rename edp_device_info to exynos_dp_priv

2016-02-21 Thread Simon Glass
Rename this function to better fit with driver model. It is the private data for the exynos EDP driver. Signed-off-by: Simon Glass --- Changes in v2: None arch/arm/mach-exynos/include/mach/dp_info.h | 4 ++-- drivers/video/exynos/exynos_dp.c| 26

[U-Boot] [PATCH 2/2] video: freetype: Fix a memory leak with a bad parameter

2016-02-21 Thread Simon Glass
Make sure to free memory used when the scale facture is incorrect. Reported-by: Coverity (CID: 24068) Signed-off-by: Simon Glass --- drivers/video/stb_truetype.h | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/video/stb_truetype.h

[U-Boot] [PATCH 1/2] video: truetype: Fix a memory leak on error

2016-02-21 Thread Simon Glass
When the resolution is not supported we should free the memory we don't plan to use. Reported-by: Coverity (CID: 135127) Signed-off-by: Simon Glass --- drivers/video/console_truetype.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/video/console_truetype.c

[U-Boot] [PATCH v2 14/25] exynos: dts: Add pwm device tree node

2016-02-21 Thread Simon Glass
Add this node from Linux v4.4 so that PWMs can be used in U-Boot. Signed-off-by: Simon Glass --- Changes in v2: None arch/arm/dts/exynos5250.dtsi | 7 +++ arch/arm/dts/exynos54xx.dtsi | 7 +++ 2 files changed, 14 insertions(+) diff --git

[U-Boot] [PATCH v2 25/25] exynos: video: Drop old unused code

2016-02-21 Thread Simon Glass
Now that we are using driver model, we can drop the weak functions and LCD init in the board file. Signed-off-by: Simon Glass --- Changes in v2: - Rebase to master board/samsung/common/exynos5-dt.c | 153 --

[U-Boot] [PATCH v2 13/25] video: Add an enum for active low/high

2016-02-21 Thread Simon Glass
This is used for video signals in some drivers so provide a standard way of representing it in an enum. Signed-off-by: Simon Glass --- Changes in v2: None include/video.h | 5 + 1 file changed, 5 insertions(+) diff --git a/include/video.h b/include/video.h index

[U-Boot] [PATCH v2 24/25] exynos: video: Convert several boards to driver model for video

2016-02-21 Thread Simon Glass
Update several boards to use driver model for video. This involves changes to the EDP and FIMD (frame buffer) drivers. Existing PWM, simple-panel and pwm-backlight drivers are used. These work without additional configuration since they use the device tree settings in the same way as Linux.

[U-Boot] [PATCH v2 15/25] exynos: Allow tizen to be built without an LCD

2016-02-21 Thread Simon Glass
This file currently requires an LCD. Adjust it to work without one. Signed-off-by: Simon Glass --- Changes in v2: None include/libtizen.h | 2 ++ lib/tizen/tizen.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/include/libtizen.h b/include/libtizen.h index

[U-Boot] [PATCH v2 09/25] exynos: video: Move struct exynos_platform_mipi_dsim into vidinfo

2016-02-21 Thread Simon Glass
Put the pointer to this structure in struct vidinfo so that we can reference it without it being global. Signed-off-by: Simon Glass --- Changes in v2: None arch/arm/mach-exynos/include/mach/mipi_dsim.h | 5 +++-- drivers/video/exynos/exynos_fb.c | 2 +-

[U-Boot] [PATCH v2 16/25] exynos: Allow CONFIG_MISC_COMMON to be build without an LCD

2016-02-21 Thread Simon Glass
This file currently requires LCD support. Adjust it so that it can still be built without LCD support (even thought it won't work fully). Signed-off-by: Simon Glass --- Changes in v2: None board/samsung/common/misc.c | 10 ++ 1 file changed, 10 insertions(+) diff

[U-Boot] [PATCH v2 12/25] exynos: pwm: Add a driver for the exynos5 PWM

2016-02-21 Thread Simon Glass
This driver supports the standard PWM API. There are 5 PWMs. Four are used normally and the last is normally used as a timer. Signed-off-by: Simon Glass --- Changes in v2: None arch/arm/cpu/armv7/s5p-common/timer.c | 3 + drivers/pwm/Kconfig | 9 +++

[U-Boot] [PATCH v2 10/25] exynos: video: Move mipi_lcd_device_dt into a function

2016-02-21 Thread Simon Glass
In preparation for making this a parameter, move it into the function that sets it up. Signed-off-by: Simon Glass --- Changes in v2: None arch/arm/mach-exynos/include/mach/mipi_dsim.h | 2 +- drivers/video/exynos/exynos_mipi_dsi.c| 17 + 2 files

[U-Boot] [PATCH v2 07/25] exynos: video: Drop static variables in exynos_dp_lowlevel.c

2016-02-21 Thread Simon Glass
Drop these and use parameters instead. Signed-off-by: Simon Glass --- Changes in v2: - Rebase to master drivers/video/exynos/exynos_dp.c | 310 +- drivers/video/exynos/exynos_dp_lowlevel.c | 195 ++-

[U-Boot] [PATCH v2 11/25] exynos: video: Combine LCD driver into one file

2016-02-21 Thread Simon Glass
At present exynos_fimd.c is the controller and exynos_fb.c is the U-Boot LCD interface. With driver model we want these in one file, so join them in preparation. Signed-off-by: Simon Glass --- Changes in v2: None drivers/video/exynos/Makefile | 2 +-

[U-Boot] [PATCH v2 20/25] exynos: Simplify calling of exynos_dp_phy_ctrl()

2016-02-21 Thread Simon Glass
This function controls enabling the EDP PHY. Rename it and drop the existing weak functions, which are confusing. Signed-off-by: Simon Glass --- Changes in v2: None arch/arm/mach-exynos/include/mach/power.h | 2 +- arch/arm/mach-exynos/power.c | 2 +-

[U-Boot] [PATCH v2 08/25] exynos: video: Move dsim_config_dt into a function

2016-02-21 Thread Simon Glass
In preparation for making this a parameter, move it into the function that sets it up. Signed-off-by: Simon Glass --- Changes in v2: None drivers/video/exynos/exynos_mipi_dsi.c | 37 +- 1 file changed, 19 insertions(+), 18 deletions(-) diff

[U-Boot] [PATCH v2 05/25] exynos: video: Drop static variables in exynos_fimd.c

2016-02-21 Thread Simon Glass
Drop these and use parameters instead. Signed-off-by: Simon Glass --- Changes in v2: None drivers/video/exynos/exynos_fb.h | 2 +- drivers/video/exynos/exynos_fimd.c | 51 ++ include/exynos_lcd.h | 1 + 3 files changed,

[U-Boot] [PATCH v2 02/25] exynos: video: Drop dead code

2016-02-21 Thread Simon Glass
We always use device tree with video, so can drop these #ifdefs. Some of the hardware addresses are not needed either. Signed-off-by: Simon Glass --- Changes in v2: None arch/arm/mach-exynos/include/mach/cpu.h | 2 -- drivers/video/exynos/exynos_dp_lowlevel.c | 4

[U-Boot] [PATCH v2 06/25] exynos: video: Drop static variables in exynos_fb.c

2016-02-21 Thread Simon Glass
Drop these and use the existing variables instead. Signed-off-by: Simon Glass --- Changes in v2: None drivers/video/exynos/exynos_fb.c | 8 ++-- 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/drivers/video/exynos/exynos_fb.c

[U-Boot] [PATCH v2 03/25] exynos: video: Remove use of vidinfo_t typedef

2016-02-21 Thread Simon Glass
Use 'struct vidinfo' instead so that we can change this to a struct with a different name in future. Signed-off-by: Simon Glass --- Changes in v2: None arch/arm/mach-exynos/include/mach/mipi_dsim.h | 3 ++- drivers/video/exynos/exynos_fb.c | 10 +-

[U-Boot] [PATCH v2 01/25] exynos: video: Move driver files into their own directory

2016-02-21 Thread Simon Glass
Move all the exynos video drivers into one place for ease of maintenance. Signed-off-by: Simon Glass --- Changes in v2: None drivers/video/Makefile| 6 +- drivers/video/exynos/Makefile | 12

[U-Boot] [PATCH v2 00/25] exynos: video: Convert exynos LCD driver to use driver model

2016-02-21 Thread Simon Glass
This series converts the exynos LCD driver to work with driver model. Only the eDP display is converted - the MIPI display is left mostly alone as I do not have a device to test with. The conversion involves some refactoring to simplify the code, reduce the amount of global/static data and allow

[U-Boot] [PATCH v2] MAINTAINERS: Update no longer valid maintainers' status

2016-02-21 Thread Bin Meng
The following maintainers' email addresses are no longer valid. vipin.ku...@st.com martin.kra...@tq-systems.de kim.phill...@freescale.com fgret...@spaceteq.co.za Update status of the components they used to maintain to be: S: Orphaned (Since 2016-02) Signed-off-by: Bin Meng

Re: [U-Boot] ls1021aqds_nor_lpuart_ boards

2016-02-21 Thread Bhuvanchandra DV
Hi Stefano, Adding Bin Meng. On 02/21/2016 05:01 PM, Stefano Babic wrote: Hi Bhuvanchandra, your applied patch: commit 5160def267739518950e8e3bb78e0e6c3941cb3e Author: Bhuvanchandra DV Date: Wed Jan 27 10:31:52 2016 +0530 dm: lpuart: Drop the legacy

Re: [U-Boot] [PATCH] MAINTAINERS: Remove no longer valid maintainers' email addresses

2016-02-21 Thread Tom Rini
On Sun, Feb 21, 2016 at 06:26:33PM -0800, Bin Meng wrote: > The following maintainers' email addresses are no longer valid. > > vipin.ku...@st.com > martin.kra...@tq-systems.de > kim.phill...@freescale.com > fgret...@spaceteq.co.za > > Remove them. > > Signed-off-by: Bin Meng

Re: [U-Boot] Maintainers' email address not valid

2016-02-21 Thread Bin Meng
Hi Tom, On Tue, Feb 9, 2016 at 12:57 AM, Tom Rini wrote: > On Sat, Feb 06, 2016 at 11:30:12AM +0800, Bin Meng wrote: > >> Hi Tom, >> >> The following U-Boot maintainers' email address seem no longer valid. >> >> vipin.ku...@st.com >> martin.kra...@tq-systems.de >>

[U-Boot] [PATCH] MAINTAINERS: Remove no longer valid maintainers' email addresses

2016-02-21 Thread Bin Meng
The following maintainers' email addresses are no longer valid. vipin.ku...@st.com martin.kra...@tq-systems.de kim.phill...@freescale.com fgret...@spaceteq.co.za Remove them. Signed-off-by: Bin Meng --- MAINTAINERS | 25 - 1 file changed, 25

[U-Boot] [PATCH 5/9] vexpress64: Add MMU tables

2016-02-21 Thread Alexander Graf
There's no good excuse for running with caches disabled on AArch64, so let's just move the vexpress64 target to enable the MMU and run with caches on. Signed-off-by: Alexander Graf --- include/configs/vexpress_aemv8a.h | 20 +--- 1 file changed, 17 insertions(+),

[U-Boot] [PATCH 4/9] tegra: Replace home grown mmu code with generic table approach

2016-02-21 Thread Alexander Graf
Now that we have nice table driven page table creating code that gives us everything we need, move to that. Signed-off-by: Alexander Graf --- arch/arm/mach-tegra/Makefile | 1 - arch/arm/mach-tegra/arm64-mmu.c | 131 --

[U-Boot] [PATCH 7/9] hikey: Add MMU tables

2016-02-21 Thread Alexander Graf
The hikey runs with dcache disabled today. There really should be no reason not to use caches on AArch64, so let's add MMU definitions and enable the dcache. Signed-off-by: Alexander Graf --- include/configs/hikey.h | 19 +-- 1 file changed, 17 insertions(+), 2

[U-Boot] [PATCH 1/9] thunderx: Calculate TCR dynamically

2016-02-21 Thread Alexander Graf
Based on the memory map we can determine a lot of hard coded fields of TCR, like the maximum VA and max PA we want to support. Calculate those dynamically to reduce the chance for pit falls. Signed-off-by: Alexander Graf --- arch/arm/cpu/armv8/cache_v8.c| 59

[U-Boot] [PATCH 8/9] arm64: Remove non-full-va map code

2016-02-21 Thread Alexander Graf
By now the code to only have a single page table level with 64k page size and 42 bit address space is no longer used by any board in tree, so we can safely remove it. To clean up code, move the layerscape mmu code to the new defines, removing redundant field definitions. Signed-off-by: Alexander

[U-Boot] [PATCH 3/9] zymqmp: Replace home grown mmu code with generic table approach

2016-02-21 Thread Alexander Graf
Now that we have nice table driven page table creating code that gives us everything we need, move to that. Signed-off-by: Alexander Graf --- arch/arm/cpu/armv8/zynqmp/cpu.c | 169 include/configs/xilinx_zynqmp.h | 44 +++ 2 files

[U-Boot] [PATCH 0/9] arm64: Unify MMU code

2016-02-21 Thread Alexander Graf
Howdy, Currently on arm64 there is a big pile of mess when it comes to MMU support and page tables. Each board does its own little thing and the generic code is pretty dumb and nobody actually uses it. This patch set tries to clean that up. After this series is applied, all boards except for the

[U-Boot] [PATCH 9/9] arm64: Only allow dcache disabled in SPL builds

2016-02-21 Thread Alexander Graf
Now that we have an easy way to describe memory regions and enable the MMU, there really shouldn't be anything holding people back from running with caches enabled on AArch64. To make sure people catch early if they're missing on the caching fun, give them a compile error. Signed-off-by:

[U-Boot] [PATCH 2/9] arm64: Make full va map code more dynamic

2016-02-21 Thread Alexander Graf
The idea to generate our pages tables from an array of memory ranges is very sound. However, instead of hard coding the code to create up to 2 levels of 64k granule page tables, we really should just create normal 4k page tables that allow us to set caching attributes on 2M or 4k level later on.

[U-Boot] [PATCH 6/9] dwmmc: Increase retry timeout

2016-02-21 Thread Alexander Graf
When enable dcache on HiKey, we're running into MMC command timeouts because our retry loop is now faster than the eMMC (or an external SD card) can answer. Increase the retry count to the same as the timeout value for status reports. The real fix is obviously to not base this whole thing on a

Re: [U-Boot] ls1021aqds_nor_lpuart_ boards

2016-02-21 Thread Bin Meng
On Sun, Feb 21, 2016 at 9:00 PM, Fabio Estevam wrote: > On Sun, Feb 21, 2016 at 8:31 AM, Stefano Babic wrote: >> Hi Bhuvanchandra, >> >> your applied patch: >> >> commit 5160def267739518950e8e3bb78e0e6c3941cb3e >> Author: Bhuvanchandra DV

Re: [U-Boot] [PATCH] MAINTAINERS: Update Peng Fan's email address

2016-02-21 Thread Peng Fan
Hi Fabio, On Sun, Feb 21, 2016 at 09:57:23AM -0300, Fabio Estevam wrote: >From: Fabio Estevam > >Use Peng Fan's new NXP email address in MAINTAINERS files. > >Signed-off-by: Fabio Estevam >--- > board/freescale/mx6qsabreauto/MAINTAINERS | 2 +- >

Re: [U-Boot] Please pull u-boot-x86

2016-02-21 Thread Tom Rini
On Sun, Feb 21, 2016 at 02:14:12PM +0800, Bin Meng wrote: > Hi Tom, > > This includes the 2nd part of the Intel Cougar Canyon2 board support, > plus one bug fix of the mp init. > > The following changes since commit 20680b560a17fb29c862de77930cfbf76b24f83c: > > Merge branch 'master' of

Re: [U-Boot] [PATCH] sunxi: power: add support for sy8106a driver

2016-02-21 Thread Peter Korsgaard
> "Hans" == Hans de Goede writes: > From: Jelle van der Waa > SY8106A is a PMIC which is used on the Allwinner > H3 Orange Pi Pc board. The VOUT1_SEL register is > implemented to set thea default V-CPU voltage to 1200 mV. > Signed-off-by: Jelle van

Re: [U-Boot] ls1021aqds_nor_lpuart_ boards

2016-02-21 Thread Fabio Estevam
On Sun, Feb 21, 2016 at 8:31 AM, Stefano Babic wrote: > Hi Bhuvanchandra, > > your applied patch: > > commit 5160def267739518950e8e3bb78e0e6c3941cb3e > Author: Bhuvanchandra DV > Date: Wed Jan 27 10:31:52 2016 +0530 > > dm: lpuart: Drop the

[U-Boot] [PATCH] MAINTAINERS: Update Peng Fan's email address

2016-02-21 Thread Fabio Estevam
From: Fabio Estevam Use Peng Fan's new NXP email address in MAINTAINERS files. Signed-off-by: Fabio Estevam --- board/freescale/mx6qsabreauto/MAINTAINERS | 2 +- board/freescale/mx6slevk/MAINTAINERS| 2 +-

Re: [U-Boot] [PATCH] arm: am437x: cm-t43: bring back BOOTDELAY feature

2016-02-21 Thread Tom Rini
On Sun, Feb 21, 2016 at 01:59:20PM +0200, Nikita Kiryanov wrote: > Commit 755324 (configs: Use config_distro_defaults.h in ti_armv7_common.h) > made ti_armv7_common.h include config_distro_defaults.h. This breaks the > bootdelay feature in cm_t43 because now the > - #include ti_armv7_common.h

[U-Boot] [PATCH] arm: am437x: cm-t43: bring back BOOTDELAY feature

2016-02-21 Thread Nikita Kiryanov
Commit 755324 (configs: Use config_distro_defaults.h in ti_armv7_common.h) made ti_armv7_common.h include config_distro_defaults.h. This breaks the bootdelay feature in cm_t43 because now the - #include ti_armv7_common.h (#define CONFIG_BOOTDELAY 1) - #undef CONFIG_BOOTDELAY - #include

[U-Boot] ls1021aqds_nor_lpuart_ boards

2016-02-21 Thread Stefano Babic
Hi Bhuvanchandra, your applied patch: commit 5160def267739518950e8e3bb78e0e6c3941cb3e Author: Bhuvanchandra DV Date: Wed Jan 27 10:31:52 2016 +0530 dm: lpuart: Drop the legacy code braks ls1021aqds_*nor_lpuart. Tom has gently merged my PR, but this should

Re: [U-Boot] [PATCH V2 00/11] imx: introduce rdc and boot auxiliary core

2016-02-21 Thread Stefano Babic
Hi Peng, On 28/01/2016 09:54, Peng Fan wrote: > From: Peng Fan > > To i.MX6SX and i.MX7D, there is a M4 core embedded. Resources > can be shared or occupied exclusively by setting Resource > domain controller between A9/7 core and M4 core. > > Refer "Chapter 52 Resource

Re: [U-Boot] [PATCH v2 1/3] imx: mx6quq7: fix USDHC4 declaration

2016-02-21 Thread Stefano Babic
On 05/02/2016 16:19, Julien Corjon wrote: > USDHC2 does not exist on mx6quq7 board, as USDHC4 was already been > declared this is probably a typo. > > Signed-off-by: Julien Corjon > --- > v1 -> v2 > - Split patch (suggested by Boris) > - Replace spaces with tab

Re: [U-Boot] [PATCH 1/2] imx: mx6: Implement mmc_get_env_part

2016-02-21 Thread Stefano Babic
On 04/02/2016 14:41, Soeren Moch wrote: > commit 216d286c7e3d3d83d4d8ccaf0415192e1b1040c0 [imx: mx6: implement > mmc_get_env_dev] introduced selection of the environment device according > to the boot device when booting from SD/MMC. > > Extend this functionality for also selecting the device

Re: [U-Boot] [PATCH V2 1/2] pinctrl: imx: Introduce pinctrl driver for i.MX6

2016-02-21 Thread Stefano Babic
On 17/02/2016 06:23, Peng Fan wrote: > Hi Simon, > > On Tue, Feb 16, 2016 at 07:50:25PM -0700, Simon Glass wrote: >> Hi Peng, >> >> On 16 February 2016 at 19:45, Peng Fan wrote: >>> Hi Simon, >>> >>> On Tue, Feb 16, 2016 at 09:00:55AM -0700, Simon Glass wrote: Hi

Re: [U-Boot] [PATCH] imx: Refactoring CAAM Job Ring structure and Secure Memory for imx7

2016-02-21 Thread Stefano Babic
On 02/02/2016 11:39, Ulises Cardenas wrote: > Refactored data structure for CAAM's job ring and Secure Memory > to support i.MX7. > > The new memory map use macros to resolve SM's offset by version. > This will solve the versioning issue caused by the new version of > secure memory of i.MX7 > >

Re: [U-Boot] [PATCH 2/2] arm: mx6: Add CCV xPress board support

2016-02-21 Thread Stefano Babic
On 10/02/2016 11:41, Stefan Roese wrote: > This patch add support for the CCV xPress board which is equipped > with the i.MX6UL. And provides the following interfaces: > > - 128MiB DDR > - UART > - I2C > - eMMC (with booting) > - Ethernet > - USB > > This patch adds two build targets. One with

Re: [U-Boot] [PATCH 1/2] arm: mx6: Add UART8 base address for i.MX6UL

2016-02-21 Thread Stefano Babic
On 10/02/2016 11:41, Stefan Roese wrote: > Add the base address for the i.MX6UL so that this UART can be used. > > Signed-off-by: Stefan Roese > Cc: Ye Li > Cc: Fabio Estevam > Cc: Stefano Babic > --- >

Re: [U-Boot] [PATCH] mx7dsabresd: Make 'ums' command functional

2016-02-21 Thread Stefano Babic
On 17/02/2016 16:34, Fabio Estevam wrote: > When running the 'ums' command we get: > > => ums 0 mmc 0 > UMS: disk start sector: 0x0, count: 0xe18000 > g_dnl_register: failed!, error: -22 > ERROR: g_dnl_register failed > at common/cmd_usb_mass_storage.c:107/do_usb_mass_storage() > > Fix this by

Re: [U-Boot] [PATCH] mx7dsabresd: Use Adrian's NXP email address

2016-02-21 Thread Stefano Babic
On 17/02/2016 16:37, Fabio Estevam wrote: > Use the new NXP email address for the board maintainer. > > Signed-off-by: Fabio Estevam > --- > board/freescale/mx7dsabresd/MAINTAINERS | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git

Re: [U-Boot] [PATCH] mx6ul_14x14_evk: Select CONFIG_FSL_QSPI

2016-02-21 Thread Stefano Babic
On 17/02/2016 20:32, Fabio Estevam wrote: > From: Fabio Estevam > > Select CONFIG_FSL_QSPI so that the SPI can be probed: > > => sf probe > SF: Detected N25Q256 with page size 256 Bytes, erase size 64 KiB, total 32 MiB > > Signed-off-by: Fabio Estevam

Re: [U-Boot] [PATCH 2/4] mxsboot: remove unused include

2016-02-21 Thread Stefano Babic
Hi Andreas, On 16/02/2016 23:29, Andreas Bießmann wrote: > Commit 276d3ebb883024d753cd9c69ab2fd243ffa1262e removed htole32() but missed > to remove the corresponding header. This is annoying, since BSD systems do not > have endian.h. > > Signed-off-by: Andreas Bießmann