RE: [PATCH V2 1/2] clk: imx: add mcore_booted module paratemter

From: Peng Fan
Date: Thu Mar 17 2022 - 21:14:22 EST


> Subject: Re: [PATCH V2 1/2] clk: imx: add mcore_booted module paratemter
>
> Quoting Peng Fan (OSS) (2022-02-28 04:41:11)
> > From: Peng Fan <peng.fan@xxxxxxx>
> >
> > Add mcore_booted boot parameter which could simplify AMP clock
> > management. To i.MX8M, there is CCM(clock control Module) to generate
> > clock root clock, anatop(analog PLL module) to generate PLL, and CCGR
> > (clock gating) to gate clocks to peripherals. As below:
> > anatop->ccm->ccgr->peripheral
> >
> > Linux handles the clock management and the auxiliary core is under
> > control of Linux. Although there is per hardware domain control for
> > CCGR and CCM, auxiliary core normally only use CCGR hardware domain
> > control to avoid linux gate off the clk to peripherals and leave CCM
> > ana anatop to Linux.
> >
> > Per NXP hardware design, because CCGR already support gate to
> > peripherals, and clk root gate power leakage is negligible. So when in
> > AMP case, we could not register the clk root gate.
> >
> > Signed-off-by: Peng Fan <peng.fan@xxxxxxx>
> > ---
> >
> > V2:
> > Switch to use module parameter, tested on i.MX8MP-EVK
>
> Why is a module parameter being used? I'd expect this informatioon that
> mcore is booted to come from devicetree/firmware somehow.

In i.MX platform design, mcore could be kicked by U-Boot or Linux remoteproc.
The hardware clk IP has CCM(clock root composite) and CCGR(clock gate).
CCGR support multiple hardware domain control, but CCM not.
Linux handles clock management, mcore only handles CCGR, so that means
Linux CCM operation maybe shutdown and cause CCGR has not clk input.

So when we need mcore run, we should not register CCM clk gate in
the composite. To mcore is booted by U-boot, we previous use information
from hardware, but to mcore is booted by remoteproc, we have no way,
because linux already registered all clocks.

So now we use a module parameter to let user decide.

Hope this is clear.

Thanks,
Peng.