- Mar 31, 2008
-
-
Stelian Pop authored
Signed-off-by:
Stelian Pop <stelian@popies.net>
-
Jean-Christophe PLAGNIOL-VILLARD authored
Signed-off-by:
Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-
Stelian Pop authored
Support for booting from internal DataFlash, external DataFlash card or NAND flash is available. Signed-off-by:
Stelian Pop <stelian@popies.net>
-
Jean-Christophe PLAGNIOL-VILLARD authored
Signed-off-by:
Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-
Jean-Christophe PLAGNIOL-VILLARD authored
Signed-off-by:
Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-
Stelian Pop authored
Adapt the existing AT91CAP9 code to the new headers and APIs. Signed-off-by:
Stelian Pop <stelian@popies.net>
-
Stelian Pop authored
Replace AT91CAP9.h file with several splitted header files coming from the Linux kernel. This is part 2 of the replacement: more header imports and edits. Signed-off-by:
Stelian Pop <stelian@popies.net>
-
Stelian Pop authored
Replace AT91CAP9.h file with several splitted header files coming from the Linux kernel. This is part 1 of the replacement: pristine header files import. Signed-off-by:
Stelian Pop <stelian@popies.net>
-
Stelian Pop authored
AT91CAP9 and AT91SAM9 SoCs are very close hardware wise, so a common infrastructure can be used. Let this infrastructure be named after the AT91SAM9 family, and move the existing AT91CAP9 files to the new place. Signed-off-by:
Stelian Pop <stelian@popies.net>
-
Stelian Pop authored
The timer on AT91CAP9/AT91SAM9 is supplied by the SoC, and not by the board, so use timer_init() instead of interrupt_init(). Signed-off-by:
Stelian Pop <stelian@popies.net>
-
Stelian Pop authored
DataFlash partition information has become a mess. This patch defines a single partition scheme for Atmel DataFlashes. This partition scheme will be used by all AT91CAP9 and AT91SAM9 boards. Signed-off-by:
Stelian Pop <stelian@popies.net>
-
- Mar 30, 2008
-
-
Stelian Pop authored
Many Atmel boards have no "real" (NOR) flash on board, and rely only on DataFlash and NAND memories. This patch enables CFG_NO_FLASH to be present in a board configuration file, while still enabling flash commands like 'flinfo', 'protect', etc. Signed-off-by:
Stelian Pop <stelian@popies.net>
-
Jean-Christophe PLAGNIOL-VILLARD authored
This fixes a naming bug for at91rm9200 lowlevel init code: NOR boot flash is on chipselect 0, not chipselect 2. This makes code use the register name from chip datasheets. Signed-off-by:
Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-
David Brownell authored
This fixes a naming bug for at91rm9200 lowlevel init code: NOR boot flash is on chipselect 0, not chipselect 2. This makes code use the register name from chip datasheets. Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
David Brownell authored
Add some missing ARM boards to MAKEALL. These build correctly, unlike several of the boards already listed. Signed-off-by:
David Brownell <dbrownell@users.sourceforge.net>
-
- Mar 27, 2008
-
-
Bartlomiej Sieka authored
Revert commit 87c8431f and fix build breakage so that the build continues to work on FC systems. Signed-off-by:
Bartlomiej Sieka <tur@semihalf.com>
-
Haavard Skinnemoen authored
Signed-off-by:
Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
-
- Mar 26, 2008
-
-
Anatolij Gustschin authored
Currently U-Boot building in some external directory doesn't work. This patch tries to fix the problem. Signed-off-by:
Anatolij Gustschin <agust@denx.de>
-
Anatolij Gustschin authored
Fix typo in README Signed-off-by:
Anatolij Gustschin <agust@denx.de>
-
Anatolij Gustschin authored
This patch fixes compilation error cmd_usb.c: In function 'do_usb': cmd_usb.c:552: error: void value not ignored as it ought to be Signed-off-by:
Anatolij Gustschin <agust@denx.de>
-
Timur Tabi authored
Add support to the Freescale I2C driver (fsl_i2c.c) for setting and querying the I2C bus speed. Current 8[356]xx boards define the CFG_I2C_SPEED macro, but fsl_i2c.c ignores it and uses conservative value when programming the I2C bus speed. Signed-off-by:
Timur Tabi <timur@freescale.com> Acked-by:
Andy Fleming <afleming@freescale.com>
-
Wolfgang Denk authored
Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
Dave Liu authored
Add the Freescale on-chip SATA controller driver to u-boot, The SATA controller is used on the 837x and 8315 targets, The driver can be used to load kernel, fs and dtb. The features list: - 1.5/3 Gbps link speed - LBA48, LBA28 support - DMA and FPDMA support - Two ports support Signed-off-by:
Dave Liu <daveliu@freescale.com>
-
Dave Liu authored
Signed-off-by:
Dave Liu <daveliu@freescale.com>
-
Dave Liu authored
Signed-off-by:
Dave Liu <daveliu@freescale.com>
-
Dave Liu authored
Signed-off-by:
Dave Liu <daveliu@freescale.com>
-
Dave Liu authored
add simple libata support in u-boot Signed-off-by:
Dave Liu <daveliu@freescale.com>
-
Dave Liu authored
original ata_piix driver is using IDE framework, not real SATA framework. For now, the ata_piix driver is only used by x86 sc520_cdp board. This patch makes the ata_piix driver use the new SATA framework, so - remove the duplicated command stuff - remove the CONFIG_CMD_IDE define in the sc520_cdp.h - add the CONFIG_CMD_SATA define to sc520_cdp.h Signed-off-by:
Dave Liu <daveliu@freescale.com>
-
Dave Liu authored
- add the SATA framework - add the SATA command line Signed-off-by:
Dave Liu <daveliu@freescale.com>
-
Dave Liu authored
move the sata.h from include/ to drivers/block/ata_piix.h Signed-off-by:
Dave Liu <daveliu@freescale.com>
-
Dave Liu authored
move the cmd_sata.c from common/ to drivers/ata_piix.c, the cmd_sata.c have some part of ata_piix controller drivers. consolidate the driver to have better framework. Signed-off-by:
Dave Liu <daveliu@freescale.com>
-
Markus Klotzbuecher authored
f6b44e0e that will cause usb_stor_info to only print only information on one storage device, but not for multiple. Signed-off-by:
Markus Klotzbuecher <mk@denx.de>
-
Anatolij Gustschin authored
This patch fixes compilation error cmd_usb.c: In function 'do_usb': cmd_usb.c:552: error: void value not ignored as it ought to be Signed-off-by:
Anatolij Gustschin <agust@denx.de> Signed-off-by:
Markus Klotzbuecher <mk@denx.de>
-
Kumar Gala authored
Provide a board_lmb_reserve helper function to ensure we reserve the page of memory we are using for the boot page translation code. Signed-off-by:
Kumar Gala <galak@kernel.crashing.org>
-
Kumar Gala authored
The following changes are needed to be inline with ePAPR v0.81: * r4, r5 and now always set to 0 on boot release * r7 is used to pass the size of the initial map area (IMA) * EPAPR_MAGIC value changed for book-e processors * changes in the spin table layout * spin table supports a 64-bit physical release address Signed-off-by:
Kumar Gala <galak@kernel.crashing.org>
-
Jon Loeliger authored
Each file that can be built here now follows some CONFIG_ option so that they are appropriately built or not, as needed. And CONFIG_ defines were added to various board config files to make sure that happens. The other board/freescale/*/Makefiles no longer need to reach up and over into ../common to build their individually needed files any more. Boards that are CDS specific were renamed with cds_ prefix. Signed-off-by:
Jon Loeliger <jdl@freescale.com>
-
Kumar Gala authored
ft_fixup_cpu() got duplicated in some merge snafu. Remove the duplicate. Signed-off-by:
Kumar Gala <galak@kernel.crashing.org>