1. 12 3月, 2013 1 次提交
    • T
      videomode: simplify videomode Kconfig and Makefile · a38884f6
      Tomi Valkeinen 提交于
      This patch simplifies videomode related Kconfig and Makefile. After this
      patch, there's only one non-user selectable Kconfig option left,
      VIDEOMODE_HELPERS. The reasons for the change:
      
      * Videomode helper functions are not something that should be shown in
        the kernel configuration options. The related code should just be
        included if it's needed, i.e. selected by drivers using videomode.
      
      * There's no need to have separate Kconfig options for videomode and
        display_timing. First of all, the amount of code for both is quite
        small. Second, videomode depends on display_timing, and display_timing
        in itself is not really useful, so both would be included in any case.
      
      * CONFIG_VIDEOMODE is a bit vague name, and CONFIG_VIDEOMODE_HELPERS
        describes better what's included.
      Signed-off-by: NTomi Valkeinen <tomi.valkeinen@ti.com>
      Cc: Steffen Trumtrar <s.trumtrar@pengutronix.de>
      Acked-by: NLaurent Pinchart <laurent.pinchart@ideasonboard.com>
      a38884f6
  2. 22 2月, 2013 5 次提交
  3. 20 2月, 2013 1 次提交
  4. 24 1月, 2013 2 次提交
  5. 22 1月, 2013 1 次提交
  6. 10 12月, 2012 1 次提交
  7. 26 11月, 2012 1 次提交
  8. 15 11月, 2012 1 次提交
  9. 29 9月, 2012 1 次提交
  10. 23 9月, 2012 1 次提交
  11. 21 9月, 2012 1 次提交
  12. 30 4月, 2012 4 次提交
  13. 21 3月, 2012 1 次提交
  14. 20 3月, 2012 1 次提交
    • A
      fbdev: da8xx: add support for SP10Q010 display · f413070e
      Anatolij Gustschin 提交于
      Add timing data for Hitachi SP10Q010 display and allow configuration
      of the 4bpp palette. For 4bpp framebuffer enable reversed order of
      pixels in a byte. This requires defining FB_CFB_REV_PIXELS_IN_BYTE
      and additionally setting var.nonstd to the value FB_NONSTD_REV_PIX_IN_B.
      Note that it is not enough to set da8xx_fb_var.nonstd to this value
      statically, since FBIOPUT_VSCREENINFO ioctl might pass var struct with
      .nonstd field set to zero or another value. Therefore this setting must
      be adjusted in fb_check_var() according to the requested bpp value.
      Signed-off-by: NAnatolij Gustschin <agust@denx.de>
      Cc: Manjunathappa, Prakash <prakash.pm@ti.com>
      Signed-off-by: NFlorian Tobias Schandinat <FlorianSchandinat@gmx.de>
      f413070e
  15. 16 3月, 2012 1 次提交
  16. 13 3月, 2012 1 次提交
  17. 03 3月, 2012 1 次提交
    • K
      ARM: S3C24XX: change the ARCH_S3C2410 to ARCH_S3C24XX · b130d5c2
      Kukjin Kim 提交于
      This patch changes the ARCH name to "ARCH_S3C24XX" for Samsung
      S3C2410, S3C2412, S3C2413, S3C2416, S3C2440, S3C2442, S3C2443,
      and S3C2450 SoCs so that we can merge the mach-xxx directories
      and plat-s3c24xx dir. to just one mach-s3c24xx for them.
      
      I think this should be sent to upstream via samsung tree because
      this touches many samsung stuff.
      
      Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>
      Cc: Richard Purdie <rpurdie@rpsys.net>
      Cc: Chris Ball <cjb@laptop.org>
      Cc: David Woodhouse <dwmw2@infradead.org>
      Cc: Alessandro Zummo <a.zummo@towertech.it>
      Cc: Grant Likely <grant.likely@secretlab.ca>
      Cc: Greg Kroah-Hartman <gregkh@suse.de>
      [for the gadget part:]
      Acked-by: NFelipe Balbi <balbi@ti.com>
      [for the framebuffer (video) part:]
      Acked-by: NFlorian Tobias Schandinat <FlorianSchandinat@gmx.de>
      [For the watchdog-part:]
      Acked-by: NWim Van Sebroeck <wim@iguana.be>
      Cc: Sangbeom Kim <sbkim73@samsung.com>
      Cc: Liam Girdwood <lrg@ti.com>
      Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
      Cc: Russell King <rmk+kernel@arm.linux.org.uk>
      Signed-off-by: NKukjin Kim <kgene.kim@samsung.com>
      b130d5c2
  18. 15 2月, 2012 1 次提交
  19. 13 2月, 2012 1 次提交
  20. 08 12月, 2011 1 次提交
  21. 12 11月, 2011 1 次提交
  22. 25 10月, 2011 1 次提交
  23. 06 9月, 2011 1 次提交
  24. 24 8月, 2011 1 次提交
    • J
      video: s3c-fb: Add support EXYNOS4 FIMD · b5480ed7
      Jingoo Han 提交于
      This patch adds struct s3c_fb_driverdata s3c_fb_data_exynos4 for EXYNOS4
      and adds lcd clock gating support.
      
      FIMD driver needs two clocks for FIMD IP and LCD pixel clock. Previously,
      both clocks are provided by using bus clock such as HCLK. However, EXYNOS4
      can not select HCLK for LCD pixel clock because the EXYNOS4 FIMD IP does not
      have the CLKSEL bit of VIDCON0. So, FIMD driver should provide the lcd clock
      using SCLK_FIMD as LCD pixel clock for EXYNOS4.
      
      The driver selects enabling lcd clock according to has_clksel which means
      the CLKSEL bit of VIDCON0. If there is has_clksel, the driver will not
      enable the lcd clock using SCLK_FIMD because bus clock using HCLK is used
      a LCD pixel clock.
      Signed-off-by: NJingoo Han <jg1.han@samsung.com>
      Signed-off-by: NFlorian Tobias Schandinat <FlorianSchandinat@gmx.de>
      b5480ed7
  25. 13 7月, 2011 1 次提交
  26. 15 6月, 2011 1 次提交
  27. 24 5月, 2011 2 次提交
  28. 23 5月, 2011 1 次提交
  29. 19 5月, 2011 1 次提交
  30. 24 4月, 2011 1 次提交
    • F
      viafb: add X server compatibility mode · 2946294f
      Florian Tobias Schandinat 提交于
      This patch adds a config option to be compatible with X servers like
      OpenChrome. This is required as for example the X server does not
      handle things like disabled IGAs/PLLs resulting in a potential
      freeze on X startup. With this option disabled we can provide some
      nice features like power management and not reinitializing the
      hardware on every mode switch (taking long time, causing flickering).
      Signed-off-by: NFlorian Tobias Schandinat <FlorianSchandinat@gmx.de>
      2946294f
  31. 19 4月, 2011 1 次提交
    • O
      s3fb: add DDC support · 86c0f043
      Ondrej Zary 提交于
      Add I2C support for the DDC bus and also default mode initialization by
      reading monitor EDID to the s3fb driver.
      
      Tested on Trio64V+ (2 cards), Trio64V2/DX, Virge (3 cards),
      Virge/DX (3 cards), Virge/GX2, Trio3D/2X (4 cards), Trio3D.
      
      Will probably not work on Trio32 - my 2 cards have DDC support in BIOS that
      looks different from the other cards but the DDC pins on the VGA connector
      are not connected.
      Signed-off-by: NOndrej Zary <linux@rainbow-software.org>
      Signed-off-by: NPaul Mundt <lethal@linux-sh.org>
      86c0f043