From mboxrd@z Thu Jan 1 00:00:00 1970 From: Minkyu Kang Date: Fri, 05 Sep 2014 20:42:20 +0900 Subject: [U-Boot] [PATCH V5 0/9] peach_pit: Add support for FIMD, DP and parade chip In-Reply-To: <1409916218-18466-1-git-send-email-ajaykumar.rs@samsung.com> References: <1409916218-18466-1-git-send-email-ajaykumar.rs@samsung.com> Message-ID: <5409A19C.9060902@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 On 05/09/14 20:23, Ajay Kumar wrote: > Patchset V1: > https://www.mail-archive.com/u-boot at lists.denx.de/msg140596.html > > Patchset V2: > https://www.mail-archive.com/u-boot at lists.denx.de/msg141203.html > > Patchset V3: > http://lists.denx.de/pipermail/u-boot/2014-July/183096.html > > Patchset V4: > http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/191730 > > Changes from V1: > [PATCH V2 3/10] : Don't mix cpu_is and proid_is as per Minkyu's suggestion. > Also, incorporate Simon's suggestion of not using else. > [PATCH V2 4/10] : For FIMD SYSMMU DT, use same compatible string as kernel. > [TEST_ONLY V2 6/10]: Make this patch TEST_ONLY > > Changes from V2: > [PATCH V3 5/9] : Use SPDX tags to define the license for the file: parade.c > Removed TEST_ONLY patches. > > Changes from V3: > [PATCH V4 1/9] : Fix comment style. > [PATCH V4 3/9] : Use 'else if' clause instead of 'if'. > > Changes from V4: > Rebase all patches on top of the tree. > > To test this, we need 6 patches for cros_ec from Simon: > [PATCH 1/6] cros_ec: Fix two bugs in the SPI implementation > [PATCH 2/6] exynos: spi: Fix calculation of SPI transaction start time > [PATCH 3/6] spi: Support half-duplex mode in FDT decode > [PATCH 4/6] exynos5: Enable data cashe > [PATCH 5/6] cros_ec: power: Add a tunnelled version of the tps65090 driver > [PATCH 6/6] cros_ec: exynos: Use the correct tps65090 driver in each case > > Ajay Kumar (8): > [PATCH V5 1/9] exynos_fb: Remove usage of static defines > [PATCH V5 2/9] arm: exynos: Add RPLL for Exynos5420 > [PATCH V5 3/9] arm: exynos: Add get_lcd_clk and set_lcd_clk callbacks for Exynos5420 > [PATCH V5 4/9] video: exynos_fimd: Add framework to disable FIMD sysmmu > [PATCH V5 6/9] ARM: exynos: Add missing declaration for gpio_direction_input > [PATCH V5 7/9] exynos5420: add callbacks needed for exynos_fb driver > [PATCH V5 8/9] ARM: exynos: peach_pit: Add DT nodes for fimd and parade bridge chip > [PATCH V5 9/9] CONFIGS: peach-pit: Enable display for peach_pit board > > Vadim Bendebury (1): > [PATCH V5 5/9] video: Add driver for Parade PS8625 dP to LVDS bridge > > arch/arm/cpu/armv7/exynos/clock.c | 83 ++++++++- > arch/arm/cpu/armv7/exynos/clock_init.h | 3 + > arch/arm/cpu/armv7/exynos/clock_init_exynos5.c | 13 ++ > arch/arm/cpu/armv7/exynos/exynos5_setup.h | 2 +- > arch/arm/dts/exynos5420-peach-pit.dts | 30 ++++ > arch/arm/dts/exynos54xx.dtsi | 10 ++ > arch/arm/include/asm/arch-exynos/clk.h | 1 + > arch/arm/include/asm/arch-exynos/gpio.h | 1 + > arch/arm/include/asm/arch-exynos/system.h | 4 + > board/samsung/common/board.c | 16 ++ > board/samsung/smdk5420/smdk5420.c | 129 +++++--------- > doc/device-tree-bindings/video/exynos-fb.txt | 6 + > drivers/video/Makefile | 1 + > drivers/video/exynos_fb.c | 18 +- > drivers/video/exynos_fimd.c | 43 +++++ > drivers/video/parade.c | 220 ++++++++++++++++++++++++ > include/configs/exynos5250-dt.h | 2 - > include/configs/peach-pit.h | 10 ++ > include/configs/s5pc210_universal.h | 3 - > include/configs/trats.h | 3 - > include/configs/trats2.h | 3 - > include/fdtdec.h | 2 + > lib/fdtdec.c | 2 + > 23 files changed, 494 insertions(+), 111 deletions(-) > create mode 100644 drivers/video/parade.c > applied to u-boot-samsung. Thanks, Minkyu Kang.