1. 19 6月, 2020 1 次提交
  2. 19 5月, 2020 2 次提交
  3. 14 4月, 2019 1 次提交
  4. 07 5月, 2018 1 次提交
    • T
      SPDX: Convert all of our single license tags to Linux Kernel style · 83d290c5
      Tom Rini 提交于
      When U-Boot started using SPDX tags we were among the early adopters and
      there weren't a lot of other examples to borrow from.  So we picked the
      area of the file that usually had a full license text and replaced it
      with an appropriate SPDX-License-Identifier: entry.  Since then, the
      Linux Kernel has adopted SPDX tags and they place it as the very first
      line in a file (except where shebangs are used, then it's second line)
      and with slightly different comment styles than us.
      
      In part due to community overlap, in part due to better tag visibility
      and in part for other minor reasons, switch over to that style.
      
      This commit changes all instances where we have a single declared
      license in the tag as both the before and after are identical in tag
      contents.  There's also a few places where I found we did not have a tag
      and have introduced one.
      Signed-off-by: NTom Rini <trini@konsulko.com>
      83d290c5
  5. 24 9月, 2016 1 次提交
  6. 30 11月, 2015 1 次提交
  7. 25 11月, 2015 1 次提交
  8. 25 10月, 2014 1 次提交
  9. 16 10月, 2014 2 次提交
    • J
      video: ipu_disp: remove pixclk fixup · 3e780af1
      Jeroen Hofstee 提交于
      The ipu display insists on having a lower_margin smaller
      then 2. If this is not the case it will attempt to force
      it and adjust the pixclk accordingly. This multiplies pixclk
      in Hz with the width and height, since this is typically
      a * 10^7 * b * 10^2 * c * 10^2 this will overflow the
      uint_32 and make things even worse. Since this is a
      bootloader and the adjustment is neglectible, just force
      it to two and warn about it.
      
      Cc: Stefano Babic <sbabic@denx.de>
      Signed-off-by: NJeroen Hofstee <jeroen@myspectrum.nl>
      3e780af1
    • J
      video: ipu: fix debug and comment · c1420328
      Jeroen Hofstee 提交于
      - fix debug pixel clk display and add unit
      - fix some comments
      
      Cc: Stefano Babic <sbabic@denx.de>
      Signed-off-by: NJeroen Hofstee <jeroen@myspectrum.nl>
      c1420328
  10. 11 8月, 2014 2 次提交
    • J
      video: ipu_disp: squash clang warning · e6e9cff2
      Jeroen Hofstee 提交于
      Since rgb2ycbcr_coeff and friends are declared const, but assigned
      to a void pointer, clang will warn that the const is implicity casted
      away. If the pointer is changed to void const * gcc will warn when it
      is implicitly casted to a const int array. Just add a correctly
      typed pointer instead to prevent these casts and hence the warnings.
      
      Cc: Troy Kisky <troy.kisky@boundarydevices.com>
      Cc: Stefano Babic <sbabic@denx.de>
      Signed-off-by: NJeroen Hofstee <jeroen@myspectrum.nl>
      e6e9cff2
    • L
      video: ipu_disp: wait for DP SF end irq when disabling sync BG flows · e66866c5
      Liu Ying 提交于
      Instead of waiting for DC triple buffer to be cleared, this patch
      changes to wait for a relevant DP sync flow end interrupt to come
      when disabling sync BG flows.  In this way, we align the implement
      to the freescale internal IPUv3 driver.  After applying this patch,
      an uboot hang up issue at the arch_preboot_os() stage, where we
      disable a relevant ipu display channel, is not observed any more on
      some MX6DL platforms.
      Signed-off-by: NLiu Ying <Ying.Liu@freescale.com>
      e66866c5
  11. 04 12月, 2013 1 次提交
  12. 30 10月, 2013 1 次提交
  13. 24 7月, 2013 1 次提交
  14. 10 7月, 2012 1 次提交
  15. 02 10月, 2011 1 次提交
    • M
      GCC4.6: Squash warnings in ipu_disp.c · 564964bd
      Marek Vasut 提交于
      ipu_disp.c: In function ‘ipu_disp_set_global_alpha’:
      ipu_disp.c:1237:11: warning: variable ‘flow’ set but not used
      [-Wunused-but-set-variable]
      ipu_disp.c: In function ‘ipu_disp_set_color_key’:
      ipu_disp.c:1302:16: warning: variable ‘flow’ set but not used
      [-Wunused-but-set-variable]
      Signed-off-by: NMarek Vasut <marek.vasut@gmail.com>
      Cc: Stefano Babic <sbabic@denx.de>
      564964bd
  16. 22 10月, 2010 1 次提交
    • S
      MX51: Add IPU driver for video support · 575001e4
      Stefano Babic 提交于
      The patch is a porting of the IPU Linux driver
      developed by Freescale to have framebuffer
      functionalities in u-boot. The port is based on
      kernel 2.6.31 commit cc4fe714041805997b601fe8e5dd585d8a99297f,
      as delivered by Freescale [i.MX BSP].
      Most features are dropped from the original driver and
      only LCD support is the goal of this porting.
      Signed-off-by: NStefano Babic <sbabic@denx.de>
      575001e4