1. 15 Nov, 2016 13 commits
  2. 14 Nov, 2016 20 commits
  3. 13 Nov, 2016 1 commit
    • Julia Lawall's avatar
      drm/sun4i: constify component_ops structures · dfeb693d
      Julia Lawall authored
      These component_ops structures are only used as the second argument to
      component_add and component_del, which are declared as const, so the
      structures can be declared as const as well.
      
      The semantic patch that makes this change is as follows:
      (http://coccinelle.lip6.fr/)
      
      // <smpl>
      @r disable optional_qualifier@
      identifier i;
      position p;
      @@
      
      static struct component_ops i@p = { ... };
      
      @ok1@
      identifier r.i;
      expression e1;
      position p;
      @@
      
      component_add(e1,&i@p)
      
      @ok2@
      identifier r.i;
      expression e1;
      position p;
      @@
      
      component_del(e1, &i@p)
      
      @bad@
      position p != {r.p,ok1.p,ok2.p};
      identifier r.i;
      struct component_ops e;
      @@
      
      e@i@p
      
      @depends on !bad disable optional_qualifier@
      identifier r.i;
      @@
      
      static
      +const
       struct component_ops i = { ... };
      // </smpl>
      
      The result of the size command before the change is (arm):
      
         text       data         bss     dec      hex filename
         5266        236           8    5510     1586 sun4i_backend.o
         6393        236           8    6637     19ed sun4i_tcon.o
         3700        368           8    4076      fec sun4i_tv.o
         1668        108           0    1776      6f0 sun6i_drc.o
      
      and after the change:
      
         text       data         bss     dec     hex filename
         5274        228           8    5510    1586 sun4i_backend.o
         6401        228           8    6637    19ed sun4i_tcon.o
         3708        360           8    4076     fec sun4i_tv.o
         1676        100           0    1776     6f0 sun6i_drc.o
      Signed-off-by: default avatarJulia Lawall <Julia.Lawall@lip6.fr>
      Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
      Link: http://patchwork.freedesktop.org/patch/msgid/1478971198-3659-1-git-send-email-Julia.Lawall@lip6.fr
      dfeb693d
  4. 12 Nov, 2016 1 commit
  5. 11 Nov, 2016 3 commits
  6. 10 Nov, 2016 2 commits
    • Dave Airlie's avatar
      Merge tag 'dw-hdmi-next-2016-09-19' of git://git.pengutronix.de/git/pza/linux into drm-next · 90233ee5
      Dave Airlie authored
      dw-hdmi i2c master controller
      
      - add support for the HDMI I2C master controller, for boards that
        can have their DDC pins connected only to the HDMI TX directly.
      
      * tag 'dw-hdmi-next-2016-09-19' of git://git.pengutronix.de/git/pza/linux:
        drm: bridge/dw_hdmi: add dw hdmi i2c bus adapter support
        drm: dw_hdmi: use of_get_i2c_adapter_by_node interface
      90233ee5
    • Dave Airlie's avatar
      Merge tag 'imx-drm-next-2016-11-10' of git://git.pengutronix.de/git/pza/linux into drm-next · 628d1655
      Dave Airlie authored
      imx-drm plane update cleanup, YUV formats
      
      - request modeset if plane offsets changed, only the plane base
        address can be changed without disabling the plane IDMAC channel.
      - cleanup of plane atomic_update
      - remove unused ipu_cpmem_set_yuv_planar function
      - support YUV 4:4:4, 4:2:2, NV12 and NV16 plane formats
      - not only mask interrupts during irq init, also clear them
      - remove a legacy check from imx-ldb
      - add support to set the CSI downsizing bits
      - silence an obnoxious warning during modeset
      
      * tag 'imx-drm-next-2016-11-10' of git://git.pengutronix.de/git/pza/linux:
        gpu: ipu-di: silence videomode logspam
        gpu: ipu-v3: add ipu_csi_set_downsize
        drm/imx: imx-ldb: remove unnecessary double disable check
        gpu: ipu-v3: initially clear all interrupts
        drm/imx: ipuv3-plane: add support for YUV 4:2:2 and 4:4:4, NV12, and NV16 formats
        gpu: ipu-v3: add YUV 4:4:4 support
        gpu: ipu-cpmem: remove unused ipu_cpmem_set_yuv_planar function
        drm/imx: ipuv3-plane: let drm_plane_state_to_ubo/vbo handle chroma subsampling other than 4:2:0
        drm/imx: ipuv3-plane: merge ipu_plane_atomic_set_base into atomic_update
        drm/imx: ipuv3-plane: request modeset if plane offsets changed
      628d1655