fdt.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /*
  2. * Copyright 2007 Freescale Semiconductor, Inc.
  3. *
  4. * (C) Copyright 2000
  5. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  6. *
  7. * See file CREDITS for list of people who contributed to this
  8. * project.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. */
  25. #include <common.h>
  26. #include <libfdt.h>
  27. #include <fdt_support.h>
  28. #include <asm/processor.h>
  29. extern void ft_qe_setup(void *blob);
  30. DECLARE_GLOBAL_DATA_PTR;
  31. #if defined(CONFIG_BOOTCOUNT_LIMIT) && defined(CONFIG_MPC8360)
  32. #include <asm/immap_qe.h>
  33. void fdt_fixup_muram (void *blob)
  34. {
  35. ulong data[2];
  36. data[0] = 0;
  37. data[1] = QE_MURAM_SIZE - 2 * sizeof(unsigned long);
  38. do_fixup_by_compat(blob, "fsl,qe-muram-data", "reg",
  39. data, sizeof (data), 0);
  40. }
  41. #endif
  42. void ft_cpu_setup(void *blob, bd_t *bd)
  43. {
  44. immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
  45. int spridr = immr->sysconf.spridr;
  46. /*
  47. * delete crypto node if not on an E-processor
  48. * initial revisions of the MPC834xE/6xE have the original SEC 2.0.
  49. * EA revisions got the SEC uprevved to 2.4 but since the default device
  50. * tree contains SEC 2.0 properties we uprev them here.
  51. */
  52. if (!IS_E_PROCESSOR(spridr))
  53. fdt_fixup_crypto_node(blob, 0);
  54. else if (IS_E_PROCESSOR(spridr) &&
  55. (SPR_FAMILY(spridr) == SPR_834X_FAMILY ||
  56. SPR_FAMILY(spridr) == SPR_836X_FAMILY) &&
  57. REVID_MAJOR(spridr) >= 2)
  58. fdt_fixup_crypto_node(blob, 0x0204);
  59. #if defined(CONFIG_HAS_ETH0) || defined(CONFIG_HAS_ETH1) ||\
  60. defined(CONFIG_HAS_ETH2) || defined(CONFIG_HAS_ETH3) ||\
  61. defined(CONFIG_HAS_ETH4) || defined(CONFIG_HAS_ETH5)
  62. fdt_fixup_ethernet(blob);
  63. #ifdef CONFIG_MPC8313
  64. /*
  65. * mpc8313e erratum IPIC1 swapped TSEC interrupt ID numbers on rev. 1
  66. * h/w (see AN3545). The base device tree in use has rev. 1 ID numbers,
  67. * so if on Rev. 2 (and higher) h/w, we fix them up here
  68. */
  69. if (REVID_MAJOR(immr->sysconf.spridr) >= 2) {
  70. int nodeoffset, path;
  71. const char *prop;
  72. nodeoffset = fdt_path_offset(blob, "/aliases");
  73. if (nodeoffset >= 0) {
  74. #if defined(CONFIG_HAS_ETH0)
  75. prop = fdt_getprop(blob, nodeoffset, "ethernet0", NULL);
  76. if (prop) {
  77. u32 tmp[] = { 32, 0x8, 33, 0x8, 34, 0x8 };
  78. path = fdt_path_offset(blob, prop);
  79. prop = fdt_getprop(blob, path, "interrupts", 0);
  80. if (prop)
  81. fdt_setprop(blob, path, "interrupts",
  82. &tmp, sizeof(tmp));
  83. }
  84. #endif
  85. #if defined(CONFIG_HAS_ETH1)
  86. prop = fdt_getprop(blob, nodeoffset, "ethernet1", NULL);
  87. if (prop) {
  88. u32 tmp[] = { 35, 0x8, 36, 0x8, 37, 0x8 };
  89. path = fdt_path_offset(blob, prop);
  90. prop = fdt_getprop(blob, path, "interrupts", 0);
  91. if (prop)
  92. fdt_setprop(blob, path, "interrupts",
  93. &tmp, sizeof(tmp));
  94. }
  95. #endif
  96. }
  97. }
  98. #endif
  99. #endif
  100. do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
  101. "timebase-frequency", (bd->bi_busfreq / 4), 1);
  102. do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
  103. "bus-frequency", bd->bi_busfreq, 1);
  104. do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
  105. "clock-frequency", gd->core_clk, 1);
  106. do_fixup_by_prop_u32(blob, "device_type", "soc", 4,
  107. "bus-frequency", bd->bi_busfreq, 1);
  108. do_fixup_by_compat_u32(blob, "fsl,soc",
  109. "bus-frequency", bd->bi_busfreq, 1);
  110. do_fixup_by_compat_u32(blob, "fsl,soc",
  111. "clock-frequency", bd->bi_busfreq, 1);
  112. do_fixup_by_compat_u32(blob, "fsl,immr",
  113. "bus-frequency", bd->bi_busfreq, 1);
  114. do_fixup_by_compat_u32(blob, "fsl,immr",
  115. "clock-frequency", bd->bi_busfreq, 1);
  116. #ifdef CONFIG_QE
  117. ft_qe_setup(blob);
  118. #endif
  119. #ifdef CONFIG_SYS_NS16550
  120. do_fixup_by_compat_u32(blob, "ns16550",
  121. "clock-frequency", CONFIG_SYS_NS16550_CLK, 1);
  122. #endif
  123. fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize);
  124. #if defined(CONFIG_BOOTCOUNT_LIMIT)
  125. fdt_fixup_muram (blob);
  126. #endif
  127. }