trusted_foundations.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /*
  2. * Trusted Foundations support for ARM CPUs
  3. *
  4. * Copyright (c) 2013, NVIDIA Corporation.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful, but WITHOUT
  12. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  14. * more details.
  15. */
  16. #include <linux/kernel.h>
  17. #include <linux/init.h>
  18. #include <linux/of.h>
  19. #include <asm/firmware.h>
  20. #include <asm/trusted_foundations.h>
  21. #define TF_SET_CPU_BOOT_ADDR_SMC 0xfffff200
  22. #define TF_CPU_PM 0xfffffffc
  23. #define TF_CPU_PM_S3 0xffffffe3
  24. #define TF_CPU_PM_S2 0xffffffe6
  25. #define TF_CPU_PM_S2_NO_MC_CLK 0xffffffe5
  26. #define TF_CPU_PM_S1 0xffffffe4
  27. #define TF_CPU_PM_S1_NOFLUSH_L2 0xffffffe7
  28. static unsigned long cpu_boot_addr;
  29. static void tf_generic_smc(u32 type, u32 arg1, u32 arg2)
  30. {
  31. register u32 r0 asm("r0") = type;
  32. register u32 r1 asm("r1") = arg1;
  33. register u32 r2 asm("r2") = arg2;
  34. asm volatile(
  35. ".arch_extension sec\n\t"
  36. "stmfd sp!, {r4 - r11}\n\t"
  37. __asmeq("%0", "r0")
  38. __asmeq("%1", "r1")
  39. __asmeq("%2", "r2")
  40. "mov r3, #0\n\t"
  41. "mov r4, #0\n\t"
  42. "smc #0\n\t"
  43. "ldmfd sp!, {r4 - r11}\n\t"
  44. :
  45. : "r" (r0), "r" (r1), "r" (r2)
  46. : "memory", "r3", "r12", "lr");
  47. }
  48. static int tf_set_cpu_boot_addr(int cpu, unsigned long boot_addr)
  49. {
  50. cpu_boot_addr = boot_addr;
  51. tf_generic_smc(TF_SET_CPU_BOOT_ADDR_SMC, cpu_boot_addr, 0);
  52. return 0;
  53. }
  54. static int tf_prepare_idle(void)
  55. {
  56. tf_generic_smc(TF_CPU_PM, TF_CPU_PM_S1_NOFLUSH_L2, cpu_boot_addr);
  57. return 0;
  58. }
  59. static const struct firmware_ops trusted_foundations_ops = {
  60. .set_cpu_boot_addr = tf_set_cpu_boot_addr,
  61. .prepare_idle = tf_prepare_idle,
  62. };
  63. void register_trusted_foundations(struct trusted_foundations_platform_data *pd)
  64. {
  65. /*
  66. * we are not using version information for now since currently
  67. * supported SMCs are compatible with all TF releases
  68. */
  69. register_firmware_ops(&trusted_foundations_ops);
  70. }
  71. void of_register_trusted_foundations(void)
  72. {
  73. struct device_node *node;
  74. struct trusted_foundations_platform_data pdata;
  75. int err;
  76. node = of_find_compatible_node(NULL, NULL, "tlm,trusted-foundations");
  77. if (!node)
  78. return;
  79. err = of_property_read_u32(node, "tlm,version-major",
  80. &pdata.version_major);
  81. if (err != 0)
  82. panic("Trusted Foundation: missing version-major property\n");
  83. err = of_property_read_u32(node, "tlm,version-minor",
  84. &pdata.version_minor);
  85. if (err != 0)
  86. panic("Trusted Foundation: missing version-minor property\n");
  87. register_trusted_foundations(&pdata);
  88. }