summaryrefslogtreecommitdiffstats
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
* [PATCH] Update ALPR board filesStefan Roese2007-01-061-1/+18
| | | | | | | This update brings the ALPR board support to the newest version. It also fixes a problem with the NAND driver. Signed-off-by: Stefan Roese <sr@denx.de>
* Merge with /home/stefan/git/u-boot/denx-merge-srStefan Roese2007-01-051-3/+4
|\
| * Merge with /home/tur/proj/v38b/u-bootWolfgang Denk2007-01-041-3/+4
| |\
| | * Few V38B changes:Bartlomiej Sieka2006-12-281-3/+4
| | | | | | | | | | | | | | | | | | - fix a typo in V38B config file - move watchdog initialisation earlier in the boot process - add "wdt=off" to default kernel command line (disables kernel watchdog)
* | | [PATCH] Clear PLB4A0_ACR[WRP] on Sequoia (440EPx)Stefan Roese2007-01-051-9/+11
| | | | | | | | | | | | | | | | | | | | | This fix will make the MAL burst disabling patch for the Linux EMAC driver obsolete. Signed-off-by: Stefan Roese <sr@denx.de>
* | | [PATCH] Add DDR2 optimization code for Sequoia (440EPx) boardStefan Roese2007-01-051-1/+4
|/ / | | | | | | | | | | | | | | | | | | This code will optimize the DDR2 controller setup on a board specific basis. Note: This code doesn't work right now on the NAND booting image for the Sequoia board, since it doesn't fit into the 4kBytes for the SPL image. Signed-off-by: Stefan Roese <sr@denx.de>
* | Minor code cleanup.Wolfgang Denk2006-12-241-12/+8
| |
* | Merge with /home/wd/git/u-boot/masterWolfgang Denk2006-12-241-0/+1
|\ \
| * | Fix cfi failure with Spansion Flash (Spansion Flash Devices have a different ↵Stefano Babic2006-12-241-0/+1
| | | | | | | | | | | | offset to go into CFI mode)
* | | Merge with /home/hs/TQ/u-boot-devWolfgang Denk2006-12-242-0/+768
|\ \ \ | |/ / |/| |
| * | Added support for the TQM8272 board from TQHeiko Schocher2006-12-212-0/+768
| | | | | | | | | | | | Signed-off-by: Heiko Schocher <hs@denx.de>
* | | Preliminary support for the iDMR board (ColdFire).Bartlomiej Sieka2006-12-201-0/+197
| | |
* | | automatic update mechanismAndrei Safronov2006-12-081-1/+3
| | |
* | | Code cleanup.Wolfgang Denk2006-11-304-429/+428
| | |
* | | Merge with http://opensource.freescale.com/pub/scm/u-boot-83xx.gitWolfgang Denk2006-11-3014-758/+3783
|\ \ \
| * | | Make fsl-i2c not conflict with SOFT I2CJoakim Tjernlund2006-11-291-4/+0
| | | | | | | | | | | | | | | | Signed-off-by: Timur Tabi <timur@freescale.com>
| * | | Merge http://www.denx.de/git/u-bootKim Phillips2006-11-2812-48/+401
| |\ \ \
| * | | | mpc83xx: Update 83xx to use fsl_i2c.cTimur Tabi2006-11-036-119/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update the 83xx tree to use I2C support in drivers/fsl_i2c.c. Delete cpu/mpc83xx/i2c.c, include/asm-ppc/i2c.h, and all references to those files. Added multiple I2C bus support to fsl_i2c.c. Signed-off-by: Timur Tabi <timur@freescale.com>
| * | | | mpc83xx: Replace CFG_IMMRBAR with CFG_IMMRTimur Tabi2006-11-035-28/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replace all instances of CFG_IMMRBAR with CFG_IMMR, so that the 83xx tree matches the other 8xxx trees. Signed-off-by: Timur Tabi <timur@freescale.com>
| * | | | mpc83xx: Fix the incorrect dcbz operationDave Liu2006-11-031-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The 834x rev1.x silicon has one CPU5 errata. The issue is when the data cache locked with HID0[DLOCK], the dcbz instruction looks like no-op inst. The right behavior of the data cache is when the data cache Locked with HID0[DLOCK], the dcbz instruction allocates new tags in cache. The 834x rev3.0 and later and 8360 have not this bug inside. So, when 834x rev3.0/8360 are working with ECC, the dcbz instruction will corrupt the stack in cache, the processor will checkstop reset. However, the 834x rev1.x can work with ECC with these code, because the sillicon has this cache bug. The dcbz will not corrupt the stack in cache. Really, it is the fault code running on fault sillicon. This patch fix the incorrect dcbz operation. Instead of CPU FP writing to initialise the ECC. CHANGELOG: * Fix the incorrect dcbz operation instead of CPU FP writing to initialise the ECC memory. Otherwise, it will corrupt the stack in cache, The processor will checkstop reset. Signed-off-by: Dave Liu <daveliu@freescale.com>
| * | | | mpc83xx: add OF_FLAT_TREE bits to 83xx boardsKim Phillips2006-11-033-20/+112
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | add ft_pci_setup, OF_CPU, OF_SOC, OF_TBCLK, and STDOUT_PATH configuration bits to mpc8349emds, mpc8349itx, and mpc8360emds board code. redo environment to use bootm with the fdtaddr for booting ARCH=powerpc kernels by default, and provide default fdtaddr values.
| * | | | mpc83xx: Fix dual I2C support for the MPC8349ITX, MPC8349EMDS, TQM834x, and ↵Timur Tabi2006-11-034-14/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | MPC8360EMDS This patch also adds an improved I2C set_speed(), which handles all clock frequencies. Signed-off-by: Timur Tabi <timur@freescale.com>
| * | | | mpc83xx: add QE ethernet supportDave Liu2006-11-033-0/+42
| | | | | | | | | | | | | | | | | | | | this patch adds support for the QUICC Engine based UCC gigabit ethernet device.
| * | | | mpc83xx: Add MPC8360EMDS basic board supportDave Liu2006-11-034-14/+689
| | | | | | | | | | | | | | | | | | | | | | | | | Add support for the Freescale MPC8360EMDS board. Includes DDR, DUART, Local Bus, PCI.
| * | | | mpc83xx: add the QUICC Engine (QE) immap fileDave Liu2006-11-031-0/+550
| | | | | | | | | | | | | | | | | | | | common QE immap file. Also required for 8360.
| * | | | mpc83xx: Add 8360 specifics to 83xx immapDave Liu2006-11-031-571/+1404
| | | | | | | | | | | | | | | | | | | | | | | | | Mainly add QE device dependencies, with appropriate 8360 protection. Lindent also run.
| * | | | mpc83xx: Fix PCI, USB, bootargs for MPC8349E-mITXTimur Tabi2006-11-031-8/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PREREQUISITE PATCHES: * This patch can only be applied after the following patches have been applied: 1) DNX#2006092142000015 "Add support for the MPC8349E-mITX 1/2" 2) DNX#2006092142000024 "Add support for the MPC8349E-mITX 2/2" CHANGELOG: * For the 8349E-mITX, fix some size values in pci_init_board(), enable the clock for the 2nd USB board (Linux kernel will hang otherwise), and fix the CONFIG_BOOTARGS macro. Signed-off-by: Timur Tabi <timur@freescale.com>
| * | | | mpc83xx: Add support for the MPC8349E-mITXTimur Tabi2006-11-032-0/+769
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PREREQUISITE PATCHES: * This patch can only be applied after the following patches have been applied: 1) DNX#2006090742000024 "Add support for multiple I2C buses" 2) DNX#2006090742000033 "Multi-bus I2C implementation of MPC834x" 3) DNX#2006091242000041 "Additional MPC8349 support for multibus i2c" 4) DNX#2006091242000078 "Add support for variable flash memory sizes on 83xx systems" 5) DNX#2006091242000069 "Add support for Errata DDR6 on MPC 834x systems" CHANGELOG: * Add support for the Freescale MPC8349E-mITX reference design platform. The second TSEC (Vitesse 7385 switch) is not supported at this time. Signed-off-by: Timur Tabi <timur@freescale.com>
| * | | | Multi-bus I2C implementation of MPC834xBen Warren2006-11-032-11/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Hello, Attached is a patch implementing multiple I2C buses on the MPC834x CPU family and the MPC8349EMDS board in particular. This patch requires Patch 1 (Add support for multiple I2C buses). Testing was performed on a 533MHz board. /*** Note: This patch replaces ticket DNX#2006083042000027 ***/ Signed-off-by: Ben Warren <bwarren@qstreams.com> CHANGELOG: Implemented driver-level code to support two I2C buses on the MPC834x CPU family and the MPC8349EMDS board. Available I2C bus speeds are 50kHz, 100kHz and 400kHz on each bus. regards, Ben
| * | | | Add support for multiple I2C busesBen Warren2006-11-031-0/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Hello, Attached is a patch providing support for multiple I2C buses at the command level. The second part of the patch includes an implementation for the MPC834x CPU and MPC8349EMDS board. /*** Note: This patch replaces ticket DNX#2006083042000018 ***/ Signed-off-by: Ben Warren <bwarren@qstreams.com> Overview: 1. Include new 'i2c' command (based on USB implementation) using CONFIG_I2C_CMD_TREE. 2. Allow multiple buses by defining CONFIG_I2C_MULTI_BUS. Note that the commands to change bus number and speed are only available under the new 'i2c' command mentioned in the first bullet. 3. The option CFG_I2C_NOPROBES has been expanded to work in multi-bus systems. When CONFIG_I2C_MULTI_BUS is used, this option takes the form of an array of bus-device pairs. Otherwise, it is an array of uchar. CHANGELOG: Added new 'i2c' master command for all I2C interaction. This is conditionally compiled with CONFIG_I2C_CMD_TREE. New commands added for setting I2C bus speed as well as changing the active bus if the board has more than one (conditionally compiled with CONFIG_I2C_MULTI_BUS). Updated NOPROBE logic to handle multiple buses. Updated README. regards, Ben
| * | | | mpc83xx: fix TQM build by defining a CFG_FLASH_SIZE for itTimur Tabi2006-11-031-0/+1
| | | | |
| * | | | mpc83xx: Unified TQM834x variable names with 83xx and consolidated macrosTanya Jiang2006-11-031-0/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Unified TQM834x variable names with 83xx and consolidated macro in preparation for the 8360 and other upcoming 83xx devices. Signed-off-by: Tanya Jiang <tanya.jiang@freescale.com>
| * | | | mpc83xx: Changed to unified mpx83xx names and added common 83xx changesDave Liu2006-11-033-94/+177
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | Incorporated the common unified variable names and the changes in preparation for releasing mpc8360 patches. Signed-off-by: Dave Liu <daveliu@freescale.com>
* | | | [PATCH] Add support for Prodrive P3M750 & P3M7448 (P3Mx) boardsStefan Roese2006-11-292-0/+451
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch adds support for the Prodrive P3M750 (PPC750 & MV64460) and the P3M7448 (MPC7448 & MV64460) PMC modules. Both modules are quite similar and share the same board directory "prodrive/p3mx" and the same config file "p3mx.h". Signed-off-by: Stefan Roese <sr@denx.de>
* | | | [PATCH] include/ppc440.h minor error affecting interruptsStefan Roese2006-11-291-18/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixed include/ppc440.c for UIC address Bug Corrects bug affecting the addresses for the universal interrupt controller UIC2 and UIC3 on the PPC440 Epx, GRx, and SPE chips. Signed-off-by: Jeff Mann <mannj@embeddedplanet.com> Signed-off-by: Stefan Roese <sr@denx.de>
* | | | [PATCH] Enable the IceCube/lite5200 variants to pass a device tree to Linux.Stefan Roese2006-11-281-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch adds the code and configuration necessary to boot with an arch/powerpc Linux kernel. Signed-off-by: Grant Likely <grant.likely@gmail.com> Acked-by: Jon Loeliger <jdl@freescale.com>
* | | | [PATCH] PPC4xx: 440SP Rev. C detection addedStefan Roese2006-11-281-0/+1
| |/ / |/| | | | | | | | Signed-off-by: Stefan Roese <sr@denx.de>
* | | Merge with /home/sr/git/u-boot/denx-alpr-merge-testWolfgang Denk2006-11-276-1/+372
|\ \ \
| * | | [PATCH] Remove testing 4xx enet PHY setupStefan Roese2006-11-271-1/+1
| | | | | | | | | | | | | | | | Signed-off-by: Stefan Roese <sr@denx.de>
| * | | [PATCH] Update Prodrive ALPR board support (440GX)Stefan Roese2006-11-271-51/+45
| | | | | | | | | | | | | | | | Signed-off-by: Stefan Roese <sr@denx.de>
| * | | Merge with /home/stefan/git/u-boot/denxStefan Roese2006-11-274-44/+26
| |\ \ \
| * \ \ \ Merge with /home/stefan/git/u-boot/denxStefan Roese2006-11-1077-221/+5880
| |\ \ \ \
| * | | | | Update ALPR code (NAND support working now)Stefan Roese2006-10-071-71/+30
| | | | | | | | | | | | | | | | | | | | | | | | Patch by Stefan Roese, 07 Oct 2006
| * | | | | Add CONFIG_BOARD_RESET to configure board specific reset functionStefan Roese2006-10-072-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | Patch by Stefan Roese, 07 Oct 2006
| * | | | | Merge with /home/stefan/git/u-boot/denxStefan Roese2006-09-1829-96/+1374
| |\ \ \ \ \
| * | | | | | Add initial support for the ALPR board from ProdriveStefan Roese2006-08-152-1/+394
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | NAND needs some additional testing Patch by Heiko Schocher, 15 Aug 2006
| * | | | | | Add FPGA Altera Cyclone 2 supportStefan Roese2006-08-152-0/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Patch by Heiko Schocher, 15 Aug 2006
* | | | | | | [PATCH] Select NAND embedded environment from board configurationStefan Roese2006-11-272-2/+2
| |_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The current NAND Bootloader setup forces the environment variables to be in line with the bootloader. This change enables the configuration to be made in the board include file instead so that it can be individually enabled. Signed-off-by: Nick Spence <nick.spence@freescale.com> Signed-off-by: Stefan Roese <sr@denx.de>
* | | | | | Updates for TQM5200 modules:Wolfgang Denk2006-11-231-35/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - fix off-by-one error in board/tqm5200/cam5200_flash.c error message - simplify "udate" definitions
* | | | | | [PATCH] Update AMCC Sequoia config file to support 64MByte NOR FLASHStefan Roese2006-11-201-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Stefan Roese <sr@denx.de>
OpenPOWER on IntegriCloud