From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hans de Goede Date: Tue, 26 Jan 2016 20:51:38 +0100 Subject: [U-Boot] Please pull u-boot-sunxi master Message-ID: <56A7CE4A.7060301@redhat.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Tom, Here is the first sunxi pull-req for v2016.04, it contains various fixes / improvements all over the place. The following changes since commit ac01603da4598b4b34ff3a5c428aa925daa12b60: checkpatch: ignore request to use ether_addr_copy() (2016-01-25 11:17:52 -0500) are available in the git repository at: http://git.denx.de/u-boot-sunxi.git master for you to fetch changes up to 2ca02995791484007373ae51b3e7148511f1479b: mvtwsi: Fix breakage introduced by "Fix mvtwsi not working on sun6i and newer sunxi SoCs" (2016-01-26 17:58:02 +0100) ---------------------------------------------------------------- Chen-Yu Tsai (9): sunxi: Support Secure Memory Touch Arbiter (SMTA) in sun8i H3 sunxi: Support H3 CCU security switches sunxi: Support PSCI ops on Allwinner H3 sunxi: Enable booting non-secure and virtualization for H3 power: axp818: Remove duplicate register definition macros power: axp: merge separate DLDO functions into 1 power: axp818: Add support for DLDO and ELDO regulators sunxi: h8_homlet_v2: Drop LDO settings from defconfig sunxi: power: axp818: Enable support for ALDOs Hans de Goede (4): sunxi: Implement poweroff support for axp152 pmic sunxi: Implement poweroff support for axp221 pmic sunxi: Bananapro: Set LDO4 to 2.5V mvtwsi: Fix breakage introduced by "Fix mvtwsi not working on sun6i and newer sunxi SoCs" Michael van Slingerland (1): sunxi: Implement poweroff support for axp209 pmic Vishnu Patekar (4): sunxi: Redundant code cleanup from a83t dram init sunxi: Groundwork to support new dram type for A83T sunxi: Add support for LPDDR3 for A83T sunxi: Add suport for A83T based Banana-pi M3 Board arch/arm/cpu/armv7/sunxi/Makefile | 1 + arch/arm/cpu/armv7/sunxi/board.c | 4 +- arch/arm/cpu/armv7/sunxi/clock.c | 5 ++ arch/arm/cpu/armv7/sunxi/clock_sun6i.c | 13 +++ arch/arm/cpu/armv7/sunxi/dram_sun8i_a83t.c | 70 ++++++++++++--- arch/arm/cpu/armv7/sunxi/psci_sun6i.S | 4 +- arch/arm/cpu/armv7/sunxi/tzpc.c | 11 ++- arch/arm/dts/Makefile | 3 +- arch/arm/dts/sun8i-a83t-sinovoip-bpi-m3.dts | 64 ++++++++++++++ arch/arm/include/asm/arch-sunxi/clock.h | 1 + arch/arm/include/asm/arch-sunxi/clock_sun6i.h | 7 ++ arch/arm/include/asm/arch-sunxi/dram_sun8i_a83t.h | 9 +- arch/arm/include/asm/arch-sunxi/tzpc.h | 13 ++- board/sunxi/Kconfig | 9 ++ board/sunxi/MAINTAINERS | 5 ++ board/sunxi/board.c | 16 ++-- configs/Bananapro_defconfig | 1 + configs/Sinovoip_BPI_M3_defconfig | 26 ++++++ configs/h8_homlet_v2_defconfig | 3 - drivers/i2c/mvtwsi.c | 4 +- drivers/power/Kconfig | 28 ++++-- drivers/power/axp152.c | 12 +++ drivers/power/axp209.c | 12 +++ drivers/power/axp221.c | 100 +++++++--------------- drivers/power/axp818.c | 81 ++++++++++++++++++ include/axp221.h | 2 + include/axp818.h | 8 -- include/axp_pmic.h | 5 +- 28 files changed, 395 insertions(+), 122 deletions(-) create mode 100644 arch/arm/dts/sun8i-a83t-sinovoip-bpi-m3.dts create mode 100644 configs/Sinovoip_BPI_M3_defconfig Regards, Hans