public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] Please pull u-boot-samsung/master
@ 2010-04-13 10:02 Minkyu Kang
  2010-04-17 22:07 ` Tom Rix
  0 siblings, 1 reply; 63+ messages in thread
From: Minkyu Kang @ 2010-04-13 10:02 UTC (permalink / raw)
  To: u-boot

Dear Tom,

The following changes since commit 45e565337a90bbca0c1bb712b5e008b7c0b18bd5:
  Minkyu Kang (1):
        Merge branch 'master' of git://git.denx.de/u-boot-arm

are available in the git repository at:

  git://git.denx.de/u-boot-samsung master

Minkyu Kang (2):
      SAMSUNG: make s5p common gpio functions
      SAMSUNG: serial: modify name from s5pc1xx to s5p

 common/serial.c                                    |   16 +-
 cpu/arm_cortexa8/s5pc1xx/Makefile                  |    1 -
 drivers/gpio/Makefile                              |    1 +
 .../s5pc1xx/gpio.c => drivers/gpio/s5p_gpio.c      |   16 +-
 drivers/serial/Makefile                            |    2 +-
 drivers/serial/{serial_s5pc1xx.c => serial_s5p.c}  |   30 ++--
 include/asm-arm/arch-s5pc1xx/gpio.h                |  192 ++++++++++----------
 include/asm-arm/arch-s5pc1xx/uart.h                |    2 +-
 include/serial.h                                   |    8 +-
 9 files changed, 134 insertions(+), 134 deletions(-)
 rename cpu/arm_cortexa8/s5pc1xx/gpio.c => drivers/gpio/s5p_gpio.c (82%)
 rename drivers/serial/{serial_s5pc1xx.c => serial_s5p.c} (83%)

^ permalink raw reply	[flat|nested] 63+ messages in thread
* [U-Boot] please pull u-boot-samsung/master
@ 2012-06-18  8:50 Minkyu Kang
  2012-06-23  7:18 ` Albert ARIBAUD
  0 siblings, 1 reply; 63+ messages in thread
From: Minkyu Kang @ 2012-06-18  8:50 UTC (permalink / raw)
  To: u-boot

Dear Albert,

The following changes since commit 255c36587acbc269fd299b0bc258ce9c030de69d:

  cm-t35: print PCB revision information (2012-06-10 10:36:08 +0200)

are available in the git repository at:

  git://git.denx.de/u-boot-samsung master

for you to fetch changes up to 11388a3b06a23323f9d964573d08e1bdd70322bd:

  EXYNOS: SMDK5250: Enable the pinmux setup (2012-06-15 10:50:36 +0900)

----------------------------------------------------------------
Donghwa Lee (1):
      TRATS: initialize panel_info data structure in board file

Minkyu Kang (1):
      Exynos: fix cpuinfo and cpu detecting

Rajeshwari Shinde (2):
      EXYNOS5: PINMUX: Added default pinumx settings
      EXYNOS: SMDK5250: Enable the pinmux setup

?ukasz Majewski (1):
      misc:pmic:trats: Correct procedure of enabling/disabling USB regulators

 arch/arm/cpu/armv7/exynos/Makefile        |    2 +-
 arch/arm/cpu/armv7/exynos/pinmux.c        |  220 +++++++++++++++++++++++++++++
 arch/arm/cpu/armv7/s5p-common/cpu_info.c  |    5 +-
 arch/arm/include/asm/arch-exynos/cpu.h    |   42 ++++--
 arch/arm/include/asm/arch-exynos/periph.h |   47 ++++++
 arch/arm/include/asm/arch-exynos/pinmux.h |   58 ++++++++
 arch/arm/include/asm/arch-s5pc1xx/cpu.h   |    6 +
 board/samsung/smdk5250/smdk5250.c         |  176 +++++------------------
 board/samsung/trats/trats.c               |   86 ++++++-----
 drivers/video/exynos_fb.c                 |    3 -
 10 files changed, 448 insertions(+), 197 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/exynos/pinmux.c
 create mode 100644 arch/arm/include/asm/arch-exynos/periph.h
 create mode 100644 arch/arm/include/asm/arch-exynos/pinmux.h

^ permalink raw reply	[flat|nested] 63+ messages in thread
* [U-Boot] please pull u-boot-samsung/master
@ 2012-04-25  7:51 Minkyu Kang
  2012-04-26 21:26 ` Albert ARIBAUD
  0 siblings, 1 reply; 63+ messages in thread
From: Minkyu Kang @ 2012-04-25  7:51 UTC (permalink / raw)
  To: u-boot

Dear Albert,

The following changes since commit 6e7c76a15753f3a5e1b94df372392a08e4b11b02:

  arm: ea20: Change macro from BOARD_LATE_INIT to CONFIG_BOARD_LATE_INIT (2012-04-23 09:15:23 -0700)

are available in the git repository at:
  git://git.denx.de/u-boot-samsung master

Chander Kashyap (1):
      EXYNOS: Rename exynos5_tzpc structure to exynos_tzpc

Donghwa Lee (8):
      EXYNOS: definitions of system resgister and power management registers.
      EXYNOS: add LCD and MIPI DSI clock interface.
      LCD: add data structure for EXYNOS display driver
      EXYNOS: support EXYNOS framebuffer and FIMD display drivers.
      EXYNOS: support EXYNOS MIPI DSI interface driver.
      LCD: support S6E8AX0 amoled driver based on EXYNOS MIPI DSI
      EXYNOS: support TRATS board display function
      EXYNOS: Change bits per pixel value proper for u-boot.

Jaehoon Chung (1):
      TRATS: modify the trats's configuration

Minkyu Kang (1):
      SMDK5250: fix compiler warning

?ukasz Majewski (3):
      ARM: Exynos4: ADC: Universal_C210: Enable LDO4 power line for ADC measurement
      misc:pmic:max8997 MAX8997 support for PMIC driver
      misc:pmic:samsung Convert TRATS target to use MAX8997 instead of MAX8998

 arch/arm/cpu/armv7/exynos/Makefile           |    2 +-
 arch/arm/cpu/armv7/exynos/clock.c            |  184 ++++++++
 arch/arm/cpu/armv7/exynos/power.c            |   54 +++
 arch/arm/cpu/armv7/exynos/system.c           |   48 ++
 arch/arm/include/asm/arch-exynos/clk.h       |    3 +
 arch/arm/include/asm/arch-exynos/cpu.h       |    5 +
 arch/arm/include/asm/arch-exynos/dsim.h      |  181 +++++++
 arch/arm/include/asm/arch-exynos/fb.h        |  446 ++++++++++++++++++
 arch/arm/include/asm/arch-exynos/mipi_dsim.h |  380 +++++++++++++++
 arch/arm/include/asm/arch-exynos/power.h     |    6 +
 arch/arm/include/asm/arch-exynos/system.h    |   53 ++
 arch/arm/include/asm/arch-exynos/tzpc.h      |    2 +-
 board/samsung/smdk5250/tzpc_init.c           |    4 +-
 board/samsung/trats/trats.c                  |  173 ++++++-
 board/samsung/universal_c210/universal.c     |   25 +-
 drivers/misc/Makefile                        |    1 +
 drivers/misc/pmic_max8997.c                  |   43 ++
 drivers/video/Makefile                       |    4 +
 drivers/video/exynos_fb.c                    |  128 +++++
 drivers/video/exynos_fb.h                    |   61 +++
 drivers/video/exynos_fimd.c                  |  354 ++++++++++++++
 drivers/video/exynos_mipi_dsi.c              |  253 ++++++++++
 drivers/video/exynos_mipi_dsi_common.c       |  637 +++++++++++++++++++++++++
 drivers/video/exynos_mipi_dsi_common.h       |   48 ++
 drivers/video/exynos_mipi_dsi_lowlevel.c     |  652 ++++++++++++++++++++++++++
 drivers/video/exynos_mipi_dsi_lowlevel.h     |  111 +++++
 drivers/video/s6e8ax0.c                      |  256 ++++++++++
 include/configs/trats.h                      |   15 +-
 include/lcd.h                                |   64 +++
 include/max8997_pmic.h                       |  190 ++++++++
 include/max8998_pmic.h                       |    1 +
 31 files changed, 4356 insertions(+), 28 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/exynos/power.c
 create mode 100644 arch/arm/cpu/armv7/exynos/system.c
 create mode 100644 arch/arm/include/asm/arch-exynos/dsim.h
 create mode 100644 arch/arm/include/asm/arch-exynos/fb.h
 create mode 100644 arch/arm/include/asm/arch-exynos/mipi_dsim.h
 create mode 100644 arch/arm/include/asm/arch-exynos/system.h
 create mode 100644 drivers/misc/pmic_max8997.c
 create mode 100644 drivers/video/exynos_fb.c
 create mode 100644 drivers/video/exynos_fb.h
 create mode 100644 drivers/video/exynos_fimd.c
 create mode 100644 drivers/video/exynos_mipi_dsi.c
 create mode 100644 drivers/video/exynos_mipi_dsi_common.c
 create mode 100644 drivers/video/exynos_mipi_dsi_common.h
 create mode 100644 drivers/video/exynos_mipi_dsi_lowlevel.c
 create mode 100644 drivers/video/exynos_mipi_dsi_lowlevel.h
 create mode 100644 drivers/video/s6e8ax0.c
 create mode 100644 include/max8997_pmic.h

^ permalink raw reply	[flat|nested] 63+ messages in thread
* [U-Boot] please pull u-boot-samsung/master
@ 2012-03-08 10:14 Minkyu Kang
  2012-03-27  9:44 ` Minkyu Kang
  0 siblings, 1 reply; 63+ messages in thread
