cancel
Showing results for 
Search instead for 
Did you mean: 

Failed on OPTEE: F/TC:0 0 probe_driver_node:391 Probing stm32mp1-cpu-opp on node cpu0-opp-table

scotz
Associate

I tried port optee to customize board, but encouted panic and I could not figure it out. here is log and dree tree setting for the board, thank you

 

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
scotz
Associate

Fixed by adding 

/* Regulators */
    vdd: regulator-vdd {
        compatible = "regulator-fixed";
        regulator-name = "vdd";
        regulator-min-microvolt = <3300000>;
        regulator-max-microvolt = <3300000>;
        regulator-always-on;
    };

    vddcore: vddcore {
        compatible = "regulator-fixed";
        regulator-name = "vddcore";
        regulator-min-microvolt = <1200000>;
        regulator-max-microvolt = <1200000>;
        regulator-always-on;
    };
 
&cpu0{
    cpu-supply = <&vddcore>;
};

&cpu1 {
    cpu-supply = <&vddcore>;
};

View solution in original post

1 REPLY 1
scotz
Associate

Fixed by adding 

/* Regulators */
    vdd: regulator-vdd {
        compatible = "regulator-fixed";
        regulator-name = "vdd";
        regulator-min-microvolt = <3300000>;
        regulator-max-microvolt = <3300000>;
        regulator-always-on;
    };

    vddcore: vddcore {
        compatible = "regulator-fixed";
        regulator-name = "vddcore";
        regulator-min-microvolt = <1200000>;
        regulator-max-microvolt = <1200000>;
        regulator-always-on;
    };
 
&cpu0{
    cpu-supply = <&vddcore>;
};

&cpu1 {
    cpu-supply = <&vddcore>;
};