
The following changes since commit e97f9d817e600cd6f43d1d0da76f5787e33a5c56:
Merge branch 'u-boot-ti/master' into 'u-boot-arm/master' (2014-01-29 14:07:50 +0100)
are available in the git repository at:
git://git.denx.de/u-boot-samsung
for you to fetch changes up to e25bfecf7ba54a5b56cf991af8a2f2bb22994293:
exynos: clock: use the clear and set bits macros. (2014-02-10 16:01:44 +0900)
---------------------------------------------------------------- Inha Song (3): serial: s5p: set automatically clears after resetting Rx FIFO exynos: clock: fixed that cfg is set to wrong value. exynos: clock: use the clear and set bits macros.
Minkyu Kang (3): exynos: pinmux: sort the list of peripherals exynos: pinmux: remove unnecessary define exynos: pinmux: remove unnecessary routine
Piotr Wilczek (8): arm:exynos: add cpu revision arm:s5pc110: add cpu revision board:samsung:common: set envs with board unified information board:samsung:goni: add env variables describing platform board:samsung:universal: add env variables describing platform board:samsung:trats: add env variables describing platform board:samsung:trats2: add env variables describing platform board:samsung:trats/trats2: enable boot with appended and separated DTB
Przemyslaw Marczak (12): s5p: gpio: change gpio coding method for s5p gpio. trats2: Code cleanup. samsung: common: Add file for common functions, draw_logo() cleanup. common: lcd.c: fix data abort exception when try to access bmp header lib: tizen: change Tizen logo with the new one. video: exynos: fimd: add support for various display color modes samsung: boards: update display configs with 16bpp mode. samsung: misc: Add LCD download menu. trats: add LCD download menu support trats2: add LCD download menu support universal: add LCD download menu support config: trats: trats2: extend dfu_alt_info by env update settings
Vivek Gautam (2): exynos5250: usb: Fix VBus gpio numbers for ehci and xhci controllers smdk5250: Remove 'board_usb_vbus_init()' function
arch/arm/cpu/armv7/exynos/clock.c | 84 +- arch/arm/cpu/armv7/exynos/pinmux.c | 7 +- arch/arm/include/asm/arch-exynos/cpu.h | 8 +- arch/arm/include/asm/arch-exynos/gpio.h | 245 +- arch/arm/include/asm/arch-exynos/periph.h | 3 +- arch/arm/include/asm/arch-s5pc1xx/cpu.h | 7 + arch/arm/include/asm/arch-s5pc1xx/gpio.h | 47 +- board/samsung/common/Makefile | 1 + board/samsung/common/dfu_sample_env.txt | 9 + board/samsung/common/misc.c | 411 ++ board/samsung/dts/exynos5250-smdk5250.dts | 2 +- board/samsung/dts/exynos5250-snow.dts | 4 +- board/samsung/goni/goni.c | 17 + board/samsung/smdk5250/smdk5250.c | 19 - board/samsung/trats/trats.c | 21 +- board/samsung/trats2/trats2.c | 34 +- board/samsung/universal_c210/universal.c | 21 +- common/lcd.c | 27 +- drivers/gpio/s5p_gpio.c | 15 +- drivers/power/battery/bat_trats2.c | 2 +- drivers/serial/serial_s5p.c | 4 +- drivers/video/exynos_fb.c | 28 - drivers/video/exynos_fimd.c | 15 +- include/configs/s5p_goni.h | 10 +- include/configs/s5pc210_universal.h | 46 +- include/configs/trats.h | 50 +- include/configs/trats2.h | 47 +- include/lcd.h | 2 + include/power/max77686_pmic.h | 2 + include/power/pmic.h | 1 - include/samsung/misc.h | 29 + lib/tizen/tizen.c | 21 +- lib/tizen/tizen_hd_logo.h | 5057 --------------- lib/tizen/tizen_hd_logo_data.h | 15 - lib/tizen/tizen_logo_16bpp.h |10025 +++++++++++++++++++++++++++++ lib/tizen/tizen_logo_16bpp_gzip.h | 727 +++ 36 files changed, 11605 insertions(+), 5458 deletions(-) create mode 100644 board/samsung/common/dfu_sample_env.txt create mode 100644 board/samsung/common/misc.c create mode 100644 include/samsung/misc.h delete mode 100644 lib/tizen/tizen_hd_logo.h delete mode 100644 lib/tizen/tizen_hd_logo_data.h create mode 100644 lib/tizen/tizen_logo_16bpp.h create mode 100644 lib/tizen/tizen_logo_16bpp_gzip.h