All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH V5 0/9] peach_pit: Add support for FIMD, DP and parade chip
@ 2014-09-05 11:23 Ajay Kumar
  2014-09-05 11:23 ` [U-Boot] [PATCH V5 1/9] exynos_fb: Remove usage of static defines Ajay Kumar
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: Ajay Kumar @ 2014-09-05 11:23 UTC (permalink / raw)
  To: u-boot

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

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2014-09-05 11:42 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
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 ` [U-Boot] [PATCH V5 0/9] peach_pit: Add support for FIMD, DP and parade chip Minkyu Kang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.