From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-188.mta1.migadu.com (out-188.mta1.migadu.com [95.215.58.188]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id DB6D7428466 for ; Tue, 20 Jan 2026 23:44:07 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.188 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768952653; cv=none; b=qnecbNDktt1WevJu7sEPChCCCdHGdmbyutgbOl8ds8Q4SrWhyhUk8/xCxyXFyvd7t/JxUubgk9pLSkr0c/lsZ9AotoOzajl+xJJ2GZXgw+eSBWNa3zXfqGv31EbaMoJgRYJ/E09MkLKD8O9Tfxd9IPf3+IYiXYja+KLl8eYf5e4= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1768952653; c=relaxed/simple; bh=3fgGXBICYkDNMi1QBjhpqCPurUC37AsEXXBKM5mcgLs=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=U4U6YPj0SLmQXg2OXh+qKZLCQ14H64zIRqTRhYE8wT0IsAyoDF6ph+zBddFqreWNs6yLce/jgYOiZ7ccgzkwjeqy0ZaC3obsrnJqsNUg33OvSpkdpPcVHMwBbnU9cyrHEiOnFarHkvKzwqYqkSvct3hDRe2o1sbN77hYYrvoWQE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=packett.cool; spf=pass smtp.mailfrom=packett.cool; dkim=pass (2048-bit key) header.d=packett.cool header.i=@packett.cool header.b=NG96S3D/; arc=none smtp.client-ip=95.215.58.188 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=packett.cool Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=packett.cool Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=packett.cool header.i=@packett.cool header.b="NG96S3D/" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=packett.cool; s=key1; t=1768952645; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=FDJxp3cbfhqdB20eFZQXlAwnoycW+pJ5fFdCCysH1Xs=; b=NG96S3D/qxn1NEmCIzXrUWRoNHqwnObYTEMHmaNA4yWKzuOIBUXZe1nE+jycqGGnhFygDI Rs4CWYe6RVetvvW+uGoaLPNw23muLektEG4SR482JtpiAwQbGzSqCnmYCRhye5PPGaq8vr 2MCZAD/Ig9cI/qM4wsDxjIyX8HuSvtd55A+KqADgJPJPewsturUNEWGFAwp+kxcQl0MNr9 0EBC8EZiSX5klvbXexMePPnO8cvFRGnS0xZcNGoamxXrrpwGLrxoFxaxtFDMs3da4aG5Fv MpXIbDliw4VYS+NAtn7fgpd+0ehq6p0VVSZkTpD2vYCb0BF8QL/eVo/5pg4ReQ== From: Val Packett To: Andrzej Hajda , Neil Armstrong , Robert Foss , Laurent Pinchart , Jonas Karlman , Jernej Skrabec , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , David Airlie , Simona Vetter Cc: Val Packett , linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Dmitry Baryshkov , dri-devel@lists.freedesktop.org Subject: [PATCH v2 5/7] drm/bridge: simple: add the Algoltek AG6311 DP-to-HDMI bridge Date: Tue, 20 Jan 2026 20:30:10 -0300 Message-ID: <20260120234029.419825-8-val@packett.cool> In-Reply-To: <20260120234029.419825-2-val@packett.cool> References: <20260120234029.419825-2-val@packett.cool> Precedence: bulk X-Mailing-List: linux-arm-msm@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT The Algoltek AG6311 is a transparent DisplayPort to HDMI bridge. Reviewed-by: Dmitry Baryshkov Signed-off-by: Val Packett --- drivers/gpu/drm/bridge/simple-bridge.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/drivers/gpu/drm/bridge/simple-bridge.c b/drivers/gpu/drm/bridge/simple-bridge.c index 873b32cfb508..8aa31ca3c72d 100644 --- a/drivers/gpu/drm/bridge/simple-bridge.c +++ b/drivers/gpu/drm/bridge/simple-bridge.c @@ -260,6 +260,11 @@ static const struct of_device_id simple_bridge_match[] = { .timings = &default_bridge_timings, .connector_type = DRM_MODE_CONNECTOR_VGA, }, + }, { + .compatible = "algoltek,ag6311", + .data = &(const struct simple_bridge_info) { + .connector_type = DRM_MODE_CONNECTOR_HDMIA, + }, }, { .compatible = "asl-tek,cs5263", .data = &(const struct simple_bridge_info) { -- 2.51.2