All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hai Li <hali@codeaurora.org>
To: dri-devel@lists.freedesktop.org
Cc: linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH 0/3] drm/msm/dsi: Add DSI PLL driver under common clock framework
Date: Fri, 15 May 2015 13:04:03 -0400	[thread overview]
Message-ID: <1431709446-31429-1-git-send-email-hali@codeaurora.org> (raw)

DSI PLL driver can work with common clock framework and provide source of DSI
byte clock and pixel clock, as a clock provider.

Hai Li (3):
  drm/msm/dsi: Add DSI PLL clock driver support
  drm/msm/dsi: Enable PLL driver in MSM DSI
  drm/msm/dsi: Separate PHY to another platform device

 Documentation/devicetree/bindings/drm/msm/dsi.txt |  59 +-
 drivers/gpu/drm/msm/Kconfig                       |   7 +
 drivers/gpu/drm/msm/Makefile                      |   5 +
 drivers/gpu/drm/msm/dsi/dsi.c                     |  43 +-
 drivers/gpu/drm/msm/dsi/dsi.h                     |  61 +-
 drivers/gpu/drm/msm/dsi/dsi_host.c                |  83 ++-
 drivers/gpu/drm/msm/dsi/dsi_manager.c             |  79 ++-
 drivers/gpu/drm/msm/dsi/dsi_phy.c                 | 311 ++++++++++-
 drivers/gpu/drm/msm/dsi/pll/dsi_pll.c             | 164 ++++++
 drivers/gpu/drm/msm/dsi/pll/dsi_pll.h             |  89 +++
 drivers/gpu/drm/msm/dsi/pll/dsi_pll_28nm.c        | 652 ++++++++++++++++++++++
 11 files changed, 1448 insertions(+), 105 deletions(-)
 create mode 100644 drivers/gpu/drm/msm/dsi/pll/dsi_pll.c
 create mode 100644 drivers/gpu/drm/msm/dsi/pll/dsi_pll.h
 create mode 100644 drivers/gpu/drm/msm/dsi/pll/dsi_pll_28nm.c

-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

WARNING: multiple messages have this Message-ID (diff)
From: Hai Li <hali@codeaurora.org>
To: dri-devel@lists.freedesktop.org
Cc: linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org,
	robdclark@gmail.com, Hai Li <hali@codeaurora.org>
Subject: [PATCH 0/3] drm/msm/dsi: Add DSI PLL driver under common clock framework
Date: Fri, 15 May 2015 13:04:03 -0400	[thread overview]
Message-ID: <1431709446-31429-1-git-send-email-hali@codeaurora.org> (raw)

DSI PLL driver can work with common clock framework and provide source of DSI
byte clock and pixel clock, as a clock provider.

Hai Li (3):
  drm/msm/dsi: Add DSI PLL clock driver support
  drm/msm/dsi: Enable PLL driver in MSM DSI
  drm/msm/dsi: Separate PHY to another platform device

 Documentation/devicetree/bindings/drm/msm/dsi.txt |  59 +-
 drivers/gpu/drm/msm/Kconfig                       |   7 +
 drivers/gpu/drm/msm/Makefile                      |   5 +
 drivers/gpu/drm/msm/dsi/dsi.c                     |  43 +-
 drivers/gpu/drm/msm/dsi/dsi.h                     |  61 +-
 drivers/gpu/drm/msm/dsi/dsi_host.c                |  83 ++-
 drivers/gpu/drm/msm/dsi/dsi_manager.c             |  79 ++-
 drivers/gpu/drm/msm/dsi/dsi_phy.c                 | 311 ++++++++++-
 drivers/gpu/drm/msm/dsi/pll/dsi_pll.c             | 164 ++++++
 drivers/gpu/drm/msm/dsi/pll/dsi_pll.h             |  89 +++
 drivers/gpu/drm/msm/dsi/pll/dsi_pll_28nm.c        | 652 ++++++++++++++++++++++
 11 files changed, 1448 insertions(+), 105 deletions(-)
 create mode 100644 drivers/gpu/drm/msm/dsi/pll/dsi_pll.c
 create mode 100644 drivers/gpu/drm/msm/dsi/pll/dsi_pll.h
 create mode 100644 drivers/gpu/drm/msm/dsi/pll/dsi_pll_28nm.c

-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation


             reply	other threads:[~2015-05-15 17:04 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-15 17:04 Hai Li [this message]
2015-05-15 17:04 ` [PATCH 0/3] drm/msm/dsi: Add DSI PLL driver under common clock framework Hai Li
2015-05-15 17:04 ` [PATCH 1/3] drm/msm/dsi: Add DSI PLL clock driver support Hai Li
2015-05-15 17:04   ` Hai Li
2015-05-15 17:04 ` [PATCH 2/3] drm/msm/dsi: Enable PLL driver in MSM DSI Hai Li
2015-05-15 17:04 ` [PATCH 3/3] drm/msm/dsi: Separate PHY to another platform device Hai Li
2015-05-15 17:04   ` Hai Li

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=1431709446-31429-1-git-send-email-hali@codeaurora.org \
    --to=hali@codeaurora.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    /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 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.