From: Minkyu Kang <mk7.kang@samsung.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH V5 0/9] peach_pit: Add support for FIMD, DP and parade chip
Date: Fri, 05 Sep 2014 20:42:20 +0900 [thread overview]
Message-ID: <5409A19C.9060902@samsung.com> (raw)
In-Reply-To: <1409916218-18466-1-git-send-email-ajaykumar.rs@samsung.com>
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.
prev parent reply other threads:[~2014-09-05 11:42 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-09-05 11:23 [U-Boot] [PATCH V5 0/9] peach_pit: Add support for FIMD, DP and parade chip Ajay Kumar
2014-09-05 11:23 ` [U-Boot] [PATCH V5 1/9] exynos_fb: Remove usage of static defines Ajay Kumar
2014-09-05 11:23 ` [U-Boot] [PATCH V5 2/9] arm: exynos: Add RPLL for Exynos5420 Ajay Kumar
2014-09-05 11:23 ` [U-Boot] [PATCH V5 3/9] arm: exynos: Add get_lcd_clk and set_lcd_clk callbacks " Ajay Kumar
2014-09-05 11:23 ` [U-Boot] [PATCH V5 4/9] video: exynos_fimd: Add framework to disable FIMD sysmmu Ajay Kumar
2014-09-05 11:23 ` [U-Boot] [PATCH V5 5/9] video: Add driver for Parade PS8625 dP to LVDS bridge Ajay Kumar
2014-09-05 11:23 ` [U-Boot] [PATCH V5 6/9] ARM: exynos: Add missing declaration for gpio_direction_input Ajay Kumar
2014-09-05 11:23 ` [U-Boot] [PATCH V5 7/9] exynos5420: add callbacks needed for exynos_fb driver Ajay Kumar
2014-09-05 11:23 ` [U-Boot] [PATCH V5 8/9] ARM: exynos: peach_pit: Add DT nodes for fimd and parade bridge chip Ajay Kumar
2014-09-05 11:23 ` [U-Boot] [PATCH V5 9/9] CONFIGS: peach-pit: Enable display for peach_pit board Ajay Kumar
2014-09-05 11:42 ` Minkyu Kang [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5409A19C.9060902@samsung.com \
--to=mk7.kang@samsung.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox