public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/10] peach_pit: Add support for FIMD, DP and parade chip
@ 2014-06-17  9:06 Ajay Kumar
  2014-06-17  9:06 ` [U-Boot] [PATCH 01/10] exynos_fb: Remove usage of static defines Ajay Kumar
                   ` (9 more replies)
  0 siblings, 10 replies; 35+ messages in thread
From: Ajay Kumar @ 2014-06-17  9:06 UTC (permalink / raw)
  To: u-boot

This patchset has dependency on Akshay's base patchset for peach_pit:
https://www.mail-archive.com/u-boot at lists.denx.de/msg138595.html

This patchset is actually a rebase of my older patchset:
http://lists.denx.de/pipermail/u-boot/2013-November/166935.html,
and this patchset enables display on exynos5420 based peach_pit board.

The last patch is TEST_ONLY, and it adds support for cros-ec on peach_pit.
Simon will be sending a proper patchset for the same.

Ajay Kumar (9):
  [PATCH 1/10] exynos_fb: Remove usage of static defines
  [PATCH 2/10] arm: exynos: Add RPLL for Exynos5420
  [PATCH 3/10] arm: exynos: Add get_lcd_clk and set_lcd_clk callbacks for Exynos5420
  [PATCH 4/10] video: exynos_fimd: Add framework to disable FIMD sysmmu
  [PATCH 6/10] ARM: exynos: Add missing declaration for gpio_direction_input
  [PATCH 7/10] exynos5420: add callbacks needed for exynos_fb driver
  [PATCH 8/10] ARM: exynos: peach_pit: Add DT nodes for fimd and parade bridge chip
  [PATCH 9/10] CONFIGS: peach_pit: Enable display for peach_pit board

Vadim Bendebury (1):
  [PATCH 5/10] video: Add driver for Parade PS8625 dP to LVDS bridge

Simon Glass (1):
  [TEST_ONLY 10/10] Pit WIP

 arch/arm/cpu/armv7/exynos/clock.c              |  74 ++++++++-
 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                   |  15 ++
 board/samsung/smdk5420/smdk5420.c              | 129 ++++++---------
 doc/device-tree-bindings/video/exynos-fb.txt   |   2 +
 drivers/misc/cros_ec_spi.c                     |   4 +-
 drivers/power/pmic/Makefile                    |   3 +-
 drivers/power/pmic/pmic_tps65090_ec.c          | 212 ++++++++++++++++++++++++
 drivers/spi/exynos_spi.c                       |   9 +-
 drivers/spi/spi.c                              |   2 +
 drivers/video/Makefile                         |   1 +
 drivers/video/exynos_fb.c                      |  17 +-
 drivers/video/exynos_fimd.c                    |  52 ++++++
 drivers/video/parade.c                         | 220 +++++++++++++++++++++++++
 include/configs/exynos5-dt.h                   |   2 +-
 include/configs/exynos5250-dt.h                |   2 -
 include/configs/peach-pit.h                    |  12 ++
 include/configs/s5pc210_universal.h            |   3 -
 include/configs/trats.h                        |   3 -
 include/configs/trats2.h                       |   3 -
 include/fdtdec.h                               |   5 +
 include/power/tps65090_pmic.h                  |   6 +
 lib/fdtdec.c                                   |   3 +
 30 files changed, 726 insertions(+), 117 deletions(-)
 create mode 100644 drivers/power/pmic/pmic_tps65090_ec.c
 create mode 100644 drivers/video/parade.c

-- 
1.8.1.2

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

end of thread, other threads:[~2014-06-26  2:22 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-17  9:06 [U-Boot] [PATCH 00/10] peach_pit: Add support for FIMD, DP and parade chip Ajay Kumar
2014-06-17  9:06 ` [U-Boot] [PATCH 01/10] exynos_fb: Remove usage of static defines Ajay Kumar
2014-06-20  3:26   ` Simon Glass
2014-06-17  9:06 ` [U-Boot] [PATCH 02/10] arm: exynos: Add RPLL for Exynos5420 Ajay Kumar
2014-06-20  3:27   ` Simon Glass
2014-06-17  9:06 ` [U-Boot] [PATCH 03/10] arm: exynos: Add get_lcd_clk and set_lcd_clk callbacks " Ajay Kumar
2014-06-20  3:27   ` Simon Glass
2014-06-20  3:31   ` Simon Glass
2014-06-24  7:36   ` Minkyu Kang
2014-06-24 11:28     ` Ajay kumar
2014-06-24 11:36       ` Minkyu Kang
2014-06-24 11:41         ` Ajay kumar
2014-06-26  1:06           ` Minkyu Kang
2014-06-26  2:22         ` Simon Glass
2014-06-17  9:06 ` [U-Boot] [PATCH 04/10] video: exynos_fimd: Add framework to disable FIMD sysmmu Ajay Kumar
2014-06-20  3:29   ` Simon Glass
2014-06-20  6:42     ` Ajay kumar
2014-06-23 12:15       ` Simon Glass
2014-06-24  6:59         ` Ajay kumar
2014-06-20  3:32   ` Simon Glass
2014-06-17  9:06 ` [U-Boot] [PATCH 05/10] video: Add driver for Parade PS8625 dP to LVDS bridge Ajay Kumar
2014-06-20  3:29   ` Simon Glass
2014-06-20  3:30   ` Simon Glass
2014-06-17  9:06 ` [U-Boot] [PATCH 06/10] ARM: exynos: Add missing declaration for gpio_direction_input Ajay Kumar
2014-06-20  3:35   ` Simon Glass
2014-06-17  9:06 ` [U-Boot] [PATCH 07/10] exynos5420: add callbacks needed for exynos_fb driver Ajay Kumar
2014-06-20  3:36   ` Simon Glass
2014-06-17  9:06 ` [U-Boot] [PATCH 08/10] ARM: exynos: peach_pit: Add DT nodes for fimd and parade bridge chip Ajay Kumar
2014-06-20  3:37   ` Simon Glass
2014-06-17  9:06 ` [U-Boot] [PATCH 09/10] CONFIGS: peach-pit: Enable display for peach_pit board Ajay Kumar
2014-06-20  3:38   ` Simon Glass
2014-06-20  6:12     ` Ajay kumar
2014-06-23 12:18       ` Simon Glass
2014-06-17  9:06 ` [U-Boot] [PATCH 10/10] Pit WIP Ajay Kumar
2014-06-20  3:40   ` Simon Glass

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox