Re: [RFC PATCH 3/7] i2c: allow DT nodes without 'compatible'

From: Luca Ceresoli
Date: Fri Apr 10 2020 - 10:12:36 EST


Hi Wolfram,

On 12/03/20 12:19, Wolfram Sang wrote:
> Hi Luca,
>
>> But the kernel currently ignores nodes that have no matching driver,
>> right? So in this case the kernel knows that that address is used, but
>> ignores this information and considers the address as available.
>
> I'd rather call it "unbound" than available. See later.
>
>> Seen in this perspective, we should have a "compatible" for all nodes:
>> it is just describing the hardware and could be out of the kernel
>> control. But instead of discarding all nodes without a matching driver,
>
> And what compatible value would you use if you know there is something
> sitting there and don't know what? This is what this series aims to
> address because we thought a compatible name like "reserved" would not
> be a good idea.

The scenario I have in mind is when DT has a proper compatible string,
but the kernel has no driver for that chip. Could be not implemented or
simply not compiled.

There are 3 cases generally:

1. compatible string present, kernel has a matching driver
2. compatible string present, kernel has no matching driver
3. compatible string not present

Case 1 is obvious. Case 3 is currently ignored, with your patch the
address will be reserved. Case 2 is currently ignored, but we have all
the information to reserve the address just like in case 2, but there's
no plan to reserve it. Why not? (not necessarily in this series, I'm
just trying to understand if the idea is correct)

--
Luca