Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/external/bsd/drm2/dist/drm/i915 i915: Remove local diffs...



details:   https://anonhg.NetBSD.org/src/rev/ec8a6b98bb20
branches:  trunk
changeset: 1028889:ec8a6b98bb20
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Sun Dec 19 12:24:36 2021 +0000

description:
i915: Remove local diffs obviated by -fwrapv.

diffstat:

 sys/external/bsd/drm2/dist/drm/i915/display/intel_atomic.c |    6 +-
 sys/external/bsd/drm2/dist/drm/i915/i915_reg.h             |  118 ++++++------
 2 files changed, 62 insertions(+), 62 deletions(-)

diffs (truncated from 530 to 300 lines):

diff -r 35c68d1fa786 -r ec8a6b98bb20 sys/external/bsd/drm2/dist/drm/i915/display/intel_atomic.c
--- a/sys/external/bsd/drm2/dist/drm/i915/display/intel_atomic.c        Sun Dec 19 12:24:27 2021 +0000
+++ b/sys/external/bsd/drm2/dist/drm/i915/display/intel_atomic.c        Sun Dec 19 12:24:36 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: intel_atomic.c,v 1.4 2021/12/19 11:56:08 riastradh Exp $       */
+/*     $NetBSD: intel_atomic.c,v 1.5 2021/12/19 12:24:36 riastradh Exp $       */
 
 /*
  * Copyright © 2015 Intel Corporation
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: intel_atomic.c,v 1.4 2021/12/19 11:56:08 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: intel_atomic.c,v 1.5 2021/12/19 12:24:36 riastradh Exp $");
 
 #include <drm/drm_atomic.h>
 #include <drm/drm_atomic_helper.h>
@@ -426,7 +426,7 @@
                int idx;
 
                /* skip if scaler not required */
