public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Add initial support for slimport anx78xx
@ 2015-09-06 21:13 Enric Balletbo i Serra
  2015-09-06 21:14 ` [PATCH 1/3] of: Add vendor prefix for Analogix Semiconductor, Inc Enric Balletbo i Serra
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Enric Balletbo i Serra @ 2015-09-06 21:13 UTC (permalink / raw)
  To: devel, gregkh; +Cc: linux-kernel, sjoerd.simons, javier, span, nathan.chung

Hi all,

The following series add initial support for the Slimport ANX7814 transmitter, a
ultra-low power Full-HD (1080p60) transmitter designed for portable device.

The driver was originally created and based from the work of Junhua Xia from
Analogix. This driver is a refactor of the original driver and fixes different
coding style lines, and different errors/warnings reported by checkpatch. Also
there were thing that I notive that we need to change like:

 - Convert the numbered GPIO API to the new descriptor based GPIO API.
 - Review the DT binding
 - Add missing MODULE_DEVICE_TABLE(of, ...);
 - Fix Makefiles and Kconfig to build conditionally.
 - Use SIMPLE_DEV_PM_OPS() instead of the deprecated i2c .suspend and
  .resume callbacks.
 - Move to use managed device resources.
 - Remove dead/unused code.
 - And others ...

This is the first version so probably will have mistakes so feel free to ping to
incorporate other changes that I need to do in next series.

Best regards,

Enric Balletbo i Serra (3):
  of: Add vendor prefix for Analogix Semiconductor, Inc.
  devicetree: Add new ANX7814 SlimPort transmitter binding.
  staging: slimport: Add anx7814 driver support by analogix.

 .../devicetree/bindings/vendor-prefixes.txt        |    1 +
 .../devicetree/bindings/video/bridge/anx7814.txt   |   22 +
 drivers/staging/Kconfig                            |    2 +
 drivers/staging/Makefile                           |    1 +
 drivers/staging/slimport/Kconfig                   |    7 +
 drivers/staging/slimport/Makefile                  |    4 +
 drivers/staging/slimport/slimport.c                |  301 ++
 drivers/staging/slimport/slimport.h                |   49 +
 drivers/staging/slimport/slimport_tx_drv.c         | 3293 ++++++++++++++++++++
 drivers/staging/slimport/slimport_tx_drv.h         |  254 ++
 drivers/staging/slimport/slimport_tx_reg.h         |  786 +++++
 11 files changed, 4720 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/video/bridge/anx7814.txt
 create mode 100644 drivers/staging/slimport/Kconfig
 create mode 100644 drivers/staging/slimport/Makefile
 create mode 100644 drivers/staging/slimport/slimport.c
 create mode 100644 drivers/staging/slimport/slimport.h
 create mode 100644 drivers/staging/slimport/slimport_tx_drv.c
 create mode 100644 drivers/staging/slimport/slimport_tx_drv.h
 create mode 100644 drivers/staging/slimport/slimport_tx_reg.h

-- 
2.1.0


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

end of thread, other threads:[~2015-09-09  7:10 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-06 21:13 [PATCH 0/3] Add initial support for slimport anx78xx Enric Balletbo i Serra
2015-09-06 21:14 ` [PATCH 1/3] of: Add vendor prefix for Analogix Semiconductor, Inc Enric Balletbo i Serra
2015-09-06 21:14 ` [PATCH 2/3] devicetree: Add new ANX7814 SlimPort transmitter binding Enric Balletbo i Serra
2015-09-06 21:14 ` [PATCH 3/3] staging: slimport: Add anx7814 driver support by analogix Enric Balletbo i Serra
2015-09-06 23:27   ` Greg KH
2015-09-07  5:41     ` Enric Balletbo Serra
2015-09-07  6:46       ` Greg KH
2015-09-09  3:38         ` Daniel Kurtz
2015-09-09  7:10           ` Enric Balletbo Serra

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