3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 #include <ppc_asm.tmpl>
27 #include <asm/processor.h>
29 DECLARE_GLOBAL_DATA_PTR;
31 #define ONE_BILLION 1000000000
33 #define DEBUGF(fmt,args...) printf(fmt ,##args)
35 #define DEBUGF(fmt,args...)
38 #if defined(CONFIG_405GP) || defined(CONFIG_405CR)
40 void get_sys_info (PPC405_SYS_INFO * sysInfo)
43 unsigned long sysClkPeriodPs = ONE_BILLION / (CONFIG_SYS_CLK_FREQ / 1000);
49 * Read PLL Mode register
51 pllmr = mfdcr (pllmd);
54 * Read Pin Strapping register
61 sysInfo->pllFwdDiv = 8 - ((pllmr & PLLMR_FWD_DIV_MASK) >> 29);
66 sysInfo->pllFbkDiv = ((pllmr & PLLMR_FB_DIV_MASK) >> 25);
67 if (sysInfo->pllFbkDiv == 0) {
68 sysInfo->pllFbkDiv = 16;
74 sysInfo->pllPlbDiv = ((pllmr & PLLMR_CPU_TO_PLB_MASK) >> 17) + 1;
79 sysInfo->pllPciDiv = ((pllmr & PLLMR_PCI_TO_PLB_MASK) >> 13) + 1;
82 * Determine EXTBUS_DIV.
84 sysInfo->pllExtBusDiv = ((pllmr & PLLMR_EXB_TO_PLB_MASK) >> 11) + 2;
89 sysInfo->pllOpbDiv = ((pllmr & PLLMR_OPB_TO_PLB_MASK) >> 15) + 1;
92 * Check if PPC405GPr used (mask minor revision field)
94 if ((pvr & 0xfffffff0) == (PVR_405GPR_RB & 0xfffffff0)) {
96 * Determine FWD_DIV B (only PPC405GPr with new mode strapping).
98 sysInfo->pllFwdDivB = 8 - (pllmr & PLLMR_FWDB_DIV_MASK);
101 * Determine factor m depending on PLL feedback clock source
103 if (!(psr & PSR_PCI_ASYNC_EN)) {
104 if (psr & PSR_NEW_MODE_EN) {
106 * sync pci clock used as feedback (new mode)
108 m = 1 * sysInfo->pllFwdDivB * 2 * sysInfo->pllPciDiv;
111 * sync pci clock used as feedback (legacy mode)
113 m = 1 * sysInfo->pllFwdDivB * sysInfo->pllPlbDiv * sysInfo->pllPciDiv;
115 } else if (psr & PSR_NEW_MODE_EN) {
116 if (psr & PSR_PERCLK_SYNC_MODE_EN) {
118 * PerClk used as feedback (new mode)
120 m = 1 * sysInfo->pllFwdDivB * 2 * sysInfo->pllExtBusDiv;
123 * CPU clock used as feedback (new mode)
125 m = sysInfo->pllFbkDiv * sysInfo->pllFwdDiv;
127 } else if (sysInfo->pllExtBusDiv == sysInfo->pllFbkDiv) {
129 * PerClk used as feedback (legacy mode)
131 m = 1 * sysInfo->pllFwdDivB * sysInfo->pllPlbDiv * sysInfo->pllExtBusDiv;
134 * PLB clock used as feedback (legacy mode)
136 m = sysInfo->pllFbkDiv * sysInfo->pllFwdDivB * sysInfo->pllPlbDiv;
139 sysInfo->freqVCOHz = (1000000000000LL * (unsigned long long)m) /
140 (unsigned long long)sysClkPeriodPs;
141 sysInfo->freqProcessor = sysInfo->freqVCOHz / sysInfo->pllFwdDiv;
142 sysInfo->freqPLB = sysInfo->freqVCOHz / (sysInfo->pllFwdDivB * sysInfo->pllPlbDiv);
145 * Check pllFwdDiv to see if running in bypass mode where the CPU speed
146 * is equal to the 405GP SYS_CLK_FREQ. If not in bypass mode, check VCO
147 * to make sure it is within the proper range.
148 * spec: VCO = SYS_CLOCK x FBKDIV x PLBDIV x FWDDIV
149 * Note freqVCO is calculated in Mhz to avoid errors introduced by rounding.
151 if (sysInfo->pllFwdDiv == 1) {
152 sysInfo->freqProcessor = CONFIG_SYS_CLK_FREQ;
153 sysInfo->freqPLB = CONFIG_SYS_CLK_FREQ / sysInfo->pllPlbDiv;
155 sysInfo->freqVCOHz = ( 1000000000000LL *
156 (unsigned long long)sysInfo->pllFwdDiv *
157 (unsigned long long)sysInfo->pllFbkDiv *
158 (unsigned long long)sysInfo->pllPlbDiv
159 ) / (unsigned long long)sysClkPeriodPs;
160 sysInfo->freqPLB = (ONE_BILLION / ((sysClkPeriodPs * 10) /
161 sysInfo->pllFbkDiv)) * 10000;
162 sysInfo->freqProcessor = sysInfo->freqPLB * sysInfo->pllPlbDiv;
168 /********************************************
170 * return OPB bus freq in Hz
171 *********************************************/
172 ulong get_OPB_freq (void)
176 PPC405_SYS_INFO sys_info;
178 get_sys_info (&sys_info);
179 val = sys_info.freqPLB / sys_info.pllOpbDiv;
185 /********************************************
187 * return PCI bus freq in Hz
188 *********************************************/
189 ulong get_PCI_freq (void)
192 PPC405_SYS_INFO sys_info;
194 get_sys_info (&sys_info);
195 val = sys_info.freqPLB / sys_info.pllPciDiv;
200 #elif defined(CONFIG_440)
202 #if defined(CONFIG_440EP) || defined(CONFIG_440GR)
203 void get_sys_info (sys_info_t *sysInfo)
209 unsigned long prbdv0;
211 WARNING: ASSUMES the following:
217 /* Decode CPR0_PLLD0 for divisors */
218 mfclk(clk_plld, reg);
219 temp = (reg & PLLD_FWDVA_MASK) >> 16;
220 sysInfo->pllFwdDivA = temp ? temp : 16;
221 temp = (reg & PLLD_FWDVB_MASK) >> 8;
222 sysInfo->pllFwdDivB = temp ? temp: 8 ;
223 temp = (reg & PLLD_FBDV_MASK) >> 24;
224 sysInfo->pllFbkDiv = temp ? temp : 32;
225 lfdiv = reg & PLLD_LFBDV_MASK;
227 mfclk(clk_opbd, reg);
228 temp = (reg & OPBDDV_MASK) >> 24;
229 sysInfo->pllOpbDiv = temp ? temp : 4;
231 mfclk(clk_perd, reg);
232 temp = (reg & PERDV_MASK) >> 24;
233 sysInfo->pllExtBusDiv = temp ? temp : 8;
235 mfclk(clk_primbd, reg);
236 temp = (reg & PRBDV_MASK) >> 24;
237 prbdv0 = temp ? temp : 8;
239 mfclk(clk_spcid, reg);
240 temp = (reg & SPCID_MASK) >> 24;
241 sysInfo->pllPciDiv = temp ? temp : 4;
243 /* Calculate 'M' based on feedback source */
244 mfsdr(sdr_sdstp0, reg);
245 temp = (reg & PLLSYS0_SEL_MASK) >> 27;
246 if (temp == 0) { /* PLL output */
247 /* Figure which pll to use */
248 mfclk(clk_pllc, reg);
249 temp = (reg & PLLC_SRC_MASK) >> 29;
250 if (!temp) /* PLLOUTA */
251 m = sysInfo->pllFbkDiv * lfdiv * sysInfo->pllFwdDivA;
253 m = sysInfo->pllFbkDiv * lfdiv * sysInfo->pllFwdDivB;
255 else if (temp == 1) /* CPU output */
256 m = sysInfo->pllFbkDiv * sysInfo->pllFwdDivA;
258 m = sysInfo->pllExtBusDiv * sysInfo->pllOpbDiv * sysInfo->pllFwdDivB;
260 /* Now calculate the individual clocks */
261 sysInfo->freqVCOMhz = (m * CONFIG_SYS_CLK_FREQ) + (m>>1);
262 sysInfo->freqProcessor = sysInfo->freqVCOMhz/sysInfo->pllFwdDivA;
263 sysInfo->freqPLB = sysInfo->freqVCOMhz/sysInfo->pllFwdDivB/prbdv0;
264 sysInfo->freqOPB = sysInfo->freqPLB/sysInfo->pllOpbDiv;
265 sysInfo->freqEPB = sysInfo->freqPLB/sysInfo->pllExtBusDiv;
266 sysInfo->freqPCI = sysInfo->freqPLB/sysInfo->pllPciDiv;
268 /* Figure which timer source to use */
269 if (mfspr(ccr1) & 0x0080) { /* External Clock, assume same as SYS_CLK */
270 temp = sysInfo->freqProcessor / 2; /* Max extern clock speed */
271 if (CONFIG_SYS_CLK_FREQ > temp)
272 sysInfo->freqTmrClk = temp;
274 sysInfo->freqTmrClk = CONFIG_SYS_CLK_FREQ;
276 else /* Internal clock */
277 sysInfo->freqTmrClk = sysInfo->freqProcessor;
279 /********************************************
281 * return PCI bus freq in Hz
282 *********************************************/
283 ulong get_PCI_freq (void)
286 get_sys_info (&sys_info);
287 return sys_info.freqPCI;
290 #elif !defined(CONFIG_440GX) && !defined(CONFIG_440SP) && !defined(CONFIG_440SPE)
291 void get_sys_info (sys_info_t * sysInfo)
297 /* Extract configured divisors */
298 strp0 = mfdcr( cpc0_strp0 );
299 sysInfo->pllFwdDivA = 8 - ((strp0 & PLLSYS0_FWD_DIV_A_MASK) >> 15);
300 sysInfo->pllFwdDivB = 8 - ((strp0 & PLLSYS0_FWD_DIV_B_MASK) >> 12);
301 temp = (strp0 & PLLSYS0_FB_DIV_MASK) >> 18;
302 sysInfo->pllFbkDiv = temp ? temp : 16;
303 sysInfo->pllOpbDiv = 1 + ((strp0 & PLLSYS0_OPB_DIV_MASK) >> 10);
304 sysInfo->pllExtBusDiv = 1 + ((strp0 & PLLSYS0_EPB_DIV_MASK) >> 8);
306 /* Calculate 'M' based on feedback source */
307 if( strp0 & PLLSYS0_EXTSL_MASK )
308 m = sysInfo->pllExtBusDiv * sysInfo->pllOpbDiv * sysInfo->pllFwdDivB;
310 m = sysInfo->pllFbkDiv * sysInfo->pllFwdDivA;
312 /* Now calculate the individual clocks */
313 sysInfo->freqVCOMhz = (m * CONFIG_SYS_CLK_FREQ) + (m>>1);
314 sysInfo->freqProcessor = sysInfo->freqVCOMhz/sysInfo->pllFwdDivA;
315 sysInfo->freqPLB = sysInfo->freqVCOMhz/sysInfo->pllFwdDivB;
316 if( get_pvr() == PVR_440GP_RB ) /* Rev B divs an extra 2 -- geez! */
317 sysInfo->freqPLB >>= 1;
318 sysInfo->freqOPB = sysInfo->freqPLB/sysInfo->pllOpbDiv;
319 sysInfo->freqEPB = sysInfo->freqOPB/sysInfo->pllExtBusDiv;
323 void get_sys_info (sys_info_t * sysInfo)
331 unsigned long prbdv0;
333 #if defined(CONFIG_440SPE)
334 unsigned long sys_freq;
335 unsigned long sys_per=0;
337 unsigned long pci_clock_per;
338 unsigned long sdr_ddrpll;
340 /*-------------------------------------------------------------------------+
341 | Get the system clock period.
342 +-------------------------------------------------------------------------*/
343 sys_per = determine_sysper();
345 msr = (mfmsr () & ~(MSR_EE)); /* disable interrupts */
347 /*-------------------------------------------------------------------------+
348 | Calculate the system clock speed from the period.
349 +-------------------------------------------------------------------------*/
350 sys_freq=(ONE_BILLION/sys_per)*1000;
353 /* Extract configured divisors */
354 mfsdr( sdr_sdstp0,strp0 );
355 mfsdr( sdr_sdstp1,strp1 );
357 temp = ((strp0 & PLLSYS0_FWD_DIV_A_MASK) >> 8);
358 sysInfo->pllFwdDivA = temp ? temp : 16 ;
359 temp = ((strp0 & PLLSYS0_FWD_DIV_B_MASK) >> 5);
360 sysInfo->pllFwdDivB = temp ? temp: 8 ;
361 temp = (strp0 & PLLSYS0_FB_DIV_MASK) >> 12;
362 sysInfo->pllFbkDiv = temp ? temp : 32;
363 temp = (strp0 & PLLSYS0_OPB_DIV_MASK);
364 sysInfo->pllOpbDiv = temp ? temp : 4;
365 temp = (strp1 & PLLSYS1_PERCLK_DIV_MASK) >> 24;
366 sysInfo->pllExtBusDiv = temp ? temp : 4;
367 prbdv0 = (strp0 >> 2) & 0x7;
369 /* Calculate 'M' based on feedback source */
370 temp = (strp0 & PLLSYS0_SEL_MASK) >> 27;
371 temp1 = (strp1 & PLLSYS1_LF_DIV_MASK) >> 26;
372 lfdiv = temp1 ? temp1 : 64;
373 if (temp == 0) { /* PLL output */
374 /* Figure which pll to use */
375 temp = (strp0 & PLLSYS0_SRC_MASK) >> 30;
377 m = sysInfo->pllFbkDiv * lfdiv * sysInfo->pllFwdDivA;
379 m = sysInfo->pllFbkDiv * lfdiv * sysInfo->pllFwdDivB;
381 else if (temp == 1) /* CPU output */
382 m = sysInfo->pllFbkDiv * sysInfo->pllFwdDivA;
384 m = sysInfo->pllExtBusDiv * sysInfo->pllOpbDiv * sysInfo->pllFwdDivB;
386 /* Now calculate the individual clocks */
387 #if defined(CONFIG_440SPE)
388 sysInfo->freqVCOMhz = (m * sys_freq) ;
390 sysInfo->freqVCOMhz = (m * CONFIG_SYS_CLK_FREQ) + (m>>1);
392 sysInfo->freqProcessor = sysInfo->freqVCOMhz/sysInfo->pllFwdDivA;
393 sysInfo->freqPLB = sysInfo->freqVCOMhz/sysInfo->pllFwdDivB/prbdv0;
394 sysInfo->freqOPB = sysInfo->freqPLB/sysInfo->pllOpbDiv;
395 sysInfo->freqEPB = sysInfo->freqOPB/sysInfo->pllExtBusDiv;
397 #if defined(CONFIG_440SPE)
398 /* Determine PCI Clock Period */
399 pci_clock_per = determine_pci_clock_per();
400 sysInfo->freqPCI = (ONE_BILLION/pci_clock_per) * 1000;
401 mfsdr(sdr_ddr0, sdr_ddrpll);
402 sysInfo->freqDDR = ((sysInfo->freqPLB) * SDR0_DDR0_DDRM_DECODE(sdr_ddrpll));
410 #if defined(CONFIG_440SPE)
411 unsigned long determine_sysper(void)
413 unsigned int fpga_clocking_reg;
414 unsigned int master_clock_selection;
415 unsigned long master_clock_per = 0;
416 unsigned long fb_div_selection;
417 unsigned int vco_div_reg_value;
418 unsigned long vco_div_selection;
419 unsigned long sys_per = 0;
422 /*-------------------------------------------------------------------------+
423 | Read FPGA reg 0 and reg 1 to get FPGA reg information
424 +-------------------------------------------------------------------------*/
425 fpga_clocking_reg = in16(FPGA_REG16);
428 /* Determine Master Clock Source Selection */
429 master_clock_selection = fpga_clocking_reg & FPGA_REG16_MASTER_CLK_MASK;
431 switch(master_clock_selection) {
432 case FPGA_REG16_MASTER_CLK_66_66:
433 master_clock_per = PERIOD_66_66MHZ;
435 case FPGA_REG16_MASTER_CLK_50:
436 master_clock_per = PERIOD_50_00MHZ;
438 case FPGA_REG16_MASTER_CLK_33_33:
439 master_clock_per = PERIOD_33_33MHZ;
441 case FPGA_REG16_MASTER_CLK_25:
442 master_clock_per = PERIOD_25_00MHZ;
444 case FPGA_REG16_MASTER_CLK_EXT:
445 if ((extClkVal==EXTCLK_33_33)
446 && (extClkVal==EXTCLK_50)
447 && (extClkVal==EXTCLK_66_66)
448 && (extClkVal==EXTCLK_83)) {
449 /* calculate master clock period from external clock value */
450 master_clock_per=(ONE_BILLION/extClkVal) * 1000;
453 DEBUGF ("%s[%d] *** master clock selection failed ***\n", __FUNCTION__,__LINE__);
459 DEBUGF ("%s[%d] *** master clock selection failed ***\n", __FUNCTION__,__LINE__);
464 /* Determine FB divisors values */
465 if ((fpga_clocking_reg & FPGA_REG16_FB1_DIV_MASK) == FPGA_REG16_FB1_DIV_LOW) {
466 if ((fpga_clocking_reg & FPGA_REG16_FB2_DIV_MASK) == FPGA_REG16_FB2_DIV_LOW)
467 fb_div_selection = FPGA_FB_DIV_6;
469 fb_div_selection = FPGA_FB_DIV_12;
471 if ((fpga_clocking_reg & FPGA_REG16_FB2_DIV_MASK) == FPGA_REG16_FB2_DIV_LOW)
472 fb_div_selection = FPGA_FB_DIV_10;
474 fb_div_selection = FPGA_FB_DIV_20;
477 /* Determine VCO divisors values */
478 vco_div_reg_value = fpga_clocking_reg & FPGA_REG16_VCO_DIV_MASK;
480 switch(vco_div_reg_value) {
481 case FPGA_REG16_VCO_DIV_4:
482 vco_div_selection = FPGA_VCO_DIV_4;
484 case FPGA_REG16_VCO_DIV_6:
485 vco_div_selection = FPGA_VCO_DIV_6;
487 case FPGA_REG16_VCO_DIV_8:
488 vco_div_selection = FPGA_VCO_DIV_8;
490 case FPGA_REG16_VCO_DIV_10:
492 vco_div_selection = FPGA_VCO_DIV_10;
496 if (master_clock_selection == FPGA_REG16_MASTER_CLK_EXT) {
497 switch(master_clock_per) {
498 case PERIOD_25_00MHZ:
499 if (fb_div_selection == FPGA_FB_DIV_12) {
500 if (vco_div_selection == FPGA_VCO_DIV_4)
501 sys_per = PERIOD_75_00MHZ;
502 if (vco_div_selection == FPGA_VCO_DIV_6)
503 sys_per = PERIOD_50_00MHZ;
506 case PERIOD_33_33MHZ:
507 if (fb_div_selection == FPGA_FB_DIV_6) {
508 if (vco_div_selection == FPGA_VCO_DIV_4)
509 sys_per = PERIOD_50_00MHZ;
510 if (vco_div_selection == FPGA_VCO_DIV_6)
511 sys_per = PERIOD_33_33MHZ;
513 if (fb_div_selection == FPGA_FB_DIV_10) {
514 if (vco_div_selection == FPGA_VCO_DIV_4)
515 sys_per = PERIOD_83_33MHZ;
516 if (vco_div_selection == FPGA_VCO_DIV_10)
517 sys_per = PERIOD_33_33MHZ;
519 if (fb_div_selection == FPGA_FB_DIV_12) {
520 if (vco_div_selection == FPGA_VCO_DIV_4)
521 sys_per = PERIOD_100_00MHZ;
522 if (vco_div_selection == FPGA_VCO_DIV_6)
523 sys_per = PERIOD_66_66MHZ;
524 if (vco_div_selection == FPGA_VCO_DIV_8)
525 sys_per = PERIOD_50_00MHZ;
528 case PERIOD_50_00MHZ:
529 if (fb_div_selection == FPGA_FB_DIV_6) {
530 if (vco_div_selection == FPGA_VCO_DIV_4)
531 sys_per = PERIOD_75_00MHZ;
532 if (vco_div_selection == FPGA_VCO_DIV_6)
533 sys_per = PERIOD_50_00MHZ;
535 if (fb_div_selection == FPGA_FB_DIV_10) {
536 if (vco_div_selection == FPGA_VCO_DIV_6)
537 sys_per = PERIOD_83_33MHZ;
538 if (vco_div_selection == FPGA_VCO_DIV_10)
539 sys_per = PERIOD_50_00MHZ;
541 if (fb_div_selection == FPGA_FB_DIV_12) {
542 if (vco_div_selection == FPGA_VCO_DIV_6)
543 sys_per = PERIOD_100_00MHZ;
544 if (vco_div_selection == FPGA_VCO_DIV_8)
545 sys_per = PERIOD_75_00MHZ;
548 case PERIOD_66_66MHZ:
549 if (fb_div_selection == FPGA_FB_DIV_6) {
550 if (vco_div_selection == FPGA_VCO_DIV_4)
551 sys_per = PERIOD_100_00MHZ;
552 if (vco_div_selection == FPGA_VCO_DIV_6)
553 sys_per = PERIOD_66_66MHZ;
554 if (vco_div_selection == FPGA_VCO_DIV_8)
555 sys_per = PERIOD_50_00MHZ;
557 if (fb_div_selection == FPGA_FB_DIV_10) {
558 if (vco_div_selection == FPGA_VCO_DIV_8)
559 sys_per = PERIOD_83_33MHZ;
560 if (vco_div_selection == FPGA_VCO_DIV_10)
561 sys_per = PERIOD_66_66MHZ;
563 if (fb_div_selection == FPGA_FB_DIV_12) {
564 if (vco_div_selection == FPGA_VCO_DIV_8)
565 sys_per = PERIOD_100_00MHZ;
573 /* Other combinations are not supported */
574 DEBUGF ("%s[%d] *** sys period compute failed ***\n", __FUNCTION__,__LINE__);
578 /* calcul system clock without cheking */
579 /* if engineering option clock no check is selected */
580 /* sys_per = master_clock_per * vco_div_selection / fb_div_selection */
581 sys_per = (master_clock_per/fb_div_selection) * vco_div_selection;
588 /*-------------------------------------------------------------------------+
589 | determine_pci_clock_per.
590 +-------------------------------------------------------------------------*/
591 unsigned long determine_pci_clock_per(void)
593 unsigned long pci_clock_selection, pci_period;
595 /*-------------------------------------------------------------------------+
596 | Read FPGA reg 6 to get PCI 0 FPGA reg information
597 +-------------------------------------------------------------------------*/
598 pci_clock_selection = in16(FPGA_REG16); /* was reg6 averifier */
601 pci_clock_selection = pci_clock_selection & FPGA_REG16_PCI0_CLK_MASK;
603 switch (pci_clock_selection) {
604 case FPGA_REG16_PCI0_CLK_133_33:
605 pci_period = PERIOD_133_33MHZ;
607 case FPGA_REG16_PCI0_CLK_100:
608 pci_period = PERIOD_100_00MHZ;
610 case FPGA_REG16_PCI0_CLK_66_66:
611 pci_period = PERIOD_66_66MHZ;
614 pci_period = PERIOD_33_33MHZ;;
622 ulong get_OPB_freq (void)
626 get_sys_info (&sys_info);
627 return sys_info.freqOPB;
630 #elif defined(CONFIG_XILINX_ML300)
631 extern void get_sys_info (sys_info_t * sysInfo);
632 extern ulong get_PCI_freq (void);
634 #elif defined(CONFIG_AP1000)
635 void get_sys_info (sys_info_t * sysInfo) {
636 sysInfo->freqProcessor = 240 * 1000 * 1000;
637 sysInfo->freqPLB = 80 * 1000 * 1000;
638 sysInfo->freqPCI = 33 * 1000 * 1000;
641 #elif defined(CONFIG_405)
643 void get_sys_info (sys_info_t * sysInfo) {
645 sysInfo->freqVCOMhz=3125000;
646 sysInfo->freqProcessor=12*1000*1000;
647 sysInfo->freqPLB=50*1000*1000;
648 sysInfo->freqPCI=66*1000*1000;
652 #elif defined(CONFIG_405EP)
653 void get_sys_info (PPC405_SYS_INFO * sysInfo)
655 unsigned long pllmr0;
656 unsigned long pllmr1;
657 unsigned long sysClkPeriodPs = ONE_BILLION / (CONFIG_SYS_CLK_FREQ / 1000);
659 unsigned long pllmr0_ccdv;
662 * Read PLL Mode registers
664 pllmr0 = mfdcr (cpc0_pllmr0);
665 pllmr1 = mfdcr (cpc0_pllmr1);
668 * Determine forward divider A
670 sysInfo->pllFwdDiv = 8 - ((pllmr1 & PLLMR1_FWDVA_MASK) >> 16);
673 * Determine forward divider B (should be equal to A)
675 sysInfo->pllFwdDivB = 8 - ((pllmr1 & PLLMR1_FWDVB_MASK) >> 12);
680 sysInfo->pllFbkDiv = ((pllmr1 & PLLMR1_FBMUL_MASK) >> 20);
681 if (sysInfo->pllFbkDiv == 0) {
682 sysInfo->pllFbkDiv = 16;
688 sysInfo->pllPlbDiv = ((pllmr0 & PLLMR0_CPU_TO_PLB_MASK) >> 16) + 1;
693 sysInfo->pllPciDiv = (pllmr0 & PLLMR0_PCI_TO_PLB_MASK) + 1;
696 * Determine EXTBUS_DIV.
698 sysInfo->pllExtBusDiv = ((pllmr0 & PLLMR0_EXB_TO_PLB_MASK) >> 8) + 2;
703 sysInfo->pllOpbDiv = ((pllmr0 & PLLMR0_OPB_TO_PLB_MASK) >> 12) + 1;
706 * Determine the M factor
708 m = sysInfo->pllFbkDiv * sysInfo->pllFwdDivB;
711 * Determine VCO clock frequency
713 sysInfo->freqVCOHz = (1000000000000LL * (unsigned long long)m) /
714 (unsigned long long)sysClkPeriodPs;
717 * Determine CPU clock frequency
719 pllmr0_ccdv = ((pllmr0 & PLLMR0_CPU_DIV_MASK) >> 20) + 1;
720 if (pllmr1 & PLLMR1_SSCS_MASK) {
722 * This is true if FWDVA == FWDVB:
723 * sysInfo->freqProcessor = (CONFIG_SYS_CLK_FREQ * sysInfo->pllFbkDiv)
726 sysInfo->freqProcessor = (CONFIG_SYS_CLK_FREQ * sysInfo->pllFbkDiv * sysInfo->pllFwdDivB)
727 / sysInfo->pllFwdDiv / pllmr0_ccdv;
729 sysInfo->freqProcessor = CONFIG_SYS_CLK_FREQ / pllmr0_ccdv;
733 * Determine PLB clock frequency
735 sysInfo->freqPLB = sysInfo->freqProcessor / sysInfo->pllPlbDiv;
739 /********************************************
741 * return OPB bus freq in Hz
742 *********************************************/
743 ulong get_OPB_freq (void)
747 PPC405_SYS_INFO sys_info;
749 get_sys_info (&sys_info);
750 val = sys_info.freqPLB / sys_info.pllOpbDiv;
756 /********************************************
758 * return PCI bus freq in Hz
759 *********************************************/
760 ulong get_PCI_freq (void)
763 PPC405_SYS_INFO sys_info;
765 get_sys_info (&sys_info);
766 val = sys_info.freqPLB / sys_info.pllPciDiv;
772 int get_clocks (void)
774 #if defined(CONFIG_405GP) || defined(CONFIG_405CR) || defined(CONFIG_440) || defined(CONFIG_405) || defined(CONFIG_405EP)
777 get_sys_info (&sys_info);
778 gd->cpu_clk = sys_info.freqProcessor;
779 gd->bus_clk = sys_info.freqPLB;
781 #endif /* defined(CONFIG_405GP) || defined(CONFIG_405CR) */
784 gd->cpu_clk = 66000000;
785 gd->bus_clk = 66000000;
791 /********************************************
793 * return PLB bus freq in Hz
794 *********************************************/
795 ulong get_bus_freq (ulong dummy)
799 #if defined(CONFIG_405GP) || defined(CONFIG_405CR) || defined(CONFIG_405) || defined(CONFIG_440) || defined(CONFIG_405EP)
802 get_sys_info (&sys_info);
803 val = sys_info.freqPLB;
805 #elif defined(CONFIG_IOP480)
810 # error get_bus_freq() not implemented