All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/8] ARM: at91: atmel_lcdc: add DT support
@ 2013-04-11 14:57 ` Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 0 replies; 91+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2013-04-11 14:57 UTC (permalink / raw)
  To: inux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r
  Cc: linux-fbdev-u79uwXL29TY76Z2rM5mHXA,
	devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ, Andrew Morton

HI,

	The following patch series add the DT support of the Atmel LCDC
	controler and update the 9263 and 9g45 Atmel Reference board

	At the same time some cleanup is done on the drivers implementation as
	we was using the internal data struct as platform data

The following changes since commit d920129d817acc5f7ebfadeb7ecbce70ab161f6c:

  ARM: at91/avr32/atmel_lcdfb: add platform device-id table (2013-04-11 21:00:56 +0800)

are available in the git repository at:

  git://github.com/at91linux/linux-at91.git j/for-3.10_atmel_lcd_dt

for you to fetch changes up to 6354e161060c2d90f0935d14d037e2f126b8c6e5:

  ARM: at91: sam9263ek: add dt lcd support (2013-04-11 21:18:21 +0800)

----------------------------------------------------------------
Jean-Christophe PLAGNIOL-VILLARD (8):
      video: atmel_lcdfb: fix platform data struct
      video: atmel_lcdfb: introduce atmel_lcdfb_power_control
      video: atmel_lcdfb: pass the pdata as params
      video: atmel_lcdfb: add device tree suport
      ARM: at91: sam9g45: add lcd support
      ARM: at91: sam9263: add fb dt support
      ARM: at91: at9sam9m10g45ek: add dt lcd support
      ARM: at91: sam9263ek: add dt lcd support

 Documentation/devicetree/bindings/video/atmel,lcdc.txt |   75 +++++++++++++++++++++++++++++++++++++
 arch/arm/boot/dts/at91sam9263.dtsi                     |   39 ++++++++++++++++++++
 arch/arm/boot/dts/at91sam9263ek.dts                    |   30 +++++++++++++++
 arch/arm/boot/dts/at91sam9g45.dtsi                     |   47 +++++++++++++++++++++++
 arch/arm/boot/dts/at91sam9m10g45ek.dts                 |   29 +++++++++++++++
 arch/arm/mach-at91/at91sam9261_devices.c               |    6 +--
 arch/arm/mach-at91/at91sam9263_devices.c               |    6 +--
 arch/arm/mach-at91/at91sam9g45_devices.c               |    6 +--
 arch/arm/mach-at91/at91sam9rl_devices.c                |    6 +--
 arch/arm/mach-at91/board-sam9261ek.c                   |   10 ++---
 arch/arm/mach-at91/board-sam9263ek.c                   |    6 +--
 arch/arm/mach-at91/board-sam9m10g45ek.c                |    4 +-
 arch/arm/mach-at91/board-sam9rlek.c                    |    6 +--
 arch/arm/mach-at91/board.h                             |    4 +-
 arch/avr32/boards/atngw100/evklcd10x.c                 |    8 ++--
 arch/avr32/boards/atngw100/mrmt.c                      |    4 +-
 arch/avr32/boards/atstk1000/atstk1000.h                |    2 +-
 arch/avr32/boards/atstk1000/setup.c                    |    2 +-
 arch/avr32/boards/favr-32/setup.c                      |    2 +-
 arch/avr32/boards/hammerhead/setup.c                   |    2 +-
 arch/avr32/boards/merisc/display.c                     |    2 +-
 arch/avr32/boards/mimc200/setup.c                      |    4 +-
 arch/avr32/mach-at32ap/at32ap700x.c                    |    8 ++--
 arch/avr32/mach-at32ap/include/mach/board.h            |    4 +-
 drivers/video/Kconfig                                  |    2 +
 drivers/video/atmel_lcdfb.c                            |  342 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++---------------------------------
 include/video/atmel_lcdc.h                             |   26 ++-----------
 27 files changed, 547 insertions(+), 135 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/video/atmel,lcdc.txt

Best Regards,
J.

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

end of thread, other threads:[~2013-05-30 14:59 UTC | newest]

Thread overview: 91+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-04-11 14:57 [PATCH 0/8] ARM: at91: atmel_lcdc: add DT support Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 14:57 ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00 ` [PATCH 1/8] video: atmel_lcdfb: fix platform data struct Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00   ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00   ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00   ` [PATCH 2/8] video: atmel_lcdfb: introduce atmel_lcdfb_power_control Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00     ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00     ` Jean-Christophe PLAGNIOL-VILLARD
     [not found]     ` <1365692422-9565-2-git-send-email-plagnioj-sclMFOaUSTBWk0Htik3J/w@public.gmane.org>
2013-04-16 12:35       ` Nicolas Ferre
2013-04-16 12:35         ` Nicolas Ferre
2013-04-16 12:35         ` Nicolas Ferre
2013-04-11 15:00   ` [PATCH 3/8] video: atmel_lcdfb: pass the pdata as params Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00     ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00     ` Jean-Christophe PLAGNIOL-VILLARD
     [not found]     ` <1365692422-9565-3-git-send-email-plagnioj-sclMFOaUSTBWk0Htik3J/w@public.gmane.org>
2013-04-16 12:38       ` Nicolas Ferre
2013-04-16 12:38         ` Nicolas Ferre
2013-04-16 12:38         ` Nicolas Ferre
2013-04-11 15:00   ` [PATCH 4/8] video: atmel_lcdfb: add device tree suport Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00     ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00     ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 13:42     ` Nicolas Ferre
2013-04-16 13:42       ` Nicolas Ferre
2013-04-16 13:42       ` Nicolas Ferre
2013-04-16 13:44       ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 13:44         ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 13:44         ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 15:43         ` Nicolas Ferre
2013-04-16 15:43           ` Nicolas Ferre
2013-04-16 15:43           ` Nicolas Ferre
     [not found]     ` <1365692422-9565-4-git-send-email-plagnioj-sclMFOaUSTBWk0Htik3J/w@public.gmane.org>
