Hi Sui, On Sun, Apr 28, 2024 at 04:36:50AM +0800, Sui Jingfeng wrote: > 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, which helps to keep > the three backends of the fwnode API aligned as much as possible. This is > also a fundamental step to make a few drivers OF-independent truely > possible. > > Device drivers or platform setup codes are expected to provide a software > node string property, named as "compatible". At this moment, the value of > this string property is being used to match against the compatible entries > in the of_device_id table. It can be extended in the future though. I am sorry, but this is not really correct. Software nodes are used to augment missing or incomplete parameters, but are never primary objects in the matching process. Sometimes "compatible" property is used with software nodes, but it does not participate in the matching process. There are several ways for various buses to match a device and a driver, but none of them operate on software nodes. Consider for example how devices on SPI bus are matched (see drivers/spi/spi.c::spi_match_device()): 1. OF/device tree based match. It *requires* the device to have dev->of_node which is coming from a DTB. It does not work on software nodes. In case of match the match data should come from of_device_id entry. 2. ACPI-based match. The match is done based either on OF-compatible data (which includes "compatible" property) in _DSD (if driver supports OF-based matching), or based on HID/CID data. In the latter case the match data is coming from acpi_device_id entry. 3. Name-based match, typically used for board-instantiated devices. In this case match is done by comparing device name under which it was instantiated against names listed in the drivers id_table. The match data is coming from spi_device_id entry. Similar matching processes are implemented for i2c and platform buses, as well as others. Your patch is effectively hijacks the #3 matching process and substitutes the bus-specific match data (from spi_device_id/i2c_device_id/etc) with OF data. This is not expected and while we may want this in a long term (so we can eventually remove these bus-specific device ids and only have ACPI/OF ones) I do not think we are ready for this yet. At the very least this needs to be very clearly documented. > > Fixes: ffb42e64561e ("drm/tiny/repaper: Make driver OF-independent") > Fixes: 5703d6ae9573 ("drm/tiny/st7735r: Make driver OF-independent") As other people mentioned this patch does not fix the aforementioned commits because they are not broken. In case of non-OF match (which includes the case where you use software nodes) the match data is coming from matching spi_device_id entry in the driver. Thanks. -- Dmitry