PROCESSOR-SDK-AM437X: Set QSPI clock

Part Number: PROCESSOR-SDK-AM437X
Other Parts Discussed in Thread: AM4376

Tool/software:

Hi

We are developing the custom board with AM4376 based on AM437x-EVM.

SDK : PROCESSOR-SDK-AM437X-06.03.00.106

Our custom board has the QSPI flash and we modify device tree as below.

&qspi {
	status = "okay";
	spi-max-frequency = <48000000>;

	m25p80@0 {
		compatible = "w25q512jv", "jedec,spi-nor";
		spi-max-frequency = <48000000>;
		reg = <0>;
		spi-cpol;
		spi-cpha;
		spi-tx-bus-width = <1>;
		spi-rx-bus-width = <4>;
		#address-cells = <1>;
		#size-cells = <1>;

We set the clock to 48MHz.

We probed the clock, the clock is about 16MHz.

Could you please let us know why the clock is different from the device tree setting?

Best regards,

Thank you.