From: Minkyu Kang @ 2012-03-08 10:14 UTC (permalink / raw)
  To: u-boot

Dear Albert,

The following changes since commit 32ec258f829808dd7cf74fd83ba999fdaaeab715:

  IXP: Fix GPIO_INT_ACT_LOW_SET() (2012-03-08 08:11:45 +0100)

are available in the git repository at:
  git://git.denx.de/u-boot-samsung master

Chander Kashyap (1):
      EXYNOS: Add structure for Exynos4 DMC

David M?ller (ELSOFT AG) (1):
      ARM: fix s3c2410 timer code

Doug Anderson (1):
      EXYNOS: SMDK5250: Support all 4 UARTs

 arch/arm/cpu/arm920t/s3c24x0/timer.c   |   64 ++++++-------------
 arch/arm/include/asm/arch-exynos/dmc.h |  109 ++++++++++++++++++++++++++++++++
 board/samsung/smdk5250/smdk5250.c      |   44 ++++++++++++-
 3 files changed, 171 insertions(+), 46 deletions(-)

^ permalink raw reply	[flat|nested] 63+ messages in thread
* [U-Boot] please pull u-boot-samsung/master
@ 2012-02-10  1:01 Minkyu Kang
  2012-02-10 19:59 ` Albert ARIBAUD
  0 siblings, 1 reply; 63+ messages in thread
From: Minkyu Kang @ 2012-02-10  1:01 UTC (permalink / raw)
  To: u-boot

Dear Albert,

The following changes since commit ca849aa4b86b282f837c58a0b129460ebfad2239:

  ARM: activate DISPLAY_CPUINFO for VCMA9 + SMDK2410 board (2012-02-06 22:47:25 +0100)

are available in the git repository at:
  git://git.denx.de/u-boot-samsung master

Chander Kashyap (8):
      Exynos: PWM: Add TCMPB3 field in pwm structure
      Exynos: Fix ARM Clock frequency calculation
      Origen: Select SCLKMPLL as FIMD0 parent clock
      Exynos: Clock.c: Use CONFIG_SYS_CLK_FREQ macro
      ARM: EXYNOS: Add support for Exynos5 based SoCs
      EXYNOS: Add SMDK5250 board support
      EXYNOS: SMDK5250: Add MMC SPL support
      SMDK5250: Add ethernet support

HeungJun, Kim (3):
      ARMV7: Exynos4: Add watchdog.h for Exynos4
      ARMV7: Exynos4: Add supoort power for Exynos4
      ARMV7: Exynos4: Add support for TRATS board

Minkyu Kang (4):
      ORIGEN: remove duplicated MACH_TYPE define
      S5P: support generic watchdog timer
      TRATS: use the generic watchdog timer
      TRATS: set gpio of UART correctly

 MAINTAINERS                                  |    5 +
 Makefile                                     |    1 +
 arch/arm/cpu/armv7/exynos/clock.c            |  229 +++++++++-
 arch/arm/cpu/armv7/s5p-common/Makefile       |    1 +
 arch/arm/cpu/armv7/s5p-common/wdt.c          |   59 +++
 arch/arm/include/asm/arch-exynos/clock.h     |  326 +++++++++++++
 arch/arm/include/asm/arch-exynos/cpu.h       |   36 ++-
 arch/arm/include/asm/arch-exynos/dmc.h       |  146 ++++++
 arch/arm/include/asm/arch-exynos/gpio.h      |   99 ++++-
 arch/arm/include/asm/arch-exynos/power.h     |  230 ++++++++++
 arch/arm/include/asm/arch-exynos/pwm.h       |    2 +-
 arch/arm/include/asm/arch-exynos/tzpc.h      |   52 +++
 arch/arm/include/asm/arch-exynos/watchdog.h  |   57 +++
 arch/arm/include/asm/arch-s5pc1xx/cpu.h      |    1 +
 arch/arm/include/asm/arch-s5pc1xx/watchdog.h |   58 +++
 board/samsung/origen/lowlevel_init.S         |    5 +
 board/samsung/origen/origen_setup.h          |   12 +
 board/samsung/smdk5250/Makefile              |   58 +++
 board/samsung/smdk5250/clock_init.c          |  202 ++++++++
 board/samsung/smdk5250/dmc_init.c            |  462 +++++++++++++++++++
 board/samsung/smdk5250/lowlevel_init.S       |   96 ++++
 board/samsung/smdk5250/mmc_boot.c            |   58 +++
 board/samsung/smdk5250/setup.h               |  451 ++++++++++++++++++
 board/samsung/smdk5250/smdk5250.c            |  240 ++++++++++
 board/samsung/smdk5250/tzpc_init.c           |   48 ++
 board/samsung/trats/Makefile                 |   43 ++
 board/samsung/trats/setup.h                  |  637 ++++++++++++++++++++++++++
 board/samsung/trats/trats.c                  |  366 +++++++++++++++
 boards.cfg                                   |    2 +
 include/configs/origen.h                     |    2 -
 include/configs/s5pc210_universal.h          |    1 +
 include/configs/smdk5250.h                   |  204 ++++++++
 include/configs/trats.h                      |  217 +++++++++
 tools/Makefile                               |    6 +
 tools/mkexynosspl.c                          |  122 +++++
 35 files changed, 4508 insertions(+), 26 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/s5p-common/wdt.c
 create mode 100644 arch/arm/include/asm/arch-exynos/dmc.h
 create mode 100644 arch/arm/include/asm/arch-exynos/power.h
 create mode 100644 arch/arm/include/asm/arch-exynos/tzpc.h
 create mode 100644 arch/arm/include/asm/arch-exynos/watchdog.h
 create mode 100644 arch/arm/include/asm/arch-s5pc1xx/watchdog.h
 create mode 100644 board/samsung/smdk5250/Makefile
 create mode 100644 board/samsung/smdk5250/clock_init.c
 create mode 100644 board/samsung/smdk5250/dmc_init.c
 create mode 100644 board/samsung/smdk5250/lowlevel_init.S
 create mode 100644 board/samsung/smdk5250/mmc_boot.c
 create mode 100644 board/samsung/smdk5250/setup.h
 create mode 100644 board/samsung/smdk5250/smdk5250.c
 create mode 100644 board/samsung/smdk5250/tzpc_init.c
 create mode 100644 board/samsung/trats/Makefile
 create mode 100644 board/samsung/trats/setup.h
 create mode 100644 board/samsung/trats/trats.c
 create mode 100644 include/configs/smdk5250.h
 create mode 100644 include/configs/trats.h
 create mode 100644 tools/mkexynosspl.c

^ permalink raw reply	[flat|nested] 63+ messages in thread
* [U-Boot] please pull u-boot-samsung/master
@ 2011-12-09  9:15 Minkyu Kang
  2011-12-09 16:39 ` Albert ARIBAUD
  0 siblings, 1 reply; 63+ messages in thread
From: Minkyu Kang @ 2011-12-09  9:15 UTC (permalink / raw)
  To: u-boot

Dear Albert,

The following changes since commit 15422043c4a213dc5d7d59a337be1ab34c9b2e7f:

  davinci: Remove unwanted memsize.c from hawkboard's nand spl build
(2011-12-06 23:59:41 +0100)

are available in the git repository at:
  git://git.denx.de/u-boot-samsung master

