sram-exec.c 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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/sram.h>
  19. #include <asm/cacheflush.h>
  20. #include "sram.h"
  21. static DEFINE_MUTEX(exec_pool_list_mutex);
  22. static LIST_HEAD(exec_pool_list);
  23. int sram_check_protect_exec(struct sram_dev *sram, struct sram_reserve *block,
  24. struct sram_partition *part)
  25. {
  26. unsigned long base = (unsigned long)part->base;
  27. unsigned long end = base + block->size;
  28. if (!PAGE_ALIGNED(base) || !PAGE_ALIGNED(end)) {
  29. dev_err(sram->dev,
  30. "SRAM pool marked with 'protect-exec' is not page aligned and will not be created.\n");
  31. return -ENOMEM;
  32. }
  33. return 0;
  34. }
  35. int sram_add_protect_exec(struct sram_partition *part)
  36. {
  37. mutex_lock(&exec_pool_list_mutex);
  38. list_add_tail(&part->list, &exec_pool_list);
  39. mutex_unlock(&exec_pool_list_mutex);
  40. return 0;
  41. }
  42. /**
  43. * sram_exec_copy - copy data to a protected executable region of sram
  44. *
  45. * @pool: struct gen_pool retrieved that is part of this sram
  46. * @dst: Destination address for the copy, that must be inside pool
  47. * @src: Source address for the data to copy
  48. * @size: Size of copy to perform, which starting from dst, must reside in pool
  49. *
  50. * This helper function allows sram driver to act as central control location
  51. * of 'protect-exec' pools which are normal sram pools but are always set
  52. * read-only and executable except when copying data to them, at which point
  53. * they are set to read-write non-executable, to make sure no memory is
  54. * writeable and executable at the same time. This region must be page-aligned
  55. * and is checked during probe, otherwise page attribute manipulation would
  56. * not be possible.
  57. */
  58. int sram_exec_copy(struct gen_pool *pool, void *dst, void *src,
  59. size_t size)
  60. {
  61. struct sram_partition *part = NULL, *p;
  62. unsigned long base;
  63. int pages;
  64. mutex_lock(&exec_pool_list_mutex);
  65. list_for_each_entry(p, &exec_pool_list, list) {
  66. if (p->pool == pool)
  67. part = p;
  68. }
  69. mutex_unlock(&exec_pool_list_mutex);
  70. if (!part)
  71. return -EINVAL;
  72. if (!addr_in_gen_pool(pool, (unsigned long)dst, size))
  73. return -EINVAL;
  74. base = (unsigned long)part->base;
  75. pages = PAGE_ALIGN(size) / PAGE_SIZE;
  76. mutex_lock(&part->lock);
  77. set_memory_nx((unsigned long)base, pages);
  78. set_memory_rw((unsigned long)base, pages);
  79. memcpy(dst, src, size);
  80. set_memory_ro((unsigned long)base, pages);
  81. set_memory_x((unsigned long)base, pages);
  82. mutex_unlock(&part->lock);
  83. return 0;
  84. }
  85. EXPORT_SYMBOL_GPL(sram_exec_copy);