slcr.c 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*
  2. * Copyright (c) 2013 Xilinx Inc.
  3. *
  4. * See file CREDITS for list of people who contributed to this
  5. * project.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20. * MA 02111-1307 USA
  21. */
  22. #include <common.h>
  23. #include <asm/io.h>
  24. #include <malloc.h>
  25. #include <asm/arch/hardware.h>
  26. #define SLCR_LOCK_MAGIC 0x767B
  27. #define SLCR_UNLOCK_MAGIC 0xDF0D
  28. #define SLCR_IDCODE_MASK 0x1F000
  29. #define SLCR_IDCODE_SHIFT 12
  30. static int slcr_lock = 1; /* 1 means locked, 0 means unlocked */
  31. void zynq_slcr_lock(void)
  32. {
  33. if (!slcr_lock)
  34. writel(SLCR_LOCK_MAGIC, &slcr_base->slcr_lock);
  35. }
  36. void zynq_slcr_unlock(void)
  37. {
  38. if (slcr_lock)
  39. writel(SLCR_UNLOCK_MAGIC, &slcr_base->slcr_unlock);
  40. }
  41. /* Reset the entire system */
  42. void zynq_slcr_cpu_reset(void)
  43. {
  44. /*
  45. * Unlock the SLCR then reset the system.
  46. * Note that this seems to require raw i/o
  47. * functions or there's a lockup?
  48. */
  49. zynq_slcr_unlock();
  50. /*
  51. * Clear 0x0F000000 bits of reboot status register to workaround
  52. * the FSBL not loading the bitstream after soft-reboot
  53. * This is a temporary solution until we know more.
  54. */
  55. clrbits_le32(&slcr_base->reboot_status, 0xF000000);
  56. writel(1, &slcr_base->pss_rst_ctrl);
  57. }
  58. /* Setup clk for network */
  59. void zynq_slcr_gem_clk_setup(u32 gem_id, u32 rclk, u32 clk)
  60. {
  61. zynq_slcr_unlock();
  62. if (gem_id > 1) {
  63. printf("Non existing GEM id %d\n", gem_id);
  64. goto out;
  65. }
  66. if (gem_id) {
  67. /* Set divisors for appropriate frequency in GEM_CLK_CTRL */
  68. writel(clk, &slcr_base->gem1_clk_ctrl);
  69. /* Configure GEM_RCLK_CTRL */
  70. writel(rclk, &slcr_base->gem1_rclk_ctrl);
  71. } else {
  72. /* Set divisors for appropriate frequency in GEM_CLK_CTRL */
  73. writel(clk, &slcr_base->gem0_clk_ctrl);
  74. /* Configure GEM_RCLK_CTRL */
  75. writel(rclk, &slcr_base->gem0_rclk_ctrl);
  76. }
  77. out:
  78. zynq_slcr_lock();
  79. }
  80. void zynq_slcr_devcfg_disable(void)
  81. {
  82. zynq_slcr_unlock();
  83. /* Disable AXI interface */
  84. writel(0xFFFFFFFF, &slcr_base->fpga_rst_ctrl);
  85. /* Set Level Shifters DT618760 */
  86. writel(0xA, &slcr_base->lvl_shftr_en);
  87. zynq_slcr_lock();
  88. }
  89. void zynq_slcr_devcfg_enable(void)
  90. {
  91. zynq_slcr_unlock();
  92. /* Set Level Shifters DT618760 */
  93. writel(0xF, &slcr_base->lvl_shftr_en);
  94. /* Disable AXI interface */
  95. writel(0x0, &slcr_base->fpga_rst_ctrl);
  96. zynq_slcr_lock();
  97. }
  98. u32 zynq_slcr_get_idcode(void)
  99. {
  100. return (readl(&slcr_base->pss_idcode) & SLCR_IDCODE_MASK) >>
  101. SLCR_IDCODE_SHIFT;
  102. }