[U-Boot] [PATCH 15/22] x86: ivybridge: Set up an MTRR for the video frame buffer

2014-12-27 Thread Simon Glass
Set the frame buffer to write-combining. This makes it faster, although for scrolling write-through is even faster for U-Boot. Signed-off-by: Simon Glass --- arch/x86/cpu/ivybridge/gma.c | 8 1 file changed, 8 insertions(+) diff --git a/arch/x86/cpu/ivybridge/gma.c b/arch/x86/cpu/ivyb

[U-Boot] [PATCH 10/22] x86: Use cache, don't clear the display in video BIOS

2014-12-27 Thread Simon Glass
There is no need to run with the cache disabled, and there is no point in clearing the display frame buffer since U-Boot does it later. Signed-off-by: Simon Glass --- arch/x86/lib/bios.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/arch/x86/lib/bios.c b/arch/x86/lib/

[U-Boot] [PATCH 16/22] x86: board_f: Adjust x86 boot order for performance

2014-12-27 Thread Simon Glass
For bare platforms we turn off ROM-caching before calling board_init_f_r() It is then very slow to copy U-Boot from ROM to RAM. So adjust the order so that the copying happens before we turn off ROM-caching. Signed-off-by: Simon Glass --- common/board_f.c | 8 +--- 1 file changed, 5 inserti

[U-Boot] [PATCH 17/22] x86: ivybridge: Request MTRRs for DRAM regions

2014-12-27 Thread Simon Glass
We should use MTRRs to speed up execution. Add a list of MTRR requests which will dealt with when we relocate and run from RAM. We set RAM as cacheable (with write-back) and registers as non-cacheable. Signed-off-by: Simon Glass --- arch/x86/cpu/ivybridge/sdram.c | 10 ++ 1 file change

[U-Boot] [PATCH 04/22] x86: video: Add support for CONFIG_CONSOLE_SCROLL_LINES

2014-12-27 Thread Simon Glass
Some machines are very slow to scroll their displays. To cope with this, support the CONFIG_CONSOLE_SCROLL_LINES option. Setting this to 5 allows the display to operate at an acceptable speed by scrolling 5 lines at a time. This same option is available for LCDs so when these systems are unified t

[U-Boot] [PATCH 21/22] x86: ivybridge: Update microcode early in boot

2014-12-27 Thread Simon Glass
At present the normal update (which happens much later) does not work. This seems to have something to do with the 'no eviction' mode in the CAR, or at least moving the microcode update after that causes it not to work. For now, do an update early on so that it definitely works. Also refuse to con

[U-Boot] [PATCH 22/22] x86: Add an 'mtrr' command to list and adjust MTRRs

2014-12-27 Thread Simon Glass
It is useful to be able to see the MTRR setup in U-Boot. Add a command to list the state of the variable MTRR registers and allow them to be changed. Update the documentation to list some of the available commands. This does not support fixed MTRRs as yet. Signed-off-by: Simon Glass --- commo

[U-Boot] [PATCH 06/22] x86: video: Add a debug() to display the frame buffer address

2014-12-27 Thread Simon Glass
Provide a way to display this address when booting. Signed-off-by: Simon Glass --- drivers/video/x86_fb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/video/x86_fb.c b/drivers/video/x86_fb.c index 8743a8c..6641033 100644 --- a/drivers/video/x86_fb.c +++ b/drivers/video/x86_fb.c @

[U-Boot] [PATCH 14/22] x86: Add support for MTRRs

2014-12-27 Thread Simon Glass
Memory Type Range Registers are used to tell the CPU whether memory is cacheable and if so the cache write mode to use. Clean up the existing header file to follow style, and remove the unneeded code. These can speed up booting so should be supported. Add these to global_data so they can be reque

[U-Boot] [PATCH 18/22] x86: Commit the current MTRRs before relocation

2014-12-27 Thread Simon Glass
Once we stop running from ROM we should set up the MTTRs to speed up execution. This is only needed for platforms that don't have an FSP. Also in the Coreboot case, the MTRRs are set up for us. Signed-off-by: Simon Glass --- arch/x86/lib/init_helpers.c | 8 1 file changed, 8 insertions

