From: Minkyu Kang <mk7.kang@samsung.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v3 0/12] Introduce Samsung's new board Trats2
Date: Tue, 21 May 2013 17:35:46 +0900 [thread overview]
Message-ID: <519B31E2.1050002@samsung.com> (raw)
In-Reply-To: <1368795355-6717-1-git-send-email-p.wilczek@samsung.com>
Dear Piotr Wilczek,
On 17/05/13 21:55, Piotr Wilczek wrote:
> This patchset add support for a new Samsung board Trats2.
> The board use now new i2c framework.
> Support for new multi function pmic max77693 is added.
>
> This patchset depends on:
> commit: 8faefadb7305b95d02df38bd2ea61429d59483e5
> Author: Marc Dietrich <marvin24@gmx.de> 2013-03-29 08:57:10
> disk: fix unaligned access in efi partitions
>
> Changes in v3:
> - I2C_GET_BUS replaced by i2c_get_bus_num() function
> - use i2c_set_bus_num() instead I2C_SET_BUS maro
> That macro should be completly replaced when all i2c drivers
> are adapted to new i2c framework
> - add Maintainer entry
> - changed T-flash detect pin to GPX3[3]
> - removed MMC_ASYNC
> - swiched to new i2c framework, use hardware and soft i2c
> - adapted s3c24x0 i2c driver to new i2c framework
>
> Changes in v2:
> - changed printf to debug
> - removed lcd callback in panel_info
> - changed i2c from hardware to software
> - use max77693 multifunction pmic
>
> Piotr Wilczek (12):
> pmic:max77686: add function to set voltage and mode
> drivers:power:max77693: add support for new multi function pmic
> max77693
> arm:exynos:gpio: fix s5p_gpio_part_max for exynos4x12
> i2c:multi_i2c: adapt file to new i2c framework
> power: fix pmic command
> drivers:power:power_i2c: adapt file to new i2c framework
> driver:i2c:s3c24x0: adapt driver to new i2c framework
> drivers:video:s6e8ax0: change data_to_send array to static
> drivers:lcd: fix unaligned access on lcd
> samsung: trats2: add support for new board Trats2
> board:VCMA9 switch to ne i2c framework
> board:smdk5250: switch to new i2c framework
>
> MAINTAINERS | 4 +
> Makefile | 1 +
> arch/arm/include/asm/arch-exynos/gpio.h | 17 +-
> board/samsung/common/multi_i2c.c | 37 ++-
> board/samsung/smdk5250/smdk5250.c | 2 +-
> board/samsung/trats2/Makefile | 50 +++
> board/samsung/trats2/trats2.c | 533 +++++++++++++++++++++++++++++++
> boards.cfg | 1 +
> common/lcd.c | 12 +-
> drivers/i2c/Makefile | 2 +-
> drivers/i2c/s3c24x0_i2c.c | 100 +++---
> drivers/power/battery/Makefile | 1 +
> drivers/power/battery/bat_trats2.c | 81 +++++
> drivers/power/mfd/Makefile | 49 +++
> drivers/power/mfd/fg_max77693.c | 143 +++++++++
> drivers/power/mfd/muic_max77693.c | 91 ++++++
> drivers/power/mfd/pmic_max77693.c | 110 +++++++
> drivers/power/pmic/pmic_max77686.c | 186 +++++++++++
> drivers/power/power_core.c | 8 +
> drivers/power/power_i2c.c | 6 +
> drivers/video/s6e8ax0.c | 26 +-
> include/configs/VCMA9.h | 9 +-
> include/configs/exynos5250-dt.h | 8 +-
> include/configs/trats2.h | 326 +++++++++++++++++++
> include/power/max77686_pmic.h | 11 +
> include/power/max77693_fg.h | 65 ++++
> include/power/max77693_muic.h | 90 ++++++
> include/power/max77693_pmic.h | 56 ++++
> 28 files changed, 1949 insertions(+), 76 deletions(-)
> create mode 100644 board/samsung/trats2/Makefile
> create mode 100644 board/samsung/trats2/trats2.c
> create mode 100644 drivers/power/battery/bat_trats2.c
> create mode 100644 drivers/power/mfd/Makefile
> create mode 100644 drivers/power/mfd/fg_max77693.c
> create mode 100644 drivers/power/mfd/muic_max77693.c
> create mode 100644 drivers/power/mfd/pmic_max77693.c
> create mode 100644 include/configs/trats2.h
> create mode 100644 include/power/max77693_fg.h
> create mode 100644 include/power/max77693_muic.h
> create mode 100644 include/power/max77693_pmic.h
This patchset doesn't match with subject of patchset.
Why this patchset contain many other subjects in it?
I think GPIO, I2C, LCD, Power.. are not related with supporting the trats2.
Please split them.
Thanks,
Minkyu Kang.
next prev parent reply other threads:[~2013-05-21 8:35 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-17 12:55 [U-Boot] [PATCH v3 0/12] Introduce Samsung's new board Trats2 Piotr Wilczek
2013-05-17 12:55 ` [U-Boot] [PATCH v3 01/12] pmic:max77686: add function to set voltage and mode Piotr Wilczek
2013-05-17 12:55 ` [U-Boot] [PATCH v3 02/12] drivers:power:max77693: add support for new multi function pmic max77693 Piotr Wilczek
2013-05-17 12:55 ` [U-Boot] [PATCH v3 03/12] arm:exynos:gpio: fix s5p_gpio_part_max for exynos4x12 Piotr Wilczek
2013-05-17 12:55 ` [U-Boot] [PATCH v3 04/12] i2c:multi_i2c: adapt file to new i2c framework Piotr Wilczek
2013-05-17 12:55 ` [U-Boot] [PATCH v3 05/12] power: fix pmic command Piotr Wilczek
2013-05-17 12:55 ` [U-Boot] [PATCH v3 06/12] drivers:power:power_i2c: adapt file to new i2c framework Piotr Wilczek
2013-05-17 12:55 ` [U-Boot] [PATCH v3 07/12] driver:i2c:s3c24x0: adapt driver " Piotr Wilczek
2013-05-17 12:55 ` [U-Boot] [PATCH v3 08/12] drivers:video:s6e8ax0: change data_to_send array to static Piotr Wilczek
2013-05-17 12:55 ` [U-Boot] [PATCH v3 09/12] drivers:lcd: fix unaligned access on lcd Piotr Wilczek
2013-05-17 12:55 ` [U-Boot] [PATCH v3 10/12] samsung: trats2: add support for new board Trats2 Piotr Wilczek
2013-05-17 12:55 ` [U-Boot] [PATCH v3 11/12] board:VCMA9 switch to ne i2c framework Piotr Wilczek
2013-05-17 12:55 ` [U-Boot] [PATCH v3 12/12] board:smdk5250: switch to new " Piotr Wilczek
2013-05-21 8:35 ` Minkyu Kang [this message]
2013-05-21 9:00 ` [U-Boot] [PATCH v3 0/12] Introduce Samsung's new board Trats2 Piotr Wilczek
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=519B31E2.1050002@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