soc.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /*
  2. * (C) Copyright 2007
  3. * Sascha Hauer, Pengutronix
  4. *
  5. * (C) Copyright 2009 Freescale Semiconductor, Inc.
  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 <asm/errno.h>
  27. #include <asm/io.h>
  28. #include <asm/arch/imx-regs.h>
  29. #include <asm/arch/clock.h>
  30. #include <asm/arch/sys_proto.h>
  31. u32 get_cpu_rev(void)
  32. {
  33. struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
  34. int reg = readl(&anatop->digprog);
  35. /* Read mx6 variant: quad, dual or solo */
  36. int system_rev = (reg >> 4) & 0xFF000;
  37. /* Read mx6 silicon revision */
  38. system_rev |= (reg & 0xFF) + 0x10;
  39. return system_rev;
  40. }
  41. void init_aips(void)
  42. {
  43. struct aipstz_regs *aips1, *aips2;
  44. aips1 = (struct aipstz_regs *)AIPS1_BASE_ADDR;
  45. aips2 = (struct aipstz_regs *)AIPS2_BASE_ADDR;
  46. /*
  47. * Set all MPROTx to be non-bufferable, trusted for R/W,
  48. * not forced to user-mode.
  49. */
  50. writel(0x77777777, &aips1->mprot0);
  51. writel(0x77777777, &aips1->mprot1);
  52. writel(0x77777777, &aips2->mprot0);
  53. writel(0x77777777, &aips2->mprot1);
  54. /*
  55. * Set all OPACRx to be non-bufferable, not require
  56. * supervisor privilege level for access,allow for
  57. * write access and untrusted master access.
  58. */
  59. writel(0x00000000, &aips1->opacr0);
  60. writel(0x00000000, &aips1->opacr1);
  61. writel(0x00000000, &aips1->opacr2);
  62. writel(0x00000000, &aips1->opacr3);
  63. writel(0x00000000, &aips1->opacr4);
  64. writel(0x00000000, &aips2->opacr0);
  65. writel(0x00000000, &aips2->opacr1);
  66. writel(0x00000000, &aips2->opacr2);
  67. writel(0x00000000, &aips2->opacr3);
  68. writel(0x00000000, &aips2->opacr4);
  69. }
  70. /*
  71. * Set the VDDSOC
  72. *
  73. * Mask out the REG_CORE[22:18] bits (REG2_TRIG) and set
  74. * them to the specified millivolt level.
  75. * Possible values are from 0.725V to 1.450V in steps of
  76. * 0.025V (25mV).
  77. */
  78. void set_vddsoc(u32 mv)
  79. {
  80. struct anatop_regs *anatop = (struct anatop_regs *)ANATOP_BASE_ADDR;
  81. u32 val, reg = readl(&anatop->reg_core);
  82. if (mv < 725)
  83. val = 0x00; /* Power gated off */
  84. else if (mv > 1450)
  85. val = 0x1F; /* Power FET switched full on. No regulation */
  86. else
  87. val = (mv - 700) / 25;
  88. /*
  89. * Mask out the REG_CORE[22:18] bits (REG2_TRIG)
  90. * and set them to the calculated value (0.7V + val * 0.25V)
  91. */
  92. reg = (reg & ~(0x1F << 18)) | (val << 18);
  93. writel(reg, &anatop->reg_core);
  94. }
  95. int arch_cpu_init(void)
  96. {
  97. init_aips();
  98. set_vddsoc(1200); /* Set VDDSOC to 1.2V */
  99. return 0;
  100. }
  101. #ifndef CONFIG_SYS_DCACHE_OFF
  102. void enable_caches(void)
  103. {
  104. /* Enable D-cache. I-cache is already enabled in start.S */
  105. dcache_enable();
  106. }
  107. #endif
  108. #if defined(CONFIG_FEC_MXC)
  109. void imx_get_mac_from_fuse(int dev_id, unsigned char *mac)
  110. {
  111. struct iim_regs *iim = (struct iim_regs *)IMX_IIM_BASE;
  112. struct fuse_bank *bank = &iim->bank[4];
  113. struct fuse_bank4_regs *fuse =
  114. (struct fuse_bank4_regs *)bank->fuse_regs;
  115. u32 value = readl(&fuse->mac_addr_high);
  116. mac[0] = (value >> 8);
  117. mac[1] = value ;
  118. value = readl(&fuse->mac_addr_low);
  119. mac[2] = value >> 24 ;
  120. mac[3] = value >> 16 ;
  121. mac[4] = value >> 8 ;
  122. mac[5] = value ;
  123. }
  124. #endif