From patchwork Fri Aug 25 13:44:25 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Ville Syrjala X-Patchwork-Id: 13365711 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id B135AC3DA6F for ; Fri, 25 Aug 2023 13:44:38 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 245DF10E69A; Fri, 25 Aug 2023 13:44:38 +0000 (UTC) Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.126]) by gabe.freedesktop.org (Postfix) with ESMTPS id 83C9D10E69A for ; Fri, 25 Aug 2023 13:44:35 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1692971075; x=1724507075; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=R/cln/pVe558fAWM5mDUFwwE7a7qReURbt8ncw47wRo=; b=cyqx3dZPkbgm7LGcNe9qyTEaoGDfSSBCClULn5qpxqlu3XcVPEhmhlCL pBj42qOiJ2papQ3fWhWO9rM0T3JOHPqpD0KMULCgcNJ9/4KHmAwdM8q6f bNavYwNWQr2QZ5JJh7DJNykTYIrAlYbJWA2yU33+laSSfWEre8jt41bIW Brzd4okvXhBYBizPr1tcZyoGV52P7AhBUTytsrYEoQfFg0HLN/tco4xIL +Rbh3DVqtsn/RjneZLMlWGAz8kDT3wEuHtn58q/KQYjyHFLGhHJUcFUs4 Q1SFIIcHEwTGhlbGXSit/Sfx8DOe0vpNW+lOJ+6svLrq4DjNQ1LDxNxkL g==; X-IronPort-AV: E=McAfee;i="6600,9927,10813"; a="359714280" X-IronPort-AV: E=Sophos;i="6.02,195,1688454000"; d="scan'208";a="359714280" Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Aug 2023 06:44:35 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10813"; a="984123020" X-IronPort-AV: E=Sophos;i="6.02,195,1688454000"; d="scan'208";a="984123020" Received: from stinkpipe.fi.intel.com (HELO stinkbox) ([10.237.72.153]) by fmsmga006.fm.intel.com with SMTP; 25 Aug 2023 06:44:32 -0700 Received: by stinkbox (sSMTP sendmail emulation); Fri, 25 Aug 2023 16:44:31 +0300 From: Ville Syrjala To: intel-gfx@lists.freedesktop.org Date: Fri, 25 Aug 2023 16:44:25 +0300 Message-ID: <20230825134431.24391-1-ville.syrjala@linux.intel.com> X-Mailer: git-send-email 2.41.0 MIME-Version: 1.0 Subject: [Intel-gfx] [PATCH v2 0/6] drm/i915/sdvo: DDC rework and fixes X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Jani Nikula Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" From: Ville Syrjälä I have plans to switch the whole driver over to using drm_connector_init_with_ddc(), and thus populate the sysfs "ddc" consistently. The biggest hurdle is the SDVO DDC handling, so start by cleaning that up. I also found some other issues with the SDVO code so some additional fixes are also included. v2: Bunch of stuff alreadey merged Fixed the error path in the init code (Jani) Cc: Jani Nikula Ville Syrjälä (6): drm/i915/sdvo: Nuke attached_output tracking drm/i915/sdvo: Initialize the encoder earlier drm/i915/sdvo: Nuke the duplicate sdvo->port drm/i915/sdvo: Get rid of the per-connector i2c symlink drm/i915/sdvo: Rework DDC bus handling drm/i915/sdvo: Print out the i2c pin and slave address drivers/gpu/drm/i915/display/intel_sdvo.c | 311 +++++++++++----------- 1 file changed, 155 insertions(+), 156 deletions(-)