- Sep 25, 2012
-
-
Rob Herring authored
Signed-off-by:
Rob Herring <rob.herring@calxeda.com>
-
Rob Herring authored
Convert fatload, fatls, and fatinfo to use common device and partition parsing function. With the common function "dev:part" can come from the environment and a '-' can be used in that case. Signed-off-by:
Rob Herring <rob.herring@calxeda.com>
-
Rob Herring authored
Convert ext2/4 load, ls, and write functions to use common device and partition parsing function. With the common function "dev:part" can come from the environment and a '-' can be used in that case. Signed-off-by:
Rob Herring <rob.herring@calxeda.com>
-
Rob Herring authored
There's no real need to expose this and it can be removed by using a static allocation. Signed-off-by:
Rob Herring <rob.herring@calxeda.com>
-
Rob Herring authored
All block device related commands (scsiboot, fatload, ext2ls, etc.) have simliar duplicated device and partition parsing and selection code. This adds a common function to replace various implementations. The new function has an enhancement over current versions. If no device or partition is specified on the command line, the bootdevice env variable will be used (scsiboot does this). Signed-off-by:
Rob Herring <rob.herring@calxeda.com>
-
Rob Herring authored
Determine which partitions are bootable/active. In the partition listing, print "Boot" for partitions with the bootable/active flag set. Signed-off-by:
Rob Herring <rob.herring@calxeda.com>
-
Rob Herring authored
All the raw block load commands duplicate the same code. Starting with the ide version as it has progress updates convert ide, usb, and scsi boot commands to all use a common version. Signed-off-by:
Rob Herring <rob.herring@calxeda.com>
-
Stephen Warren authored
Now that get_device_and_partition() always calls get_partition_info() when disk.c is compiled, we must always compile the function, rather than ifdef it away. The implementation must be conditional based on CONFIG_CMD_* etc., since that's what e.g. part_dos.c uses to ifdef out get_partition_info_dos(); CONFIG_DOS_PARTITION can be enabled even without those commands being enabled. Technically, this change is required before Rob's "disk/part: introduce get_device_and_partition" patch. However, at least when the compiler optimizer is turned on, it isn't required before then in practice, since get_device_and_partition() calls get_dev(), which is stubbed out in disk.c under exactly the same conditions that get_partition_info() is not compiled, and hence the compiler never generates code for the call to the missing function. However, in my later patch "disk: get_device_and_partition() "auto" partition and cleanup", the optimizer doesn't succeed at this, and may attempt to reference the undefined function. Signed-off-by:
Stephen Warren <swarren@nvidia.com>
-
Allen Martin authored
The LIST_arm rule included the Atmel boards twice (by virtue of including both LIST_at91 and LIST_ARM9) and was missing all the arm720t, arm946es, and arm1176 boards. Change this list to use boards_by_arch() which is less error prone. After this change "./MAKEALL arm" and "./MAKEALL -a arm" build the same boards. Also fix up some missing and duplicate boards to arm, mips, and m68k. Signed-off-by:
Allen Martin <amartin@nvidia.com> Acked-by:
Tom Rini <trini@ti.com>
-
Stephen Warren authored
Commit 86c63265 "ARM: arm1176: enable instruction cache in arch_cpu_init()" defined arch_cpu_init() in a file that is shared across all arm1176 SoCs. tnetv107x already implemented this function, which caused linking to break. Move the new conflicting arch_cpu_init() into arm1176/bcm2835/init.c so that it doesn't conflict; grep indicates this function is usually defined at the SoC-level, not the CPU-level, at least for ARM. Signed-off-by:
Stephen Warren <swarren@wwwdotorg.org> Acked-by:
Marek Vasut <marex@denx.de>
-
git://git.denx.de/u-boot-mpc85xxTom Rini authored
-
- Sep 22, 2012
-
-
Tom Rini authored
Signed-off-by:
Tom Rini <trini@ti.com>
-
- Sep 21, 2012
-
-
git://git.denx.de/u-boot-stagingTom Rini authored
-
Kumar Gala authored
The following commit introduced some warnings associated with using pci_addr_t instead of a proper 32-bit data type. commit af778c6d Author: Andrew Sharp <andywyse6@gmail.com> Date: Wed Aug 1 12:27:16 2012 +0000 pci: fix errant data types and corresponding access functions On some platforms pci_addr_t is defined as a 64-bit data type so its not proper to use with pci_{read,write}_config_dword. Signed-off-by:
Kumar Gala <galak@kernel.crashing.org>
-
git://git.denx.de/u-boot-armTom Rini authored
-
Simon Glass authored
This makes it easier to include this header from other headers. Signed-off-by:
Simon Glass <sjg@chromium.org> Acked-by:
Mike Frysinger <vapier@gentoo.org>
-
Simon Glass authored
The new debugging shows the value of integers and addresses read from the device tree and tidy up GPIO output. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
This function should also be part of the GPIO API, so add it. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
git://git.denx.de/u-boot-usbTom Rini authored
-
Tom Rini authored
After further investigation this change is not correct and results in get_ram_size returning incorrectly large values. Reported first by Gerlando Falauto. This reverts commit b8496cce. Signed-off-by:
Tom Rini <trini@ti.com>
-
- Sep 20, 2012
-
-
Albert ARIBAUD authored
-
Lucas Stach authored
usb_hub_descriptor has to be packed as it's used for communication with the device. Member wHubCharacteristics violates the natural alignment rules. Use explicit unaligned access functions for this member. Fixes ARMv7 traping while using USB. v2: fix typo found by Thomas Langer v3: rebased on top of u-boot-usb/master Signed-off-by:
Lucas Stach <dev@lynxeye.de>
-
Łukasz Majewski authored
The "filesize" environment variable shall be read only when relevant file is read. Signed-off-by:
Lukasz Majewski <l.majewski@samsung.com> Signed-off-by:
Kyungmin Park <kyungmin.park@samsung.com> Reviewed-by:
Marek Vasut <marex@denx.de>
-
Łukasz Majewski authored
Support for ext4 file system handling at DFU. Signed-off-by:
Lukasz Majewski <l.majewski@samsung.com> Signed-off-by:
Kyungmin Park <kyungmin.park@samsung.com> Reviewed-by:
Marek Vasut <marex@denx.de>
-
Tom Rini authored
Update Makefile change for LIBS -> LIBS-y change. Conflicts: Makefile Signed-off-by:
Tom Rini <trini@ti.com>
-
Stephen Warren authored
DMA buffer cache invalidation requires that buffers have cache-aligned buffer locations and sizes. Use memalign() and ALLOC_CACHE_ALIGN_BUFFER() to ensure this. On Tegra at least, without this fix, the following fail commands fail in u-boot-master/ext4, but succeeded at the branch's branch point in u-boot/master. With this fix, the commands work again: ext2ls mmc 0:1 / ext2load mmc 0:1 /boot/zImage Cc: Uma Shankar <uma.shankar@samsung.com> Cc: Manjunatha C Achar <a.manjunatha@samsung.com> Cc: Iqbal Shareef <iqbal.ams@samsung.com> Cc: Hakgoo Lee <goodguy.lee@samsung.com> Cc: Wolfgang Denk <wd@denx.de> Cc: Tom Rini <trini@ti.com> Signed-off-by:
Stephen Warren <swarren@nvidia.com>
-
Jason Jin authored
originally work by Jate Sujjavanich <jsujjavanich@syntech-fuelmaster.com> ---- The defines in arch/m68k/include/coldfire/flexbus.h are not compatible with the 5235 processor. The registers in struct fbcs are different sizes from those in the 5235. Also, the defines are a little different. This is what I have so far. Comments? ---- Reformat the patch manually by Jason Jin Signed-off-by:
Jate Sujjavanich <jsujjavanich@syntech-fuelmaster.com> Signed-off-by:
Jason Jin <Jason.jin@freescale.com>
-
Richard Retanubun authored
This patch adds a driver for Freescale Colfire Queued SPI bus. Coded to work with 8 bits per transfer to use with SPI flash. CPOL, CPHA, and CS_ACTIVE_HIGH can be configured. Tested with MCF5270 which have 4 chip selects. Activate by #define CONFIG_CF_QSPI in board config. Signed-off-by:
Richard Retanubun <richardretanubun@ruggedcom.com>
-
Alison Wang authored
Signed-off-by:
Alison Wang <b18965@freescale.com>
-
Alison Wang authored
Signed-off-by:
Alison Wang <b18965@freescale.com>
-
Alison Wang authored
Signed-off-by:
Alison Wang <b18965@freescale.com>
-
Alison Wang authored
Signed-off-by:
Alison Wang <b18965@freescale.com>
-
Alison Wang authored
Signed-off-by:
Alison Wang <b18965@freescale.com>
-
Alison Wang authored
Signed-off-by:
Alison Wang <b18965@freescale.com>
-
Alison Wang authored
Signed-off-by:
Alison Wang <b18965@freescale.com>
-
Alison Wang authored
This patch uses the general ffs definition to replace the platform ffs definition. This patch also fixes the build error by adding hweightN definition for m5329evb and m5373evb. Signed-off-by:
Jason Jin <Jason.jin@freescale.com> Signed-off-by:
Alison Wang <b18965@freescale.com>
-
Alison Wang authored
This patch fixes the build error for MCF537x. As the NANDFLASH_SIZE is redefined in boards.cfg, it is needed to rename NANDFLASH_SIZE into CONFIG_NANDFLASH_SIZE in include/configs/M5373EVB.h. Signed-off-by:
Alison Wang <b18965@freescale.com>
-
- Sep 18, 2012
-
-
git://git.denx.de/u-boot-mpc83xxTom Rini authored
-
Ira W. Snyder authored
Add support for the onboard eSDHC MMC controller. The hardware on the MPC8308RDB has the following errata: - ESDHC111: manual asynchronous CMD12 is broken - DMA is broken (PIO works) Signed-off-by:
Ira W. Snyder <iws@ovro.caltech.edu> [added include fsl_esdhc header to prevent implicit declarations of fsl_esdhc_mmc_init() and fdt_fixup_esdhc()] Signed-off-by:
Kim Phillips <kim.phillips@freescale.com>
-
Ira W. Snyder authored
This is very useful on a modern system. Signed-off-by:
Ira W. Snyder <iws@ovro.caltech.edu> Signed-off-by:
Kim Phillips <kim.phillips@freescale.com>
-