Forum Discussion
Altera_Forum
Honored Contributor
11 years agoSOLVED -- Using 14.1 tools and a suggestion -
I took the GSRD *.dtb file used the sopc2dts (NOT IN THE COMMAND SHELL) and made a *.dts file. I added my custom IP and the pll as a fixed clock - like "clk_0" is in the GSRD into that "clocks" section. pll_0: pll_0 { compatible = "fixed-clock"; # clock-cells = <0>; clock-frequency = <1843198> /* 1.843198 MHz PUT YOUR VALUE HERE */ clock-output-names = "pll_0_outclk0"; }; //end pll_0 (pll_0) THEN I GENERATED A *.dtb file using the 14.1 "dtc" # ] ./dtc -I dts -O dtb -o socfpga.dtb socfpga-AddedMyIPs.dts THIS BOOTS so now I need to try my device driver, etc