smdk2410.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. /*
  2. * (C) Copyright 2002
  3. * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
  4. * Marius Groeger <mgroeger@sysgo.de>
  5. *
  6. * (C) Copyright 2002, 2010
  7. * David Mueller, ELSOFT AG, <d.mueller@elsoft.ch>
  8. *
  9. * See file CREDITS for list of people who contributed to this
  10. * project.
  11. *
  12. * This program is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU General Public License as
  14. * published by the Free Software Foundation; either version 2 of
  15. * the License, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  25. * MA 02111-1307 USA
  26. */
  27. #include <common.h>
  28. #include <netdev.h>
  29. #include <asm/io.h>
  30. #include <asm/arch/s3c24x0_cpu.h>
  31. DECLARE_GLOBAL_DATA_PTR;
  32. #define FCLK_SPEED 1
  33. #if FCLK_SPEED==0 /* Fout = 203MHz, Fin = 12MHz for Audio */
  34. #define M_MDIV 0xC3
  35. #define M_PDIV 0x4
  36. #define M_SDIV 0x1
  37. #elif FCLK_SPEED==1 /* Fout = 202.8MHz */
  38. #define M_MDIV 0xA1
  39. #define M_PDIV 0x3
  40. #define M_SDIV 0x1
  41. #endif
  42. #define USB_CLOCK 1
  43. #if USB_CLOCK==0
  44. #define U_M_MDIV 0xA1
  45. #define U_M_PDIV 0x3
  46. #define U_M_SDIV 0x1
  47. #elif USB_CLOCK==1
  48. #define U_M_MDIV 0x48
  49. #define U_M_PDIV 0x3
  50. #define U_M_SDIV 0x2
  51. #endif
  52. static inline void pll_delay(unsigned long loops)
  53. {
  54. __asm__ volatile ("1:\n"
  55. "subs %0, %1, #1\n"
  56. "bne 1b":"=r" (loops):"0" (loops));
  57. }
  58. /*
  59. * Miscellaneous platform dependent initialisations
  60. */
  61. int board_early_init_f(void)
  62. {
  63. struct s3c24x0_clock_power * const clk_power =
  64. s3c24x0_get_base_clock_power();
  65. struct s3c24x0_gpio * const gpio = s3c24x0_get_base_gpio();
  66. /* to reduce PLL lock time, adjust the LOCKTIME register */
  67. writel(0xFFFFFF, &clk_power->locktime);
  68. /* configure MPLL */
  69. writel((M_MDIV << 12) + (M_PDIV << 4) + M_SDIV,
  70. &clk_power->mpllcon);
  71. /* some delay between MPLL and UPLL */
  72. pll_delay(4000);
  73. /* configure UPLL */
  74. writel((U_M_MDIV << 12) + (U_M_PDIV << 4) + U_M_SDIV,
  75. &clk_power->upllcon);
  76. /* some delay between MPLL and UPLL */
  77. pll_delay(8000);
  78. /* set up the I/O ports */
  79. writel(0x007FFFFF, &gpio->gpacon);
  80. writel(0x00044555, &gpio->gpbcon);
  81. writel(0x000007FF, &gpio->gpbup);
  82. writel(0xAAAAAAAA, &gpio->gpccon);
  83. writel(0x0000FFFF, &gpio->gpcup);
  84. writel(0xAAAAAAAA, &gpio->gpdcon);
  85. writel(0x0000FFFF, &gpio->gpdup);
  86. writel(0xAAAAAAAA, &gpio->gpecon);
  87. writel(0x0000FFFF, &gpio->gpeup);
  88. writel(0x000055AA, &gpio->gpfcon);
  89. writel(0x000000FF, &gpio->gpfup);
  90. writel(0xFF95FFBA, &gpio->gpgcon);
  91. writel(0x0000FFFF, &gpio->gpgup);
  92. writel(0x002AFAAA, &gpio->gphcon);
  93. writel(0x000007FF, &gpio->gphup);
  94. return 0;
  95. }
  96. int board_init(void)
  97. {
  98. /* arch number of SMDK2410-Board */
  99. gd->bd->bi_arch_number = MACH_TYPE_SMDK2410;
  100. /* adress of boot parameters */
  101. gd->bd->bi_boot_params = 0x30000100;
  102. icache_enable();
  103. dcache_enable();
  104. return 0;
  105. }
  106. int dram_init(void)
  107. {
  108. /* dram_init must store complete ramsize in gd->ram_size */
  109. gd->ram_size = PHYS_SDRAM_1_SIZE;
  110. return 0;
  111. }
  112. #ifdef CONFIG_CMD_NET
  113. int board_eth_init(bd_t *bis)
  114. {
  115. int rc = 0;
  116. #ifdef CONFIG_CS8900
  117. rc = cs8900_initialize(0, CONFIG_CS8900_BASE);
  118. #endif
  119. return rc;
  120. }
  121. #endif
  122. /*
  123. * Hardcoded flash setup:
  124. * Flash 0 is a non-CFI AMD AM29LV800BB flash.
  125. */
  126. ulong board_flash_get_legacy(ulong base, int banknum, flash_info_t *info)
  127. {
  128. info->portwidth = FLASH_CFI_16BIT;
  129. info->chipwidth = FLASH_CFI_BY16;
  130. info->interface = FLASH_CFI_X16;
  131. return 1;
  132. }