[U-Boot] [PATCH 12/22] x86: pci: Display vesa modes in hex

2014-12-27 Thread Simon Glass
The hex value is more commonly understood, so use that instead of decimal. Add a 0x prefix to avoid confusion. Signed-off-by: Simon Glass --- drivers/pci/pci_rom.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/pci/pci_rom.c b/drivers/pci/pci_rom.c index 5ba315b

[U-Boot] [PATCH 13/22] x86: ivybridge: Drop support for ROM caching

2014-12-27 Thread Simon Glass
This is set up along with CAR (Cache-as-RAM) anyway. When we relocate we don't really need ROM caching (we read the VGA BIOS from ROM but that is about it) Drop it. Signed-off-by: Simon Glass --- arch/x86/cpu/ivybridge/cpu.c | 25 - 1 file changed, 25 deletions(-) diff

[U-Boot] [PATCH 09/22] x86: ivybridge: Only run the Video BIOS when video is enabled

2014-12-27 Thread Simon Glass
This takes about about 700ms on link when running natively and 900ms when running using the emulator. It is a waste of time if video is not enabled, so don't bother running the video BIOS in that case. We could add a command to run the video BIOS later when needed, but this is not considered at pr

[U-Boot] [PATCH 05/22] x86: config: Always scroll the display by 5 lines, for speed

2014-12-27 Thread Simon Glass
Scrolling a line at a time is very slow for reasons that I don't understand. It seems to take about 100ms to copy 4MB of RAM in the frame buffer. To cope with this, scroll 5 lines each time. Signed-off-by: Simon Glass --- include/configs/x86-common.h | 1 + 1 file changed, 1 insertion(+) diff

[U-Boot] [PATCH 08/22] x86: video: Add debug option to time the BIOS copy

2014-12-27 Thread Simon Glass
This can be very slow - typically 80ms even on a fast machine since it uses the SPI flash to read the data. Add an option to display the time taken. Signed-off-by: Simon Glass --- drivers/pci/pci_rom.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/pci/pci_rom.c b/drivers/pci/pc

[U-Boot] [PATCH 20/22] x86: Disable CAR before relocation on platforms that need it

2014-12-27 Thread Simon Glass
For platforms with CAR we should disable it before relocation. Check if this function is available and call it if so. Signed-off-by: Simon Glass --- arch/x86/cpu/start.S | 10 ++ 1 file changed, 10 insertions(+) diff --git a/arch/x86/cpu/start.S b/arch/x86/cpu/start.S index 125782c..8c

[U-Boot] [PATCH 11/22] x86: Tidy up VESA mode numbers

2014-12-27 Thread Simon Glass
There are some bits which should be ignored when displaying the mode number. Make sure that they are not included in the mode that is displayed. Signed-off-by: Simon Glass --- arch/x86/lib/bios.c | 11 +++ 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/arch/x86/lib/bios.c

[U-Boot] [PATCH 03/22] x86: Correct ifdtool microcode calculation

2014-12-27 Thread Simon Glass
This currently assumes that U-Boot resides at the start of ROM. Update it to remove this assumption. Signed-off-by: Simon Glass --- tools/ifdtool.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/ifdtool.c b/tools/ifdtool.c index fe8366b..590ccc9 100644 --- a/tools

[U-Boot] [PATCH 19/22] x86: ivybridge: Add a way to turn off the CAR

2014-12-27 Thread Simon Glass
Cache-as-RAM should be turned off when we relocate since we want to run from RAM. Add a function to perform this task. Signed-off-by: Simon Glass --- arch/x86/cpu/ivybridge/car.S | 52 1 file changed, 52 insertions(+) diff --git a/arch/x86/cpu/ivybr

[U-Boot] [PATCH 07/22] x86: pci: Don't return a vesa mode when there is not video

2014-12-27 Thread Simon Glass
If the video has not been set up, we should not return a success code. This can be detected by seeing if any of the variables are non-zero. Signed-off-by: Simon Glass --- drivers/pci/pci_rom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pci/pci_rom.c b/drivers/pc

[U-Boot] [PATCH 02/22] x86: Drop RAMTOP Kconfig

2014-12-27 Thread Simon Glass
We don't need this in U-Boot since we calculate it based on available memory. Signed-off-by: Simon Glass --- arch/x86/Kconfig | 4 1 file changed, 4 deletions(-) diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 7d007bb..e992e64 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@

[U-Boot] [PATCH 01/22] x86: Correct XIP_ROM_SIZE

2014-12-27 Thread Simon Glass
This should default to the size of the ROM for faster execution before relocation. Signed-off-by: Simon Glass --- arch/x86/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index ebf72b3..7d007bb 100644 --- a/arch/x86/Kconfig +++ b/a

Re: [U-Boot] [PATCH v2 7/7] x86: crownbay: Add pci devices in the dts file

2014-12-27 Thread Simon Glass
On 27 December 2014 at 05:10, Bin Meng wrote: > The Topcliff PCH has 4 UART devices integrated (Device 10, Funciton > 1/2/3/4). Add the corresponding device nodes in the crownbay.dts per > Open Firmware PCI bus bindings. > > Also a comment block is added for the 'stdout-path' property in the > cho

Re: [U-Boot] [PATCH v2 5/7] serial: ns16550: Support ns16550 compatible pci uart devices

2014-12-27 Thread Simon Glass
Hi Bin, On 27 December 2014 at 05:10, Bin Meng wrote: > There are many pci uart devices which are ns16550 compatible. We can > describe them in the board dts file and use it as the U-Boot serial > console as specified in the chosen node 'stdout-path' property. > > Those pci uart devices can have

Re: [U-Boot] [PATCH v2 6/7] x86: Use ePAPR defined properties for x86-uart

2014-12-27 Thread Simon Glass
On 27 December 2014 at 05:10, Bin Meng wrote: > Use ePAPR defined properties for x86-uart: clock-frequency and > current-speed. Assign the value of clock-frequency in device tree > to plat->clock of x86-uart instead of using hardcoded number. > > Signed-off-by: Bin Meng > > --- > > Changes in v2

Re: [U-Boot] [PATCH v2 4/7] fdt: Add several apis to decode pci device node

2014-12-27 Thread Simon Glass
Hi Bin, On 27 December 2014 at 05:10, Bin Meng wrote: > This commit adds several APIs to decode PCI device node according to > the Open Firmware PCI bus bindings, including: > - fdtdec_get_pci_addr() for encoded pci address > - fdtdec_get_pci_vendev() for vendor id and device id > - fdtdec_get_pc

Re: [U-Boot] [PATCH v2 3/7] pci: Make pci apis usable before relocation

2014-12-27 Thread Simon Glass
On 27 December 2014 at 05:10, Bin Meng wrote: > Introduce a gd->hose to save the pci hose in the early phase so that > apis in drivers/pci/pci.c can be used before relocation. Architecture > codes need assign a valid gd->hose in the early phase. > > Some variables are declared as static so change

Re: [U-Boot] [PATCH v2 1/7] x86: Add missing DECLARE_GLOBAL_DATA_PTR for pci.c

2014-12-27 Thread Simon Glass
On 27 December 2014 at 05:10, Bin Meng wrote: > arch/x86/cpu/pci.c has access to the U-Boot global data thus > DECLARE_GLOBAL_DATA_PTR is needed. > > Signed-off-by: Bin Meng Acked-by: Simon Glass > > --- > > Changes in v2: > - Add a commit message > > arch/x86/cpu/pci.c | 2 ++ > 1 file chang

Re: [U-Boot] [PATCH v2 2/7] x86: Support pci bus scan in the early phase

2014-12-27 Thread Simon Glass
On 27 December 2014 at 05:10, Bin Meng wrote: > On x86, some peripherals on pci buses need to be accessed in the > early phase (eg: pci uart) with a valid pci memory/io address, > thus scan the pci bus and do the corresponding resource allocation. > > Signed-off-by: Bin Meng > --- > > Changes in

Re: [U-Boot] [PATCH 4/5] x86: Clean up the board dts files

