| 5db73feb | 12-Apr-2015 |
Heiko Schocher <hs@denx.de> |
cmd, nand: add more info to "nand info"
add subpagesize, nand options and bbt options to the "nand info" output.
=> nand info
Device 0: nand0, sector size 256 KiB Page size 4096 b OOB si
cmd, nand: add more info to "nand info"
add subpagesize, nand options and bbt options to the "nand info" output.
=> nand info
Device 0: nand0, sector size 256 KiB Page size 4096 b OOB size 256 b Erase size 262144 b subpagesize 4096 b options 0x 200 bbt options 0x 8000
Signed-off-by: Heiko Schocher <hs@denx.de>
show more ...
|
| 12eaf31c | 21-Mar-2015 |
York Sun <yorksun@freescale.com> |
armv8/fsl-lsch3: Update early MMU table
During booting, IFC is mapped to low region. After booting up, IFC is remapped to high region for larger space. The environmental variables are also stored at
armv8/fsl-lsch3: Update early MMU table
During booting, IFC is mapped to low region. After booting up, IFC is remapped to high region for larger space. The environmental variables are also stored at high region. In order to read the variables during booting, a virtual mapping is required.
Cache was enabled for entire IFC space before. Actually the first two entries are big enough (4MB) to cover the boot code and environmental variables. Remove extra entries. Move OCRAM entry out of ifdef.
Signed-off-by: York Sun <yorksun@freescale.com>
show more ...
|
| 293f16b1 | 28-Feb-2015 |
Simon Glass <sjg@chromium.org> |
Correct malloc_limit value for pre-relocation malloc()
The limit is measured from the start of the malloc() area and is not an absolute address. Correct this.
Signed-off-by: Simon Glass <sjg@chromi
Correct malloc_limit value for pre-relocation malloc()
The limit is measured from the start of the malloc() area and is not an absolute address. Correct this.
Signed-off-by: Simon Glass <sjg@chromium.org>
show more ...
|
| 5d27223e | 15-Feb-2015 |
Eric Nelson <eric.nelson@boundarydevices.com> |
unzip: add gzwrite command to write compressed image to block device
Add gzwrite command to write gzip-compressed images to block devices.
Input must be gzip-compressed according to RFC1952, since
unzip: add gzwrite command to write compressed image to block device
Add gzwrite command to write gzip-compressed images to block devices.
Input must be gzip-compressed according to RFC1952, since the crc and file size in the trailer will be confirmed during operation. The decompressed file size must be specified on the command line for images with decompressed sizes >= 4GiB because the trailer only contains the low 32 bits of the original file size.
Signed-off-by: Eric Nelson <eric.nelson@boundarydevices.com>
show more ...
|
| ed62756d | 09-Jan-2015 |
Stefan Roese <sr@denx.de> |
cmd_sf: Fix problem with "sf update" and unaligned length
On SoCFPGA, using "sf update" with an non-4byte aligned length leads to a hangup (and reboot via watchdog). This is because of the unaligned
cmd_sf: Fix problem with "sf update" and unaligned length
On SoCFPGA, using "sf update" with an non-4byte aligned length leads to a hangup (and reboot via watchdog). This is because of the unaligned access in the cadence QSPI driver which is hard to prevent since the data is written into a 4-byte wide FIFO. This patch fixes this problem by changing the behavior of the last sector write (not sector aligned).
The new code is even simpler and copies the source data into the temp buffer and now uses the temp buffer to write the complete sector. So only one SPI sector write is used now instead of 2 in the old version.
Signed-off-by: Stefan Roese <sr@denx.de> Cc: Gerlando Falauto <gerlando.falauto@keymile.com> Cc: Valentin Longchamp <valentin.longchamp@keymile.com> Cc: Holger Brunck <holger.brunck@keymile.com> Acked-by: Gerlando Falauto <gerlando.falauto@keymile.com> Reviewed-by: Jagannadha Sutradharudu Teki <jagannadh.teki@gmail.com>
show more ...
|