hs_ucode.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * Copyright (c) 2017, NVIDIA CORPORATION. All rights reserved.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  17. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  19. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  20. * DEALINGS IN THE SOFTWARE.
  21. */
  22. #ifndef __NVKM_SECBOOT_HS_UCODE_H__
  23. #define __NVKM_SECBOOT_HS_UCODE_H__
  24. #include <core/os.h>
  25. #include <core/subdev.h>
  26. struct nvkm_falcon;
  27. /**
  28. * struct hsf_fw_header - HS firmware descriptor
  29. * @sig_dbg_offset: offset of the debug signature
  30. * @sig_dbg_size: size of the debug signature
  31. * @sig_prod_offset: offset of the production signature
  32. * @sig_prod_size: size of the production signature
  33. * @patch_loc: offset of the offset (sic) of where the signature is
  34. * @patch_sig: offset of the offset (sic) to add to sig_*_offset
  35. * @hdr_offset: offset of the load header (see struct hs_load_header)
  36. * @hdr_size: size of above header
  37. *
  38. * This structure is embedded in the HS firmware image at
  39. * hs_bin_hdr.header_offset.
  40. */
  41. struct hsf_fw_header {
  42. u32 sig_dbg_offset;
  43. u32 sig_dbg_size;
  44. u32 sig_prod_offset;
  45. u32 sig_prod_size;
  46. u32 patch_loc;
  47. u32 patch_sig;
  48. u32 hdr_offset;
  49. u32 hdr_size;
  50. };
  51. /**
  52. * struct hsf_load_header - HS firmware load header
  53. */
  54. struct hsf_load_header {
  55. u32 non_sec_code_off;
  56. u32 non_sec_code_size;
  57. u32 data_dma_base;
  58. u32 data_size;
  59. u32 num_apps;
  60. /*
  61. * Organized as follows:
  62. * - app0_code_off
  63. * - app1_code_off
  64. * - ...
  65. * - appn_code_off
  66. * - app0_code_size
  67. * - app1_code_size
  68. * - ...
  69. */
  70. u32 apps[0];
  71. };
  72. void *hs_ucode_load_blob(struct nvkm_subdev *, const struct nvkm_falcon *,
  73. const char *);
  74. #endif