Re: [Intel-gfx] [PATCH] drm/i915: tune down DIDL warning about too many outputs

2013-06-24 Thread Damien Lespiau
On Mon, Jun 24, 2013 at 06:32:36PM +0200, Daniel Vetter wrote:
 Nothing the user (nor we) really can do about this, but upsets a nice
 quiet boot.
 
 Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=65988
 Signed-off-by: Daniel Vetter daniel.vet...@ffwll.ch

Reviewed-by: Damien Lespiau damien.lesp...@intel.com

-- 
Damien

 ---
  drivers/gpu/drm/i915/intel_opregion.c |8 
  1 file changed, 4 insertions(+), 4 deletions(-)
 
 diff --git a/drivers/gpu/drm/i915/intel_opregion.c 
 b/drivers/gpu/drm/i915/intel_opregion.c
 index 79be7cf..cfb8fb6 100644
 --- a/drivers/gpu/drm/i915/intel_opregion.c
 +++ b/drivers/gpu/drm/i915/intel_opregion.c
 @@ -311,8 +311,8 @@ static void intel_didl_outputs(struct drm_device *dev)
  
   list_for_each_entry(acpi_cdev, acpi_video_bus-children, node) {
   if (i = 8) {
 - dev_printk(KERN_ERR, dev-pdev-dev,
 -More than 8 outputs detected via ACPI\n);
 + dev_dbg(dev-pdev-dev,
 + More than 8 outputs detected via ACPI\n);
   return;
   }
   status =
 @@ -338,8 +338,8 @@ blind_set:
   list_for_each_entry(connector, dev-mode_config.connector_list, head) {
   int output_type = ACPI_OTHER_OUTPUT;
   if (i = 8) {
 - dev_printk(KERN_ERR, dev-pdev-dev,
 -More than 8 outputs in connector list\n);
 + dev_dbg(dev-pdev-dev,
 + More than 8 outputs in connector list\n);
   return;
   }
   switch (connector-connector_type) {
 -- 
 1.7.10.4
 
 ___
 Intel-gfx mailing list
 Intel-gfx@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/intel-gfx
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: tune down DIDL warning about too many outputs

2013-06-24 Thread Paulo Zanoni
2013/6/24 Daniel Vetter daniel.vet...@ffwll.ch:
 Nothing the user (nor we) really can do about this, but upsets a nice
 quiet boot.

 Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=65988
 Signed-off-by: Daniel Vetter daniel.vet...@ffwll.ch

What exactly is the impact of this problem? What happens when we
detect this? If we don't know which problems could happen when we
reach this condition, then I really don't think we should tune down
the message. If we know what is the impact of that message, then I
think we should add a nice comment explaining that, and only then
maybe tune down the message.

By the way, this message is seen on all Haswell machines I checked.


 ---
  drivers/gpu/drm/i915/intel_opregion.c |8 
  1 file changed, 4 insertions(+), 4 deletions(-)

 diff --git a/drivers/gpu/drm/i915/intel_opregion.c 
 b/drivers/gpu/drm/i915/intel_opregion.c
 index 79be7cf..cfb8fb6 100644
 --- a/drivers/gpu/drm/i915/intel_opregion.c
 +++ b/drivers/gpu/drm/i915/intel_opregion.c
 @@ -311,8 +311,8 @@ static void intel_didl_outputs(struct drm_device *dev)

 list_for_each_entry(acpi_cdev, acpi_video_bus-children, node) {
 if (i = 8) {
 -   dev_printk(KERN_ERR, dev-pdev-dev,
 -  More than 8 outputs detected via ACPI\n);
 +   dev_dbg(dev-pdev-dev,
 +   More than 8 outputs detected via ACPI\n);
 return;
 }
 status =
 @@ -338,8 +338,8 @@ blind_set:
 list_for_each_entry(connector, dev-mode_config.connector_list, 
 head) {
 int output_type = ACPI_OTHER_OUTPUT;
 if (i = 8) {
 -   dev_printk(KERN_ERR, dev-pdev-dev,
 -  More than 8 outputs in connector list\n);
 +   dev_dbg(dev-pdev-dev,
 +   More than 8 outputs in connector list\n);
 return;
 }
 switch (connector-connector_type) {
 --
 1.7.10.4

 ___
 Intel-gfx mailing list
 Intel-gfx@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/intel-gfx



-- 
Paulo Zanoni
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: tune down DIDL warning about too many outputs

2013-06-24 Thread Daniel Vetter
On Mon, Jun 24, 2013 at 7:30 PM, Paulo Zanoni przan...@gmail.com wrote:
 2013/6/24 Daniel Vetter daniel.vet...@ffwll.ch:
 Nothing the user (nor we) really can do about this, but upsets a nice
 quiet boot.

 Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=65988
 Signed-off-by: Daniel Vetter daniel.vet...@ffwll.ch

 What exactly is the impact of this problem? What happens when we
 detect this? If we don't know which problems could happen when we
 reach this condition, then I really don't think we should tune down
 the message. If we know what is the impact of that message, then I
 think we should add a nice comment explaining that, and only then
 maybe tune down the message.

 By the way, this message is seen on all Haswell machines I checked.

It means that the BIOS set up more outputs than what OpRegion
supports. Tends to happen a lot with SDVs. Afaik there's nothing we
can do when this happens.
-Daniel
--
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx


Re: [Intel-gfx] [PATCH] drm/i915: tune down DIDL warning about too many outputs

2013-06-24 Thread Daniel Vetter
On Mon, Jun 24, 2013 at 06:06:35PM +0100, Damien Lespiau wrote:
 On Mon, Jun 24, 2013 at 06:32:36PM +0200, Daniel Vetter wrote:
  Nothing the user (nor we) really can do about this, but upsets a nice
  quiet boot.
  
  Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=65988
  Signed-off-by: Daniel Vetter daniel.vet...@ffwll.ch
 
 Reviewed-by: Damien Lespiau damien.lesp...@intel.com

Queued for -next (with slightly amended commit message to clarify the
question from Paulo), thanks for the review.
-Daniel
 
 -- 
 Damien
 
  ---
   drivers/gpu/drm/i915/intel_opregion.c |8 
   1 file changed, 4 insertions(+), 4 deletions(-)
  
  diff --git a/drivers/gpu/drm/i915/intel_opregion.c 
  b/drivers/gpu/drm/i915/intel_opregion.c
  index 79be7cf..cfb8fb6 100644
  --- a/drivers/gpu/drm/i915/intel_opregion.c
  +++ b/drivers/gpu/drm/i915/intel_opregion.c
  @@ -311,8 +311,8 @@ static void intel_didl_outputs(struct drm_device *dev)
   
  list_for_each_entry(acpi_cdev, acpi_video_bus-children, node) {
  if (i = 8) {
  -   dev_printk(KERN_ERR, dev-pdev-dev,
  -  More than 8 outputs detected via ACPI\n);
  +   dev_dbg(dev-pdev-dev,
  +   More than 8 outputs detected via ACPI\n);
  return;
  }
  status =
  @@ -338,8 +338,8 @@ blind_set:
  list_for_each_entry(connector, dev-mode_config.connector_list, head) {
  int output_type = ACPI_OTHER_OUTPUT;
  if (i = 8) {
  -   dev_printk(KERN_ERR, dev-pdev-dev,
  -  More than 8 outputs in connector list\n);
  +   dev_dbg(dev-pdev-dev,
  +   More than 8 outputs in connector list\n);
  return;
  }
  switch (connector-connector_type) {
  -- 
  1.7.10.4
  
  ___
  Intel-gfx mailing list
  Intel-gfx@lists.freedesktop.org
  http://lists.freedesktop.org/mailman/listinfo/intel-gfx

-- 
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx