sram-exec.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*
  2. * SRAM protect-exec region helper functions
  3. *
  4. * Copyright (C) 2017 Texas Instruments Incorporated - http://www.ti.com/
  5. * Dave Gerlach
  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 version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * This program is distributed "as is" WITHOUT ANY WARRANTY of any
  12. * kind, whether express or implied; without even the implied warranty
  13. * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. */
  16. #include <linux/device.h>
  17. #include <linux/genalloc.h>
  18. #include <linux/mm.h>
  19. #include <linux/sram.h>
  20. #include <asm/set_memory.h>
  21. #include "sram.h"
  22. static DEFINE_MUTEX(exec_pool_list_mutex);
  23. static LIST_HEAD(exec_pool_list);
  24. int sram_check_protect_exec(struct sram_dev *sram, struct sram_reserve *block,
  25. struct sram_partition *part)
  26. {
  27. unsigned long base = (unsigned long)part->base;
  28. unsigned long end = base + block->size;
  29. if (!PAGE_ALIGNED(base) || !PAGE_ALIGNED(end)) {
  30. dev_err(sram->dev,
  31. "SRAM pool marked with 'protect-exec' is not page aligned and will not be created.\n");
  32. return -ENOMEM;
  33. }
  34. return 0;
  35. }
  36. int sram_add_protect_exec(struct sram_partition *part)
  37. {
  38. mutex_lock(&exec_pool_list_mutex);
  39. list_add_tail(&part->list, &exec_pool_list);
  40. mutex_unlock(&exec_pool_list_mutex);
  41. return 0;
  42. }
  43. /**
  44. * sram_exec_copy - copy data to a protected executable region of sram
  45. *
  46. * @pool: struct gen_pool retrieved that is part of this sram
  47. * @dst: Destination address for the copy, that must be inside pool
  48. * @src: Source address for the data to copy
  49. * @size: Size of copy to perform, which starting from dst, must reside in pool
  50. *
  51. * This helper function allows sram driver to act as central control location
  52. * of 'protect-exec' pools which are normal sram pools but are always set
  53. * read-only and executable except when copying data to them, at which point
  54. * they are set to read-write non-executable, to make sure no memory is
  55. * writeable and executable at the same time. This region must be page-aligned
  56. * and is checked during probe, otherwise page attribute manipulation would
  57. * not be possible.
  58. */
  59. int sram_exec_copy(struct gen_pool *pool, void *dst, void *src,
  60. size_t size)
  61. {
  62. struct sram_partition *part = NULL, *p;
  63. unsigned long base;
  64. int pages;
  65. mutex_lock(&exec_pool_list_mutex);
  66. list_for_each_entry(p, &exec_pool_list, list) {
  67. if (p->pool == pool)
  68. part = p;
  69. }
  70. mutex_unlock(&exec_pool_list_mutex);
  71. if (!part)
  72. return -EINVAL;
  73. if (!addr_in_gen_pool(pool, (unsigned long)dst, size))
  74. return -EINVAL;
  75. base = (unsigned long)part->base;
  76. pages = PAGE_ALIGN(size) / PAGE_SIZE;
  77. mutex_lock(&part->lock);
  78. set_memory_nx((unsigned long)base, pages);
  79. set_memory_rw((unsigned long)base, pages);
  80. memcpy(dst, src, size);
  81. set_memory_ro((unsigned long)base, pages);
  82. set_memory_x((unsigned long)base, pages);
  83. mutex_unlock(&part->lock);
  84. return 0;
  85. }
  86. EXPORT_SYMBOL_GPL(sram_exec_copy);