2014-12-27 Thread Simon Glass
On 27 December 2014 at 18:22, Simon Glass wrote: > On 23 December 2014 at 22:06, Bin Meng wrote: >> This commits cleans up the board dts files. >> >> - Correct the serial port register size to 8 >> - Remove the misleading status = "disabled" statement in the >> serial.dtsi >> - Move the inclusi

Re: [U-Boot] [PATCH 3/5] x86: Rename coreboot.dsti to serial.dtsi

2014-12-27 Thread Simon Glass
On 27 December 2014 at 18:22, Simon Glass wrote: > On 23 December 2014 at 22:06, Bin Meng wrote: >> The name of coreboot.dtsi is misleading, as it actually describes >> the legacy serial port device node. >> >> Signed-off-by: Bin Meng > > Acked-by: Simon Glass Applied to u-boot-x86/next, thank

Re: [U-Boot] [PATCH 2/5] x86: Remove alex.dts in arch/x86/dts

2014-12-27 Thread Simon Glass
On 27 December 2014 at 18:22, Simon Glass wrote: > On 23 December 2014 at 22:06, Bin Meng wrote: >> No board is using alex.dts, so remove it. >> >> Signed-off-by: Bin Meng > > Acked-by: Simon Glass Applied to u-boot-x86/next, thanks! ___ U-Boot maili

Re: [U-Boot] [PATCH 4/5] x86: Clean up the board dts files

2014-12-27 Thread Simon Glass
On 23 December 2014 at 22:06, Bin Meng wrote: > This commits cleans up the board dts files. > > - Correct the serial port register size to 8 > - Remove the misleading status = "disabled" statement in the > serial.dtsi > - Move the inclusion of skeleton.dtsi from serial.dtsi to board > dts file

Re: [U-Boot] [PATCH 2/5] x86: Remove alex.dts in arch/x86/dts

2014-12-27 Thread Simon Glass
On 23 December 2014 at 22:06, Bin Meng wrote: > No board is using alex.dts, so remove it. > > Signed-off-by: Bin Meng Acked-by: Simon Glass ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH 3/5] x86: Rename coreboot.dsti to serial.dtsi

2014-12-27 Thread Simon Glass
On 23 December 2014 at 22:06, Bin Meng wrote: > The name of coreboot.dtsi is misleading, as it actually describes > the legacy serial port device node. > > Signed-off-by: Bin Meng Acked-by: Simon Glass ___ U-Boot mailing list U-Boot@lists.denx.de http

Re: [U-Boot] [PATCH 5/5] x86: Only compile dts file for a specific board

2014-12-27 Thread Simon Glass
Hi Bin, On 23 December 2014 at 22:06, Bin Meng wrote: > Right now all dts files under arch/x86/dts are compiled. This is > not necessary so update the Makefile to only compile dts file for > a specific board. I'd rather that we go the other way - making the boards more common. If I can get the M

Re: [U-Boot] [PATCH 1/5] x86: Remove include directory in arch/x86/dts

2014-12-27 Thread Simon Glass
Hi Bin, On 23 December 2014 at 22:06, Bin Meng wrote: > The include directory in arch/x86/dts is not used, so remove it. > > Signed-off-by: Bin Meng > --- Actually we do need this - the Chrome OS keyboard .dtsi will use a binding when I get around to updating it. > > arch/x86/dts/include/dt-b

[U-Boot] [PATCH] initcall: add explicit hint if initcall was relocated

2014-12-27 Thread Alexey Brodkin
Commit "initcall: Improve debugging support" makes sense and indeed simplifies process of matching initcalls executed with static disassembly. Until you are debugging relocation functionality. Existign output may make you think that at some point execution somehow returned back to non-relocated a

[U-Boot] [PATCH] pcm051: Add boot script support to pcm051

2014-12-27 Thread Matwey V. Kornilov
This patch adds boot script support to pcm051 Signed-off-by: Matwey V. Kornilov --- include/configs/pcm051.h | 29 ++--- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/include/configs/pcm051.h b/include/configs/pcm051.h index 7d102a4..c0bb227 100644 --- a

Re: [U-Boot] [PATCH 1/4] i2c: UniPhier: add driver for UniPhier i2c controller

