cpu.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * (C) Copyright 2000-2003
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  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.
  12. *
  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.
  17. *
  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,
  21. * MA 02111-1307 USA
  22. */
  23. /*
  24. * CPU specific code for the MPC5xxx CPUs
  25. */
  26. #include <common.h>
  27. #include <watchdog.h>
  28. #include <command.h>
  29. #include <mpc5xxx.h>
  30. #include <asm/io.h>
  31. #include <asm/processor.h>
  32. #if defined(CONFIG_OF_LIBFDT)
  33. #include <libfdt.h>
  34. #include <libfdt_env.h>
  35. #include <fdt_support.h>
  36. #endif
  37. DECLARE_GLOBAL_DATA_PTR;
  38. int checkcpu (void)
  39. {
  40. ulong clock = gd->cpu_clk;
  41. char buf[32];
  42. #ifndef CONFIG_MGT5100
  43. uint svr, pvr;
  44. #endif
  45. puts ("CPU: ");
  46. #ifdef CONFIG_MGT5100
  47. puts (CPU_ID_STR);
  48. printf (" (JTAG ID %08lx)", *(vu_long *)MPC5XXX_CDM_JTAGID);
  49. #else
  50. svr = get_svr();
  51. pvr = get_pvr();
  52. switch (pvr) {
  53. case PVR_5200:
  54. printf("MPC5200");
  55. break;
  56. case PVR_5200B:
  57. printf("MPC5200B");
  58. break;
  59. default:
  60. printf("Unknown MPC5xxx");
  61. break;
  62. }
  63. printf (" v%d.%d, Core v%d.%d", SVR_MJREV (svr), SVR_MNREV (svr),
  64. PVR_MAJ(pvr), PVR_MIN(pvr));
  65. #endif
  66. printf (" at %s MHz\n", strmhz (buf, clock));
  67. return 0;
  68. }
  69. /* ------------------------------------------------------------------------- */
  70. int
  71. do_reset (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
  72. {
  73. ulong msr;
  74. /* Interrupts and MMU off */
  75. __asm__ __volatile__ ("mfmsr %0":"=r" (msr):);
  76. msr &= ~(MSR_ME | MSR_EE | MSR_IR | MSR_DR);
  77. __asm__ __volatile__ ("mtmsr %0"::"r" (msr));
  78. /* Charge the watchdog timer */
  79. *(vu_long *)(MPC5XXX_GPT0_COUNTER) = 0x0001000f;
  80. *(vu_long *)(MPC5XXX_GPT0_ENABLE) = 0x9004; /* wden|ce|timer_ms */
  81. while(1);
  82. return 1;
  83. }
  84. /* ------------------------------------------------------------------------- */
  85. /*
  86. * Get timebase clock frequency (like cpu_clk in Hz)
  87. *
  88. */
  89. unsigned long get_tbclk (void)
  90. {
  91. ulong tbclk;
  92. tbclk = (gd->bus_clk + 3L) / 4L;
  93. return (tbclk);
  94. }
  95. /* ------------------------------------------------------------------------- */
  96. #ifdef CONFIG_OF_LIBFDT
  97. void ft_cpu_setup(void *blob, bd_t *bd)
  98. {
  99. int div = in_8((void*)CFG_MBAR + 0x204) & 0x0020 ? 8 : 4;
  100. char * cpu_path = "/cpus/" OF_CPU;
  101. char * eth_path = "/" OF_SOC "/ethernet@3000";
  102. do_fixup_by_path_u32(blob, cpu_path, "timebase-frequency", OF_TBCLK, 1);
  103. do_fixup_by_path_u32(blob, cpu_path, "bus-frequency", bd->bi_busfreq, 1);
  104. do_fixup_by_path_u32(blob, cpu_path, "clock-frequency", bd->bi_intfreq, 1);
  105. do_fixup_by_path_u32(blob, "/" OF_SOC, "bus-frequency", bd->bi_ipbfreq, 1);
  106. do_fixup_by_path_u32(blob, "/" OF_SOC, "system-frequency",
  107. bd->bi_busfreq*div, 1);
  108. do_fixup_by_path(blob, eth_path, "mac-address", bd->bi_enetaddr, 6, 0);
  109. do_fixup_by_path(blob, eth_path, "local-mac-address", bd->bi_enetaddr, 6, 0);
  110. }
  111. #endif