]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
misc: sram: Integrate protect-exec reserved sram area type
authorDave Gerlach <d-gerlach@ti.com>
Thu, 12 Jan 2017 20:52:20 +0000 (14:52 -0600)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 25 Jan 2017 10:48:03 +0000 (11:48 +0100)
commit37afff0d87c9939843c664970af6c6d952f95712
tree8ea28a8a049eec9ff3b3d4eee4becfab678d9a45
parent728bbe75c82fdc6bdf157652a4351856ed08afc4
misc: sram: Integrate protect-exec reserved sram area type

Introduce a new "protect-exec" reserved sram area type which is
makes use of the the existing functionality provided for the "pool"
sram region type for use with the genalloc framework and with the
added requirement that it be maintained as read-only and executable
while allowing for an arbitrary number of drivers to share the space.

This introduces a common way to maintain a region of sram as read-only
and executable and also introduces a helper function, sram_exec_copy,
which allows for copying data to this protected region while maintaining
locking to avoid conflicts between multiple users of the same space. A
region of memory that is marked with the "protect-exec" flag in the
device tree also has the requirement of providing a page aligned block
of memory so that the page attribute manipulation does not affect
surrounding regions.

Also, selectively enable this only for builds that support set_memory_*
calls, for now just ARM, through the use of Kconfig.

Signed-off-by: Dave Gerlach <d-gerlach@ti.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Documentation/devicetree/bindings/sram/sram.txt
drivers/misc/Kconfig
drivers/misc/Makefile
drivers/misc/sram.c
drivers/misc/sram.h