fdt.c 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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. void ft_cpu_setup(void *blob, bd_t *bd)
  32. {
  33. immap_t *immr = (immap_t *)CONFIG_SYS_IMMR;
  34. int spridr = immr->sysconf.spridr;
  35. /*
  36. * delete crypto node if not on an E-processor
  37. * initial revisions of the MPC834xE/6xE have the original SEC 2.0.
  38. * EA revisions got the SEC uprevved to 2.4 but since the default device
  39. * tree contains SEC 2.0 properties we uprev them here.
  40. */
  41. if (!IS_E_PROCESSOR(spridr))
  42. fdt_fixup_crypto_node(blob, 0);
  43. else if (IS_E_PROCESSOR(spridr) &&
  44. (SPR_FAMILY(spridr) == SPR_834X_FAMILY ||
  45. SPR_FAMILY(spridr) == SPR_836X_FAMILY) &&
  46. REVID_MAJOR(spridr) >= 2)
  47. fdt_fixup_crypto_node(blob, 0x0204);
  48. #if defined(CONFIG_HAS_ETH0) || defined(CONFIG_HAS_ETH1) ||\
  49. defined(CONFIG_HAS_ETH2) || defined(CONFIG_HAS_ETH3) ||\
  50. defined(CONFIG_HAS_ETH4) || defined(CONFIG_HAS_ETH5)
  51. fdt_fixup_ethernet(blob);
  52. #endif
  53. do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
  54. "timebase-frequency", (bd->bi_busfreq / 4), 1);
  55. do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
  56. "bus-frequency", bd->bi_busfreq, 1);
  57. do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
  58. "clock-frequency", gd->core_clk, 1);
  59. do_fixup_by_prop_u32(blob, "device_type", "soc", 4,
  60. "bus-frequency", bd->bi_busfreq, 1);
  61. do_fixup_by_compat_u32(blob, "fsl,soc",
  62. "bus-frequency", bd->bi_busfreq, 1);
  63. do_fixup_by_compat_u32(blob, "fsl,soc",
  64. "clock-frequency", bd->bi_busfreq, 1);
  65. do_fixup_by_compat_u32(blob, "fsl,immr",
  66. "bus-frequency", bd->bi_busfreq, 1);
  67. do_fixup_by_compat_u32(blob, "fsl,immr",
  68. "clock-frequency", bd->bi_busfreq, 1);
  69. #ifdef CONFIG_QE
  70. ft_qe_setup(blob);
  71. #endif
  72. #ifdef CONFIG_SYS_NS16550
  73. do_fixup_by_compat_u32(blob, "ns16550",
  74. "clock-frequency", CONFIG_SYS_NS16550_CLK, 1);
  75. #endif
  76. fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize);
  77. }