2014-12-27 Thread Simon Glass
Hi Masahiro, On 25 December 2014 at 00:15, Masahiro Yamada wrote: > Simon, Heiko, > > > If you have no objection to this series, > I will apply it to u-boot-uniphier. > > Is this OK? > > > Some replies below to Simon's comment. > > > > On Tue, 23 Dec 2014 12:54:53 -0700 > Simon Glass wrote: > >

Re: [U-Boot] [PATCH] sunxi: Fix buggy sun6i/sun8i DRAM size detection logic

2014-12-27 Thread Hans de Goede
Hi, On 24-12-14 17:58, Siarhei Siamashka wrote: After reboot, reset or even short power off, DRAM typically retains the old stale data for some period of time (for this type of memory, the bits of data are stored in slowly discharging capacitors). The current sun6i/sun8i DRAM size detection log

[U-Boot] [PATCH] sunxi: Fix PLL1 running at half speed on sun8i

2014-12-27 Thread Hans de Goede
PLL1 on sun6i / sun8i also has a p factor which divides the clock by 2^p (to the power p). On sun6i the p factor is ignored, but on sun8i it is used and we were setting it to 1, resulting in the CPU running at 504 MHz instead of 1008 MHz, this commit fixes this. Signed-off-by: Hans de Goede ---

[U-Boot] [PATCH v2] sunxi: video: Fallback from HDMI to VGA on boards with VGA

2014-12-27 Thread Hans de Goede
If a board has no LCD, but does have VGA fallback to VGA when no HDMI cable is connected (unless hpd=0). Signed-off-by: Hans de Goede --- Changes in v2: -Fix missing "break;" in v1 which caused hdmi output to no longer work --- doc/README.video | 3 +-- drivers/video/sunxi_display.

[U-Boot] [PATCH 1/4] sunxi: video: Fix tcon0 hsync / vsync setting

2014-12-27 Thread Hans de Goede
It turns out that the problems I was seeing were due to a bad powersupply, so enable proper negative hsync / vsync support. Also adjust various defconfigs to keep the hsync and vsync for the lcd panels positive, changing sync:0 into sync:3. Signed-off-by: Hans de Goede --- arch/arm/include/asm/

[U-Boot] [PATCH 3/4] sunxi: video: Fallback from HDMI to VGA on boards with VGA

2014-12-27 Thread Hans de Goede
If a board has no LCD, but does have VGA fallback to VGA when no HDMI cable is connected (unless hpd=0). Signed-off-by: Hans de Goede --- doc/README.video | 3 +-- drivers/video/sunxi_display.c | 47 --- 2 files changed, 27 insertions(+), 23

[U-Boot] [PATCH 2/4] sunxi: video: Add support for using PORTD hsync/vsync pins with tcon1

2014-12-27 Thread Hans de Goede
Add support for using PORTD hsync/vsync pins with tcon1, this is a preparation patch for adding native VGA support. Signed-off-by: Hans de Goede --- drivers/video/sunxi_display.c | 22 +++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/drivers/video/sunxi_displ

[U-Boot] [PATCH 0/4] sunxi: video: native vga support

2014-12-27 Thread Hans de Goede
Hi Ian, Here is my last sunxi-video patch series, this time adding support for the native vga out found on the A10 / A20 SoCs, and used e.g. on the Cubietruck. With this patch series by default (can be overridden through video-mode env.) the display will fallback to 1024x768 over VGA when no HDMI

[U-Boot] [PATCH 4/4] sunxi: video: Add VGA output support

2014-12-27 Thread Hans de Goede
Add support for VGA directly from the sunxi SoC / display engine. Signed-off-by: Hans de Goede --- arch/arm/include/asm/arch-sunxi/clock_sun4i.h | 2 + arch/arm/include/asm/arch-sunxi/display.h | 76 +++ board/sunxi/Kconfig | 9 +++- config

Re: [U-Boot] [PATCH 1/2] sun6i: Add defconfig for MSI Primo81 tablet

2014-12-27 Thread Hans de Goede
Hi, Thanks, I've queued both patch up in u-boot-sunxi/next. Note I've changed the sync:0 to sync:3 in the LCD_MODE for the Primo73, because of: https://github.com/jwrdegoede/u-boot-sunxi/commit/5a6b9376f78128d00459db21da80f17ad3473d3a Before the above commit the lcd-code was ignoring the sync f

