SP_MIN for V4.0.0
I've just made the switch for V4.0.0 (A-TF 2.6, Linux 5.15 but with Barebox instead of U-Boot) using Buildroot as before.
I had trouble to bring the system up because of what has been changed in regard to SCMI.
The DT node's compatible name was changed to force OP-TEE, which is a no go in my case for now.
I'll just leave the solution here in case anyone faces the same issue.
Simply override the scmi node with the old values:
&scmi {
// Revert OP-TEE to SP_MIN
// Previously compatible = "linaro,scmi-optee";
compatible = "arm,scmi-smc";
arm,smc-id = <0x82002000>;
};This will allow you to boot without any changes compared to V3.
