1. 02 11月, 2016 1 次提交
  2. 07 10月, 2015 1 次提交
  3. 26 8月, 2014 2 次提交
  4. 23 5月, 2014 1 次提交
  5. 15 5月, 2014 1 次提交
  6. 26 9月, 2013 1 次提交
  7. 03 6月, 2013 2 次提交
  8. 28 5月, 2013 2 次提交
    • T
      videomode: implement public of_get_display_timing() · ffa3fd21
      Tomi Valkeinen 提交于
      The current of_get_display_timings() reads multiple display timings,
      allocating memory for the entries. However, most of the time when
      parsing display timings from DT data is needed, there's only one display
      timing as it's not common for a LCD panel to support multiple videomodes.
      
      This patch creates a new function:
      
      int of_get_display_timing(struct device_node *np, const char *name,
                     struct display_timing *dt);
      
      which can be used to parse a single display timing entry from the given
      node name.
      Signed-off-by: NTomi Valkeinen <tomi.valkeinen@ti.com>
      Cc: Steffen Trumtrar <s.trumtrar@pengutronix.de>
      Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
      Cc: Philipp Zabel <p.zabel@pengutronix.de>
      ffa3fd21
    • T
      videomode: don't allocate mem in of_get_display_timing() · fcf7e6e5
      Tomi Valkeinen 提交于
      Move the allocation of display_timing memory from of_get_display_timing() to
      of_get_display_timings(). This allows us to use of_get_display_timing()
      in a way that doesn't require dynamic memory allocation.
      Signed-off-by: NTomi Valkeinen <tomi.valkeinen@ti.com>
      Cc: Steffen Trumtrar <s.trumtrar@pengutronix.de>
      Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
      Cc: Philipp Zabel <p.zabel@pengutronix.de>
      fcf7e6e5
  9. 12 3月, 2013 1 次提交
    • T
      videomode: combine videomode dmt_flags and data_flags · 06a33079
      Tomi Valkeinen 提交于
      Both videomode and display_timing contain flags describing the modes.
      These are stored in dmt_flags and data_flags. There's no need to
      separate these flags, and having separate fields just makes the flags
      more difficult to use.
      
      This patch combines the fields and renames VESA_DMT_* flags to
      DISPLAY_FLAGS_*.
      Signed-off-by: NTomi Valkeinen <tomi.valkeinen@ti.com>
      Cc: Steffen Trumtrar <s.trumtrar@pengutronix.de>
      06a33079
  10. 24 1月, 2013 1 次提交