Chander Kashyap (1):
      S5PC2XX: Rename S5pc2XX to exynos

 MAINTAINERS                                        |    6 +-
 Makefile                                           |    2 +-
 arch/arm/cpu/armv7/{s5pc2xx => exynos}/Makefile    |    0
 arch/arm/cpu/armv7/{s5pc2xx => exynos}/clock.c     |   50 ++++++++--------
 arch/arm/cpu/armv7/{s5pc2xx => exynos}/soc.c       |    0
 .../asm/{arch-s5pc2xx => arch-exynos}/adc.h        |    0
 .../asm/{arch-s5pc2xx => arch-exynos}/clk.h        |    0
 .../asm/{arch-s5pc2xx => arch-exynos}/clock.h      |    2 +-
 .../asm/{arch-s5pc2xx => arch-exynos}/cpu.h        |   64 ++++++++++----------
 .../asm/{arch-s5pc2xx => arch-exynos}/gpio.h       |   28 ++++----
 .../asm/{arch-s5pc2xx => arch-exynos}/mmc.h        |    0
 .../asm/{arch-s5pc2xx => arch-exynos}/pwm.h        |    0
 .../asm/{arch-s5pc2xx => arch-exynos}/sromc.h      |    0
 .../asm/{arch-s5pc2xx => arch-exynos}/sys_proto.h  |    0
 .../asm/{arch-s5pc2xx => arch-exynos}/uart.h       |    0
 board/samsung/origen/lowlevel_init.S               |   26 ++++----
 board/samsung/origen/mem_setup.S                   |   12 ++--
 board/samsung/origen/origen.c                      |    8 +-
 board/samsung/origen/origen_setup.h                |    8 +-
 board/samsung/smdkv310/lowlevel_init.S             |   22 ++++----
 board/samsung/smdkv310/mem_setup.S                 |    8 +-
 board/samsung/smdkv310/smdkv310.c                  |    8 +-
 board/samsung/universal_c210/lowlevel_init.S       |   24 ++++----
 board/samsung/universal_c210/universal.c           |    8 +-
 boards.cfg                                         |    6 +-
 include/configs/origen.h                           |    6 +-
 include/configs/s5pc210_universal.h                |   10 ++--
 include/configs/smdkv310.h                         |    6 +-
 28 files changed, 152 insertions(+), 152 deletions(-)
 rename arch/arm/cpu/armv7/{s5pc2xx => exynos}/Makefile (100%)
 rename arch/arm/cpu/armv7/{s5pc2xx => exynos}/clock.c (81%)
 rename arch/arm/cpu/armv7/{s5pc2xx => exynos}/soc.c (100%)
 rename arch/arm/include/asm/{arch-s5pc2xx => arch-exynos}/adc.h (100%)
 rename arch/arm/include/asm/{arch-s5pc2xx => arch-exynos}/clk.h (100%)
 rename arch/arm/include/asm/{arch-s5pc2xx => arch-exynos}/clock.h (99%)
 rename arch/arm/include/asm/{arch-s5pc2xx => arch-exynos}/cpu.h (64%)
 rename arch/arm/include/asm/{arch-s5pc2xx => arch-exynos}/gpio.h (84%)
 rename arch/arm/include/asm/{arch-s5pc2xx => arch-exynos}/mmc.h (100%)
 rename arch/arm/include/asm/{arch-s5pc2xx => arch-exynos}/pwm.h (100%)
 rename arch/arm/include/asm/{arch-s5pc2xx => arch-exynos}/sromc.h (100%)
 rename arch/arm/include/asm/{arch-s5pc2xx => arch-exynos}/sys_proto.h (100%)
 rename arch/arm/include/asm/{arch-s5pc2xx => arch-exynos}/uart.h (100%)

^ permalink raw reply	[flat|nested] 63+ messages in thread
* [U-Boot] please pull u-boot-samsung/master
@ 2011-10-28  8:19 Minkyu Kang
  2011-10-28 15:17 ` Albert ARIBAUD
  0 siblings, 1 reply; 63+ messages in thread
From: Minkyu Kang @ 2011-10-28  8:19 UTC (permalink / raw)
  To: u-boot

Dear Albert,

The following changes since commit 37fc0ed268dc5acacd3a83adafa26eb1a84e90af:

  ARM: Add Calxeda Highbank platform (2011-10-27 21:56:37 +0200)

are available in the git repository at:
  git://git.denx.de/u-boot-samsung master

Angus Ainslie (2):
      ORIGEN : enable device tree support
      ORIGEN : use absolute paths and fix tool naming

Chander Kashyap (4):
      SMDKV310: Initialize board id using CONFIG_MACH_TYPE
      SMDKV310: use get_ram_size() to validate dram size
      smdkv310: use spl framework for mmc spl
      smdkv310: use macro for mmc data read function address

?ukasz Majewski (3):
      dcache:s5p CONFIG_SYS_CACHELINE_SIZE added for s5p GONI target
      dcache:s5p CONFIG_SYS_CACHELINE_SIZE added for s5p UNIVERSAL C210 target
      misc:pmic:samsung Enable PMIC driver at C210 Universal target

 board/samsung/origen/Makefile                      |    6 +-
 board/samsung/smdkv310/Makefile                    |   19 ++++-
 .../board => board}/samsung/smdkv310/mmc_boot.c    |   15 ++--
 board/samsung/smdkv310/smdkv310.c                  |   13 ++-
 .../samsung/smdkv310/tools/mkv310_image.c          |    0
 board/samsung/universal_c210/universal.c           |    5 +
 include/configs/origen.h                           |    3 +
 include/configs/s5p_goni.h                         |    2 +
 include/configs/s5pc210_universal.h                |   19 ++++
 include/configs/smdkv310.h                         |    8 ++-
 mmc_spl/board/samsung/smdkv310/Makefile            |  106 --------------------
 mmc_spl/board/samsung/smdkv310/u-boot.lds          |   88 ----------------
 spl/Makefile                                       |    2 +-
 13 files changed, 74 insertions(+), 212 deletions(-)
 rename {mmc_spl/board => board}/samsung/smdkv310/mmc_boot.c (83%)
 rename {mmc_spl/board => board}/samsung/smdkv310/tools/mkv310_image.c (100%)
 delete mode 100644 mmc_spl/board/samsung/smdkv310/Makefile
 delete mode 100644 mmc_spl/board/samsung/smdkv310/u-boot.lds

^ permalink raw reply	[flat|nested] 63+ messages in thread
* [U-Boot] please pull u-boot-samsung/master
@ 2011-09-02  8:05 Minkyu Kang
  2011-09-03 19:23 ` Albert ARIBAUD
  0 siblings, 1 reply; 63+ messages in thread
From: Minkyu Kang @ 2011-09-02  8:05 UTC (permalink / raw)
  To: u-boot

Dear Albert ARIBAUD,

The following changes since commit 5a70b8d8cc8481f7b25e2fcab98c4b9fb24907cf:

  Tegra2: Use clock and pinmux functions to simplify code (2011-08-30 18:45:54 +0200)

are available in the git repository at:
  git://git.denx.de/u-boot-samsung master

Chander Kashyap (2):
      ARMV7: Add support for Samsung ORIGEN board
      ORIGEN: Add MMC SPL support

?ukasz Majewski (2):
      i2c:gpio:s5p: I2C GPIO Software implementation (via soft_i2c)
      i2c:gpio:s5p: Enable I2C GPIO on the GONI target

 MAINTAINERS                               |    1 +
 arch/arm/include/asm/arch-s5pc1xx/gpio.h  |   13 +
 arch/arm/include/asm/arch-s5pc2xx/gpio.h  |   29 ++
 board/samsung/origen/Makefile             |   64 ++++
 board/samsung/origen/lowlevel_init.S      |  357 +++++++++++++++++++
 board/samsung/origen/mem_setup.S          |  421 ++++++++++++++++++++++
 board/samsung/origen/mmc_boot.c           |   58 +++
 board/samsung/origen/origen.c             |  109 ++++++
 board/samsung/origen/origen_setup.h       |  546 +++++++++++++++++++++++++++++
 board/samsung/origen/tools/mkv310_image.c |  126 +++++++
 boards.cfg                                |    1 +
 drivers/gpio/s5p_gpio.c                   |   44 +++
 include/configs/origen.h                  |  168 +++++++++
 include/configs/s5p_goni.h                |   12 +
 spl/Makefile                              |   10 +
 15 files changed, 1959 insertions(+), 0 deletions(-)
 create mode 100644 board/samsung/origen/Makefile
 create mode 100644 board/samsung/origen/lowlevel_init.S
 create mode 100644 board/samsung/origen/mem_setup.S
 create mode 100644 board/samsung/origen/mmc_boot.c
 create mode 100644 board/samsung/origen/origen.c
 create mode 100644 board/samsung/origen/origen_setup.h
 create mode 100644 board/samsung/origen/tools/mkv310_image.c
 create mode 100644 include/configs/origen.h

