
Hi Tom,
On Fri, 6 Jun 2014 17:56:51 -0400, Tom Rini trini@ti.com wrote:
Hello,
The following changes since commit cc49da249cf2f380d2fed5571fad65ce6494fc95:
Merge branch 'u-boot-samsung/master' into 'u-boot-arm/master' (2014-06-02 08:43:48 +0200)
are available in the git repository at:
git://git.denx.de/u-boot-ti.git master
for you to fetch changes up to 83bad1026b9e3a4f6b7783cc1cbb434c1bbd3fa2:
arm:am43xx: Add TPS65218 support to scale voltages up (2014-06-06 17:46:16 -0400)
Brian Norris (2): mtd: nand: don't use read_buf for 8-bit ONFI transfers mtd: nand: force NAND_CMD_READID onto 8-bit bus
David Mosberger (1): mtd: nand: fix GET/SET_FEATURES address on 16-bit devices
Hannes Petermaier (6): arch-am33xx: Add defines for timer0-7 board/BuR/common: introduce usage of CONFIG_SYS_GENERIC_BOARD board/BuR/tseries: Add support for using 8-bit on eMMC board/BuR/tseries: only run gpmc_init(...) in NAND-build board/BuR/common: Add CONFIG_CMD_I2C board/BuR/tseries: cosmetic changes
Jeroen Hofstee (1): tam3517: fix NAND detection
Lokesh Vutla (2): ARM: AM43xx: Fix mmcboot command in EXTRA_ENV_SETTINGS ARM: AM43xx: Fix UART clocks enabling
Murali Karicheri (1): keystone: init: enable UART1 to be able use it from kernel
Sourav Poddar (2): am43xx_evm: Add qspiboot target ti: qspi: populate slave device to set flash quad bit.
Tom Rini (6): arm:am33xx: Make dram_init call sdram_init() in some contexts arm:am33xx: Rework s_init and add board_early_init_f am43xx: Only read the MPU frequency bits of CTRL_DEV_ATTR arm:am33xx: Add a scale_vcores() hook power: Add support for the TPS65218 PMIC arm:am43xx: Add TPS65218 support to scale voltages up
WingMan Kwok (1): keystone: k2hk: enable support of nand ecclayout command
pekon gupta (12): mtd: nand: omap_elm: remove #include omap_gpmc.h mtd: nand: omap_elm: use bch_type instead of nibble count to differentiate between BCH4/BCH8/BCH16 mtd: nand: omap_elm: use macros for register definitions mtd: nand: omap_gpmc: remove unused members of 'struct nand_bch_priv' mtd: nand: omap_gpmc: rename struct nand_bch_priv to struct omap_nand_info mtd: nand: omap_gpmc: minor cleanup of omap_correct_data_bch mtd: nand: omap: fix error-codes returned from omap-elm driver mtd: nand: omap: add CONFIG_SYS_NAND_BUSWIDTH_16BIT to indicate NAND device bus-width omap3: remove remnant macros GPMC_NAND_ECC_LP_x8_LAYOUT and GPMC_NAND_ECC_LP_x16_LAYOUT mtd: nand: omap_gpmc: use macro for register definitions mtd: nand: omap: add support for BCH16_ECC - NAND driver updates am335x: update README for BCH16
arch/arm/cpu/armv7/am33xx/board.c | 20 +- arch/arm/cpu/armv7/am33xx/clock.c | 11 ++ arch/arm/cpu/armv7/am33xx/clock_am43xx.c | 9 + arch/arm/cpu/armv7/am33xx/emif4.c | 4 + arch/arm/cpu/armv7/keystone/init.c | 9 + arch/arm/cpu/armv7/omap3/mem.c | 12 -- arch/arm/include/asm/arch-am33xx/clock.h | 1 + arch/arm/include/asm/arch-am33xx/cpu.h | 35 +++- arch/arm/include/asm/arch-keystone/hardware-k2hk.h | 2 - arch/arm/include/asm/arch-keystone/hardware.h | 3 + arch/arm/include/asm/arch-omap3/mem.h | 8 - board/BuR/tseries/board.c | 2 + board/BuR/tseries/mux.c | 9 +- board/compulab/cm_t35/cm_t35.c | 12 +- board/ti/am43xx/Makefile | 2 +- board/ti/am43xx/board.c | 55 +++++- boards.cfg | 1 + doc/README.nand | 60 ++++++ drivers/mtd/nand/am335x_spl_bch.c | 2 +- drivers/mtd/nand/atmel_nand.c | 2 +- drivers/mtd/nand/nand_base.c | 11 +- drivers/mtd/nand/nand_spl_simple.c | 2 +- drivers/mtd/nand/omap_elm.c | 28 ++- drivers/mtd/nand/omap_gpmc.c | 193 +++++++++++++------- drivers/power/pmic/Makefile | 1 + drivers/power/pmic/pmic_tps65218.c | 97 ++++++++++ drivers/spi/ti_qspi.c | 1 + include/configs/am3517_crane.h | 1 + include/configs/am43xx_evm.h | 45 ++++- include/configs/bur_am335x_common.h | 4 +- include/configs/cm_t335.h | 1 - include/configs/cm_t35.h | 1 - include/configs/devkit8000.h | 1 + include/configs/dig297.h | 1 + include/configs/k2hk_evm.h | 4 +- include/configs/omap3_beagle.h | 1 + include/configs/omap3_evm_common.h | 2 +- include/configs/omap3_igep00x0.h | 1 + include/configs/omap3_logic.h | 1 + include/configs/omap3_overo.h | 1 + include/configs/omap3_zoom1.h | 1 + include/configs/pengwyn.h | 1 - include/configs/tam3517-common.h | 2 + include/configs/tao3530.h | 2 +- include/configs/ti_am335x_common.h | 9 + include/configs/ti_armv7_common.h | 3 +- include/configs/tseries.h | 1 - include/linux/mtd/nand.h | 19 ++ include/linux/mtd/omap_elm.h | 11 +- include/linux/mtd/omap_gpmc.h | 11 +- include/power/tps65218.h | 63 +++++++ 51 files changed, 624 insertions(+), 155 deletions(-) create mode 100644 drivers/power/pmic/pmic_tps65218.c create mode 100644 include/power/tps65218.h
Applied to u-boot-arm/master, thanks!
Amicalement,