aboutsummaryrefslogtreecommitdiff
path: root/include/configs/trab.h
AgeCommit message (Collapse)AuthorFilesLines
2009-06-12mtd: MTD related config header changes (mtdparts command)Stefan Roese1-0/+2
By changing the cmd_mtdparts to only use the MTD infrastructure and not the direct interface to the CFI NOR FLASH driver we now need to add the MTD infrastructure to all boards using those mtdparts commands. This patch adds those components: CONFIG_MTD_DEVICE (for all FLASH types) plus CONFIG_FLASH_CFI_MTD (for NOR FLASH) To all board maintainers: Please test this on your platforms and report any problems/issues found. Thanks. Signed-off-by: Stefan Roese <sr@denx.de> Cc: Wolfgang Denk <wd@denx.de> Cc: Ron Madrid <info@sheldoninst.com> Cc: Georg Schardt <schardt@team-ctech.de> Cc: Michal Simek <monstr@monstr.eu> Cc: Ladislav Michl <ladis@linux-mips.org> Cc: Martin Krause <martin.krause@tqs.de> Cc: Gary Jennejohn <garyj@denx.de> Cc: Ricardo Ribalda <ricardo.ribalda@uam.es>
2009-05-15Fix e-mail address of Gary Jennejohn.Detlev Zundel1-1/+1
Signed-off-by: Detlev Zundel <dzu@denx.de>
2009-03-30s3c24x0: move serial driver to drivers/serialJean-Christophe PLAGNIOL-VILLARD1-0/+1
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2009-03-29Remove nowhere used symbol CONFIG_SYS_CLKS_IN_HZLadislav Michl1-2/+0
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
2009-03-20Separate mtdparts command from jffs2Stefan Roese1-1/+1
Currently the mtdparts commands are included in the jffs2 command support. This doesn't make sense anymore since other commands (e.g. UBI) use this infrastructure as well now. This patch separates the mtdparts commands from the jffs2 commands making it possible to only select mtdparts when no JFFS2 support is needed. Signed-off-by: Stefan Roese <sr@denx.de> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
2009-01-28usb.h: use standard __LITTLE_ENDIAN from Linux headersMike Frysinger1-1/+0
Rather than forcing people to define a custom "LITTLEENDIAN", just use the __LITTLE_ENDIAN one from the Linux byteorder headers that every arch is already setting up. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Remy Bohmer <linux@bohmer.net>
2008-10-18rename CFG_ macros to CONFIG_SYSJean-Christophe PLAGNIOL-VILLARD1-49/+49
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2008-09-10rename CFG_ENV macros to CONFIG_ENVJean-Christophe PLAGNIOL-VILLARD1-9/+9
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2008-09-10rename CFG_ENV_IS_IN_FLASH in CONFIG_ENV_IS_IN_FLASHJean-Christophe PLAGNIOL-VILLARD1-1/+1
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
2008-08-06Fix merge problemsStefan Roese1-1/+2
Signed-off-by: Stefan Roese <sr@denx.de>
2008-05-21Big white-space cleanup.Wolfgang Denk1-3/+3
This commit gets rid of a huge amount of silly white-space issues. Especially, all sequences of SPACEs followed by TAB characters get removed (unless they appear in print statements). Also remove all embedded "vim:" and "vi:" statements which hide indentation problems. Signed-off-by: Wolfgang Denk <wd@denx.de>
2007-09-16TQM8xx[LM]: Fix broken environment alignment.Wolfgang Denk1-0/+2
With recent toolchains, the environment sectors were no longer aligned to sector boundaries. The reason was a combination of two bugs: 1) common/environment.c assumed that CONFIG_TQM8xxL would be defined for all TQM8xxL and TQM8xxM boards. But "include/common.h", where this gets defined, is not included here (and cannot be included without causing lots of problems). Added a new #define CFG_USE_PPCENV for all boards which really want to put the environment is a ".ppcenv" section. 2) The linker scripts just include environment.o, silently assuming that the objects in that file are really in the order in which they are coded in the C file, i. e. "environment" first, then "redundand_environment", and "env_size" last. However, current toolchains (GCC-4.x) reorder the objects, causing the environment data not to start on a flash sector boundary: Instead of: we got: 40008000 T environment 40008000 T env_size 4000c000 T redundand_environment 40008004 T redundand_environment 40010000 T env_size 4000c004 T environment Note: this patch fixes just the first part, and cures the alignment problem by making sure that "env_size" gets placed correctly. However, we still have a potential issue because primary and redundant environment sectors are actually swapped, i. e. we have now: 40008000 T redundand_environment 4000c000 T environment 40010000 T env_size This shall be fixed in the next version. Signed-off-by: Wolfgang Denk <wd@denx.de>
2007-08-07Merge with git://www.denx.de/git/u-boot.gitMarkus Klotzbuecher1-40/+30
2007-07-10include/configs/[p-z]* + misc: Cleanup BOOTP and lingering CFG_CMD_*.Jon Loeliger1-0/+9
Explicitly add in default CONFIG_BOOTP_* options where cmd_confdefs.h used to be included but CONFIG_BOOTP_MASK was not defined. Remove lingering references to CFG_CMD_* symbols. Signed-off-by: Jon Loeliger <jdl@freescale.com>
2007-07-05include/configs: Use new CONFIG_CMD_* in various t* and u* named board ↵Jon Loeliger1-40/+21
config files. Signed-off-by: Jon Loeliger <jdl@freescale.com>
2007-06-06TRAB, USB: update trab board configuration for use of generic ohci driverMarkus Klotzbuecher1-1/+2
2006-11-27Introduced the configuration option CONFIG_USB_OHCI_NEW in order to be ableMarkus Klotzbuecher1-1/+1
to choose between the old and the generic OHCI drivers.
2006-11-27Modified the mpc5xxx and the ppc4xx cpu to use the generic OHCI driverMarkus Klotzbuecher1-0/+1
and adapted board configs TQM5200 and yosemite accordingly. This commit also makes the maximum number of root hub ports configurable (CFG_USB_OHCI_MAX_ROOT_PORTS).
2006-08-07Merge with /home/wd/git/u-boot/masterWolfgang Denk1-1/+1
2006-07-19Fix some bugs in TRAB board flash driver.Wolfgang Denk1-1/+1
- increase CFG_FLASH_ERASE_TOUT from 2 to 15 seconds - use CFG_FLASH_WRITE_TOUT for programming instead of CFG_FLASH_ERASE_TOUT - remove "Unlock Bypass" mode, because macronix flashes do not support this mode officially - fix flash reset command from 0x00FF to 0x00F0. 0x00FF is only specified for Intel compatible flashes, not for AMD compatible. Patch by Martin Krause, 15 Feb 2006
2006-06-26Merge with /home/wd/git/u-boot/masterWolfgang Denk1-4/+2
2006-06-16Disable JFFS2 support for trab boardWolfgang Denk1-2/+0
Patch by Martin Krause, 27 Oct 2005
2006-06-16Change mtdparts definition on trab board to match current flash mapWolfgang Denk1-2/+2
Patch by Martin Krause, 27 Oct 2005
2006-05-30Support generic OHCI support for the s3c24x0 cpu.Markus Klotzbuecher1-0/+5
2005-11-20Change all '$(...)' variable references into '${...}'Wolfgang Denk1-16/+16
which makes the environment compatible with the hush shell. WARNING: Support for the old '$(...)' syntax will be discontinued in a later version.
2005-10-06Add JFFS2 support for TRAB boardWolfgang Denk1-4/+20
Patch by Martin Krause, 25 Aug 2005
2005-09-26Undo change of f6e20fc6ca... to include/configs/trab.hWolfgang Denk1-1/+1
(Must have been an accident?)
2005-04-04Patch by Steven Scholz, 4 Apr 2005:wdenk1-6/+0
- remove all references to CONFIG_INIT_CRITICAL for ARM based boards - introduce two new configuration options instead: CONFIG_SKIP_LOWLEVEL_INIT and CONFIG_SKIP_RELOCATE_UBOOT
2005-04-02Prepare for SoC rework of ARM code:wdenk1-1/+1
- rename CONFIG_BOOTBINFUNC into CONFIG_INIT_CRITICAL - rename memsetup into lowlevel_init (function name and source files)
2005-04-02Fix problems with SNTP support;wdenk1-19/+25
enable SNTP support in some boards.
2005-02-24* Add support for ext2 filesystems and image timestamps to TQM5200 boardwdenk1-2/+2
* Add reset code for Coral-P on INKA4x0 board * Patch by Martin Krause, 28 Jun 2004: Update for TRAB board. * Fix some missing "volatile"s in MPC5xxx FEC driver
2004-03-23* Add start-up delay to make sure power has stabilized beforewdenk1-2/+2
attempting to switch on USB on SX1 board. * Patch by Josef Wagner, 18 Mar 2004: - Add support for MicroSys XM250 board (PXA255) - Add support for MicroSys PM828 board (MPC8280) - Add support for 32 MB Flash on PM825/826 - new SDRAM refresh rate for PM825/PM826 - added support for MicroSys PM520 (MPC5200) - replaced Query by Identify command in CPU86/flash.c to support 28F160F3B * Fix wrap around problem with udelay() on ARM920T * Add support for Macronix flash on TRAB board
2004-02-08Patch by Anders Larsen, 09 Jan 2004:wdenk1-1/+1
ARM memory layout fixes: the abort-stack is now set up in the correct RAM area, and the BSS is zeroed out as it should be. Furthermore, the magic variables 'armboot_end' and 'armboot_end_data' of the linker scripts are replaced by '__bss_start' and '_end', resp., which is a further step to eliminate unnecessary differences between the implementation of the CPU architectures.
2003-12-20* Fix IceCube CLKIN configuration (it's 33.000000MHz)wdenk1-3/+8
* Add new configuration for IceCube board with DDR memory * Update TRAB memory configurations
2003-12-06* Patch by Gleb Natapov, 19 Sep 2003:wdenk1-0/+1
Move most of the timer interrupt related PPC code to ppc_lib/interrupts.c * Patch by Anders Larsen, 17 Sep 2003: Bring ARM memory layout in sync with the documentation: stack and malloc-heap are now located _below_ the U-Boot code
2003-10-28* Patch by Stephan Linz, 28 Oct 2003:wdenk1-0/+2
fix init sequence error for NIOS port * Allow lowercase spelling for IceCube_5200; support MPC5200LITE name * Add CONFIG_VERSION_VARIABLE to TRAB configuration
2003-10-22Fix PCI problems on PPChameleon boardwdenk1-1/+1
2003-10-15* Patches by Xianghua Xiao, 15 Oct 2003:LABEL_2003_10_16_0200wdenk1-1/+1
- Added Motorola CPU 8540/8560 support (cpu/85xx) - Added Motorola MPC8540ADS board support (board/mpc8540ads) - Added Motorola MPC8560ADS board support (board/mpc8560ads) * Minor code cleanup
2003-10-10Added config option CONFIG_SILENT_CONSOLE. See doc/README.silentLABEL_2003_10_10_1200wdenk1-0/+2
for more information
2003-10-09* Patch by Martin Krause, 09 Oct 2003:LABEL_2003_10_09_1515wdenk1-3/+7
Fixes for TRAB board - /board/trab/rs485.c: correct baudrate - /board/trab/cmd_trab.c: bug fix for problem with timer overflow in udelay(); fix some timing problems with adc controller - /board/trab/trab_fkt.c: add new commands: gain, eeprom and power; modify commands: touch and buzzer * Disable CONFIG_SUPPORT_VFAT when used with CONFIG_AUTO_UPDATE (quick & dirty workaround for rogue pointer problem in get_vfatname()); Use direct function calls for auto_update instead of hush commands
2003-09-29* Adapt TRAB configuration and auto_update to new memory layoutdzu1-1/+1
2003-09-17Support new configuration of TRAB board with more memorywdenk1-6/+11
Minor cleanup of comments
2003-09-17Add auto-update code for TRAB board using USB memory stickswdenk1-36/+47
2003-09-11* Patch by Martin Krause, 11 Sep 2003:LABEL_2003_09_12_0110wdenk1-0/+5
add burn-in tests for TRAB board * Enable instruction cache on MPC5200 board
2003-09-10* Add support for USB Mass Storage Devices (BBB)wdenk1-2/+59
(tested with USB memory sticks only) * Avoid flicker on TRAB's VFD
2003-07-15* Patches by Martin Krause, 14 Jul 2003:wdenk1-13/+49
- add I2C support for s3c2400 systems (trab board) - (re-) add "ping" to command table * Fix handling of "slow" POST routines
2003-06-19* Patches by David Müller, 12 Jun 2003:wdenk1-0/+5
- rewrite of the S3C24X0 register definitions stuff - "driver" for the built-in S3C24X0 RTC * Patches by Yuli Barcohen, 12 Jun 2003: - Add MII support and Ethernet PHY initialization for MPC8260ADS board - Fix incorrect SIUMCR initialisation caused by wrong Hard Reset configuration word supplied by FPGA on some MPC8260ADS boards * Patch by Pantelis Antoniou, 10 Jun 2003: Unify status LED interface
2003-05-21Add support for arbitrary bitmaps for TRAB's VFD command;LABEL_2003_05_22_2230wdenk1-0/+1
allow to pass boot bitmap addresses in environment variables; allow for zero boot delay
2003-03-06* Patches by David Müller, 31 Jan 2003:LABEL_2003_03_06_2255wdenk1-0/+3
- minimal setup for CardBus bridges - add EEPROM read/write support in the CS8900 driver - add support for the builtin I2C controller in the Samsung s3c24x0 chips - add support for MPL's VCMA9 (Samsung s3c2410 based) board * Patch by Steven Scholz, 04 Feb 2003: add support for RTC DS1307 * Patch by Reinhard Meyer, 5 Feb 2003: fix PLPRCR/SCCR init sequence on 8xx to allow for changes of EBDF by software * Patch by Vladimir Gurevich, 07 Feb 2003: "API-compatibility patch" for 4xx I2C driver
2003-03-06* Patches by Robert Schwebel, 06 Mar 2003:wdenk1-3/+29
- fix bug in BOOTP code (must use NetCopyIP) - update of CSB226 port - clear BSS segment on XScale - added support for i2c_init_board() function - update to the Innokom plattform * Extend support for redundand environments for configurations where environment size < sector size