^ permalink raw reply	[flat|nested] 63+ messages in thread
* [U-Boot] please pull u-boot-samsung/master
@ 2011-08-19  5:34 Minkyu Kang
  2011-08-19 18:22 ` Albert ARIBAUD
  0 siblings, 1 reply; 63+ messages in thread
From: Minkyu Kang @ 2011-08-19  5:34 UTC (permalink / raw)
  To: u-boot

Dear Albert ARIBAUD,

The following changes since commit 6477396323193c04ebb510dd2786173da31f4911:

  arm: fix bd pointer dereference prior initialization (2011-08-17 18:10:34 +0200)

are available in the git repository at:
  git://git.denx.de/u-boot-samsung master

Anton Staaf (1):
      mmc: S5P: Support DMA restarts at buffer boundaries

Chander Kashyap (3):
      SMDKV310: Fix build error for smdkv310 board
      SMDKV310: Fix undefined reference error
      SMDKV310: MMC SPL: Remove unwanted dummy functions

Dirk Behme (1):
      SMDKV310: Fix host compilation of mkv310_image

?ukasz Majewski (2):
      gpio:samsung s5p_ suffix add for GPIO functions
      gpio:samsung: s5p_ suffix add for GPIO functions (C210_universal)

 arch/arm/include/asm/arch-s5pc1xx/gpio.h           |   16 +++++-----
 arch/arm/include/asm/arch-s5pc2xx/gpio.h           |   16 +++++-----
 board/samsung/goni/goni.c                          |    8 +++---
 board/samsung/smdkc100/smdkc100.c                  |    2 +-
 board/samsung/smdkv310/smdkv310.c                  |   10 +++---
 board/samsung/universal_c210/universal.c           |   28 ++++++++++----------
 drivers/gpio/s5p_gpio.c                            |   20 +++++++-------
 drivers/mmc/s5p_mmc.c                              |   15 ++++++++---
 mmc_spl/board/samsung/smdkv310/Makefile            |    1 +
 mmc_spl/board/samsung/smdkv310/mmc_boot.c          |   28 +-------------------
 .../board/samsung/smdkv310/tools/mkv310_image.c    |    1 +
 mmc_spl/board/samsung/smdkv310/u-boot.lds          |    2 +
 12 files changed, 66 insertions(+), 81 deletions(-)

^ permalink raw reply	[flat|nested] 63+ messages in thread
* [U-Boot] Please pull u-boot-samsung/master
@ 2011-05-26 10:43 Minkyu Kang
  2011-05-26 10:59 ` Albert ARIBAUD
  0 siblings, 1 reply; 63+ messages in thread
From: Minkyu Kang @ 2011-05-26 10:43 UTC (permalink / raw)
  To: u-boot

Dear Albert ARIBAUD,

The following changes since commit f14a522a6cb6b843d31fd099b5af6a57142f2364:

  BeagleBoard: fixed typo in typecast (2011-05-23 09:04:39 +0200)

are available in the git repository at:
  ssh://gu-samsung at git.denx.de/u-boot-samsung master

Chander Kashyap (4):
      S5P: GPIO Macro Values Corrected.
      S5P:SROM config code moved to s5p-common directory
      ARMV7: Add support for Samsung SMDKV310 Board
      ARMV7: MMC SPL Boot support for SMDKV310 board

David M?ller (ELSOFT AG) (4):
      SMDK2410: activate ARM relocation feature
      SMDK2410: remove unneeded config.mk
      SMDK2410: use the CFI driver (and remove the old one)
      SMDK2410: various cleanup/code style fixes

Dirk Behme (1):
      MMC S5P: Fix typo

Jaehoon Chung (1):
      S5P: add set_mmc_clk for external clock control

Minkyu Kang (2):
      S5PC2XX: Support the cpu revision
      S5PC2XX: clock: support pwm clock for evt1 (cpu revision 1)

seedshope (1):
      Add _end for the end of u-boot image for SMDK6400

 MAINTAINERS                                        |    4 +
 Makefile                                           |   11 +
 arch/arm/cpu/armv7/s5p-common/Makefile             |    3 +-
 arch/arm/cpu/armv7/s5p-common/cpu_info.c           |    2 +
 arch/arm/cpu/armv7/{s5pc1xx => s5p-common}/sromc.c |   22 +-
 arch/arm/cpu/armv7/s5pc1xx/Makefile                |    1 -
 arch/arm/cpu/armv7/s5pc1xx/clock.c                 |    5 +
 arch/arm/cpu/armv7/s5pc2xx/clock.c                 |   76 +++-
 arch/arm/include/asm/arch-s5pc1xx/clk.h            |    1 +
 arch/arm/include/asm/arch-s5pc1xx/gpio.h           |    4 +-
 arch/arm/include/asm/arch-s5pc1xx/mmc.h            |    1 +
 .../include/asm/arch-s5pc1xx/{smc.h => sromc.h}    |    8 +-
 arch/arm/include/asm/arch-s5pc2xx/clk.h            |    1 +
 arch/arm/include/asm/arch-s5pc2xx/cpu.h            |   12 +-
 arch/arm/include/asm/arch-s5pc2xx/gpio.h           |    7 +-
 arch/arm/include/asm/arch-s5pc2xx/mmc.h            |    1 +
 arch/arm/include/asm/arch-s5pc2xx/sromc.h          |   51 +++
 board/samsung/smdk2410/Makefile                    |    2 +-
 board/samsung/smdk2410/config.mk                   |   25 -
 board/samsung/smdk2410/flash.c                     |  433 ------------------
 board/samsung/smdk2410/smdk2410.c                  |   73 ++--
 board/samsung/smdkc100/smdkc100.c                  |    4 +-
 board/samsung/smdkv310/Makefile                    |   46 ++
 board/samsung/smdkv310/lowlevel_init.S             |  470 ++++++++++++++++++++
 board/samsung/smdkv310/mem_setup.S                 |  365 +++++++++++++++
 board/samsung/smdkv310/smdkv310.c                  |  136 ++++++
 boards.cfg                                         |    1 +
 drivers/mmc/s5p_mmc.c                              |    6 +-
 include/configs/smdk2410.h                         |  181 +++++---
 include/configs/smdkv310.h                         |  169 +++++++
 mmc_spl/board/samsung/smdkv310/Makefile            |  105 +++++
 mmc_spl/board/samsung/smdkv310/mmc_boot.c          |   85 ++++
 .../board/samsung/smdkv310/tools/mkv310_image.c    |  116 +++++
 mmc_spl/board/samsung/smdkv310/u-boot.lds          |   86 ++++
 nand_spl/board/samsung/smdk6400/u-boot.lds         |    2 +
 35 files changed, 1921 insertions(+), 594 deletions(-)
 rename arch/arm/cpu/armv7/{s5pc1xx => s5p-common}/sromc.c (68%)
 rename arch/arm/include/asm/arch-s5pc1xx/{smc.h => sromc.h} (92%)
 create mode 100644 arch/arm/include/asm/arch-s5pc2xx/sromc.h
 delete mode 100644 board/samsung/smdk2410/config.mk
 delete mode 100644 board/samsung/smdk2410/flash.c
 create mode 100644 board/samsung/smdkv310/Makefile
 create mode 100644 board/samsung/smdkv310/lowlevel_init.S
 create mode 100644 board/samsung/smdkv310/mem_setup.S
 create mode 100644 board/samsung/smdkv310/smdkv310.c
 create mode 100644 include/configs/smdkv310.h
 create mode 100644 mmc_spl/board/samsung/smdkv310/Makefile
 create mode 100644 mmc_spl/board/samsung/smdkv310/mmc_boot.c
 create mode 100644 mmc_spl/board/samsung/smdkv310/tools/mkv310_image.c
 create mode 100644 mmc_spl/board/samsung/smdkv310/u-boot.lds

