public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] please pull u-boot-samsung master
@ 2015-03-04 12:11 Minkyu Kang
  2015-03-04 12:28 ` [U-Boot] [v2] " Minkyu Kang
  0 siblings, 1 reply; 10+ messages in thread
From: Minkyu Kang @ 2015-03-04 12:11 UTC (permalink / raw)
  To: u-boot

Dear Tom,

The following changes since commit 19e5118d1c4c9bd2dc9e52355774c8ea73839b5b:

  mpc837xerdb: "fix Calling __hwconfig without a buffer" warning (2015-03-02 15:11:36 -0500)

are available in the git repository at:

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

for you to fetch changes up to c8b71a35289112f77691df0d0b4a97ef19dac87b:

  samsung: board: fix: Define loop iterator as an unsigned int to suppress gcc 4.8 warning (2015-03-04 20:01:01 +0900)

----------------------------------------------------------------
?ukasz Majewski (1):
      samsung: board: fix: Define loop iterator as an unsigned int to suppress gcc 4.8 warning

 board/samsung/common/board.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
-- 
Thanks,
Minkyu Kang.

^ permalink raw reply	[flat|nested] 10+ messages in thread
* [U-Boot] [v2] please pull u-boot-samsung master
@ 2015-11-05  6:36 Minkyu Kang
  2015-11-05 15:50 ` Tom Rini
  0 siblings, 1 reply; 10+ messages in thread
From: Minkyu Kang @ 2015-11-05  6:36 UTC (permalink / raw)
  To: u-boot

Dear Tom,

The following changes since commit 0e067a65f57189703668826d9841fea477026bf6:

  x86: Select the ns16550 debug UART for minnowmax, chromebook_link (2015-10-30 18:04:14 -0400)

are available in the git repository at:

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

for you to fetch changes up to 58cb44cf6623faeebd9b04ac44cf11d2eb39ea36:

  sandbox: adc: Add missing header file (2015-11-05 12:58:04 +0900)

----------------------------------------------------------------
Minkyu Kang (5):
      arm: exynos: clean up checkpatch issues
      smdkv310: clean up checkpatch issues
      smdk2410: clean up checkpatch issues
      odroid: clean up checkpatch issues
      samsung: clean up checkpatch issues

