From nobody Wed Feb 11 02:26:56 2026 Received: from out-172.mta0.migadu.com (out-172.mta0.migadu.com [91.218.175.172]) (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 BF856156962 for ; Mon, 22 Apr 2024 18:46:18 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.172 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1713811580; cv=none; b=eb5hBZrGNoWqaJC2mTSNSzfwVMVdeCt0dTWb1IbQzG1EZ9avaxKm0R8Om3BhCSLrBhKVWKGfEUlgghsRG+x8CdtB5sR8TyN770hZrTl8TxUcuXCwiJKN3+zI4usx7yOHVs17uDx5OJlNcKJVfu/O+dmm9mPYB7e9MxWM+gjMSQE= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1713811580; c=relaxed/simple; bh=Hzw5ZGP57CdMyUjqqbNpq8ChoCI4EWej6zxj4mtjxYY=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=em4GyVIKE2nD5fgtjXgGpSsKeFexPeNI30zGvdRJ3NoqHtV7pcD/mMFMSl9W7DQfTniSGA7drmGu1O9mmNMrAsDiI8RA8lEVPqlKhgQGRbfCvGTv4xpA/eJK3NYsL2cLwR4rBvmEBjpx2Kjrc2YhSu08z5L9q00LuR3FWMxuYnc= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=uM/UcWLK; arc=none smtp.client-ip=91.218.175.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="uM/UcWLK" 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=linux.dev; s=key1; t=1713811577; 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=X1nR5YnTg+vd9vnQmjFSkw7hgekdgnmkJ3Q9sUvBYxo=; b=uM/UcWLKSLwOJoeKCSubhVPlhhUklqGCpWeJcOHV1Eyxq9lKo2NN2ucuERtrOoWXL2Uqar +jiCZA4WNuIJuq5g1sOWlnb3H63ithT3nE2VCe58h8+ReJ7Par74d9GWPXW1hUj8lOVaXT 4n2wNywLg1rcdRQcTO7l5t0zOxIWAjw= From: Sean Anderson To: Laurent Pinchart , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , dri-devel@lists.freedesktop.org Cc: David Airlie , Daniel Vetter , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Michal Simek , Sean Anderson Subject: [PATCH v3 09/13] drm: zynqmp_dp: Convert to a hard IRQ Date: Mon, 22 Apr 2024 14:45:49 -0400 Message-Id: <20240422184553.3573009-10-sean.anderson@linux.dev> In-Reply-To: <20240422184553.3573009-1-sean.anderson@linux.dev> References: <20240422184553.3573009-1-sean.anderson@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Migadu-Flow: FLOW_OUT Content-Type: text/plain; charset="utf-8" Now that all of the sleeping work is done outside of the IRQ, we can convert it to a hard IRQ. Signed-off-by: Sean Anderson --- Changes in v3: - New drivers/gpu/drm/xlnx/zynqmp_dp.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/xlnx/zynqmp_dp.c b/drivers/gpu/drm/xlnx/zynqmp= _dp.c index 8ad8db01f136..3ecfebf35a72 100644 --- a/drivers/gpu/drm/xlnx/zynqmp_dp.c +++ b/drivers/gpu/drm/xlnx/zynqmp_dp.c @@ -1774,9 +1774,8 @@ int zynqmp_dp_probe(struct zynqmp_dpsub *dpsub) * Now that the hardware is initialized and won't generate spurious * interrupts, request the IRQ. */ - ret =3D devm_request_threaded_irq(dp->dev, dp->irq, NULL, - zynqmp_dp_irq_handler, IRQF_ONESHOT, - dev_name(dp->dev), dp); + ret =3D devm_request_irq(dp->dev, dp->irq, zynqmp_dp_irq_handler, + IRQF_SHARED, dev_name(dp->dev), dp); if (ret < 0) goto err_phy_exit; =20 --=20 2.35.1.1320.gc452695387.dirty