fsl_ifc.c 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. * Copyright 2010-2011 Freescale Semiconductor, Inc.
  3. * Author: Dipen Dudhat <dipen.dudhat@freescale.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  18. * MA 02111-1307 USA
  19. */
  20. #include <common.h>
  21. #include <asm/fsl_ifc.h>
  22. void print_ifc_regs(void)
  23. {
  24. int i, j;
  25. printf("IFC Controller Registers\n");
  26. for (i = 0; i < FSL_IFC_BANK_COUNT; i++) {
  27. printf("CSPR%d:0x%08X\tAMASK%d:0x%08X\tCSOR%d:0x%08X\n",
  28. i, get_ifc_cspr(i), i, get_ifc_amask(i),
  29. i, get_ifc_csor(i));
  30. for (j = 0; j < 4; j++)
  31. printf("IFC_FTIM%d:0x%08X\n", j, get_ifc_ftim(i, j));
  32. }
  33. }
  34. void init_early_memctl_regs(void)
  35. {
  36. #if defined(CONFIG_SYS_CSPR0) && defined(CONFIG_SYS_CSOR0)
  37. set_ifc_ftim(IFC_CS0, IFC_FTIM0, CONFIG_SYS_CS0_FTIM0);
  38. set_ifc_ftim(IFC_CS0, IFC_FTIM1, CONFIG_SYS_CS0_FTIM1);
  39. set_ifc_ftim(IFC_CS0, IFC_FTIM2, CONFIG_SYS_CS0_FTIM2);
  40. set_ifc_ftim(IFC_CS0, IFC_FTIM3, CONFIG_SYS_CS0_FTIM3);
  41. #if !defined(CONFIG_SYS_FSL_ERRATUM_IFC_A003399) || defined(CONFIG_SYS_RAMBOOT)
  42. set_ifc_cspr(IFC_CS0, CONFIG_SYS_CSPR0);
  43. set_ifc_amask(IFC_CS0, CONFIG_SYS_AMASK0);
  44. set_ifc_csor(IFC_CS0, CONFIG_SYS_CSOR0);
  45. #endif
  46. #endif
  47. #if defined(CONFIG_SYS_CSPR1) && defined(CONFIG_SYS_CSOR1)
  48. set_ifc_ftim(IFC_CS1, IFC_FTIM0, CONFIG_SYS_CS1_FTIM0);
  49. set_ifc_ftim(IFC_CS1, IFC_FTIM1, CONFIG_SYS_CS1_FTIM1);
  50. set_ifc_ftim(IFC_CS1, IFC_FTIM2, CONFIG_SYS_CS1_FTIM2);
  51. set_ifc_ftim(IFC_CS1, IFC_FTIM3, CONFIG_SYS_CS1_FTIM3);
  52. set_ifc_csor(IFC_CS1, CONFIG_SYS_CSOR1);
  53. set_ifc_amask(IFC_CS1, CONFIG_SYS_AMASK1);
  54. set_ifc_cspr(IFC_CS1, CONFIG_SYS_CSPR1);
  55. #endif
  56. #if defined(CONFIG_SYS_CSPR2) && defined(CONFIG_SYS_CSOR2)
  57. set_ifc_ftim(IFC_CS2, IFC_FTIM0, CONFIG_SYS_CS2_FTIM0);
  58. set_ifc_ftim(IFC_CS2, IFC_FTIM1, CONFIG_SYS_CS2_FTIM1);
  59. set_ifc_ftim(IFC_CS2, IFC_FTIM2, CONFIG_SYS_CS2_FTIM2);
  60. set_ifc_ftim(IFC_CS2, IFC_FTIM3, CONFIG_SYS_CS2_FTIM3);
  61. set_ifc_csor(IFC_CS2, CONFIG_SYS_CSOR2);
  62. set_ifc_amask(IFC_CS2, CONFIG_SYS_AMASK2);
  63. set_ifc_cspr(IFC_CS2, CONFIG_SYS_CSPR2);
  64. #endif
  65. #if defined(CONFIG_SYS_CSPR3) && defined(CONFIG_SYS_CSOR3)
  66. set_ifc_ftim(IFC_CS3, IFC_FTIM0, CONFIG_SYS_CS3_FTIM0);
  67. set_ifc_ftim(IFC_CS3, IFC_FTIM1, CONFIG_SYS_CS3_FTIM1);
  68. set_ifc_ftim(IFC_CS3, IFC_FTIM2, CONFIG_SYS_CS3_FTIM2);
  69. set_ifc_ftim(IFC_CS3, IFC_FTIM3, CONFIG_SYS_CS3_FTIM3);
  70. set_ifc_cspr(IFC_CS3, CONFIG_SYS_CSPR3);
  71. set_ifc_amask(IFC_CS3, CONFIG_SYS_AMASK3);
  72. set_ifc_csor(IFC_CS3, CONFIG_SYS_CSOR3);
  73. #endif
  74. }