From: Tom <Tom.Rix@windriver.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] ARM pull request
Date: Sat, 17 Oct 2009 21:42:08 -0500 [thread overview]
Message-ID: <4ADA8080.3060800@windriver.com> (raw)
The following changes since commit a380279b2abe130c2d3d2c8de36f8ff98bc6b3b0:
Daniel Gorsulowski (1):
at91: Update MEESC board support
are available in the git repository at:
git://git.denx.de/u-boot-arm master-sync
Eric Benard (3):
CPU9260 : fix machine ID when using a CPU9G20.
fix CPU9260/CPU9G20 compile warnings
main.c: In function 'abortboot':
Minkyu Kang (4):
s5pc1xx: support Samsung s5pc1xx SoC
s5pc1xx: support onenand driver
s5pc1xx: support serial driver
s5pc1xx: add support SMDKC100 board
Nishanth Menon (4):
OMAP3: export enable_gpmc_cs_config to board files
OMAP3: fix warnings when NAND/ONENAND is not used
OMAP3: Fix SDRC init
TI OMAP3: make gpmc_config as const
Sandeep Paulraj (13):
TI DaVinci DM355: Fix Compilation warning for DM355 EVM
TI DaVinci DM365: Fix Compilation warning for DM365 EVM
TI DaVinci DM646x: Adding initial support for DM6467 EVM
TI: DaVinci: DM355 Leopard board support
TI DaVinci: Maintainer for DM355 and DM365 EVM
TI: OMAP3: Remove SZ_xx references
TI DaVinci DM355: Add Config option for 64 bit Support
TI DaVinci DM365: Add Config option for 64 bit Support
TI DaVinci DVEVM: Add Config option for 64 bit Support
TI DaVinci Sonata: Add Config option for 64 bit Support
TI DaVinci: DM355 Leopard: Fix compilation warning
TI DaVinci: Fix DM6467 EVM Compilation Warning
TI DaVinci: Adding Copyright for DM365 EVM
Simon Kagstrom (1):
arm926ejs: 8-byte align stack to avoid LDRD/STRD problems
Steve Sakoman (2):
TI: OMAP3: Refactors the SM911x driver
OMAP3: Update Overo and Beagle environment
Tom Rix (2):
Zoom2 Fix serial gpmc setup
TI OMAP3 SDP3430: Initial Support
kevin.morfitt at fearnside-systems.co.uk (5):
CONFIG_SYS_HZ fix for ARM902T S3C24X0 Boards
Clean-up of cpu_arm920t and cpu_arm920t_s3c24x0 code
Clean-up of s3c24x0 header files
Clean-up of s3c24x0 drivers excluding nand driver
Clean-up of s3c24x0 nand driver
MAINTAINERS | 12 +
MAKEALL | 4 +
Makefile | 12 +
board/davinci/dm355evm/dm355evm.c | 4 +-
board/davinci/dm355leopard/Makefile | 52 ++
board/davinci/dm355leopard/config.mk | 6 +
board/davinci/dm355leopard/dm355leopard.c | 98 +++
board/davinci/dm365evm/dm365evm.c | 5 +-
board/davinci/dm6467evm/Makefile | 52 ++
board/davinci/dm6467evm/config.mk | 2 +
board/davinci/dm6467evm/dm6467evm.c | 31 +
board/eukrea/cpu9260/cpu9260.c | 2 +-
board/logicpd/zoom2/zoom2.c | 5 +-
board/mpl/vcma9/vcma9.c | 13 +-
board/mpl/vcma9/vcma9.h | 20 +-
board/samsung/smdk2400/smdk2400.c | 5 +-
board/samsung/smdk2410/smdk2410.c | 5 +-
board/samsung/smdkc100/Makefile | 55 ++
board/samsung/smdkc100/config.mk | 16 +
board/samsung/smdkc100/lowlevel_init.S | 215 +++++
board/samsung/smdkc100/mem_setup.S | 197 +++++
board/samsung/smdkc100/onenand.c | 83 ++
board/samsung/smdkc100/smdkc100.c | 51 ++
board/sbc2410x/sbc2410x.c | 7 +-
board/ti/sdp3430/Makefile | 49 ++
board/ti/sdp3430/config.mk | 33 +
board/ti/sdp3430/sdp.c | 204 +++++
board/ti/sdp3430/sdp.h | 417 +++++++++
board/trab/cmd_trab.c | 12 +-
board/trab/rs485.c | 12 +-
board/trab/trab.c | 17 +-
board/trab/trab_fkt.c | 26 +-
board/trab/tsc2000.c | 17 +-
board/trab/tsc2000.h | 4 +-
board/trab/vfd.c | 12 +-
common/serial.c | 18 +
cpu/arm920t/s3c24x0/interrupts.c | 4 +-
cpu/arm920t/s3c24x0/speed.c | 42 +-
cpu/arm920t/s3c24x0/timer.c | 110 ++--
cpu/arm920t/s3c24x0/usb.c | 30 +-
cpu/arm920t/s3c24x0/usb_ohci.c | 1323
+++++++++++++++--------------
cpu/arm920t/s3c24x0/usb_ohci.h | 209 +++---
cpu/arm920t/start.S | 63 +-
cpu/arm926ejs/start.S | 1 +
cpu/arm_cortexa8/omap3/mem.c | 21 +-
cpu/arm_cortexa8/omap3/sys_info.c | 2 +-
cpu/arm_cortexa8/s5pc1xx/Makefile | 53 ++
cpu/arm_cortexa8/s5pc1xx/cache.c | 43 +
cpu/arm_cortexa8/s5pc1xx/clock.c | 308 +++++++
cpu/arm_cortexa8/s5pc1xx/cpu_info.c | 57 ++
cpu/arm_cortexa8/s5pc1xx/reset.S | 47 +
cpu/arm_cortexa8/s5pc1xx/timer.c | 195 +++++
doc/README.s5pc1xx | 56 ++
drivers/i2c/s3c24x0_i2c.c | 273 +++---
drivers/mtd/nand/s3c2410_nand.c | 62 +-
drivers/mtd/onenand/Makefile | 1 +
drivers/mtd/onenand/samsung.c | 636 ++++++++++++++
drivers/net/smc911x.c | 12 +-
drivers/rtc/s3c24x0_rtc.c | 130 ++--
drivers/serial/Makefile | 1 +
drivers/serial/serial_s3c24x0.c | 160 ++--
drivers/serial/serial_s5pc1xx.c | 195 +++++
include/asm-arm/arch-davinci/hardware.h | 2 +
include/asm-arm/arch-omap3/cpu.h | 1 +
include/asm-arm/arch-omap3/mem.h | 8 +-
include/asm-arm/arch-omap3/sys_proto.h | 2 +
include/asm-arm/arch-s5pc1xx/clk.h | 32 +
include/asm-arm/arch-s5pc1xx/clock.h | 94 ++
include/asm-arm/arch-s5pc1xx/cpu.h | 72 ++
include/asm-arm/arch-s5pc1xx/gpio.h | 129 +++
include/asm-arm/arch-s5pc1xx/power.h | 42 +
include/asm-arm/arch-s5pc1xx/pwm.h | 59 ++
include/asm-arm/arch-s5pc1xx/uart.h | 47 +
include/configs/cpu9260.h | 1 +
include/configs/cpuat91.h | 4 +-
include/configs/davinci_dm355evm.h | 1 +
include/configs/davinci_dm355leopard.h | 162 ++++
include/configs/davinci_dm365evm.h | 2 +
include/configs/davinci_dm6467evm.h | 132 +++
include/configs/davinci_dvevm.h | 1 +
include/configs/davinci_sonata.h | 1 +
include/configs/devkit8000.h | 15 +-
include/configs/omap3_beagle.h | 42 +-
include/configs/omap3_evm.h | 15 +-
include/configs/omap3_overo.h | 42 +-
include/configs/omap3_pandora.h | 15 +-
include/configs/omap3_sdp3430.h | 369 ++++++++
include/configs/omap3_zoom1.h | 15 +-
include/configs/omap3_zoom2.h | 15 +-
include/configs/sbc2410x.h | 4 +-
include/configs/smdk2400.h | 4 +-
include/configs/smdk2410.h | 4 +-
include/configs/smdkc100.h | 242 ++++++
include/configs/trab.h | 12 +-
include/linux/mtd/onenand.h | 1 +
include/linux/mtd/onenand_regs.h | 4 +
include/linux/mtd/samsung_onenand.h | 131 +++
include/s3c2400.h | 494 +----------
include/s3c2410.h | 159 +---
include/s3c24x0.h | 605 ++------------
include/serial.h | 7 +
101 files changed, 6329 insertions(+), 2465 deletions(-)
create mode 100644 board/davinci/dm355leopard/Makefile
create mode 100644 board/davinci/dm355leopard/config.mk
create mode 100644 board/davinci/dm355leopard/dm355leopard.c
create mode 100644 board/davinci/dm6467evm/Makefile
create mode 100644 board/davinci/dm6467evm/config.mk
create mode 100644 board/davinci/dm6467evm/dm6467evm.c
create mode 100644 board/samsung/smdkc100/Makefile
create mode 100644 board/samsung/smdkc100/config.mk
create mode 100644 board/samsung/smdkc100/lowlevel_init.S
create mode 100644 board/samsung/smdkc100/mem_setup.S
create mode 100644 board/samsung/smdkc100/onenand.c
create mode 100644 board/samsung/smdkc100/smdkc100.c
create mode 100644 board/ti/sdp3430/Makefile
create mode 100644 board/ti/sdp3430/config.mk
create mode 100644 board/ti/sdp3430/sdp.c
create mode 100644 board/ti/sdp3430/sdp.h
create mode 100644 cpu/arm_cortexa8/s5pc1xx/Makefile
create mode 100644 cpu/arm_cortexa8/s5pc1xx/cache.c
create mode 100644 cpu/arm_cortexa8/s5pc1xx/clock.c
create mode 100644 cpu/arm_cortexa8/s5pc1xx/cpu_info.c
create mode 100644 cpu/arm_cortexa8/s5pc1xx/reset.S
create mode 100644 cpu/arm_cortexa8/s5pc1xx/timer.c
create mode 100644 doc/README.s5pc1xx
create mode 100644 drivers/mtd/onenand/samsung.c
create mode 100644 drivers/serial/serial_s5pc1xx.c
create mode 100644 include/asm-arm/arch-s5pc1xx/clk.h
create mode 100644 include/asm-arm/arch-s5pc1xx/clock.h
create mode 100644 include/asm-arm/arch-s5pc1xx/cpu.h
create mode 100644 include/asm-arm/arch-s5pc1xx/gpio.h
create mode 100644 include/asm-arm/arch-s5pc1xx/power.h
create mode 100644 include/asm-arm/arch-s5pc1xx/pwm.h
create mode 100644 include/asm-arm/arch-s5pc1xx/uart.h
create mode 100644 include/configs/davinci_dm355leopard.h
create mode 100644 include/configs/davinci_dm6467evm.h
create mode 100644 include/configs/omap3_sdp3430.h
create mode 100644 include/configs/smdkc100.h
create mode 100644 include/linux/mtd/samsung_onenand.h
next reply other threads:[~2009-10-18 2:42 UTC|newest]
Thread overview: 162+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-10-18 2:42 Tom [this message]
2009-10-18 7:02 ` [U-Boot] ARM pull request Dirk Behme
2009-10-18 7:12 ` Dirk Behme
2009-10-18 12:51 ` Minkyu Kang
2009-10-18 15:20 ` Tom
2009-10-18 19:56 ` Wolfgang Denk
2009-10-18 20:21 ` Tom
2009-10-18 20:28 ` Wolfgang Denk
2009-10-19 0:29 ` Paulraj, Sandeep
2009-10-19 8:29 ` Wolfgang Denk
-- strict thread matches above, loose matches on Subject: below --
2011-06-23 6:34 Albert ARIBAUD
2011-06-23 13:40 ` Wolfgang Denk
2011-06-23 17:36 ` Albert ARIBAUD
2010-05-30 13:52 Tom Rix
2010-05-30 19:43 ` Wolfgang Denk
2010-05-31 4:43 ` Hiremath, Vaibhav
2010-05-31 19:05 ` Marek Vasut
2010-06-07 12:58 ` Tom Rix
2010-05-01 21:50 Tom Rix
2010-05-04 20:56 ` Wolfgang Denk
2010-04-05 12:55 Tom
2010-04-07 22:12 ` Wolfgang Denk
2010-03-22 21:46 Tom
2010-03-22 22:09 ` Wolfgang Denk
2010-03-08 13:55 [U-Boot] Arm " Tom
2010-03-09 14:29 ` Wolfgang Denk
2010-03-07 22:01 [U-Boot] ARM " Tom
2010-03-07 20:37 Tom
2010-02-12 20:06 Tom
2010-02-17 21:29 ` Wolfgang Denk
2010-01-23 15:18 Tom
2010-01-23 16:47 ` Wolfgang Denk
2010-01-23 16:57 ` Tom
2010-01-23 20:51 ` Wolfgang Denk
2010-01-28 5:58 ` Prafulla Wadaskar
2010-01-28 9:41 ` Wolfgang Denk
2010-01-06 18:51 Tom
2010-01-12 22:47 ` Wolfgang Denk
2009-11-30 1:05 Tom
2009-12-01 11:13 ` Wolfgang Denk
2009-12-01 14:34 ` Tom
2009-11-24 15:19 Tom
2009-11-24 22:23 ` Wolfgang Denk
2009-11-04 19:41 [U-Boot] status several (bugfix) patches Remy Bohmer
2009-11-04 19:47 ` Tom
2009-11-04 19:56 ` Remy Bohmer
2009-11-07 23:21 ` [U-Boot] ARM pull request Tom
2009-11-09 21:46 ` Wolfgang Denk
2009-11-04 0:00 [U-Boot] ARM LED weak symbols Tom Rix
2009-11-04 0:00 ` [U-Boot] [PATCH 1/2] ARM Conditionally compile board LED functions Tom Rix
2009-11-04 0:00 ` [U-Boot] [PATCH 2/2] ARM: fix build error with gcc-4.4.2 about inline function declared weak Tom Rix
2009-11-05 20:19 ` Wolfgang Denk
2009-11-05 20:39 ` Tom
2009-11-05 22:38 ` Wolfgang Denk
2009-11-10 19:34 ` Tom
2009-11-10 22:45 ` Wolfgang Denk
2009-11-12 0:43 ` [U-Boot] ARM pull request Tom
2009-11-15 21:39 ` Wolfgang Denk
2009-10-13 2:02 Tom Rix
2009-10-13 2:01 Tom
2009-09-05 1:36 [U-Boot] ARM Pull Request Jean-Christophe PLAGNIOL-VILLARD
2009-09-05 5:37 ` Dirk Behme
2009-09-05 15:37 ` Jean-Christophe PLAGNIOL-VILLARD
2009-09-06 7:12 ` Dirk Behme
2009-09-06 13:16 ` Jean-Christophe PLAGNIOL-VILLARD
2009-09-06 17:59 ` Dirk Behme
2009-09-06 18:37 ` Peter Tyser
2009-09-06 18:40 ` Dirk Behme
2009-09-06 19:09 ` Peter Tyser
2009-09-06 20:21 ` Tom
2009-09-06 21:18 ` Wolfgang Denk
2009-09-06 22:30 ` Tom
2009-09-07 16:01 ` Dirk Behme
2009-09-06 21:16 ` Wolfgang Denk
2009-09-06 20:31 ` Jean-Christophe PLAGNIOL-VILLARD
2009-09-06 9:18 ` Heiko Schocher
2009-09-06 10:05 ` Heiko Schocher
2009-09-07 21:20 ` Wolfgang Denk
2009-09-07 21:18 ` Wolfgang Denk
2009-08-17 23:49 Jean-Christophe PLAGNIOL-VILLARD
2009-08-18 11:54 ` Wolfgang Denk
2009-08-08 10:24 Jean-Christophe PLAGNIOL-VILLARD
2009-08-09 21:49 ` Wolfgang Denk
2009-08-03 7:29 Jean-Christophe PLAGNIOL-VILLARD
2009-08-03 8:20 ` Dirk Behme
2009-08-03 9:44 ` Wolfgang Denk
2009-07-22 22:30 Jean-Christophe PLAGNIOL-VILLARD
2009-07-22 23:04 ` Wolfgang Denk
2009-07-22 23:43 ` Jean-Christophe PLAGNIOL-VILLARD
2009-07-23 17:18 ` Wolfgang Denk
2009-07-24 4:34 ` Prafulla Wadaskar
2009-07-29 17:45 ` Prafulla Wadaskar
2009-07-29 22:31 ` Wolfgang Denk
2009-08-07 6:48 ` Prafulla Wadaskar
2009-07-23 5:39 ` Prafulla Wadaskar
2009-07-23 9:38 ` Wolfgang Denk
2009-07-23 16:21 ` Dirk Behme
2009-07-23 19:15 ` Jean-Christophe PLAGNIOL-VILLARD
2009-07-23 20:14 ` Wolfgang Denk
2009-07-23 20:22 ` Jean-Christophe PLAGNIOL-VILLARD
2009-07-23 20:42 ` Wolfgang Denk
2009-07-27 19:56 ` Jean-Christophe PLAGNIOL-VILLARD
2009-07-27 20:14 ` Wolfgang Denk
2009-07-27 8:16 ` Heiko Schocher
2009-07-27 20:07 ` Jean-Christophe PLAGNIOL-VILLARD
2009-07-28 7:31 ` Heiko Schocher
2009-07-12 21:40 Jean-Christophe PLAGNIOL-VILLARD
2009-07-13 21:45 ` Wolfgang Denk
2009-07-06 19:55 Jean-Christophe PLAGNIOL-VILLARD
2009-07-07 20:20 ` Wolfgang Denk
2009-07-07 21:31 ` Jean-Christophe PLAGNIOL-VILLARD
2009-07-07 21:42 ` Wolfgang Denk
2009-07-07 21:48 ` Jean-Christophe PLAGNIOL-VILLARD
2009-06-09 23:31 Jean-Christophe PLAGNIOL-VILLARD
2009-06-10 21:54 ` Wolfgang Denk
2009-06-11 5:22 ` Prafulla Wadaskar
2009-06-11 8:00 ` Wolfgang Denk
2009-06-11 9:18 ` Prafulla Wadaskar
2009-06-11 10:02 ` Magnus Lilja
2009-06-11 15:02 ` Wolfgang Denk
2009-05-15 9:03 [U-Boot] ARM pull Request Jean-Christophe PLAGNIOL-VILLARD
2009-05-15 19:09 ` Wolfgang Denk
2009-04-30 7:10 [U-Boot] ARM Pull Request Jean-Christophe PLAGNIOL-VILLARD
2009-04-30 21:05 ` Wolfgang Denk
2009-04-05 10:56 Jean-Christophe PLAGNIOL-VILLARD
2009-04-05 12:14 ` Dirk Behme
2009-04-07 19:51 ` Wolfgang Denk
2009-04-05 21:06 ` Wolfgang Denk
2009-03-30 16:42 Jean-Christophe PLAGNIOL-VILLARD
2009-03-30 16:47 ` Jean-Christophe PLAGNIOL-VILLARD
2009-04-01 22:25 ` Wolfgang Denk
2009-03-29 21:09 Jean-Christophe PLAGNIOL-VILLARD
2009-03-29 21:31 ` Wolfgang Denk
2009-03-29 21:16 ` Jean-Christophe PLAGNIOL-VILLARD
2009-03-30 13:33 ` Dirk Behme
2009-03-30 15:08 ` Jean-Christophe PLAGNIOL-VILLARD
2009-03-30 19:33 ` Dirk Behme
2009-03-30 19:49 ` Wolfgang Denk
2009-03-30 20:28 ` Jean-Christophe PLAGNIOL-VILLARD
2009-03-31 15:44 ` Dirk Behme
2009-03-25 21:26 Jean-Christophe PLAGNIOL-VILLARD
2009-03-26 21:22 ` Wolfgang Denk
2009-03-26 23:24 ` Dirk Behme
2009-03-13 22:20 Jean-Christophe PLAGNIOL-VILLARD
2009-03-15 21:10 ` Wolfgang Denk
2009-02-22 17:33 Jean-Christophe PLAGNIOL-VILLARD
2009-02-22 17:49 ` Dirk Behme
2009-02-22 23:30 ` Wolfgang Denk
2009-02-22 21:59 ` Wolfgang Denk
2009-02-18 3:26 Jean-Christophe PLAGNIOL-VILLARD
2009-02-18 23:49 ` Wolfgang Denk
2009-02-01 13:32 Jean-Christophe PLAGNIOL-VILLARD
2009-02-01 20:39 ` Wolfgang Denk
2008-11-21 0:46 [U-Boot] ARM pull request Jean-Christophe PLAGNIOL-VILLARD
2008-11-23 12:59 ` Dirk Behme
2008-11-25 11:05 ` Wolfgang Denk
2008-11-02 16:12 [U-Boot] ARM Pull request Jean-Christophe PLAGNIOL-VILLARD
2008-11-08 23:33 ` Wolfgang Denk
2008-11-09 20:22 ` Alessandro Rubini
2008-10-08 17:09 [U-Boot] ARM Pull Request Jean-Christophe PLAGNIOL-VILLARD
2008-10-12 21:57 ` Wolfgang Denk
2008-10-06 12:29 [U-Boot] Arm Pull request Jean-Christophe PLAGNIOL-VILLARD
2008-09-15 19:16 [U-Boot] ARM Pull Request Jean-Christophe PLAGNIOL-VILLARD
2008-09-15 22:11 ` Wolfgang Denk
2008-09-16 8:14 ` Jean-Christophe PLAGNIOL-VILLARD
2008-09-16 10:24 ` Wolfgang Denk
2008-09-11 23:29 Jean-Christophe PLAGNIOL-VILLARD
2008-09-12 13:22 ` Wolfgang Denk
2008-08-25 21:04 [U-Boot] ARM Pull request Jean-Christophe PLAGNIOL-VILLARD
2008-08-25 21:46 ` Wolfgang Denk
2008-08-26 5:59 ` Jens Gehrlein
2008-08-26 21:19 ` Wolfgang Denk
2008-08-11 23:41 [U-Boot] arm pull request Jean-Christophe PLAGNIOL-VILLARD
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4ADA8080.3060800@windriver.com \
--to=tom.rix@windriver.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.