From: Minkyu Kang <mk7.kang@samsung.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [v2] please pull u-boot-samsung master
Date: Thu, 05 Nov 2015 15:36:04 +0900 [thread overview]
Message-ID: <563AF8D4.9070307@samsung.com> (raw)
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.
next reply other threads:[~2015-11-05 6:36 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-05 6:36 Minkyu Kang [this message]
2015-11-05 15:50 ` [U-Boot] [v2] please pull u-boot-samsung master Tom Rini
[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
[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
-- strict thread matches above, loose matches on Subject: below --
2015-03-04 12:11 [U-Boot] " Minkyu Kang
2015-03-04 12:28 ` [U-Boot] [v2] " Minkyu Kang
2015-03-04 22:15 ` Tom Rini
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=563AF8D4.9070307@samsung.com \
--to=mk7.kang@samsung.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox