Hi,
we are using dra750 and GLSDK_7.04.00.03 to develop our custom board.
I try to enable dcan2 and made following changes in dts:
&dra7_pmx_core {
dcan2_pins_default: dcan2_pins_default {
pinctrl-single,pins = <
0x288 (PIN_OUTPUT_PULLUP | MUX_MODE2) /* gpio6_14.dcan2_tx */
0x28C (PULL_UP | MUX_MODE2) /* gpio6_15.dcan2_rx */
>;
};
dcan2_pins_sleep: dcan2_pins_sleep {
pinctrl-single,pins = <
0x288 (MUX_MODE15 | PULL_UP) /* gpio6_14.off */
0x28C (MUX_MODE15 | PULL_UP) /* gpio6_15.off */
>;
};
};
&dcan2 {
status = "okay";
pinctrl-names = "default", "sleep";
pinctrl-0 = <&dcan2_pins_default>;
pinctrl-1 = <&dcan2_pins_sleep>;
};
Then we use canutils to send command from dcan2,
but there is no signals output.
Could you kindly give me some help telling me what should i do to enable the dcan2?
Thank you very much.
