common.c 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /*
  2. * arch/arm/mach-tegra/board-harmony.c
  3. *
  4. * Copyright (C) 2010 Google, Inc.
  5. *
  6. * Author:
  7. * Colin Cross <ccross@android.com>
  8. *
  9. * This software is licensed under the terms of the GNU General Public
  10. * License version 2, as published by the Free Software Foundation, and
  11. * may be copied, distributed, and modified under those terms.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. */
  19. #include <linux/init.h>
  20. #include <linux/io.h>
  21. #include <linux/clk.h>
  22. #include <linux/delay.h>
  23. #include <asm/hardware/cache-l2x0.h>
  24. #include <mach/iomap.h>
  25. #include <mach/system.h>
  26. #include "board.h"
  27. #include "clock.h"
  28. #include "fuse.h"
  29. void (*arch_reset)(char mode, const char *cmd) = tegra_assert_system_reset;
  30. void tegra_assert_system_reset(char mode, const char *cmd)
  31. {
  32. void __iomem *reset = IO_ADDRESS(TEGRA_CLK_RESET_BASE + 0x04);
  33. u32 reg;
  34. /* use *_related to avoid spinlock since caches are off */
  35. reg = readl_relaxed(reset);
  36. reg |= 0x04;
  37. writel_relaxed(reg, reset);
  38. }
  39. static __initdata struct tegra_clk_init_table common_clk_init_table[] = {
  40. /* name parent rate enabled */
  41. { "clk_m", NULL, 0, true },
  42. { "pll_p", "clk_m", 216000000, true },
  43. { "pll_p_out1", "pll_p", 28800000, true },
  44. { "pll_p_out2", "pll_p", 48000000, true },
  45. { "pll_p_out3", "pll_p", 72000000, true },
  46. { "pll_p_out4", "pll_p", 108000000, true },
  47. { "sclk", "pll_p_out4", 108000000, true },
  48. { "hclk", "sclk", 108000000, true },
  49. { "pclk", "hclk", 54000000, true },
  50. { "csite", NULL, 0, true },
  51. { "emc", NULL, 0, true },
  52. { "cpu", NULL, 0, true },
  53. { NULL, NULL, 0, 0},
  54. };
  55. void __init tegra_init_cache(void)
  56. {
  57. #ifdef CONFIG_CACHE_L2X0
  58. void __iomem *p = IO_ADDRESS(TEGRA_ARM_PERIF_BASE) + 0x3000;
  59. writel_relaxed(0x331, p + L2X0_TAG_LATENCY_CTRL);
  60. writel_relaxed(0x441, p + L2X0_DATA_LATENCY_CTRL);
  61. l2x0_init(p, 0x6C080001, 0x8200c3fe);
  62. #endif
  63. }
  64. void __init tegra_init_early(void)
  65. {
  66. tegra_init_fuse();
  67. tegra_init_clock();
  68. tegra_clk_init_from_table(common_clk_init_table);
  69. tegra_init_cache();
  70. }