Re: [PATCH] rpmb: use IS_REACHABLE instead of IS_ENABLED

From: Arnd Bergmann
Date: Mon Sep 02 2024 - 06:33:22 EST


On Mon, Sep 2, 2024, at 09:54, Jens Wiklander wrote:
>
> Thanks for the suggestion.
>
> I tried adding the dependency above for MMC_BLOCK and OPTEE.
>
> Setting CONFIG_RPMB to "y" works as expected CONFIG_MMC_BLOCK and
> CONFIG_OPTEE can be configured as both "y" or "m".
>
> Setting CONFIG_RPMB to "m" will make CONFIG_MMC_BLOCK and CONFIG_OPTEE
> "m" too, even if they are set as "y" in the defconfig. So the module
> status seems to spread to the options with the dependency. For
> tristate options, it guarantees that the expected features are
> available even if it changes from built-in to a loadable module.

Correct.

> It will do nothing for bool options, but that's a hypothetical case
> for now. Wouldn't spreading the built-in status to CONFIG_RPMB be
> better? So CONFIG_RPMB turns into "y" if an option configured as
> built-in depends on it. I don't know how to do that though, so that
> could be saved for when it's needed.

That would require using 'select' instead of 'depends on', but that has
other problems.

If a symbol that uses RPMB is 'bool', you need to do one of two things:

- if this is a driver that is always built-in, it would instead need
'depends on RPMB!=m' or 'depends on RPMB=y || !RPMB', both have
the same effect.

- If there is a bool symbol that turns on an optional feature in
a modular driver, it would have to be something like this:

config MMC_USE_RPMB
bool "Build MMC support for RPMB"
depends on MMC && RPMB
depends on RPMB=y || RPMB=MMC

> I'll send out patches for MMC_BLOCK and OPTEE options shortly if we're
> happy with the "depends on RPMB || !RPMB" approach.

Sounds good, thanks.

Arnd