^ permalink raw reply	[flat|nested] 63+ messages in thread
* [U-Boot] Please pull u-boot-samsung/master
@ 2011-05-26  5:22 Minkyu Kang
  2011-05-26  5:49 ` Albert ARIBAUD
  0 siblings, 1 reply; 63+ messages in thread
From: Minkyu Kang @ 2011-05-26  5:22 UTC (permalink / raw)
  To: u-boot

Dear Albert Aribaud,

The following changes since commit 0cecc52c233e5f607f826a4e5c97f92c7a7d6dc4:

  Merge branch 'master' of git://git.denx.de/u-boot-arm into next (2011-05-23 17:47:29 +0900)

are available in the git repository at:

  git://git.denx.de/u-boot-samsung master

Chander Kashyap (4):
      S5P: GPIO Macro Values Corrected.
      S5P:SROM config code moved to s5p-common directory
      ARMV7: Add support for Samsung SMDKV310 Board
      ARMV7: MMC SPL Boot support for SMDKV310 board

David M?ller (ELSOFT AG) (4):
      SMDK2410: activate ARM relocation feature
      SMDK2410: remove unneeded config.mk
      SMDK2410: use the CFI driver (and remove the old one)
      SMDK2410: various cleanup/code style fixes

Dirk Behme (1):
      MMC S5P: Fix typo

Jaehoon Chung (1):
      S5P: add set_mmc_clk for external clock control

Minkyu Kang (2):
      S5PC2XX: Support the cpu revision
      S5PC2XX: clock: support pwm clock for evt1 (cpu revision 1)

seedshope (1):
      Add _end for the end of u-boot image for SMDK6400

 MAINTAINERS                                        |    4 +
 Makefile                                           |   11 +
 arch/arm/cpu/armv7/s5p-common/Makefile             |    3 +-
 arch/arm/cpu/armv7/s5p-common/cpu_info.c           |    2 +
 arch/arm/cpu/armv7/{s5pc1xx => s5p-common}/sromc.c |   22 +-
 arch/arm/cpu/armv7/s5pc1xx/Makefile                |    1 -
 arch/arm/cpu/armv7/s5pc1xx/clock.c                 |    5 +
 arch/arm/cpu/armv7/s5pc2xx/clock.c                 |   76 +++-
 arch/arm/include/asm/arch-s5pc1xx/clk.h            |    1 +
 arch/arm/include/asm/arch-s5pc1xx/gpio.h           |    4 +-
 arch/arm/include/asm/arch-s5pc1xx/mmc.h            |    1 +
 .../include/asm/arch-s5pc1xx/{smc.h => sromc.h}    |    8 +-
 arch/arm/include/asm/arch-s5pc2xx/clk.h            |    1 +
 arch/arm/include/asm/arch-s5pc2xx/cpu.h            |   12 +-
 arch/arm/include/asm/arch-s5pc2xx/gpio.h           |    7 +-
 arch/arm/include/asm/arch-s5pc2xx/mmc.h            |    1 +
 arch/arm/include/asm/arch-s5pc2xx/sromc.h          |   51 +++
 board/samsung/smdk2410/Makefile                    |    2 +-
 board/samsung/smdk2410/config.mk                   |   25 -
 board/samsung/smdk2410/flash.c                     |  433 ------------------
 board/samsung/smdk2410/smdk2410.c                  |   73 ++--
 board/samsung/smdkc100/smdkc100.c                  |    4 +-
 board/samsung/smdkv310/Makefile                    |   46 ++
 board/samsung/smdkv310/lowlevel_init.S             |  470 ++++++++++++++++++++
 board/samsung/smdkv310/mem_setup.S                 |  365 +++++++++++++++
 board/samsung/smdkv310/smdkv310.c                  |  136 ++++++
 boards.cfg                                         |    1 +
 drivers/mmc/s5p_mmc.c                              |    6 +-
 include/configs/smdk2410.h                         |  181 +++++---
 include/configs/smdkv310.h                         |  169 +++++++
 mmc_spl/board/samsung/smdkv310/Makefile            |  105 +++++
 mmc_spl/board/samsung/smdkv310/mmc_boot.c          |   85 ++++
 .../board/samsung/smdkv310/tools/mkv310_image.c    |  116 +++++
 mmc_spl/board/samsung/smdkv310/u-boot.lds          |   86 ++++
 nand_spl/board/samsung/smdk6400/u-boot.lds         |    2 +
 35 files changed, 1921 insertions(+), 594 deletions(-)
 rename arch/arm/cpu/armv7/{s5pc1xx => s5p-common}/sromc.c (68%)
 rename arch/arm/include/asm/arch-s5pc1xx/{smc.h => sromc.h} (92%)
 create mode 100644 arch/arm/include/asm/arch-s5pc2xx/sromc.h
 delete mode 100644 board/samsung/smdk2410/config.mk
 delete mode 100644 board/samsung/smdk2410/flash.c
 create mode 100644 board/samsung/smdkv310/Makefile
 create mode 100644 board/samsung/smdkv310/lowlevel_init.S
 create mode 100644 board/samsung/smdkv310/mem_setup.S
 create mode 100644 board/samsung/smdkv310/smdkv310.c
 create mode 100644 include/configs/smdkv310.h
 create mode 100644 mmc_spl/board/samsung/smdkv310/Makefile
 create mode 100644 mmc_spl/board/samsung/smdkv310/mmc_boot.c
 create mode 100644 mmc_spl/board/samsung/smdkv310/tools/mkv310_image.c
 create mode 100644 mmc_spl/board/samsung/smdkv310/u-boot.lds

^ permalink raw reply	[flat|nested] 63+ messages in thread
* [U-Boot] Please pull u-boot-samsung/master
@ 2011-03-24  6:58 Minkyu Kang
  2011-03-24 13:57 ` Albert ARIBAUD
  0 siblings, 1 reply; 63+ messages in thread
From: Minkyu Kang @ 2011-03-24  6:58 UTC (permalink / raw)
  To: u-boot

Dear Albert Aribaud,

The following changes since commit 966a35d45b90fdcd694dec89b32e5b67771cfd64:

  Merge branch 'master' of git://git.denx.de/u-boot-arm (2011-02-16 08:54:52 +0900)

are available in the git repository at:

  git://git.denx.de/u-boot-samsung master

Chander Kashyap (2):
      ARMV7: S5P: Fixed register offset in mmc.h
      S5P: mmc: Resolved interrupt error during mmc_init

Donghwa Lee (1):
      ARM: S5P: pwm driver support

Minkyu Kang (5):
      S5P: timer: Use pwm functions
      S5P: smdkc100: Enable the pwm driver
      S5P: goni: Enable the pwm driver
      S5P: universal: Enable the pwm driver
      S5P: timer: replace bss variable by gd

seedshope (6):
      SMDK6400: Fix CONFIG_SYS_INIT_SP_ADDR undefined
      SMDK6400: Fix some label undefined in build error
      SMDK6400: Fix the mutiple link error
      SMDK6400: Add some labels to u-boot.lds to support nand_spl
      SMDK6400: Disable LED function in start.s on the nand booting
      SMDK6400: Fixup dram_init for relocation support

 arch/arm/cpu/arm1176/start.S               |    2 +
 arch/arm/cpu/armv7/s5p-common/Makefile     |    1 +
 arch/arm/cpu/armv7/s5p-common/pwm.c        |  189 ++++++++++++++++++++++++++++
 arch/arm/cpu/armv7/s5p-common/timer.c      |   76 +++---------
 arch/arm/include/asm/arch-s5pc1xx/mmc.h    |    5 +-
 arch/arm/include/asm/arch-s5pc1xx/pwm.h    |   23 +++-
 arch/arm/include/asm/arch-s5pc2xx/mmc.h    |    5 +-
 arch/arm/include/asm/arch-s5pc2xx/pwm.h    |   23 +++-
 board/samsung/smdk6400/smdk6400.c          |    8 +-
 board/samsung/smdk6400/u-boot-nand.lds     |   28 ++++-
 drivers/mmc/s5p_mmc.c                      |    2 +-
 include/configs/s5p_goni.h                 |    3 +
 include/configs/s5pc210_universal.h        |    3 +
 include/configs/smdk6400.h                 |    5 +
 include/configs/smdkc100.h                 |    3 +
 include/pwm.h                              |   31 +++++
 nand_spl/board/samsung/smdk6400/u-boot.lds |   17 +++-
 17 files changed, 344 insertions(+), 80 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/s5p-common/pwm.c
 create mode 100644 include/pwm.h

^ permalink raw reply	[flat|nested] 63+ messages in thread
* [U-Boot] Please pull u-boot-samsung/master
@ 2011-01-27 12:29 Minkyu Kang
  2011-01-27 22:11 ` Albert ARIBAUD
  0 siblings, 1 reply; 63+ messages in thread
From: Minkyu Kang @ 2011-01-27 12:29 UTC (permalink / raw)
  To: u-boot

Dear Albert ARIBAUD,

The following changes since commit b722e646f9a6e2ebcae4845afc596b4dad4f7bcb:

  DaVinci DM6467: Enhance board Support (2010-12-28 17:38:22 -0500)

are available in the git repository at:
  git://git.denx.de/u-boot-samsung master

Minkyu Kang (4):
      armv7: s5pc1xx: don't use function pointer for clock functions
      S5P: serial: Use the inline function instead of static value
      armv7: add support for S5PC210 SoC
      armv7: add support for s5pc210 universal board

 MAINTAINERS                                   |    5 +-
 arch/arm/cpu/armv7/s5p-common/cpu_info.c      |    2 -
 arch/arm/cpu/armv7/s5pc1xx/clock.c            |   38 ++-
 arch/arm/cpu/armv7/s5pc2xx/Makefile           |   42 +++
 arch/arm/cpu/armv7/s5pc2xx/clock.c            |  220 ++++++++++++++
 arch/arm/cpu/armv7/s5pc2xx/soc.c              |   30 ++
 arch/arm/include/asm/arch-s5pc1xx/clk.h       |   10 +-
 arch/arm/include/asm/arch-s5pc1xx/uart.h      |    5 +-
 arch/arm/include/asm/arch-s5pc2xx/adc.h       |   42 +++
 arch/arm/include/asm/arch-s5pc2xx/clk.h       |   36 +++
 arch/arm/include/asm/arch-s5pc2xx/clock.h     |  255 ++++++++++++++++
 arch/arm/include/asm/arch-s5pc2xx/cpu.h       |  103 +++++++
 arch/arm/include/asm/arch-s5pc2xx/gpio.h      |  112 +++++++
 arch/arm/include/asm/arch-s5pc2xx/mmc.h       |   71 +++++
 arch/arm/include/asm/arch-s5pc2xx/pwm.h       |   55 ++++
 arch/arm/include/asm/arch-s5pc2xx/sys_proto.h |   32 ++
 arch/arm/include/asm/arch-s5pc2xx/uart.h      |   58 ++++
 board/samsung/universal_c210/Makefile         |   51 ++++
 board/samsung/universal_c210/lowlevel_init.S  |  395 +++++++++++++++++++++++++
 board/samsung/universal_c210/onenand.c        |   34 +++
 board/samsung/universal_c210/universal.c      |  250 ++++++++++++++++
 boards.cfg                                    |    1 +
 drivers/serial/serial_s5p.c                   |    2 +-
 include/configs/s5pc210_universal.h           |  244 +++++++++++++++
 24 files changed, 2066 insertions(+), 27 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/s5pc2xx/Makefile
 create mode 100644 arch/arm/cpu/armv7/s5pc2xx/clock.c
 create mode 100644 arch/arm/cpu/armv7/s5pc2xx/soc.c
 create mode 100644 arch/arm/include/asm/arch-s5pc2xx/adc.h
 create mode 100644 arch/arm/include/asm/arch-s5pc2xx/clk.h
 create mode 100644 arch/arm/include/asm/arch-s5pc2xx/clock.h
 create mode 100644 arch/arm/include/asm/arch-s5pc2xx/cpu.h
 create mode 100644 arch/arm/include/asm/arch-s5pc2xx/gpio.h
 create mode 100644 arch/arm/include/asm/arch-s5pc2xx/mmc.h
 create mode 100644 arch/arm/include/asm/arch-s5pc2xx/pwm.h
 create mode 100644 arch/arm/include/asm/arch-s5pc2xx/sys_proto.h
 create mode 100644 arch/arm/include/asm/arch-s5pc2xx/uart.h
 create mode 100644 board/samsung/universal_c210/Makefile
 create mode 100644 board/samsung/universal_c210/lowlevel_init.S
 create mode 100644 board/samsung/universal_c210/onenand.c
 create mode 100644 board/samsung/universal_c210/universal.c
 create mode 100644 include/configs/s5pc210_universal.h

^ permalink raw reply	[flat|nested] 63+ messages in thread
* [U-Boot] Please pull u-boot-samsung/master
@ 2010-11-30  8:56 Minkyu Kang
  2010-11-30 20:32 ` Wolfgang Denk
  0 siblings, 1 reply; 63+ messages in thread
