1. 16 6月, 2017 1 次提交
  2. 17 5月, 2017 1 次提交
  3. 08 4月, 2017 1 次提交
  4. 07 4月, 2017 1 次提交
  5. 04 4月, 2017 1 次提交
  6. 15 2月, 2017 1 次提交
  7. 07 2月, 2017 13 次提交
  8. 18 12月, 2016 1 次提交
  9. 29 11月, 2016 2 次提交
  10. 02 11月, 2016 2 次提交
    • A
      drm/msm: Set CLK_IGNORE_UNUSED flag for PLL clocks · 73b65b19
      Archit Taneja 提交于
      The DSI/HDMI PLLs in MSM require resources like interface clocks, power
      domains to be enabled before we can access their registers.
      
      The clock framework doesn't have a mechanism at the moment where we can
      tie such resources to a clock, so we make sure that the KMS driver enables
      these resources whenever a PLL is expected to be in use.
      
      One place where we can't ensure the resource dependencies are met is when
      the clock framework tries to disable unused clocks. The KMS driver doesn't
      know when the clock framework calls the is_enabled clk_op, and hence can't
      enable interface clocks/power domains beforehand.
      
      We set the CLK_IGNORE_UNUSED flag for PLL clocks for now. This needs to be
      revisited, since bootloaders can enable display, and we would want to
      disable the PLL clocks if there isn't a display driver using them.
      
      Cc: Stephen Boyd <sboyd@codeaurora.org>
      Signed-off-by: NArchit Taneja <architt@codeaurora.org>
      Acked-by: NStephen Boyd <sboyd@codeaurora.org>
      Signed-off-by: NRob Clark <robdclark@gmail.com>
      73b65b19
    • A
      drm/msm/dsi: Queue HPD helper work in attach/detach callbacks · 8d23ea40
      Archit Taneja 提交于
      The msm/dsi host drivers calls drm_helper_hpd_irq_event in the
      mipi_dsi_host attach/detatch callbacks.
      
      mipi_dsi_attach()/mipi_dsi_detach() from a panel/bridge
      driver could be called from a context where the drm_device's
      mode_config.mutex is already held, resulting in a deadlock.
      Queue it as work instead.
      Signed-off-by: NArchit Taneja <architt@codeaurora.org>
      Signed-off-by: NRob Clark <robdclark@gmail.com>
      8d23ea40
  11. 16 7月, 2016 6 次提交
  12. 08 5月, 2016 2 次提交
    • A
      drm/msm: Centralize connector registration/unregistration · 8208ed93
      Archit Taneja 提交于
      Move the drm_connector registration from the encoder(HDMI/DSI etc) drivers
      to the msm platform driver. This will simplify the task of ensuring that
      the connectors are registered only after the drm_device itself is
      registered.
      
      The connectors' destroy ops are made to use kzalloc instead of
      devm_kzalloc to ensure that that the connectors can be successfully
      unregistered when the msm driver module is removed. The memory for the
      connectors is unallocated when drm_mode_config_cleanup() is called
      during either during an error or during driver remove.
      Signed-off-by: NArchit Taneja <architt@codeaurora.org>
      Signed-off-by: NRob Clark <robdclark@gmail.com>
      8208ed93
    • A
      drm/msm/dsi: Fix regulator API abuse · f377d597
      Archit Taneja 提交于
      The voltage changing code in this driver is broken and should be
      removed.  The driver sets a single, exact voltage on probe.  Unless
      there is a very good reason for this (which should be documented in
      comments) constraints like this need to be set via the machine
      constraints, voltage setting in a driver is expected to be used in cases
      where the voltage varies at runtime.
      
      In addition client drivers should almost never be calling
      regulator_can_set_voltage(), if the device needs to set a voltage it
      needs to set the voltage and the regulator core will handle the case
      where the regulator is fixed voltage.  If the driver simply skips
      setting the voltage if it doesn't have permission then it should just
      not bother in the first place.
      
      Originally authored by Mark Brown <broonie@kernel.org>
      
      Remove the min/max voltage data entries per SoC managed by the driver.
      These aren't needed as we don't try to set voltages any more. Mention in
      comments the voltages that each regulator expects.
      Signed-off-by: NArchit Taneja <architt@codeaurora.org>
      Signed-off-by: NRob Clark <robdclark@gmail.com>
      f377d597
  13. 04 3月, 2016 3 次提交
  14. 03 3月, 2016 2 次提交
  15. 15 12月, 2015 1 次提交
  16. 14 12月, 2015 2 次提交