Other Parts Discussed in Thread: TLV320AIC3104, , TLV320AIC3106, BEAGLEBOARD-X15
Hello
I am working in AM5718-idk.
I have a requirement to route system clock(20MHz) to clkout2 pin.
I have modified the mux_data.h file in u-boot for clkout2.
In device tree (dra7xx-clocks.dtsi),I have modified the clock divider node to
sys_clk1_dclk_div: sys_clk1_dclk_div@1c8 {
#clock-cells = <0>;
compatible = "ti,divider-clock";
clocks = <&sys_clkin1>;
ti,max-div = <1>;
reg = <0x01c8>;
ti,index-power-of-two;
};
After booting, when I probe the pin(R893 or R220),nothing is coming.
is anything more to be done for routing system clock to clock pin?
In above clock division node (sys_clk1_dclk_div), clock input is clocks = <&sys_clkin1>; and is defined in prm_clocks node
&prm_clocks {
sys_clkin1: sys_clkin1@110 {
#clock-cells = <0>;
compatible = "ti,mux-clock";
clocks = <&virt_12000000_ck>, <&virt_20000000_ck>, <&virt_16800000_ck>, <&virt_19200000_ck>, <&virt_26000000_ck>, <&virt_27000000_ck>, <&virt_38400000_ck>;
reg = <0x0110>;
ti,index-starts-at-one;
};
which clock is routed to clock divider node? can you explain it
Regards
Satheesh Kumar S