From: Minkyu Kang @ 2010-11-30  8:56 UTC (permalink / raw)
  To: u-boot

Please pull u-boot-samsung/master.
Thanks.

The following changes since commit 464ce9489b848f9dfde74da5715b6d1b5db46a5e:
  Minkyu Kang (1):
        Merge branch 'master' of git://git.denx.de/u-boot-arm

are available in the git repository at:

  git://git.denx.de/u-boot-samsung master

Minkyu Kang (3):
      S5P: smdkc100: fix for relocation
      S5P: goni: fix for relocation
      ARMV7: S5P: timer: get the count_value from register when call udelay

 arch/arm/cpu/armv7/s5p-common/timer.c |   18 +++++++++---------
 board/samsung/goni/goni.c             |   10 ++++++++--
 board/samsung/smdkc100/smdkc100.c     |   10 +++++++---
 include/configs/s5p_goni.h            |    2 ++
 include/configs/smdkc100.h            |    2 ++
 5 files changed, 28 insertions(+), 14 deletions(-)

^ permalink raw reply	[flat|nested] 63+ messages in thread
* [U-Boot] Please pull u-boot-samsung/master
@ 2010-10-28  7:29 Minkyu Kang
  2010-10-29 19:48 ` Wolfgang Denk
  0 siblings, 1 reply; 63+ messages in thread
From: Minkyu Kang @ 2010-10-28  7:29 UTC (permalink / raw)
  To: u-boot

Dear Wolfgang Denk,

Please pull u-boot-samsung/master.
Thanks

The following changes since commit b485556be51d1edae0a2c0065e2f572ca42a1eee:
  John Rigby (1):
        ARM: enable device tree for beagle

are available in the git repository at:

  git://git.denx.de/u-boot-samsung master

C Nauman (1):
      Add generic support for samsung s3c2440

Jaehoon Chung (1):
      s5p_mmc: support 8-bit bus width

Minkyu Kang (1):
      ARMV7: S5P: serial: support the s5pc210

 arch/arm/cpu/arm920t/s3c24x0/speed.c            |   30 +-
 arch/arm/cpu/arm920t/s3c24x0/timer.c            |   23 +-
 arch/arm/cpu/arm920t/s3c24x0/usb.c              |   10 +-
 arch/arm/cpu/arm920t/s3c24x0/usb_ohci.c         |   12 +-
 arch/arm/include/asm/arch-s3c24x0/s3c2440.h     |  161 ++++++
 arch/arm/include/asm/arch-s3c24x0/s3c24x0.h     |  672 +++++++++++++----------
 arch/arm/include/asm/arch-s3c24x0/s3c24x0_cpu.h |    2 +
 arch/arm/include/asm/arch-s5pc1xx/mmc.h         |    2 +-
 arch/arm/include/asm/arch-s5pc1xx/uart.h        |   14 +-
 board/mpl/vcma9/vcma9.c                         |   41 +-
 board/samsung/goni/goni.c                       |    2 +-
 board/samsung/smdk2400/smdk2400.c               |   28 +-
 board/samsung/smdk2410/smdk2410.c               |   36 +-
 board/sbc2410x/sbc2410x.c                       |   44 +-
 board/trab/cmd_trab.c                           |   28 +-
 board/trab/rs485.c                              |   40 +-
 board/trab/trab.c                               |   67 ++--
 board/trab/trab_fkt.c                           |  142 +++---
 board/trab/tsc2000.c                            |   39 +-
 board/trab/tsc2000.h                            |   86 ++--
 board/trab/vfd.c                                |   90 ++--
 drivers/i2c/s3c24x0_i2c.c                       |  102 ++--
 drivers/mmc/s5p_mmc.c                           |   19 +-
 drivers/mtd/nand/s3c2410_nand.c                 |   25 +-
 drivers/rtc/s3c24x0_rtc.c                       |   52 +-
 drivers/serial/serial_s3c24x0.c                 |   26 +-
 drivers/serial/serial_s5p.c                     |    6 +-
 27 files changed, 1048 insertions(+), 751 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-s3c24x0/s3c2440.h

^ permalink raw reply	[flat|nested] 63+ messages in thread
* [U-Boot] Please pull u-boot-samsung/master
@ 2010-08-31 10:27 Minkyu Kang
  2010-09-07 22:04 ` Wolfgang Denk
  0 siblings, 1 reply; 63+ messages in thread
From: Minkyu Kang @ 2010-08-31 10:27 UTC (permalink / raw)
  To: u-boot

Please pull u-boot-samsung/master
Thanks

The following changes since commit 9efac4a1eb99d9c5539aa6992025eeacab7980c6:
  Wolfgang Denk (1):
        Merge branch 'master' of git://git.denx.de/u-boot-samsung

are available in the git repository at:

  git://git.denx.de/u-boot-samsung master

Minkyu Kang (9):
      S5P: mmc: use the standard debug macro
      S5P: Use accessor functions instead of SoC specific defines to access the base address
      ARMV7: S5P: make s5p-common for sharing the code between s5pc1xx and s5pc2xx
      ARMV7: S5P: rename from s5pc1xx to s5p
      S5P: mmc: fix the mmc offset
      ARMV7: S5P: rename from CONFIG_S5PC1XX to CONFIG_S5P
      ARMV7: S5P: fix the macro at samsung_get_base function
      ARMV7: S5P: separate the peripheral clocks
      ARMV7: S5P: rename the member of gpio structure

 Makefile                                           |    7 +
 arch/arm/cpu/armv7/s5p-common/Makefile             |   46 ++++++
 .../cpu/armv7/{s5pc1xx => s5p-common}/cpu_info.c   |   11 +-
 arch/arm/cpu/armv7/{s5pc1xx => s5p-common}/timer.c |   23 ++--
 arch/arm/cpu/armv7/s5pc1xx/Makefile                |    2 -
 arch/arm/cpu/armv7/s5pc1xx/clock.c                 |   51 +++++--
 arch/arm/cpu/armv7/s5pc1xx/reset.S                 |    2 +-
 arch/arm/cpu/armv7/s5pc1xx/sromc.c                 |    8 +-
 arch/arm/include/asm/arch-s5pc1xx/clk.h            |    5 +-
 arch/arm/include/asm/arch-s5pc1xx/cpu.h            |   39 ++++-
 arch/arm/include/asm/arch-s5pc1xx/gpio.h           |  172 ++++++++++----------
 arch/arm/include/asm/arch-s5pc1xx/mmc.h            |    2 +-
 arch/arm/include/asm/arch-s5pc1xx/pwm.h            |   12 +-
 board/samsung/goni/goni.c                          |    8 +-
 board/samsung/goni/lowlevel_init.S                 |    6 +-
 board/samsung/smdkc100/lowlevel_init.S             |    2 +-
 board/samsung/smdkc100/onenand.c                   |    3 +-
 board/samsung/smdkc100/smdkc100.c                  |    4 +-
 common/serial.c                                    |    4 +-
 drivers/gpio/Makefile                              |    2 +-
 drivers/mmc/s5p_mmc.c                              |   36 ++---
 drivers/mtd/onenand/samsung.c                      |    6 +-
 drivers/serial/Makefile                            |    2 +-
 drivers/serial/serial_s5p.c                        |   10 +-
 include/configs/s5p_goni.h                         |    2 +-
 include/configs/smdkc100.h                         |    2 +-
 include/serial.h                                   |    2 +-
 27 files changed, 274 insertions(+), 195 deletions(-)
 create mode 100644 arch/arm/cpu/armv7/s5p-common/Makefile
 rename arch/arm/cpu/armv7/{s5pc1xx => s5p-common}/cpu_info.c (83%)
 rename arch/arm/cpu/armv7/{s5pc1xx => s5p-common}/timer.c (86%)

