⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 clk.txt

📁 linux 内核源代码
💻 TXT
字号:
Clock framework on SuperH architectureThe framework on SH extends existing API by the function clk_set_rate_ex,which prototype is as follows:    clk_set_rate_ex (struct clk *clk, unsigned long rate, int algo_id)The algo_id parameter is used to specify algorithm used to recalculate clocks,adjanced to clock, specified as first argument. It is assumed that algo_id==0means no changes to adjanced clockInternally, the clk_set_rate_ex forwards request to clk->ops->set_rate method,if it is present in ops structure. The method should set the clock rate and adjustall needed clocks according to the passed algo_id.Exact values for algo_id are machine-dependend. For the sh7722, the followingvalues are defined:	NO_CHANGE	= 0,	IUS_N1_N1,	/* I:U = N:1, U:Sh = N:1 */	IUS_322,	/* I:U:Sh = 3:2:2	 */	IUS_522,	/* I:U:Sh = 5:2:2 	 */	IUS_N11,	/* I:U:Sh = N:1:1	 */	SB_N1,		/* Sh:B = N:1		 */	SB3_N1,		/* Sh:B3 = N:1		 */	SB3_32,		/* Sh:B3 = 3:2		 */	SB3_43,		/* Sh:B3 = 4:3		 */	SB3_54,		/* Sh:B3 = 5:4		 */	BP_N1,		/* B:P	 = N:1		 */	IP_N1		/* I:P	 = N:1		 */Each of these constants means relation between clocks that can be set via the FRQCRregister

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -