rockchip.c 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. * Device Tree support for Rockchip SoCs
  3. *
  4. * Copyright (c) 2013 MundoReader S.L.
  5. * Author: Heiko Stuebner <heiko@sntech.de>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (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. #include <linux/kernel.h>
  18. #include <linux/init.h>
  19. #include <linux/of_platform.h>
  20. #include <linux/irqchip.h>
  21. #include <linux/clk-provider.h>
  22. #include <linux/clocksource.h>
  23. #include <linux/mfd/syscon.h>
  24. #include <linux/regmap.h>
  25. #include <asm/mach/arch.h>
  26. #include <asm/mach/map.h>
  27. #include <asm/hardware/cache-l2x0.h>
  28. #include "core.h"
  29. #include "pm.h"
  30. #define RK3288_GRF_SOC_CON0 0x244
  31. #define RK3288_TIMER6_7_PHYS 0xff810000
  32. static void __init rockchip_timer_init(void)
  33. {
  34. if (of_machine_is_compatible("rockchip,rk3288")) {
  35. struct regmap *grf;
  36. void __iomem *reg_base;
  37. /*
  38. * Most/all uboot versions for rk3288 don't enable timer7
  39. * which is needed for the architected timer to work.
  40. * So make sure it is running during early boot.
  41. */
  42. reg_base = ioremap(RK3288_TIMER6_7_PHYS, SZ_16K);
  43. if (reg_base) {
  44. writel(0, reg_base + 0x30);
  45. writel(0xffffffff, reg_base + 0x20);
  46. writel(0xffffffff, reg_base + 0x24);
  47. writel(1, reg_base + 0x30);
  48. dsb();
  49. iounmap(reg_base);
  50. } else {
  51. pr_err("rockchip: could not map timer7 registers\n");
  52. }
  53. /*
  54. * Disable auto jtag/sdmmc switching that causes issues
  55. * with the mmc controllers making them unreliable
  56. */
  57. grf = syscon_regmap_lookup_by_compatible("rockchip,rk3288-grf");
  58. if (!IS_ERR(grf))
  59. regmap_write(grf, RK3288_GRF_SOC_CON0, 0x10000000);
  60. else
  61. pr_err("rockchip: could not get grf syscon\n");
  62. }
  63. of_clk_init(NULL);
  64. clocksource_probe();
  65. }
  66. static void __init rockchip_dt_init(void)
  67. {
  68. rockchip_suspend_init();
  69. }
  70. static const char * const rockchip_board_dt_compat[] = {
  71. "rockchip,rk2928",
  72. "rockchip,rk3066a",
  73. "rockchip,rk3066b",
  74. "rockchip,rk3188",
  75. "rockchip,rk3228",
  76. "rockchip,rk3288",
  77. NULL,
  78. };
  79. DT_MACHINE_START(ROCKCHIP_DT, "Rockchip (Device Tree)")
  80. .l2c_aux_val = 0,
  81. .l2c_aux_mask = ~0,
  82. .init_time = rockchip_timer_init,
  83. .dt_compat = rockchip_board_dt_compat,
  84. .init_machine = rockchip_dt_init,
  85. MACHINE_END