plat_sip_calls.c 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. * Copyright (c) 2016, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #include <common/debug.h>
  7. #include <common/runtime_svc.h>
  8. #include <lib/mmio.h>
  9. #include <cdn_dp.h>
  10. #include <dfs.h>
  11. #include <plat_sip_calls.h>
  12. #include <rockchip_sip_svc.h>
  13. #define RK_SIP_DDR_CFG 0x82000008
  14. #define DRAM_INIT 0x00
  15. #define DRAM_SET_RATE 0x01
  16. #define DRAM_ROUND_RATE 0x02
  17. #define DRAM_SET_AT_SR 0x03
  18. #define DRAM_GET_BW 0x04
  19. #define DRAM_GET_RATE 0x05
  20. #define DRAM_CLR_IRQ 0x06
  21. #define DRAM_SET_PARAM 0x07
  22. #define DRAM_SET_ODT_PD 0x08
  23. #define RK_SIP_HDCP_CONTROL 0x82000009
  24. #define RK_SIP_HDCP_KEY_DATA64 0xC200000A
  25. uint32_t ddr_smc_handler(uint64_t arg0, uint64_t arg1,
  26. uint64_t id, uint64_t arg2)
  27. {
  28. switch (id) {
  29. case DRAM_SET_RATE:
  30. return ddr_set_rate((uint32_t)arg0);
  31. case DRAM_ROUND_RATE:
  32. return ddr_round_rate((uint32_t)arg0);
  33. case DRAM_GET_RATE:
  34. return ddr_get_rate();
  35. case DRAM_SET_ODT_PD:
  36. dram_set_odt_pd(arg0, arg1, arg2);
  37. break;
  38. default:
  39. break;
  40. }
  41. return 0;
  42. }
  43. uintptr_t rockchip_plat_sip_handler(uint32_t smc_fid,
  44. u_register_t x1,
  45. u_register_t x2,
  46. u_register_t x3,
  47. u_register_t x4,
  48. void *cookie,
  49. void *handle,
  50. u_register_t flags)
  51. {
  52. #ifdef PLAT_RK_DP_HDCP
  53. uint64_t x5, x6;
  54. #endif
  55. switch (smc_fid) {
  56. case RK_SIP_DDR_CFG:
  57. SMC_RET1(handle, ddr_smc_handler(x1, x2, x3, x4));
  58. #ifdef PLAT_RK_DP_HDCP
  59. case RK_SIP_HDCP_CONTROL:
  60. SMC_RET1(handle, dp_hdcp_ctrl(x1));
  61. case RK_SIP_HDCP_KEY_DATA64:
  62. x5 = read_ctx_reg(get_gpregs_ctx(handle), CTX_GPREG_X5);
  63. x6 = read_ctx_reg(get_gpregs_ctx(handle), CTX_GPREG_X6);
  64. SMC_RET1(handle, dp_hdcp_store_key(x1, x2, x3, x4, x5, x6));
  65. #endif
  66. default:
  67. ERROR("%s: unhandled SMC (0x%x)\n", __func__, smc_fid);
  68. SMC_RET1(handle, SMC_UNK);
  69. }
  70. }