Przemyslaw Marczak (17):
      samsung: board/misc: check returned pointer for get_board_type() calls
      s5p: cpu_info: print "cpu-model" if exists in dts
      Peach-Pi: dts: add cpu-model string
      Exynos5422/5800: set cpu id to 0x5422
      dm: pmic: add s2mps11 PMIC I/O driver
      dm: regulator: add function device_get_supply_regulator()
      dm: adc: add simple ADC uclass implementation
      dm: adc: add Exynos54xx compatible ADC driver
      Odroid-XU3: enable s2mps11 PMIC support
      Exynos54xx: dts: add ADC node
      Odroid-XU3: dts: enable ADC, with request for pre-reloc bind
      exynos5-dt-types: add board detection for Odroid XU3/XU3L/XU4.
      sandbox: add ADC driver
      sandbox: add ADC unit tests
      Exynos4412: pinmux: disable pull for MMC pins
      s5p sdhci: call pinmux for card's gpio pins before use them
      sandbox: adc: Add missing header file

 arch/arm/cpu/armv7/s5p-common/cpu_info.c   |  14 +-
 arch/arm/dts/exynos5422-odroidxu3.dts      |  12 +
 arch/arm/dts/exynos54xx.dtsi               |   7 +
 arch/arm/dts/exynos5800-peach-pi.dts       |   1 +
 arch/arm/mach-exynos/clock.c               |  16 +-
 arch/arm/mach-exynos/clock_init_exynos5.c  |   2 +-
 arch/arm/mach-exynos/common_setup.h        |   4 +-
 arch/arm/mach-exynos/dmc_init_ddr3.c       |   8 +-
 arch/arm/mach-exynos/include/mach/adc.h    |  44 ++++
 arch/arm/mach-exynos/include/mach/cpu.h    |   6 +-
 arch/arm/mach-exynos/include/mach/gpio.h   |   4 +-
 arch/arm/mach-exynos/pinmux.c              |   4 +-
 arch/arm/mach-exynos/power.c               |   2 +-
 arch/sandbox/dts/sandbox_pmic.dtsi         |   2 +-
 arch/sandbox/dts/test.dts                  |   6 +
 board/samsung/common/Makefile              |   5 +-
 board/samsung/common/board.c               |   4 +-
 board/samsung/common/exynos5-dt-types.c    | 196 ++++++++++++++
 board/samsung/common/exynos5-dt.c          |  12 +
 board/samsung/common/misc.c                |  10 +-
 board/samsung/odroid/odroid.c              |  15 +-
 board/samsung/smdk2410/smdk2410.c          |  10 +-
 board/samsung/smdkv310/smdkv310.c          |   8 +-
 configs/odroid-xu3_defconfig               |   5 +
 configs/sandbox_defconfig                  |   2 +
 doc/device-tree-bindings/adc/adc.txt       |  62 +++++
 doc/device-tree-bindings/exynos/soc.txt    |  21 ++
 doc/device-tree-bindings/pmic/s2mps11.txt  |  17 ++
 drivers/Kconfig                            |   2 +
 drivers/Makefile                           |   1 +
 drivers/adc/Kconfig                        |  30 +++
 drivers/adc/Makefile                       |  10 +
 drivers/adc/adc-uclass.c                   | 409 +++++++++++++++++++++++++++++
 drivers/adc/exynos-adc.c                   | 145 ++++++++++
 drivers/adc/sandbox.c                      | 174 ++++++++++++
 drivers/mmc/s5p_sdhci.c                    |  14 +-
 drivers/power/pmic/Kconfig                 |  14 +
 drivers/power/pmic/Makefile                |   1 +
 drivers/power/pmic/s2mps11.c               |  62 +++++
 drivers/power/regulator/regulator-uclass.c |   7 +
 include/adc.h                              | 288 ++++++++++++++++++++
 include/configs/odroid_xu3.h               |  12 +
 include/dm/uclass-id.h                     |   1 +
 include/power/regulator.h                  |  16 ++
 include/power/s2mps11.h                    | 109 ++++++++
 include/power/sandbox_pmic.h               |   4 +
 include/samsung/exynos5-dt-types.h         |  27 ++
 include/sandbox-adc.h                      |  31 +++
 test/dm/Makefile                           |   1 +
 test/dm/adc.c                              | 165 ++++++++++++
 50 files changed, 1966 insertions(+), 56 deletions(-)
 create mode 100644 board/samsung/common/exynos5-dt-types.c
 create mode 100644 doc/device-tree-bindings/adc/adc.txt
 create mode 100644 doc/device-tree-bindings/exynos/soc.txt
 create mode 100644 doc/device-tree-bindings/pmic/s2mps11.txt
 create mode 100644 drivers/adc/Kconfig
 create mode 100644 drivers/adc/Makefile
 create mode 100644 drivers/adc/adc-uclass.c
 create mode 100644 drivers/adc/exynos-adc.c
 create mode 100644 drivers/adc/sandbox.c
 create mode 100644 drivers/power/pmic/s2mps11.c
 create mode 100644 include/adc.h
 create mode 100644 include/power/s2mps11.h
 create mode 100644 include/samsung/exynos5-dt-types.h
 create mode 100644 include/sandbox-adc.h
 create mode 100644 test/dm/adc.c
-- 
Thanks,
Minkyu Kang.

^ permalink raw reply	[flat|nested] 10+ messages in thread
[parent not found: <CGME20190104003458epcas1p1b7d9e3bab37f10636a21ff1c84204d9e@epcas1p1.samsung.com>]
[parent not found: <CGME20190312082337epcas1p42f7881315d62e035434635fc48e72ee8@epcas1p4.samsung.com>]

end of thread, other threads:[~2019-03-15 15:57 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-04 12:11 [U-Boot] please pull u-boot-samsung master Minkyu Kang
2015-03-04 12:28 ` [U-Boot] [v2] " Minkyu Kang
2015-03-04 22:15   ` Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2015-11-05  6:36 Minkyu Kang
2015-11-05 15:50 ` Tom Rini
     [not found] <CGME20190104003458epcas1p1b7d9e3bab37f10636a21ff1c84204d9e@epcas1p1.samsung.com>
2019-01-04  0:34 ` [U-Boot] [V2] " Minkyu Kang
2019-01-04 13:11   ` Tom Rini
2019-01-04 14:18     ` Minkyu Kang
     [not found] <CGME20190312082337epcas1p42f7881315d62e035434635fc48e72ee8@epcas1p4.samsung.com>
2019-03-12  8:23 ` [U-Boot] " Minkyu Kang
2019-03-14  0:32   ` Tom Rini
2019-03-14  4:12     ` [U-Boot] [v2] " Minkyu Kang
2019-03-15 15:57       ` Tom Rini

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