[U-Boot] [PATCH v2 5/7] serial: ns16550: Support ns16550 compatible pci uart devices

2014-12-27 Thread Bin Meng
There are many pci uart devices which are ns16550 compatible. We can describe them in the board dts file and use it as the U-Boot serial console as specified in the chosen node 'stdout-path' property. Those pci uart devices can have their register be memory mapped, or i/o mapped. The driver will t

[U-Boot] [PATCH v2 7/7] x86: crownbay: Add pci devices in the dts file

2014-12-27 Thread Bin Meng
The Topcliff PCH has 4 UART devices integrated (Device 10, Funciton 1/2/3/4). Add the corresponding device nodes in the crownbay.dts per Open Firmware PCI bus bindings. Also a comment block is added for the 'stdout-path' property in the chosen node, mentioning that by default the legacy superio se

[U-Boot] [PATCH v2 6/7] x86: Use ePAPR defined properties for x86-uart

2014-12-27 Thread Bin Meng
Use ePAPR defined properties for x86-uart: clock-frequency and current-speed. Assign the value of clock-frequency in device tree to plat->clock of x86-uart instead of using hardcoded number. Signed-off-by: Bin Meng --- Changes in v2: - New patch to use ePAPR defined properties for x86-uart ar

[U-Boot] [PATCH v2 4/7] fdt: Add several apis to decode pci device node

2014-12-27 Thread Bin Meng
This commit adds several APIs to decode PCI device node according to the Open Firmware PCI bus bindings, including: - fdtdec_get_pci_addr() for encoded pci address - fdtdec_get_pci_vendev() for vendor id and device id - fdtdec_get_pci_bdf() for pci device bdf triplet - fdtdec_get_pci_bar32() for pc

[U-Boot] [PATCH v2 2/7] x86: Support pci bus scan in the early phase

2014-12-27 Thread Bin Meng
On x86, some peripherals on pci buses need to be accessed in the early phase (eg: pci uart) with a valid pci memory/io address, thus scan the pci bus and do the corresponding resource allocation. Signed-off-by: Bin Meng --- Changes in v2: None arch/x86/cpu/pci.c | 1 + 1 file changed, 1 insert

[U-Boot] [PATCH v2 3/7] pci: Make pci apis usable before relocation

2014-12-27 Thread Bin Meng
Introduce a gd->hose to save the pci hose in the early phase so that apis in drivers/pci/pci.c can be used before relocation. Architecture codes need assign a valid gd->hose in the early phase. Some variables are declared as static so change them to be either stack variable or global data member s

[U-Boot] [PATCH v2 1/7] x86: Add missing DECLARE_GLOBAL_DATA_PTR for pci.c

2014-12-27 Thread Bin Meng
arch/x86/cpu/pci.c has access to the U-Boot global data thus DECLARE_GLOBAL_DATA_PTR is needed. Signed-off-by: Bin Meng --- Changes in v2: - Add a commit message arch/x86/cpu/pci.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/x86/cpu/pci.c b/arch/x86/cpu/pci.c index f3492c3..404

[U-Boot] [PATCH v2 0/7] x86: Support pci based uart as the U-Boot serial console

2014-12-27 Thread Bin Meng
This series add support to the ns16550 compatible pci devices. Newer x86 Platform Controller Hub chipset (like Topcliff, BayTrail) starts to integrate ns16550 compatible pci uart devices. In order to use them, we have to scan the pci bus and allocate memory/io address in the early phase. A gd->hos

Re: [U-Boot] [PATCH] spl: mmc: Fix raw boot mode (related to commit 4c5bbc2328a24f5e1ee990c9a9527e48e5fb3b5f)

2014-12-27 Thread Guillaume Gardet
Ping. This patch is needed for the release. Otherwise, raw boot mode is broken if FAT/SPL support is also enabled. Guillaume Le 16/12/2014 12:00, Guillaume GARDET a écrit : As reported by Robert Nelson, commit 4c5bbc2328a24f5e1ee990c9a9527e48e5fb3b5f may break MMC RAW boot mode. This patch