K60时钟分析
1.飞思卡尔K60时钟系统
- unsigned char pll_init(unsigned char clk_option, unsigned char crystal_val)
- {
- unsigned char pll_freq;
- if (clk_option > 3) {return 0;} //return 0 if one of the available options is not selected
- if (crystal_val > 15) {return 1;} // return 1 if one of the available crystal options is not available
- //This assumes that the MCG is in default FEI mode out of reset.
- // First move to FBE mode
- #if (defined(K60_CLK) || defined(ASB817))
- MCG_C2 = 0;
- #else
- // Enable external oscillator, RANGE=2, HGO=1, EREFS=1, LP=0, IRCS=0
- MCG_C2 = MCG_C2_RANGE(2) | MCG_C2_HGO_MASK | MCG_C2_EREFS_MASK;
- #endif
- // after initialization of oscillator release latched state of oscillator and GPIO
- SIM_SCGC4 |= SIM_SCGC4_LLWU_MASK;
- LLWU_CS |= LLWU_CS_ACKISO_MASK;
- // Select external oscilator and Reference Divider and clear IREFS to start ext osc
- // CLKS=2, FRDIV=3, IREFS=0, IRCLKEN=0, IREFSTEN=0
- MCG_C1 = MCG_C1_CLKS(2) | MCG_C1_FRDIV(3);
- /* if we aren't using an osc input we don't need to wait for the osc to init */
- #if (!defined(K60_CLK) && !defined(ASB817))
- while (!(MCG_S & MCG_S_OSCINIT_MASK)){}; // wait for oscillator to initialize
- #endif
- while (MCG_S & MCG_S_IREFST_MASK){}; // wait for Reference clock Status bit to clear
- while (((MCG_S & MCG_S_CLKST_MASK) >> MCG_S_CLKST_SHIFT) != 0x2){}; // Wait for clock status bits to show clock source is ext ref clk
- // Now in FBE
- #if (defined(K60_CLK))
- //MCG_C5 = MCG_C5_PRDIV(0x18);
- MCG_C5 = MCG_C5_PRDIV(0x18); //基频2M 外部时钟源是50M时, 50/25=2M
- #else
- // Configure PLL Ref Divider, PLLCLKEN=0, PLLSTEN=0, PRDIV=5
- // The crystal frequency is used to select the PRDIV value. Only even frequency crystals are supported
- // that will produce a 2MHz reference clock to the PLL.
- MCG_C5 = MCG_C5_PRDIV(crystal_val); // Set PLL ref divider to match the crystal used
- #endif
- // Ensure MCG_C6 is at the reset default of 0. LOLIE disabled, PLL disabled, clk monitor disabled, PLL VCO divider is clear
- MCG_C6 = 0x0;
- // Select the PLL VCO divider and system clock dividers depending on clocking option
- switch (clk_option) {
- case 0:
- // Set system options dividers
- //MCG=PLL, core = MCG, bus = MCG, FlexBus = MCG, Flash clock= MCG/2
- set_sys_dividers(0,0,0,1);
- // Set the VCO divider and enable the PLL for 50MHz, LOLIE=0, PLLS=1, CME=0, VDIV=1
- MCG_C6 = MCG_C6_PLLS_MASK | MCG_C6_VDIV(1); //VDIV = 1 (x25)
- pll_freq = 50;
- break;
- case 1:
- // Set system options dividers
- //MCG=PLL, core = MCG, bus = MCG/2, FlexBus = MCG/2, Flash clock= MCG/4
- set_sys_dividers(0,1,1,3);
- // Set the VCO divider and enable the PLL for 100MHz, LOLIE=0, PLLS=1, CME=0, VDIV=26
- MCG_C6 = MCG_C6_PLLS_MASK | MCG_C6_VDIV(26); //VDIV = 26 (x50)
- pll_freq = 100;
- break;
- case 2:
- // Set system options dividers
- //MCG=PLL, core = MCG, bus = MCG/2, FlexBus = MCG/2, Flash clock= MCG/4
- set_sys_dividers(0,1,1,3);
- // Set the VCO divider and enable the PLL for 96MHz, LOLIE=0, PLLS=1, CME=0, VDIV=24
- MCG_C6 = MCG_C6_PLLS_MASK | MCG_C6_VDIV(24); //VDIV = 24 (x48)
- pll_freq = 96;
- break;
- case 3:
- // Set system options dividers
- //MCG=PLL, core = MCG, bus = MCG, FlexBus = MCG, Flash clock= MCG/2
- set_sys_dividers(0,0,0,1);
- // Set the VCO divider and enable the PLL for 48MHz, LOLIE=0, PLLS=1, CME=0, VDIV=0
- MCG_C6 = MCG_C6_PLLS_MASK; //VDIV = 0 (x24)
- pll_freq = 48;
- break;
- }
- while (!(MCG_S & MCG_S_PLLST_MASK)){}; // wait for PLL status bit to set
- while (!(MCG_S & MCG_S_LOCK_MASK)){}; // Wait for LOCK bit to set
- // Now running PBE Mode
- // Transition into PEE by setting CLKS to 0
- // CLKS=0, FRDIV=3, IREFS=0, IRCLKEN=0, IREFSTEN=0
- MCG_C1 &= ~MCG_C1_CLKS_MASK;
- // Wait for clock status bits to update
- while (((MCG_S & MCG_S_CLKST_MASK) >> MCG_S_CLKST_SHIFT) != 0x3){};
- // Now running PEE Mode
- return pll_freq;
- } //pll_init
K60时钟分析的更多相关文章
- 飞思卡尔K60时钟分析
推荐:NXP官方软件config tool,图形化界面可导出代码 K60芯片的时钟系统由振荡器(OSC).实时振荡器(RTC OSC).多功能时钟发生器(MCG).系统集成模块(SIM)和电源管理器( ...
- MINIX3 内核时钟分析
MINIX3 内核时钟分析 4.1 内核时钟概要 先想想为什么 OS 需要时钟?时钟是异步的一个非常重要的标志,设想一下,如 果我们的应用程序需要在多少秒后将触发某个程序或者进程,我们该怎么做到? ...
- stm32时钟分析
转载自http://blog.chinaunix.net/uid-21658993-id-3129667.html 在STM32中,有五个时钟源,为HSI.HSE.LSI.LSE.PLL. 其实是 ...
- KVM 时钟分析
1. 关于GToffset: KVM的guset时钟为gc0_COUNT 其中:mfc0 gc0_count = c0_COUNT+GToffset vcpu_run 以及 vcpu_reenter的 ...
- MINIX3 导读分析
一个操作系统的分析是属于一个非常庞大的工程,操作系统就像是一个人造的 人,每一个模块想完全发挥功效,很有可能需要很多模块的支持才能够实现.所 以在分析 MINIX3 时,我认为同时看多个模块对于理解 ...
- Minix2.0操作系统kernel文件分析
详细分析 MINIX消息机制的核心: mpx386.s start.c proc.c 保护模式分析: src/kernel/exception.c src/kernel/protect.c src/ ...
- LCD RGB 控制技术讲解 — 时钟篇(上)
时序图 下面是LCD RGB 控制的典型时序图 天啊,一下就上这玩意,怎么看??? 其实要解释上面的时序图,我们还需要了解一些LCD的显示过程.所以现在只是有个印象,稍后我们详细讲解. LCD显示流 ...
- LCD RGB 控制技术讲解 — 时钟篇(上)【转】
1. 时序图 下面是LCD RGB 控制的典型时序图 天啊,一下就上这玩意,怎么看??? 其实要解释上面的时序图,我们还需要了解一些LCD的显示过程.所以现在只是有个印象,稍后我们详细讲解. 2. L ...
- minix2.0内核组织结构与公用头文件说明
Minix2.0操作系统的源代码由两个目录组成:include/目录和src/目录 include/目录包含了操作系统所有的头文件(即.h文件) src/目录下包含了操作系统所有的源文件(.c或.s文 ...
随机推荐
- 基于opencv -python--银行卡识别
import cv2 def sort_contours(cnts, method="left-to-right"): reverse = False i = 0 if metho ...
- MySQL数据库:排序及limit的使用
排序 排序方式: 升序--asc(默认:从小到大) 降序--desc(由大到小) # 排序语法: order by 字段1 [asc]|desc[,字段2 [adc]|desc,--] limit # ...
- Master Note: Undo 空间使用率高 (Doc ID 1578639.1)
Master Note: High Undo Space Usage (Doc ID 1578639.1) APPLIES TO: Oracle Database Cloud Schema Servi ...
- 自写的简单MD5加密算法
package com.srs.tools; import java.math.BigInteger; import java.security.MessageDigest; /*********** ...
- DOS下查看驱动版本号
1.进入目录:C:\Program Files\NVIDIA Corporation\NVISMI 2.输入命令nvidia-smi 可以看到我的显卡驱动版本号为431.60
- SPA项目开发之动态树以及数据表格和分页
首先我们来看下数据库 t_vue_user t_vue_tree_node t_vue_articles 2. 动态生成NavMenu导航菜单(只支持2级菜单) <el-menu key=&qu ...
- 【西北师大-2108Java】第九次作业成绩汇总
[西北师大-2108Java]第九次作业成绩汇总 作业题目 面向对象程序设计(JAVA) 第11周学习指导及要求 实验目的与要求 (1)理解泛型概念: (2)掌握泛型类的定义与使用: (3)掌握泛型方 ...
- C++ class内类型重载,operator Type()
#include <iostream> // operator Type() 类型操作符重载 // operator int() // operator double() // ... / ...
- Java Web 学习(2) —— JSP
JSP 一. 什么是 JSP JSP 和 Servlet Servlet 有两个缺点是无法克服的:首先,写在 Servlet 中的所有 HTML 标签必须包含 Java 字符串,这使得处理HTTP响应 ...
- [ Python入门教程 ] Python字典数据类型及基本操作
字典是Python中重要的数据类型,字典是由"键-值"对组成的集合,"键-值"对之间用逗号隔开,包含在一对花括号中.字典中的"值"通过&qu ...