aboutsummaryrefslogtreecommitdiffstats
path: root/package/ep80579-drivers
Commit message (Collapse)AuthorAgeFilesLines
* move lots of kernel related packages to the new system/ folderJohn Crispin2012-10-1729-13884/+0
| | | | SVN-Revision: 33830
* x86/ep80579: switch to 3.3Gabor Juhos2012-05-186-0/+621
| | | | | | | Also fix build errors in the ep80579-drivers package. Compile tested only. SVN-Revision: 31802
* package/ep80579-drivers: refresh patchesGabor Juhos2012-05-187-39/+35
| | | | SVN-Revision: 31801
* ep80579 depend on their corresponding subtargetFlorian Fainelli2010-10-301-1/+1
| | | | SVN-Revision: 23726
* ep80579-drivers: the build system for this package is broken beyond repair. ↵Felix Fietkau2010-07-171-13/+25
| | | | | | work around this by only using the kbuild make invocations and ignoring the other crap SVN-Revision: 22240
* massive: replace occurences of .$(LINUX_KMOD_SUFFIX) with .ko after r21950Claudio Mignanti2010-07-121-6/+6
| | | | SVN-Revision: 22145
* add a subtarget and drivers for the Intel Tolapai SoCImre Kaloz2010-04-0123-0/+13255
SVN-Revision: 20648
/* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/**
 * PLL configuration
 *
 * This Verilog module was generated automatically
 * using the icepll tool from the IceStorm project.
 * Use at your own risk.
 *
 * Given input frequency:        12.000 MHz
 * Requested output frequency:  216.000 MHz
 * Achieved output frequency:   216.000 MHz
 */

module ice40_pll_12_216(
	input  clock_in,
	output clock_out,
	output locked
	);

SB_PLL40_CORE #(
		.FEEDBACK_PATH("SIMPLE"),
		.DIVR(4'b0000),		// DIVR =  0
		.DIVF(7'b1000111),	// DIVF = 71
		.DIVQ(3'b010),		// DIVQ =  2
		.FILTER_RANGE(3'b001)	// FILTER_RANGE = 1
	) uut (
		.LOCK(locked),
		.RESETB(1'b1),
		.BYPASS(1'b0),
		.REFERENCECLK(clock_in),
		.PLLOUTCORE(clock_out)
		);

endmodule