^ permalink raw reply	[flat|nested] 63+ messages in thread
* [U-Boot] Please pull u-boot-samsung/master
@ 2010-08-03  7:54 Minkyu Kang
  2010-08-03 22:35 ` Wolfgang Denk
  0 siblings, 1 reply; 63+ messages in thread
From: Minkyu Kang @ 2010-08-03  7:54 UTC (permalink / raw)
  To: u-boot

Please pull u-boot-samsung/master.
Thanks.

The following changes since commit 2271d3ddccfbd4a7640121669ff9b013b1fea361:
  Minkyu Kang (1):
        Merge branch 'master' of git://git.denx.de/u-boot

are available in the git repository at:

  git://git.denx.de/u-boot-samsung master

Minkyu Kang (3):
      SAMSUNG: serial: remove compiler warnings
      S5P: support mmc driver
      s5p_goni: enable mmc0

 arch/arm/include/asm/arch-s5pc1xx/cpu.h |    2 +
 arch/arm/include/asm/arch-s5pc1xx/mmc.h |   71 +++++
 board/samsung/goni/goni.c               |   37 +++
 drivers/mmc/Makefile                    |    1 +
 drivers/mmc/s5p_mmc.c                   |  478 +++++++++++++++++++++++++++++++
 drivers/serial/serial_s5p.c             |    4 +-
 include/configs/s5p_goni.h              |    6 +
 7 files changed, 597 insertions(+), 2 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-s5pc1xx/mmc.h
 create mode 100644 drivers/mmc/s5p_mmc.c

^ permalink raw reply	[flat|nested] 63+ messages in thread
* [U-Boot] Please pull u-boot-samsung/master
@ 2010-06-02 23:55 Minkyu Kang
  2010-06-06 11:44 ` Tom Rix
  0 siblings, 1 reply; 63+ messages in thread
From: Minkyu Kang @ 2010-06-02 23:55 UTC (permalink / raw)
  To: u-boot

Dear Tom,

Please pull u-boot-samsung/master.
Thanks.

The following changes since commit 922d27b596c179c5a7d68abe45ede5adb1b6589c:
  Minkyu Kang (1):
        Merge branch 'master' of git://git.denx.de/u-boot-arm

are available in the git repository at:

  git://git.denx.de/u-boot-samsung master

Minkyu Kang (2):
      s5pc1xx: gpio: bug fix at gpio_set_pull function
      s5pc1xx: Add support for Samsung Goni board

 MAINTAINERS                        |    9 +-
 MAKEALL                            |    1 +
 Makefile                           |    3 +
 board/samsung/goni/Makefile        |   54 ++++
 board/samsung/goni/config.mk       |   16 +
 board/samsung/goni/goni.c          |   55 ++++
 board/samsung/goni/lowlevel_init.S |  585 ++++++++++++++++++++++++++++++++++++
 board/samsung/goni/mem_setup.S     |  265 ++++++++++++++++
 board/samsung/goni/onenand.c       |   36 +++
 drivers/gpio/s5p_gpio.c            |    2 +-
 include/configs/s5p_goni.h         |  217 +++++++++++++
 11 files changed, 1238 insertions(+), 5 deletions(-)
 create mode 100644 board/samsung/goni/Makefile
 create mode 100644 board/samsung/goni/config.mk
 create mode 100644 board/samsung/goni/goni.c
 create mode 100644 board/samsung/goni/lowlevel_init.S
 create mode 100644 board/samsung/goni/mem_setup.S
 create mode 100644 board/samsung/goni/onenand.c
 create mode 100644 include/configs/s5p_goni.h

^ permalink raw reply	[flat|nested] 63+ messages in thread
* [U-Boot] Please pull u-boot-samsung/master
@ 2010-03-05 10:03 Minkyu Kang
  2010-03-05 20:29 ` Tom
  0 siblings, 1 reply; 63+ messages in thread
From: Minkyu Kang @ 2010-03-05 10:03 UTC (permalink / raw)
  To: u-boot

Dear Tom,

The following changes since commit f687ebf82dbe44dcde5901232ade4f19ecedbf58:
  Minkyu Kang (1):
        Merge branch 'master' of git://git.denx.de/u-boot-arm

are available in the git repository at:

  git://git.denx.de/u-boot-samsung master

Joonyoung Shim (1):
      s3c64xx: Add ifdef at the S3C64XX only codes

Minkyu Kang (2):
      s5pc1xx: support the GPIO interface
      Merge branch 'master' of git://git.denx.de/u-boot-samsung

Naveen Krishna CH (4):
      S5PC100: Moves the Macros to a common header file
      S5PC100: Memory SubSystem Header file, register description(SROMC).
      S5PC100: Function to configure the SROMC registers.
      SAMSUNG: SMDKC100: Adds ethernet support.

 board/samsung/smdkc100/smdkc100.c   |   39 ++++++++++
 cpu/arm1176/cpu.c                   |    2 +
 cpu/arm1176/start.S                 |    4 +
 cpu/arm_cortexa8/s5pc1xx/Makefile   |    2 +
 cpu/arm_cortexa8/s5pc1xx/clock.c    |    7 +--
 cpu/arm_cortexa8/s5pc1xx/gpio.c     |  143 +++++++++++++++++++++++++++++++++++
 cpu/arm_cortexa8/s5pc1xx/sromc.c    |   53 +++++++++++++
 doc/README.s5pc1xx                  |   18 ++++-
 include/asm-arm/arch-s5pc1xx/clk.h  |    6 ++
 include/asm-arm/arch-s5pc1xx/gpio.h |   29 +++++++
 include/asm-arm/arch-s5pc1xx/smc.h  |   53 +++++++++++++
 include/configs/smdkc100.h          |   12 +++-
 12 files changed, 360 insertions(+), 8 deletions(-)
 create mode 100644 cpu/arm_cortexa8/s5pc1xx/gpio.c
 create mode 100644 cpu/arm_cortexa8/s5pc1xx/sromc.c
 create mode 100644 include/asm-arm/arch-s5pc1xx/smc.h

^ permalink raw reply	[flat|nested] 63+ messages in thread
* [U-Boot] Please pull u-boot-samsung/master
@ 2010-01-13  4:25 Minkyu Kang
  2010-01-15 13:28 ` Tom
  0 siblings, 1 reply; 63+ messages in thread
From: Minkyu Kang @ 2010-01-13  4:25 UTC (permalink / raw)
  To: u-boot

Dear Tom,

The following changes since commit 33bf447477ff38eda46529b346677856b53e0f87:
  kevin.morfitt at fearnside-systems.co.uk (1):
        Add a unified s3c24x0 header file

are available in the git repository at:

  git://git.denx.de/u-boot-samsung master

Minkyu Kang (1):
      s5pc1xx: update cache routines

Seunghyeon Rhee (1):
      samsung: fix DMC1_MEM_CFG for s3c64xx

 cpu/arm_cortexa8/s5pc1xx/Makefile                  |    4 +-
 cpu/arm_cortexa8/s5pc1xx/cache.S                   |  120 ++++++++++++++++++++
 include/asm-arm/arch-s3c64xx/s3c6400.h             |    4 +-
 .../asm-arm/arch-s5pc1xx/sys_proto.h               |   27 ++---
 include/configs/smdkc100.h                         |    2 -
 5 files changed, 132 insertions(+), 25 deletions(-)
 create mode 100644 cpu/arm_cortexa8/s5pc1xx/cache.S
 rename cpu/arm_cortexa8/s5pc1xx/cache.c => include/asm-arm/arch-s5pc1xx/sys_proto.h (61%)

