sc520.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * (C) Copyright 2002
  3. * Daniel Engstr�m, Omicron Ceti AB <daniel@omicron.se>.
  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. /* stuff specific for the sc520,
  24. * but idependent of implementation */
  25. #include <common.h>
  26. #include <asm/io.h>
  27. #include <asm/processor-flags.h>
  28. #include <asm/ic/sc520.h>
  29. DECLARE_GLOBAL_DATA_PTR;
  30. sc520_mmcr_t *sc520_mmcr = (sc520_mmcr_t *)SC520_MMCR_BASE;
  31. int cpu_init_f(void)
  32. {
  33. if (CONFIG_SYS_SC520_HIGH_SPEED) {
  34. /* set it to 133 MHz and write back */
  35. writeb(0x02, &sc520_mmcr->cpuctl);
  36. gd->cpu_clk = 133000000;
  37. } else {
  38. /* set it to 100 MHz and write back */
  39. writeb(0x01, &sc520_mmcr->cpuctl);
  40. gd->cpu_clk = 100000000;
  41. }
  42. /* wait at least one millisecond */
  43. asm("movl $0x2000, %%ecx\n"
  44. "0: pushl %%ecx\n"
  45. "popl %%ecx\n"
  46. "loop 0b\n": : : "ecx");
  47. if (gd->flags & GD_FLG_COLD_BOOT) {
  48. /* turn on the SDRAM write buffer */
  49. writeb(0x11, &sc520_mmcr->dbctl);
  50. }
  51. return x86_cpu_init_f();
  52. }
  53. #ifdef CONFIG_SYS_SC520_RESET
  54. void reset_cpu(ulong addr)
  55. {
  56. printf("Resetting using SC520 MMCR\n");
  57. /* Write a '1' to the SYS_RST of the RESCFG MMCR */
  58. writeb(0x01, &sc520_mmcr->rescfg);
  59. /* NOTREACHED */
  60. }
  61. #endif