2013-05-29 15:01       ` Richard Genoud
2013-05-29 15:01         ` Richard Genoud
2013-05-29 15:01         ` Richard Genoud
2013-04-11 15:00   ` [PATCH 5/8] ARM: at91: sam9g45: add lcd support Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00     ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 13:57     ` Nicolas Ferre
2013-04-16 13:57       ` Nicolas Ferre
2013-04-16 14:00     ` Nicolas Ferre
2013-04-16 14:00       ` Nicolas Ferre
     [not found]       ` <516D5991.8020603-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>
2013-04-16 15:12         ` Nicolas Ferre
2013-04-16 15:12           ` Nicolas Ferre
2013-04-11 15:00   ` [PATCH 6/8] ARM: at91: sam9263: add fb dt support Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00     ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 14:11     ` Nicolas Ferre
2013-04-16 14:11       ` Nicolas Ferre
2013-04-16 14:13       ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 14:13         ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 15:11         ` Nicolas Ferre
2013-04-16 15:11           ` Nicolas Ferre
2013-04-16 15:48           ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 15:48             ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00   ` [PATCH 7/8] ARM: at91: at9sam9m10g45ek: add dt lcd support Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00     ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 14:56     ` Nicolas Ferre
2013-04-16 14:56       ` Nicolas Ferre
2013-04-11 15:00   ` [PATCH 8/8] ARM: at91: sam9263ek: " Jean-Christophe PLAGNIOL-VILLARD
2013-04-11 15:00     ` Jean-Christophe PLAGNIOL-VILLARD
2013-04-16 14:54     ` Nicolas Ferre
2013-04-16 14:54       ` Nicolas Ferre
2013-04-12  9:52   ` [PATCH 1/8] video: atmel_lcdfb: fix platform data struct Hans-Christian Egtvedt
2013-04-12  9:52     ` Hans-Christian Egtvedt
2013-04-12  9:52     ` Hans-Christian Egtvedt
2013-04-16 12:33   ` Nicolas Ferre
2013-04-16 12:33     ` Nicolas Ferre
2013-04-16 12:33     ` Nicolas Ferre
     [not found]   ` <1365692422-9565-1-git-send-email-plagnioj-sclMFOaUSTBWk0Htik3J/w@public.gmane.org>
2013-05-29 14:36     ` Richard Genoud
2013-05-29 14:36       ` Richard Genoud
2013-05-29 14:36       ` Richard Genoud
2013-05-29 17:35       ` Jean-Christophe PLAGNIOL-VILLARD
2013-05-29 17:35         ` Jean-Christophe PLAGNIOL-VILLARD
2013-05-29 17:35         ` Jean-Christophe PLAGNIOL-VILLARD
     [not found]         ` <20130529173538.GC23899-RQcB7r2h9QmfDR2tN2SG5Ni2O/JbrIOy@public.gmane.org>
2013-05-29 17:44           ` Richard Genoud
2013-05-29 17:44             ` Richard Genoud
2013-05-29 17:44             ` Richard Genoud
     [not found]             ` <CACQ1gAhhsMw1-Znd8BC=A0rJBrB4pphCtH9v9qOQR+j2dY3vCw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-05-29 19:32               ` Jean-Christophe PLAGNIOL-VILLARD
2013-05-29 19:32                 ` Jean-Christophe PLAGNIOL-VILLARD
2013-05-29 19:32                 ` Jean-Christophe PLAGNIOL-VILLARD
     [not found]                 ` <20130529193220.GB19468-RQcB7r2h9QmfDR2tN2SG5Ni2O/JbrIOy@public.gmane.org>
2013-05-30  6:39                   ` Richard Genoud
2013-05-30  6:39                     ` Richard Genoud
2013-05-30  6:39                     ` Richard Genoud
2013-05-30  7:23                     ` Jean-Christophe PLAGNIOL-VILLARD
2013-05-30  7:23                       ` Jean-Christophe PLAGNIOL-VILLARD
2013-05-30  7:23                       ` Jean-Christophe PLAGNIOL-VILLARD
2013-05-30 14:05                       ` Hans-Christian Egtvedt
2013-05-30 14:05                         ` Hans-Christian Egtvedt
2013-05-30 14:05                         ` Hans-Christian Egtvedt
2013-05-30 14:27                       ` Andreas Bießmann
2013-05-30 14:27                         ` Andreas Bießmann
2013-05-30 14:27                         ` Andreas Bießmann
2013-05-30 14:59                         ` Jean-Christophe PLAGNIOL-VILLARD
2013-05-30 14:59                           ` Jean-Christophe PLAGNIOL-VILLARD
2013-05-30 14:59                           ` Jean-Christophe PLAGNIOL-VILLARD

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.