All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Kees Cook <keescook@google.com>
Cc: intel-gfx@lists.freedesktop.org,
	LKML <linux-kernel@vger.kernel.org>,
	Rodrigo Vivi <rodrigo.vivi@intel.com>
Subject: Re: i915: enum intel_dpll_id cast
Date: Thu, 23 Nov 2017 16:24:17 +0200	[thread overview]
Message-ID: <20171123142417.GR10981@intel.com> (raw)
In-Reply-To: <CAGXu5jJ3Sa8Kj7JSFBfKn=35FSyGnimKvq2ES6u84Axvbo_BQg@mail.gmail.com>

On Wed, Nov 22, 2017 at 12:54:49PM -0800, Kees Cook wrote:
> Hi,
> 
> While doing Clang test builds, this was reported:
> 
> drivers/gpu/drm/i915/intel_ddi.c:1481:30: warning: implicit conversion
> from enumeration type 'enum port' to different enumeration type 'enum
> intel_dpll_id' [-Wenum-conversion]
>         enum intel_dpll_id pll_id = port;
>                            ~~~~~~   ^~~~
> 
> Which is from:
> 
> static void bxt_ddi_clock_get(struct intel_encoder *encoder,
>                                 struct intel_crtc_state *pipe_config)
> {
>         struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
>         enum port port = intel_ddi_get_encoder_port(encoder);
>         enum intel_dpll_id pll_id = port;
> 
>         pipe_config->port_clock = bxt_calc_pll_link(dev_priv, pll_id);
> ...
> }
> 
> In looking at it, it seems to be harmless if as enum port has a
> smaller range than enum intel_dpll_id. I just wanted to check if maybe
> something might go weird, since DPLL_ID_LCPLL_2700 maybe ends up
> getting seen as I915_MAX_PORTS?

BXT can only ever have port values PORT_[A-C] and the matching
dpll_id values (DPLL_ID_SKL_DPLL[0-2]), so it's fine.

Also that implicit cast is actually gone from the latest code thanks
to commit bb911536f07e ("drm/i915: Eliminate pll->state usage from
bxt_calc_pll_link()").

> 
> enum port {
>         PORT_NONE = -1,
>         PORT_A = 0,
>         PORT_B,
>         PORT_C,
>         PORT_D,
>         PORT_E,
>         I915_MAX_PORTS
> };
> 
> enum intel_dpll_id {
> ...
>         DPLL_ID_LCPLL_2700 = 5,
> ...
> };
> 
> 
> Thanks!
> 
> -Kees
> 
> -- 
> Kees Cook
> Pixel Security
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx

-- 
Ville Syrjälä
Intel OTC
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

WARNING: multiple messages have this Message-ID (diff)
From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Kees Cook <keescook@google.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>,
	intel-gfx@lists.freedesktop.org,
	LKML <linux-kernel@vger.kernel.org>
Subject: Re: [Intel-gfx] i915: enum intel_dpll_id cast
Date: Thu, 23 Nov 2017 16:24:17 +0200	[thread overview]
Message-ID: <20171123142417.GR10981@intel.com> (raw)
In-Reply-To: <CAGXu5jJ3Sa8Kj7JSFBfKn=35FSyGnimKvq2ES6u84Axvbo_BQg@mail.gmail.com>

On Wed, Nov 22, 2017 at 12:54:49PM -0800, Kees Cook wrote:
> Hi,
> 
> While doing Clang test builds, this was reported:
> 
> drivers/gpu/drm/i915/intel_ddi.c:1481:30: warning: implicit conversion
> from enumeration type 'enum port' to different enumeration type 'enum
> intel_dpll_id' [-Wenum-conversion]
>         enum intel_dpll_id pll_id = port;
>                            ~~~~~~   ^~~~
> 
> Which is from:
> 
> static void bxt_ddi_clock_get(struct intel_encoder *encoder,
>                                 struct intel_crtc_state *pipe_config)
> {
>         struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
>         enum port port = intel_ddi_get_encoder_port(encoder);
>         enum intel_dpll_id pll_id = port;
> 
>         pipe_config->port_clock = bxt_calc_pll_link(dev_priv, pll_id);
> ...
> }
> 
> In looking at it, it seems to be harmless if as enum port has a
> smaller range than enum intel_dpll_id. I just wanted to check if maybe
> something might go weird, since DPLL_ID_LCPLL_2700 maybe ends up
> getting seen as I915_MAX_PORTS?

BXT can only ever have port values PORT_[A-C] and the matching
dpll_id values (DPLL_ID_SKL_DPLL[0-2]), so it's fine.

Also that implicit cast is actually gone from the latest code thanks
to commit bb911536f07e ("drm/i915: Eliminate pll->state usage from
bxt_calc_pll_link()").

> 
> enum port {
>         PORT_NONE = -1,
>         PORT_A = 0,
>         PORT_B,
>         PORT_C,
>         PORT_D,
>         PORT_E,
>         I915_MAX_PORTS
> };
> 
> enum intel_dpll_id {
> ...
>         DPLL_ID_LCPLL_2700 = 5,
> ...
> };
> 
> 
> Thanks!
> 
> -Kees
> 
> -- 
> Kees Cook
> Pixel Security
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx

-- 
Ville Syrjälä
Intel OTC

  reply	other threads:[~2017-11-23 14:24 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-11-22 20:54 i915: enum intel_dpll_id cast Kees Cook
2017-11-23 14:24 ` Ville Syrjälä [this message]
2017-11-23 14:24   ` [Intel-gfx] " Ville Syrjälä

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20171123142417.GR10981@intel.com \
    --to=ville.syrjala@linux.intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=keescook@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rodrigo.vivi@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.