fdt.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. /*
  2. * Copyright 2009-2010 Freescale Semiconductor, Inc.
  3. *
  4. * This file is derived from arch/powerpc/cpu/mpc85xx/cpu.c and
  5. * arch/powerpc/cpu/mpc86xx/cpu.c. Basically this file contains
  6. * cpu specific common code for 85xx/86xx processors.
  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. #if defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx)
  29. void ft_fixup_num_cores(void *blob) {
  30. int off, num_cores, del_cores;
  31. del_cores = 0;
  32. num_cores = cpu_numcores();
  33. off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
  34. while (off != -FDT_ERR_NOTFOUND) {
  35. u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0);
  36. /* if we find a cpu node outside of what we expect delete it
  37. * and reset the offset back to the start since we can't
  38. * trust the offsets anymore
  39. */
  40. if (*reg > num_cores-1) {
  41. fdt_del_node(blob, off);
  42. del_cores++;
  43. off = -1;
  44. }
  45. off = fdt_node_offset_by_prop_value(blob, off,
  46. "device_type", "cpu", 4);
  47. }
  48. debug ("%x core system found\n", num_cores);
  49. debug ("deleted %d extra core entry entries from device tree\n",
  50. del_cores);
  51. }
  52. #endif /* defined(CONFIG_MPC85xx) || defined(CONFIG_MPC86xx) */
  53. #ifdef CONFIG_HAS_FSL_DR_USB
  54. void fdt_fixup_dr_usb(void *blob, bd_t *bd)
  55. {
  56. char *mode;
  57. char *type;
  58. const char *compat = "fsl-usb2-dr";
  59. const char *prop_mode = "dr_mode";
  60. const char *prop_type = "phy_type";
  61. int node_offset;
  62. int err;
  63. mode = getenv("usb_dr_mode");
  64. type = getenv("usb_phy_type");
  65. if (!mode && !type)
  66. return;
  67. node_offset = fdt_node_offset_by_compatible(blob, 0, compat);
  68. if (node_offset < 0) {
  69. printf("WARNING: could not find compatible node %s: %s.\n",
  70. compat, fdt_strerror(node_offset));
  71. return;
  72. }
  73. if (mode) {
  74. err = fdt_setprop(blob, node_offset, prop_mode, mode,
  75. strlen(mode) + 1);
  76. if (err < 0)
  77. printf("WARNING: could not set %s for %s: %s.\n",
  78. prop_mode, compat, fdt_strerror(err));
  79. }
  80. if (type) {
  81. err = fdt_setprop(blob, node_offset, prop_type, type,
  82. strlen(type) + 1);
  83. if (err < 0)
  84. printf("WARNING: could not set %s for %s: %s.\n",
  85. prop_type, compat, fdt_strerror(err));
  86. }
  87. }
  88. #endif /* CONFIG_HAS_FSL_DR_USB */
  89. #if defined(CONFIG_MPC83xx) || defined(CONFIG_MPC85xx)
  90. /*
  91. * update crypto node properties to a specified revision of the SEC
  92. * called with sec_rev == 0 if not on an mpc8xxxE processor
  93. */
  94. void fdt_fixup_crypto_node(void *blob, int sec_rev)
  95. {
  96. const struct sec_rev_prop {
  97. u32 sec_rev;
  98. u32 num_channels;
  99. u32 channel_fifo_len;
  100. u32 exec_units_mask;
  101. u32 descriptor_types_mask;
  102. } sec_rev_prop_list [] = {
  103. { 0x0200, 4, 24, 0x07e, 0x01010ebf }, /* SEC 2.0 */
  104. { 0x0201, 4, 24, 0x0fe, 0x012b0ebf }, /* SEC 2.1 */
  105. { 0x0202, 1, 24, 0x04c, 0x0122003f }, /* SEC 2.2 */
  106. { 0x0204, 4, 24, 0x07e, 0x012b0ebf }, /* SEC 2.4 */
  107. { 0x0300, 4, 24, 0x9fe, 0x03ab0ebf }, /* SEC 3.0 */
  108. { 0x0301, 4, 24, 0xbfe, 0x03ab0ebf }, /* SEC 3.1 */
  109. { 0x0303, 4, 24, 0x97c, 0x03a30abf }, /* SEC 3.3 */
  110. };
  111. char compat_strlist[ARRAY_SIZE(sec_rev_prop_list) *
  112. sizeof("fsl,secX.Y")];
  113. int crypto_node, sec_idx, err;
  114. char *p;
  115. u32 val;
  116. /* locate crypto node based on lowest common compatible */
  117. crypto_node = fdt_node_offset_by_compatible(blob, -1, "fsl,sec2.0");
  118. if (crypto_node == -FDT_ERR_NOTFOUND)
  119. return;
  120. /* delete it if not on an E-processor */
  121. if (crypto_node > 0 && !sec_rev) {
  122. fdt_del_node(blob, crypto_node);
  123. return;
  124. }
  125. /* else we got called for possible uprev */
  126. for (sec_idx = 0; sec_idx < ARRAY_SIZE(sec_rev_prop_list); sec_idx++)
  127. if (sec_rev_prop_list[sec_idx].sec_rev == sec_rev)
  128. break;
  129. if (sec_idx == ARRAY_SIZE(sec_rev_prop_list)) {
  130. puts("warning: unknown SEC revision number\n");
  131. return;
  132. }
  133. val = cpu_to_fdt32(sec_rev_prop_list[sec_idx].num_channels);
  134. err = fdt_setprop(blob, crypto_node, "fsl,num-channels", &val, 4);
  135. if (err < 0)
  136. printf("WARNING: could not set crypto property: %s\n",
  137. fdt_strerror(err));
  138. val = cpu_to_fdt32(sec_rev_prop_list[sec_idx].descriptor_types_mask);
  139. err = fdt_setprop(blob, crypto_node, "fsl,descriptor-types-mask", &val, 4);
  140. if (err < 0)
  141. printf("WARNING: could not set crypto property: %s\n",
  142. fdt_strerror(err));
  143. val = cpu_to_fdt32(sec_rev_prop_list[sec_idx].exec_units_mask);
  144. err = fdt_setprop(blob, crypto_node, "fsl,exec-units-mask", &val, 4);
  145. if (err < 0)
  146. printf("WARNING: could not set crypto property: %s\n",
  147. fdt_strerror(err));
  148. val = cpu_to_fdt32(sec_rev_prop_list[sec_idx].channel_fifo_len);
  149. err = fdt_setprop(blob, crypto_node, "fsl,channel-fifo-len", &val, 4);
  150. if (err < 0)
  151. printf("WARNING: could not set crypto property: %s\n",
  152. fdt_strerror(err));
  153. val = 0;
  154. while (sec_idx >= 0) {
  155. p = compat_strlist + val;
  156. val += sprintf(p, "fsl,sec%d.%d",
  157. (sec_rev_prop_list[sec_idx].sec_rev & 0xff00) >> 8,
  158. sec_rev_prop_list[sec_idx].sec_rev & 0x00ff) + 1;
  159. sec_idx--;
  160. }
  161. err = fdt_setprop(blob, crypto_node, "compatible", &compat_strlist, val);
  162. if (err < 0)
  163. printf("WARNING: could not set crypto property: %s\n",
  164. fdt_strerror(err));
  165. }
  166. #endif /* defined(CONFIG_MPC83xx) || defined(CONFIG_MPC85xx) */