[U-Boot] Please pull u-boot-samsung/master

Dear Tom,
The following changes since commit 617da90c1dcf65428ddfb63fef897439950bc915: Tom Rix (1): Merge branch 't-next-marvell' into t-next-at91
are available in the git repository at:
git://git.denx.de/u-boot-samsung master
Minkyu Kang (5): s5pc1xx: support Samsung s5pc1xx SoC s5pc1xx: support onenand driver s5pc1xx: support serial driver s5pc1xx: add support SMDKC100 board Merge branch 'master' of git://git.denx.de/u-boot-arm
kevin.morfitt@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 | 4 + MAKEALL | 1 + Makefile | 3 + 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/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/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/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-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/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 + 63 files changed, 4570 insertions(+), 2363 deletions(-) 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 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/smdkc100.h create mode 100644 include/linux/mtd/samsung_onenand.h

Minkyu Kang wrote:
Dear Tom,
The following changes since commit 617da90c1dcf65428ddfb63fef897439950bc915: Tom Rix (1): Merge branch 't-next-marvell' into t-next-at91
are available in the git repository at:
git://git.denx.de/u-boot-samsung master
I will merge this in soon. Likely this weekend.
Tom

Minkyu Kang wrote:
Dear Tom,
The following changes since commit 617da90c1dcf65428ddfb63fef897439950bc915: Tom Rix (1): Merge branch 't-next-marvell' into t-next-at91
are available in the git repository at:
git://git.denx.de/u-boot-samsung master
Minkyu Kang (5): s5pc1xx: support Samsung s5pc1xx SoC s5pc1xx: support onenand driver s5pc1xx: support serial driver s5pc1xx: add support SMDKC100 board Merge branch 'master' of git://git.denx.de/u-boot-arm
This is a new board. I think this board was submitted after the merge window And it has a lot of compiler warnings. Can you clean these up ? I think these should wait to be merged.
kevin.morfitt@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
These look like a code that was run through indent. cleaning up without any obvious new features. These would be ok to merge.
Does this sound ok? I can just cherry pick the cleanups.
Tom

Tom Rix a écrit :
Minkyu Kang wrote:
Dear Tom,
The following changes since commit 617da90c1dcf65428ddfb63fef897439950bc915: Tom Rix (1): Merge branch 't-next-marvell' into t-next-at91
are available in the git repository at:
git://git.denx.de/u-boot-samsung master
Minkyu Kang (5): s5pc1xx: support Samsung s5pc1xx SoC s5pc1xx: support onenand driver s5pc1xx: support serial driver s5pc1xx: add support SMDKC100 board Merge branch 'master' of git://git.denx.de/u-boot-arm
This is a new board. I think this board was submitted after the merge window And it has a lot of compiler warnings. Can you clean these up ? I think these should wait to be merged.
kevin.morfitt@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
These look like a code that was run through indent. cleaning up without any obvious new features. These would be ok to merge.
Does this sound ok? I can just cherry pick the cleanups.
Tom
Tom, I think you should also CC Kevin, done now!
cheers,

Hi Tom,
On Wednesday 14 October 2009 05:31:04 Tom Rix wrote:
git://git.denx.de/u-boot-samsung master
Minkyu Kang (5): s5pc1xx: support Samsung s5pc1xx SoC s5pc1xx: support onenand driver s5pc1xx: support serial driver s5pc1xx: add support SMDKC100 board Merge branch 'master' of git://git.denx.de/u-boot-arm
This is a new board. I think this board was submitted after the merge window And it has a lot of compiler warnings. Can you clean these up ? I think these should wait to be merged.
The general rule in U-Boot is, that patches should be merged even after the merge window is closed, when the initial version was posted before the merge window closed. And those patches were posted on 2009-09-04 in the initial version. So I vote for merging them now.
Cheers, Stefan
-- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-0 Fax: (+49)-8142-66989-80 Email: office@denx.de

Stefan Roese wrote:
Hi Tom,
On Wednesday 14 October 2009 05:31:04 Tom Rix wrote:
git://git.denx.de/u-boot-samsung master
Minkyu Kang (5): s5pc1xx: support Samsung s5pc1xx SoC s5pc1xx: support onenand driver s5pc1xx: support serial driver s5pc1xx: add support SMDKC100 board Merge branch 'master' of git://git.denx.de/u-boot-arm
This is a new board. I think this board was submitted after the merge window And it has a lot of compiler warnings. Can you clean these up ? I think these should wait to be merged.
The general rule in U-Boot is, that patches should be merged even after the merge window is closed, when the initial version was posted before the merge window closed. And those patches were posted on 2009-09-04 in the initial version. So I vote for merging them now.
Ok. The version I saw was on Oct 1. I will go ahead and merge them in. Tom
Cheers, Stefan
-- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-0 Fax: (+49)-8142-66989-80 Email: office@denx.de

Stefan Roese wrote:
Hi Tom,
On Wednesday 14 October 2009 05:31:04 Tom Rix wrote:
git://git.denx.de/u-boot-samsung master
Minkyu Kang (5): s5pc1xx: support Samsung s5pc1xx SoC s5pc1xx: support onenand driver s5pc1xx: support serial driver s5pc1xx: add support SMDKC100 board Merge branch 'master' of git://git.denx.de/u-boot-arm
This is a new board. I think this board was submitted after the merge window And it has a lot of compiler warnings. Can you clean these up ? I think these should wait to be merged.
The general rule in U-Boot is, that patches should be merged even after the merge window is closed, when the initial version was posted before the merge window closed. And those patches were posted on 2009-09-04 in the initial version. So I vote for merging them now.
I have pushed the entire pull request to arm/master-sync. The branch I am using to stage the pull request to the mainline.
There are a number of compiler warnings for the sp5c1xx board that should be fixed.
Tom
Cheers, Stefan
-- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-0 Fax: (+49)-8142-66989-80 Email: office@denx.de

Dear Tom
2009/10/14 Tom Rix tom@bumblecow.com:
Stefan Roese wrote:
Hi Tom,
On Wednesday 14 October 2009 05:31:04 Tom Rix wrote:
git://git.denx.de/u-boot-samsung master
Minkyu Kang (5): s5pc1xx: support Samsung s5pc1xx SoC s5pc1xx: support onenand driver s5pc1xx: support serial driver s5pc1xx: add support SMDKC100 board Merge branch 'master' of git://git.denx.de/u-boot-arm
This is a new board. I think this board was submitted after the merge window And it has a lot of compiler warnings. Can you clean these up ? I think these should wait to be merged.
The general rule in U-Boot is, that patches should be merged even after the merge window is closed, when the initial version was posted before the merge window closed. And those patches were posted on 2009-09-04 in the initial version. So I vote for merging them now.
I have pushed the entire pull request to arm/master-sync. The branch I am using to stage the pull request to the mainline.
There are a number of compiler warnings for the sp5c1xx board that should be fixed.
Tom
Cheers, Stefan
-- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-0 Fax: (+49)-8142-66989-80 Email: office@denx.de
U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot
I'll fix compiler warnings asap Thanks
Minkyu Kang
participants (5)
-
Abdoulaye Walsimou Gaye
-
Minkyu Kang
-
Minkyu Kang
-
Stefan Roese
-
Tom Rix