^ permalink raw reply	[flat|nested] 63+ messages in thread
* [U-Boot] Please pull u-boot-samsung/master
@ 2009-11-20 10:45 Minkyu Kang
  2009-11-20 22:16 ` Tom
  0 siblings, 1 reply; 63+ messages in thread
From: Minkyu Kang @ 2009-11-20 10:45 UTC (permalink / raw)
  To: u-boot

Dear Tom,

The following changes since commit b91b8f74fe9ded18344c3d03080a4abc07254502:
  Wolfgang Denk (1):
        Merge branch 'master' of /home/wd/git/u-boot/custodians

are available in the git repository at:

  git://git.denx.de/u-boot-samsung master

Minkyu Kang (2):
      s3c64xx: move s3c64xx header files to asm-arm/arch-s3c64xx
      s5pc1xx: serial: fix the error check logic

Seunghyeon Rhee (1):
      S3C6400/SMDK6400: fix stack_setup in start.S

kevin.morfitt at fearnside-systems.co.uk (3):
      Move s3c24x0 header files to asm-arm/arch-s3c24x0/
      Clean-up of s3c24x0 header files
      Add a unified s3c24x0 header file

 board/mpl/vcma9/vcma9.c                      |    2 +-
 board/mpl/vcma9/vcma9.h                      |   16 +-
 board/samsung/smdk2400/smdk2400.c            |    2 +-
 board/samsung/smdk2410/smdk2410.c            |    2 +-
 board/samsung/smdk6400/lowlevel_init.S       |    2 +-
 board/samsung/smdk6400/smdk6400.c            |    2 +-
 board/sbc2410x/sbc2410x.c                    |    2 +-
 board/trab/cmd_trab.c                        |    2 +-
 board/trab/rs485.c                           |    2 +-
 board/trab/rs485.h                           |    2 +-
 board/trab/trab.c                            |    2 +-
 board/trab/trab_fkt.c                        |    2 +-
 board/trab/tsc2000.c                         |    2 +-
 board/trab/vfd.c                             |    2 +-
 cpu/arm1176/cpu.c                            |    2 +-
 cpu/arm1176/s3c64xx/cpu_init.S               |    2 +-
 cpu/arm1176/s3c64xx/reset.S                  |    2 +-
 cpu/arm1176/s3c64xx/speed.c                  |    2 +-
 cpu/arm1176/s3c64xx/timer.c                  |    2 +-
 cpu/arm1176/start.S                          |    9 +-
 cpu/arm920t/s3c24x0/interrupts.c             |    6 +-
 cpu/arm920t/s3c24x0/speed.c                  |   13 +-
 cpu/arm920t/s3c24x0/timer.c                  |   15 +-
 cpu/arm920t/s3c24x0/usb.c                    |   17 +-
 cpu/arm920t/s3c24x0/usb_ohci.c               |   11 +-
 cpu/arm920t/start.S                          |    4 +-
 drivers/i2c/s3c24x0_i2c.c                    |    6 +-
 drivers/mtd/nand/s3c2410_nand.c              |    2 +-
 drivers/mtd/nand/s3c64xx.c                   |    2 +-
 drivers/net/smc911x.c                        |    6 +
 drivers/rtc/s3c24x0_rtc.c                    |    6 +-
 drivers/serial/s3c64xx.c                     |    2 +-
 drivers/serial/serial_s3c24x0.c              |    6 +-
 drivers/serial/serial_s5pc1xx.c              |   24 +-
 drivers/usb/host/ohci-hcd.c                  |    3 +-
 drivers/usb/host/s3c64xx-hcd.c               |    2 +-
 include/{ => asm-arm/arch-s3c24x0}/s3c2400.h |   18 +-
 include/{ => asm-arm/arch-s3c24x0}/s3c2410.h |   19 +-
 include/asm-arm/arch-s3c24x0/s3c24x0.h       |  652 +++++++++++++++++++++++++
 include/asm-arm/arch-s3c24x0/s3c24x0_cpu.h   |   27 +
 include/{ => asm-arm/arch-s3c64xx}/s3c6400.h |    0 
 include/{ => asm-arm/arch-s3c64xx}/s3c64x0.h |    0 
 include/common.h                             |    5 +-
 include/configs/VCMA9.h                      |    7 +-
 include/configs/sbc2410x.h                   |    7 +-
 include/configs/smdk2400.h                   |    7 +-
 include/configs/smdk2410.h                   |    7 +-
 include/configs/smdk6400.h                   |    2 -
 include/configs/trab.h                       |    9 +-
 include/s3c24x0.h                            |  656 --------------------------
 50 files changed, 816 insertions(+), 786 deletions(-)
 rename include/{ => asm-arm/arch-s3c24x0}/s3c2400.h (98%)
 rename include/{ => asm-arm/arch-s3c24x0}/s3c2410.h (98%)
 create mode 100644 include/asm-arm/arch-s3c24x0/s3c24x0.h
 create mode 100644 include/asm-arm/arch-s3c24x0/s3c24x0_cpu.h
 rename include/{ => asm-arm/arch-s3c64xx}/s3c6400.h (100%)
 rename include/{ => asm-arm/arch-s3c64xx}/s3c64x0.h (100%)
 delete mode 100644 include/s3c24x0.h

^ permalink raw reply	[flat|nested] 63+ messages in thread
* [U-Boot] Please pull u-boot-samsung/master
@ 2009-10-12  7:38 Minkyu Kang
  2009-10-12 11:16 ` Tom Rix
  2009-10-14  3:31 ` Tom Rix
  0 siblings, 2 replies; 63+ messages in thread
From: Minkyu Kang @ 2009-10-12  7:38 UTC (permalink / raw)
  To: u-boot

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 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                            |    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

^ permalink raw reply	[flat|nested] 63+ messages in thread

end of thread, other threads:[~2012-06-23  7:18 UTC | newest]

Thread overview: 63+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-04-13 10:02 [U-Boot] Please pull u-boot-samsung/master Minkyu Kang
2010-04-17 22:07 ` Tom Rix
  -- strict thread matches above, loose matches on Subject: below --
2012-06-18  8:50 [U-Boot] please " Minkyu Kang
2012-06-23  7:18 ` Albert ARIBAUD
2012-04-25  7:51 Minkyu Kang
2012-04-26 21:26 ` Albert ARIBAUD
2012-03-08 10:14 Minkyu Kang
2012-03-27  9:44 ` Minkyu Kang
2012-03-27 20:09   ` Albert ARIBAUD
2012-02-10  1:01 Minkyu Kang
2012-02-10 19:59 ` Albert ARIBAUD
2011-12-09  9:15 Minkyu Kang
2011-12-09 16:39 ` Albert ARIBAUD
2011-10-28  8:19 Minkyu Kang
2011-10-28 15:17 ` Albert ARIBAUD
2011-09-02  8:05 Minkyu Kang
2011-09-03 19:23 ` Albert ARIBAUD
2011-08-19  5:34 Minkyu Kang
2011-08-19 18:22 ` Albert ARIBAUD
2011-05-26 10:43 [U-Boot] Please " Minkyu Kang
2011-05-26 10:59 ` Albert ARIBAUD
2011-05-26  5:22 Minkyu Kang
2011-05-26  5:49 ` Albert ARIBAUD
2011-05-26  6:24   ` Minkyu Kang
2011-05-26  8:13     ` Albert ARIBAUD
2011-05-26 10:40       ` Minkyu Kang
2011-03-24  6:58 Minkyu Kang
2011-03-24 13:57 ` Albert ARIBAUD
2011-03-25  2:02   ` Minkyu Kang
2011-03-25  7:23     ` Albert ARIBAUD
2011-03-25  9:59       ` Minkyu Kang
2011-03-26 14:59         ` Albert ARIBAUD
2011-01-27 12:29 Minkyu Kang
2011-01-27 22:11 ` Albert ARIBAUD
2010-11-30  8:56 Minkyu Kang
2010-11-30 20:32 ` Wolfgang Denk
2010-10-28  7:29 Minkyu Kang
2010-10-29 19:48 ` Wolfgang Denk
2010-08-31 10:27 Minkyu Kang
2010-09-07 22:04 ` Wolfgang Denk
2010-08-03  7:54 Minkyu Kang
2010-08-03 22:35 ` Wolfgang Denk
2010-06-02 23:55 Minkyu Kang
2010-06-06 11:44 ` Tom Rix
2010-06-09  0:08   ` Minkyu Kang
2010-06-15  4:23     ` Tom Rix
2010-03-05 10:03 Minkyu Kang
2010-03-05 20:29 ` Tom
2010-03-08  6:08   ` Minkyu Kang
2010-03-12 19:43     ` Tom
2010-03-13 16:32     ` Tom
2010-01-13  4:25 Minkyu Kang
2010-01-15 13:28 ` Tom
2009-11-20 10:45 Minkyu Kang
2009-11-20 22:16 ` Tom
2009-10-12  7:38 Minkyu Kang
2009-10-12 11:16 ` Tom Rix
2009-10-14  3:31 ` Tom Rix
2009-10-14 10:16   ` Abdoulaye Walsimou Gaye
2009-10-14 11:28   ` Stefan Roese
2009-10-14 12:39     ` Tom Rix
2009-10-14 12:46     ` Tom Rix
2009-10-14 13:23       ` Minkyu Kang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox