From nobody Wed Feb 11 05:07:47 2026 Received: from out-179.mta0.migadu.com (out-179.mta0.migadu.com [91.218.175.179]) (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 CC4D2153825 for ; Mon, 22 Apr 2024 16:47:14 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.179 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1713804436; cv=none; b=ussLlMCW4XYNdkGtcxGx3FoKDtI5XmeU11mUVCA/Nw372s4GUoeg0vLY/9o8GfYLNmYAFW4D4OUT8lRBjtx6fpHIR+F7dBtL636XkNtSLNviXnrojIB3IJO+ipsdZYQtMg7ZBC2w626gISd5KFMLxBDwdpdIsveQgpQZvtNO84s= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1713804436; c=relaxed/simple; bh=JsuHU/uiRlbuXLGd2jq3bAmvz5bvKgsQuAwVRdaR0NM=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=ZvxQ/fkFJVSfz3EEc6srnoJGfDrmc8GRuOH5EE4prDxRMX0X1OZFf/xCnsmwPGQ0+OtW2brw9giibp/xLWPJKda9q7Rd1pz+Q2kNa84EHzjdqhB3K5YLX5Bo257xc3jXcTO5LOYiBzYQEYIJGgelnK8Zb9L7rloCFkPyH5CuzlE= 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=nyJSqJyr; arc=none smtp.client-ip=91.218.175.179 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="nyJSqJyr" 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=1713804431; 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; bh=dcyoi5sOG2B7iFToO0Fnv1/d2q+P/6hiQ3YBRfUehOg=; b=nyJSqJyrY26dfbyJrlebkOGESL+TILpfJMgByW5Gme7yAkGMcsxCBV/561pBkf37GgT3RY gxiqUdN2qtNaxojlEvtFrjMgOozleQs22/d/dyG6n/Q9b9BypzmtAvNcVkH+6hhO7sLUrh deOYvS9qGZtw0XMzcWoaJ/nThDdC3Hc= From: Sui Jingfeng To: Andy Shevchenko Cc: dri-devel@lists.freedesktop.org, linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org, Sui Jingfeng , Daniel Scally , Heikki Krogerus , Sakari Ailus , Greg Kroah-Hartman , "Rafael J. Wysocki" Subject: [PATCH v2] software node: Implement device_get_match_data fwnode callback Date: Tue, 23 Apr 2024 00:46:58 +0800 Message-Id: <20240422164658.217037-1-sui.jingfeng@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" Because the software node backend of the fwnode API framework lacks an implementation for the .device_get_match_data function callback. This makes it difficult to use(and/or test) a few drivers that originates from DT world on the non-DT platform. Implement the .device_get_match_data fwnode callback, device drivers or platform setup codes are expected to provide a string property, named as "compatible", the value of this software node string property is used to match against the compatible entries in the of_device_id table. This also helps to keep the three backends of the fwnode API aligned as much as possible, which is a fundamential step to make device driver OF-independent truely possible. Fixes: ffb42e64561e ("drm/tiny/repaper: Make driver OF-independent") Fixes: 5703d6ae9573 ("drm/tiny/st7735r: Make driver OF-independent") Closes: https://lore.kernel.org/lkml/20230223203713.hcse3mkbq3m6sogb@skbuf/ Cc: Andy Shevchenko Cc: Daniel Scally Cc: Heikki Krogerus Cc: Sakari Ailus Cc: Greg Kroah-Hartman Cc: "Rafael J. Wysocki" Signed-off-by: Sui Jingfeng --- V2: Update commit message drivers/base/swnode.c | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/drivers/base/swnode.c b/drivers/base/swnode.c index eb6eb25b343b..48d18a90b97b 100644 --- a/drivers/base/swnode.c +++ b/drivers/base/swnode.c @@ -14,6 +14,7 @@ #include #include #include +#include #include #include #include @@ -390,6 +391,30 @@ static void software_node_put(struct fwnode_handle *fw= node) kobject_put(&swnode->kobj); } =20 +static const void * +software_node_get_match_data(const struct fwnode_handle *fwnode, + const struct device *dev) +{ + struct swnode *swnode =3D to_swnode(fwnode); + const struct of_device_id *matches =3D dev->driver->of_match_table; + const char *val =3D NULL; + int ret; + + ret =3D property_entry_read_string_array(swnode->node->properties, + "compatible", &val, 1); + if (ret < 0 || !val) + return NULL; + + while (matches && matches->compatible[0]) { + if (!strcmp(matches->compatible, val)) + return matches->data; + + matches++; + } + + return NULL; +} + static bool software_node_property_present(const struct fwnode_handle *fwn= ode, const char *propname) { @@ -676,6 +701,7 @@ software_node_graph_parse_endpoint(const struct fwnode_= handle *fwnode, static const struct fwnode_operations software_node_ops =3D { .get =3D software_node_get, .put =3D software_node_put, + .device_get_match_data =3D software_node_get_match_data, .property_present =3D software_node_property_present, .property_read_int_array =3D software_node_read_int_array, .property_read_string_array =3D software_node_read_string_array, --=20 2.34.1