-               if (!(scaler_state->scaler_users & (1U << i)))
+               if (!(scaler_state->scaler_users & (1 << i)))
                        continue;
 
                if (i == SKL_CRTC_INDEX) {
diff -r 35c68d1fa786 -r ec8a6b98bb20 sys/external/bsd/drm2/dist/drm/i915/i915_reg.h
--- a/sys/external/bsd/drm2/dist/drm/i915/i915_reg.h    Sun Dec 19 12:24:27 2021 +0000
+++ b/sys/external/bsd/drm2/dist/drm/i915/i915_reg.h    Sun Dec 19 12:24:36 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: i915_reg.h,v 1.18 2021/12/19 11:38:04 riastradh Exp $  */
+/*     $NetBSD: i915_reg.h,v 1.19 2021/12/19 12:24:36 riastradh Exp $  */
 
 /* Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
  * All Rights Reserved.
@@ -431,7 +431,7 @@
 #define GEN8_RING_PDP_LDW(base, n)     _MMIO((base) + 0x270 + (n) * 8)
 
 #define GEN8_R_PWR_CLK_STATE           _MMIO(0x20C8)
-#define   GEN8_RPCS_ENABLE             (1UL << 31)
+#define   GEN8_RPCS_ENABLE             (1 << 31)
 #define   GEN8_RPCS_S_CNT_ENABLE       (1 << 18)
 #define   GEN8_RPCS_S_CNT_SHIFT                15
 #define   GEN8_RPCS_S_CNT_MASK         (0x7 << GEN8_RPCS_S_CNT_SHIFT)
@@ -491,8 +491,8 @@
 #define   GAB_CTL_CONT_AFTER_PAGEFAULT (1 << 8)
 
 #define GEN6_STOLEN_RESERVED           _MMIO(0x1082C0)
-#define GEN6_STOLEN_RESERVED_ADDR_MASK (0xFFFUL << 20)
-#define GEN7_STOLEN_RESERVED_ADDR_MASK (0x3FFFUL << 18)
+#define GEN6_STOLEN_RESERVED_ADDR_MASK (0xFFF << 20)
+#define GEN7_STOLEN_RESERVED_ADDR_MASK (0x3FFF << 18)
 #define GEN6_STOLEN_RESERVED_SIZE_MASK (3 << 4)
 #define GEN6_STOLEN_RESERVED_1M                (0 << 4)
 #define GEN6_STOLEN_RESERVED_512K      (1 << 4)
@@ -2684,7 +2684,7 @@
 
 #define ERROR_GEN6     _MMIO(0x40a0)
 #define GEN7_ERR_INT   _MMIO(0x44040)
-#define   ERR_INT_POISON               (1U << 31)
+#define   ERR_INT_POISON               (1 << 31)
 #define   ERR_INT_MMIO_UNCLAIMED       (1 << 13)
 #define   ERR_INT_PIPE_CRC_DONE_C      (1 << 8)
 #define   ERR_INT_FIFO_UNDERRUN_C      (1 << 6)
@@ -2705,7 +2705,7 @@
 #define GEN12_AUX_ERR_DBG              _MMIO(0x43f4)
 
 #define FPGA_DBG               _MMIO(0x42300)
-#define   FPGA_DBG_RM_NOCLAIM  (1UL << 31)
+#define   FPGA_DBG_RM_NOCLAIM  (1 << 31)
 
 #define CLAIM_ER               _MMIO(VLV_DISPLAY_BASE + 0x2028)
 #define   CLAIM_ER_CLR         (1 << 31)
@@ -2858,7 +2858,7 @@
 #define FW_BLC_SELF    _MMIO(0x20e0) /* 915+ only */
 #define   FW_BLC_SELF_EN_MASK      (1 << 31)
 #define   FW_BLC_SELF_FIFO_MASK    (1 << 16) /* 945 only */
-#define   FW_BLC_SELF_EN           (1U << 15) /* 945 only */
+#define   FW_BLC_SELF_EN           (1 << 15) /* 945 only */
 #define MM_BURST_LENGTH     0x00700000
 #define MM_FIFO_WATERMARK   0x0001F000
 #define LM_BURST_LENGTH     0x00000700
@@ -3187,7 +3187,7 @@
 #define FBC_CFB_BASE           _MMIO(0x3200) /* 4k page aligned */
 #define FBC_LL_BASE            _MMIO(0x3204) /* 4k page aligned */
 #define FBC_CONTROL            _MMIO(0x3208)
-#define   FBC_CTL_EN           (1UL << 31)
+#define   FBC_CTL_EN           (1 << 31)
 #define   FBC_CTL_PERIODIC     (1 << 30)
 #define   FBC_CTL_INTERVAL_SHIFT (16)
 #define   FBC_CTL_UNCOMPRESSIBLE (1 << 14)
@@ -3220,7 +3220,7 @@
 /* Framebuffer compression for GM45+ */
 #define DPFC_CB_BASE           _MMIO(0x3200)
 #define DPFC_CONTROL           _MMIO(0x3208)
-#define   DPFC_CTL_EN          (1UL << 31)
+#define   DPFC_CTL_EN          (1 << 31)
 #define   DPFC_CTL_PLANE(plane)        ((plane) << 30)
 #define   IVB_DPFC_CTL_PLANE(plane)    ((plane) << 29)
 #define   DPFC_CTL_FENCE_EN    (1 << 29)
@@ -3322,7 +3322,7 @@
 #define   GMBUS_BYTE_CNT_OVERRIDE (1 << 6)
 
 #define GMBUS1                 _MMIO(dev_priv->gpio_mmio_base + 0x5104) /* command/status */
-#define   GMBUS_SW_CLR_INT     (1UL << 31)
+#define   GMBUS_SW_CLR_INT     (1 << 31)
 #define   GMBUS_SW_RDY         (1 << 30)
 #define   GMBUS_ENT            (1 << 29) /* enable timeout */
 #define   GMBUS_CYCLE_NONE     (0 << 25)
@@ -3373,7 +3373,7 @@
 #define   VGA1_PD_P1_DIV_2     (1 << 13)
 #define   VGA1_PD_P1_SHIFT     8
 #define   VGA1_PD_P1_MASK      (0x1f << 8)
-#define   DPLL_VCO_ENABLE              __BIT(31)
+#define   DPLL_VCO_ENABLE              (1 << 31)
 #define   DPLL_SDVO_HIGH_SPEED         (1 << 30)
 #define   DPLL_DVO_2X_MODE             (1 << 30)
 #define   DPLL_EXT_BUFFER_ENABLE_VLV   (1 << 30)
@@ -4490,7 +4490,7 @@
 #define PCH_ADPA                _MMIO(0xe1100)
 #define VLV_ADPA               _MMIO(VLV_DISPLAY_BASE + 0x61100)
 
-#define   ADPA_DAC_ENABLE      (1UL << 31)
+#define   ADPA_DAC_ENABLE      (1 << 31)
 #define   ADPA_DAC_DISABLE     0
 #define   ADPA_PIPE_SEL_SHIFT          30
 #define   ADPA_PIPE_SEL_MASK           (1 << 30)
@@ -4655,7 +4655,7 @@
 #define   PIPE_A_SCRAMBLE_RESET                        (1 << 0)
 
 /* Gen 3 SDVO bits: */
-#define   SDVO_ENABLE                          (1UL << 31)
+#define   SDVO_ENABLE                          (1 << 31)
 #define   SDVO_PIPE_SEL_SHIFT                  30
 #define   SDVO_PIPE_SEL_MASK                   (1 << 30)
 #define   SDVO_PIPE_SEL(pipe)                  ((pipe) << 30)
@@ -4753,7 +4753,7 @@
  * Enables the LVDS port.  This bit must be set before DPLLs are enabled, as
  * the DPLL semantics change when the LVDS is assigned to that pipe.
  */
-#define   LVDS_PORT_EN                 (1U << 31)
+#define   LVDS_PORT_EN                 (1 << 31)
 /* Selects pipe B for LVDS data.  Must be set on pre-965. */
 #define   LVDS_PIPE_SEL_SHIFT          30
 #define   LVDS_PIPE_SEL_MASK           (1 << 30)
@@ -4811,7 +4811,7 @@
 #define   VIDEO_DIP_PPS_DATA_SIZE      132
 #define VIDEO_DIP_CTL          _MMIO(0x61170)
 /* Pre HSW: */
-#define   VIDEO_DIP_ENABLE             (1U << 31)
+#define   VIDEO_DIP_ENABLE             (1 << 31)
 #define   VIDEO_DIP_PORT(port)         ((port) << 29)
 #define   VIDEO_DIP_PORT_MASK          (3 << 29)
 #define   VIDEO_DIP_ENABLE_GCP         (1 << 25) /* ilk+ */
@@ -4924,7 +4924,7 @@
 
 /* Panel fitting */
 #define PFIT_CONTROL   _MMIO(DISPLAY_MMIO_BASE(dev_priv) + 0x61230)
-#define   PFIT_ENABLE          (1UL << 31)
+#define   PFIT_ENABLE          (1 << 31)
 #define   PFIT_PIPE_MASK       (3 << 29)
 #define   PFIT_PIPE_SHIFT      29
 #define   VERT_INTERP_DISABLE  (0 << 10)
@@ -4972,7 +4972,7 @@
 
 /* Backlight control */
 #define BLC_PWM_CTL2   _MMIO(DISPLAY_MMIO_BASE(dev_priv) + 0x61250) /* 965+ only */
-#define   BLM_PWM_ENABLE               (1UL << 31)
+#define   BLM_PWM_ENABLE               (1 << 31)
 #define   BLM_COMBINATION_MODE         (1 << 30) /* gen4 only */
 #define   BLM_PIPE_SELECT              (1 << 29)
 #define   BLM_PIPE_SELECT_IVB          (3 << 29)
@@ -5029,7 +5029,7 @@
 /* PCH CTL1 is totally different, all but the below bits are reserved. CTL2 is
  * like the normal CTL from gen4 and earlier. Hooray for confusing naming. */
 #define BLC_PWM_PCH_CTL1       _MMIO(0xc8250)
-#define   BLM_PCH_PWM_ENABLE                   (1UL << 31)
+#define   BLM_PCH_PWM_ENABLE                   (1 << 31)
 #define   BLM_PCH_OVERRIDE_ENABLE              (1 << 30)
 #define   BLM_PCH_POLARITY                     (1 << 29)
 #define BLC_PWM_PCH_CTL2       _MMIO(0xc8254)
@@ -5073,7 +5073,7 @@
 /* TV port control */
 #define TV_CTL                 _MMIO(0x68000)
 /* Enables the TV encoder */
-# define TV_ENC_ENABLE                 (1U << 31)
+# define TV_ENC_ENABLE                 (1 << 31)
 /* Sources the TV encoder input from pipe B instead of A. */
 # define TV_ENC_PIPE_SEL_SHIFT         30
 # define TV_ENC_PIPE_SEL_MASK          (1 << 30)
@@ -5275,7 +5275,7 @@
 
 #define TV_H_CTL_2             _MMIO(0x68034)
 /* Enables the colorburst (needed for non-component color) */
-# define TV_BURST_ENA                  (1U << 31)
+# define TV_BURST_ENA                  (1 << 31)
 /* Offset of the colorburst from the start of hsync, in pixels minus one. */
 # define TV_HBURST_START_SHIFT         16
 # define TV_HBURST_START_MASK          0x1fff0000
@@ -5320,7 +5320,7 @@
 
 #define TV_V_CTL_3             _MMIO(0x68044)
 /* Enables generation of the equalization signal */
-# define TV_EQUAL_ENA                  (1U << 31)
+# define TV_EQUAL_ENA                  (1 << 31)
 /* Length of vsync, in half lines */
 # define TV_VEQ_LEN_MASK               0x007f0000
 # define TV_VEQ_LEN_SHIFT              16
@@ -5394,7 +5394,7 @@
 
 #define TV_SC_CTL_1            _MMIO(0x68060)
 /* Turns on the first subcarrier phase generation DDA */
-# define TV_SC_DDA1_EN                 (1U << 31)
+# define TV_SC_DDA1_EN                 (1 << 31)
 /* Turns on the first subcarrier phase generation DDA */
 # define TV_SC_DDA2_EN                 (1 << 30)
 /* Turns on the first subcarrier phase generation DDA */
@@ -5457,7 +5457,7 @@
  * If set, the rest of the registers are ignored, and the calculated values can
  * be read back from the register.
  */
-# define TV_AUTO_SCALE                 (1U << 31)
+# define TV_AUTO_SCALE                 (1 << 31)
 /*
  * Disables the vertical filter.
  *
@@ -5559,7 +5559,7 @@
 #define VLV_DP_C               _MMIO(VLV_DISPLAY_BASE + 0x64200)
 #define CHV_DP_D               _MMIO(VLV_DISPLAY_BASE + 0x64300)
 
-#define   DP_PORT_EN                   (1UL << 31)
+#define   DP_PORT_EN                   (1 << 31)
 #define   DP_PIPE_SEL_SHIFT            30
 #define   DP_PIPE_SEL_MASK             (1 << 30)
 #define   DP_PIPE_SEL(pipe)            ((pipe) << 30)
@@ -5656,7 +5656,7 @@
 #define DP_AUX_CH_CTL(aux_ch)  _MMIO_PORT(aux_ch, _DPA_AUX_CH_CTL, _DPB_AUX_CH_CTL)
 #define DP_AUX_CH_DATA(aux_ch, i)      _MMIO(_PORT(aux_ch, _DPA_AUX_CH_DATA1, _DPB_AUX_CH_DATA1) + (i) * 4) /* 5 registers */
 
-#define   DP_AUX_CH_CTL_SEND_BUSY          (1UL << 31)
+#define   DP_AUX_CH_CTL_SEND_BUSY          (1 << 31)
 #define   DP_AUX_CH_CTL_DONE               (1 << 30)
 #define   DP_AUX_CH_CTL_INTERRUPT          (1 << 29)
 #define   DP_AUX_CH_CTL_TIME_OUT_ERROR     (1 << 28)
@@ -5744,7 +5744,7 @@
 #define   DSL_LINEMASK_GEN2    0x00000fff
 #define   DSL_LINEMASK_GEN3    0x00001fff
 #define _PIPEACONF             0x70008
-#define   PIPECONF_ENABLE      (1UL << 31)
+#define   PIPECONF_ENABLE      (1 << 31)
 #define   PIPECONF_DISABLE     0
 #define   PIPECONF_DOUBLE_WIDE (1 << 30)
 #define   I965_PIPECONF_ACTIVE (1 << 30)
@@ -5989,7 +5989,7 @@
 /* pnv/gen4/g4x/vlv/chv */
 #define DSPFW1         _MMIO(DISPLAY_MMIO_BASE(dev_priv) + 0x70034)
 #define   DSPFW_SR_SHIFT               23
-#define   DSPFW_SR_MASK                        (0x1ffU << 23)
+#define   DSPFW_SR_MASK                        (0x1ff << 23)
 #define   DSPFW_CURSORB_SHIFT          16
 #define   DSPFW_CURSORB_MASK           (0x3f << 16)
 #define   DSPFW_PLANEB_SHIFT           8
@@ -6015,7 +6015,7 @@
 #define   DSPFW_SPRITEA_MASK           (0x7f << 0) /* g4x */
 #define   DSPFW_SPRITEA_MASK_VLV       (0xff << 0) /* vlv/chv */
 #define DSPFW3         _MMIO(DISPLAY_MMIO_BASE(dev_priv) + 0x7003c)
-#define   DSPFW_HPLL_SR_EN             (1UL << 31)
+#define   DSPFW_HPLL_SR_EN             (1 << 31)
 #define   PINEVIEW_SELF_REFRESH_EN     (1 << 30)
 #define   DSPFW_CURSOR_SR_SHIFT                24
 #define   DSPFW_CURSOR_SR_MASK         (0x3f << 24)
@@ -6204,7 +6204,7 @@
 
 /* define the Watermark register on Ironlake */
 #define WM0_PIPEA_ILK          _MMIO(0x45100)
-#define  WM0_PIPE_PLANE_MASK   (0xffffUL << 16)
+#define  WM0_PIPE_PLANE_MASK   (0xffff << 16)
 #define  WM0_PIPE_PLANE_SHIFT  16
 #define  WM0_PIPE_SPRITE_MASK  (0xff << 8)
 #define  WM0_PIPE_SPRITE_SHIFT 8
@@ -6213,7 +6213,7 @@
 #define WM0_PIPEB_ILK          _MMIO(0x45104)
 #define WM0_PIPEC_IVB          _MMIO(0x45200)
 #define WM1_LP_ILK             _MMIO(0x45108)
-#define  WM1_LP_SR_EN          (1UL << 31)
+#define  WM1_LP_SR_EN          (1 << 31)
 #define  WM1_LP_LATENCY_SHIFT  24
 #define  WM1_LP_LATENCY_MASK   (0x7f << 24)
 #define  WM1_LP_FBC_MASK       (0xf << 20)
@@ -6343,7 +6343,7 @@
 
 /* Display A control */
 #define _DSPACNTR                              0x70180
-#define   DISPLAY_PLANE_ENABLE                 (1UL << 31)
+#define   DISPLAY_PLANE_ENABLE                 (1 << 31)
 #define   DISPLAY_PLANE_DISABLE                        0
 #define   DISPPLANE_GAMMA_ENABLE               (1 << 30)
 #define   DISPPLANE_GAMMA_DISABLE              0
@@ -6471,7 +6471,7 @@



Home | Main Index | Thread Index | Old Index