From mboxrd@z Thu Jan 1 00:00:00 1970 From: Piotr Wilczek Date: Fri, 17 May 2013 14:55:43 +0200 Subject: [U-Boot] [PATCH v3 0/12] Introduce Samsung's new board Trats2 Message-ID: <1368795355-6717-1-git-send-email-p.wilczek@samsung.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de 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 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 -- 1.7.9.5