| 7fd2e0b5 | 12-Apr-2016 |
Peng Fan <van.freenix@gmail.com> |
core: arm: imx: fix console address usage
The phyiscal base address of uart console is 0x2020000. This address conflicts with KMAP address space, so remap it to 0x4020000.
Signed-off-by: Peng Fan <
core: arm: imx: fix console address usage
The phyiscal base address of uart console is 0x2020000. This address conflicts with KMAP address space, so remap it to 0x4020000.
Signed-off-by: Peng Fan <van.freenix@gmail.com> Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org>
show more ...
|
| d227979f | 13-Apr-2016 |
Peng Fan <van.freenix@gmail.com> |
core: arm: add cpu_mmu_enabled
Add cpu_mmu_enabled to check mmu enabled or not. Before mmu, we may use physical address. And after mmu enabled, we need to use virtual address.
Signed-off-by: Peng F
core: arm: add cpu_mmu_enabled
Add cpu_mmu_enabled to check mmu enabled or not. Before mmu, we may use physical address. And after mmu enabled, we need to use virtual address.
Signed-off-by: Peng Fan <van.freenix@gmail.com> Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org>
show more ...
|
| 46abcd34 | 11-Apr-2016 |
Peng Fan <van.freenix@gmail.com> |
core: arm: set region_size of map_area dynamically
This patch is to set value to region_size of map_area.
In generic_core_bootcfg.c, there is one place that setting region_size with CFG_WITH_PAGER
core: arm: set region_size of map_area dynamically
This patch is to set value to region_size of map_area.
In generic_core_bootcfg.c, there is one place that setting region_size with CFG_WITH_PAGER defined. This means the region_size entry will be initialized to 0 or 4K with CFG_WITH_PAGER. Also there is no other places that will write the region_size entry. However map_pa2va will use map_area->region_size to calculate the virtual/physical address. So we need to set region_size of map_area.
Signed-off-by: Peng Fan <van.freenix@gmail.com> Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org>
show more ...
|
| f5390201 | 11-Apr-2016 |
Peng Fan <van.freenix@gmail.com> |
core: arm: mm: introduce initial value for va
To some SoCs, we can not directly assign physical address to virtual address. If use LPAE, it is ok to use "va = pa", but to V7 mmu with LPAE disabled,
core: arm: mm: introduce initial value for va
To some SoCs, we can not directly assign physical address to virtual address. If use LPAE, it is ok to use "va = pa", but to V7 mmu with LPAE disabled, va may conflict with user ta and optee os kernel space address(<= 64M).
1. Introuce a few macros DEVICEx_VA_ADDRESS. 2. Since we have used defined va, we can not directly panic() with mm->va initialized. If va is not page or section aligned, then panic, otherwise, all is ok.
Signed-off-by: Peng Fan <van.freenix@gmail.com> Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org>
show more ...
|
| 6199fe88 | 11-Apr-2016 |
Peng Fan <van.freenix@gmail.com> |
core: arm: mm: v7: use mm->va to locate the entry of ttb
Use mm->va to locate the entry of ttb, we should not use mm->pa, because va may be not the same with pa.
Signed-off-by: Peng Fan <van.freeni
core: arm: mm: v7: use mm->va to locate the entry of ttb
Use mm->va to locate the entry of ttb, we should not use mm->pa, because va may be not the same with pa.
Signed-off-by: Peng Fan <van.freenix@gmail.com> Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org>
show more ...
|
| 9ccc7690 | 01-Aug-2015 |
Peng Fan <van.freenix@gmail.com> |
core: arch: arm correct mme.va initialization
mme.va should be initialized using map[n].va, but not map[n].pa.
Now map[n].pa can make all work, because we use 1 to 1 mapping with virtual address sa
core: arch: arm correct mme.va initialization
mme.va should be initialized using map[n].va, but not map[n].pa.
Now map[n].pa can make all work, because we use 1 to 1 mapping with virtual address same to physical address.
Later, we need to implement that virtual address not equal to physical address to avoid address conflicting with user ta address and optee os kernel address(<= 64M).
Signed-off-by: Peng Fan <van.freenix@gmail.com> Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org>
show more ...
|
| c1ae097a | 11-Apr-2016 |
Peng Fan <van.freenix@gmail.com> |
arm: mm: v7: panic when va conficts with KMAP address space
If mm->va is smaller that 64M and bigger that 32M, mm->va conflicts with KMAP address space
Some SoCs have devices at low addresses, so w
arm: mm: v7: panic when va conficts with KMAP address space
If mm->va is smaller that 64M and bigger that 32M, mm->va conflicts with KMAP address space
Some SoCs have devices at low addresses, so we need to map at least those devices at a virtual address which isn't the same as the physical.
Signed-off-by: Peng Fan <van.freenix@gmail.com> Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org>
show more ...
|
| d1a3c3c5 | 11-Apr-2016 |
Jerome Forissier <jerome.forissier@linaro.org> |
RPMB: tee_rpmb_write_blk(): allocate buffers once
Allocate shared memory buffers once for the write loop instead of repeatedly allocating and freeing them. The previous code was needed due to a bug/
RPMB: tee_rpmb_write_blk(): allocate buffers once
Allocate shared memory buffers once for the write loop instead of repeatedly allocating and freeing them. The previous code was needed due to a bug/limitation in optee_linudriver [1]. Now that we are using the "generic driver", the code can be optimized.
[1] https://github.com/OP-TEE/optee_linuxdriver/issues/40
Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org> Tested-by: Jerome Forissier <jerome.forissier@linaro.org> (HiKey) Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org> Reviewed-by: Pascal Brand <pascal.brand@linaro.org>
show more ...
|
| e30f991f | 24-Jan-2016 |
Jens Wiklander <jens.wiklander@linaro.org> |
pager: replace mm element of struct tee_pager_area
Replaces the mm element of struct tee_pager_area with base and size instead to avoid needing a matching mm for every area.
Reviewed-by: Pascal Bra
pager: replace mm element of struct tee_pager_area
Replaces the mm element of struct tee_pager_area with base and size instead to avoid needing a matching mm for every area.
Reviewed-by: Pascal Brand <pascal.brand@linaro.org> Tested-by: Pascal Brand <pascal.brand@linaro.org> (STM) Tested-by: Jens Wiklander <jens.wiklander@linaro.org> (QEMU, Juno) Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
show more ...
|
| d5fdcda5 | 23-Jan-2016 |
Jens Wiklander <jens.wiklander@linaro.org> |
core: rename TEE_MATTR_PHYS_BLOCK
Renames TEE_MATTR_PHYS_BLOCK to TEE_MATTR_HIDDEN_DIRTY_BLOCK.
Reviewed-by: Pascal Brand <pascal.brand@linaro.org> Signed-off-by: Jens Wiklander <jens.wiklander@lin
core: rename TEE_MATTR_PHYS_BLOCK
Renames TEE_MATTR_PHYS_BLOCK to TEE_MATTR_HIDDEN_DIRTY_BLOCK.
Reviewed-by: Pascal Brand <pascal.brand@linaro.org> Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
show more ...
|
| f7f7b639 | 23-Jan-2016 |
Jens Wiklander <jens.wiklander@linaro.org> |
pager: don't use TEE_MATTR_PHYS_BLOCK
Don't use TEE_MATTR_PHYS_BLOCK to keep track of physical address of a struct tee_pager_pmem page, read it from the aliased mapping which always is available and
pager: don't use TEE_MATTR_PHYS_BLOCK
Don't use TEE_MATTR_PHYS_BLOCK to keep track of physical address of a struct tee_pager_pmem page, read it from the aliased mapping which always is available and doesn't change.
Reviewed-by: Pascal Brand <pascal.brand@linaro.org> Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
show more ...
|
| d5d0e72a | 23-Jan-2016 |
Jens Wiklander <jens.wiklander@linaro.org> |
pager: optimize alias table lookup
Reviewed-by: Pascal Brand <pascal.brand@linaro.org> Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org> |
| 2a142248 | 05-Jan-2016 |
Jens Wiklander <jens.wiklander@linaro.org> |
core: support mapping user TAs with 4k pages
Maps user TAs with small pages (aka 4k pages) if CFG_SMALL_PAGE_USER_TA = y If pager is active the translation tables are allocated using tee_pager_reque
core: support mapping user TAs with 4k pages
Maps user TAs with small pages (aka 4k pages) if CFG_SMALL_PAGE_USER_TA = y If pager is active the translation tables are allocated using tee_pager_request_zi() to only use the physical page when needed.
Reviewed-by: Pascal Brand <pascal.brand@linaro.org> Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
show more ...
|
| bed169ba | 04-Mar-2016 |
Jens Wiklander <jens.wiklander@linaro.org> |
arm: refactor core_mmu*
Refactors core_mmu* to let LPAE and V7 compat table code share some code for mapping a TA.
Reviewed-by: Pascal Brand <pascal.brand@linaro.org> Signed-off-by: Jens Wiklander
arm: refactor core_mmu*
Refactors core_mmu* to let LPAE and V7 compat table code share some code for mapping a TA.
Reviewed-by: Pascal Brand <pascal.brand@linaro.org> Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
show more ...
|
| 59f4a6fb | 08-Apr-2016 |
Pascal Brand <pascal.brand@st.com> |
plat-stm: fix traces when booting
On plat-stm, traces IP is initialized by Non Secure world. Hence no traces can be output while in the booting process.
Reviewed-by: Jens Wiklander <jens.wiklander@
plat-stm: fix traces when booting
On plat-stm, traces IP is initialized by Non Secure world. Hence no traces can be output while in the booting process.
Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org> Signed-off-by: Pascal Brand <pascal.brand@st.com>
show more ...
|
| fe25d008 | 08-Apr-2016 |
Pascal Brand <pascal.brand@st.com> |
plat-stm: remove unused code
Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org> Signed-off-by: Pascal Brand <pascal.brand@st.com> |
| 03c4cfce | 07-Apr-2016 |
Jens Wiklander <jens.wiklander@linaro.org> |
core: fix build error with CFG_TEE_CORE_DEBUG=y
Fixes build error when CFG_TEE_CORE_DEBUG=y and CFG_WITH_PAGER=y are set by adding ing CORE_MMU_PGDIR_SIZE and CORE_MMU_PGDIR_MASK.
Reviewed-by: Pasc
core: fix build error with CFG_TEE_CORE_DEBUG=y
Fixes build error when CFG_TEE_CORE_DEBUG=y and CFG_WITH_PAGER=y are set by adding ing CORE_MMU_PGDIR_SIZE and CORE_MMU_PGDIR_MASK.
Reviewed-by: Pascal Brand <pascal.brand@linaro.org> Tested-by: Jens Wiklander <jens.wiklander@linaro.org> (QEMU) Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
show more ...
|
| 39a6336d | 17-Mar-2016 |
Jason Lin <Jason.Lin@microsoft.com> |
Fix potential memory corruptions in elf_load.c when loading TAs
Reviewed-by: Jerome Forissier <jerome.forissier@linaro.org> Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org> Suggested-by: Jaso
Fix potential memory corruptions in elf_load.c when loading TAs
Reviewed-by: Jerome Forissier <jerome.forissier@linaro.org> Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org> Suggested-by: Jason Lin <Jason.Lin@microsoft.com> Suggested-by: Paul Swan <Paul.Swan@microsoft.com> Signed-off-by: Pascal Brand <pascal.brand@st.com>
show more ...
|
| a9e88a48 | 01-Apr-2016 |
Pascal Brand <pascal.brand@st.com> |
Fix wrong comment syntax
Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org> Reviewed-by: Joakim Bech <joakim.bech@linaro.org> Signed-off-by: Pascal Brand <pascal.brand@st.com> |
| b7c773e3 | 29-Mar-2016 |
Jens Wiklander <jens.wiklander@linaro.org> |
juno: bug fix initialize TCR_EL1
Prior to this patch TCR_EL1 was incorrectly initialized with bit 32 set to 0. On Cortex-A57 this bit is RES1 so this bit should always be set to 1, this patch fixes
juno: bug fix initialize TCR_EL1
Prior to this patch TCR_EL1 was incorrectly initialized with bit 32 set to 0. On Cortex-A57 this bit is RES1 so this bit should always be set to 1, this patch fixes that.
This is related to errata 822227 "Using unsupported 16K translation granules might cause Cortex-A57 to incorrectly trigger a domain fault"
Reviewed-by: Pascal Brand <pascal.brand@linaro.org> Tested-by: Jens Wiklander <jens.wiklander@linaro.org> (Juno) Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
show more ...
|
| ff0d4949 | 21-Mar-2016 |
Pascal Brand <pascal.brand@st.com> |
Validate the TA signed header's img_size
Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org> Suggested-by: Jason Lin <Jason.Lin@microsoft.com> Suggested-by: Paul Swan <Paul.Swan@microsoft.com> S
Validate the TA signed header's img_size
Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org> Suggested-by: Jason Lin <Jason.Lin@microsoft.com> Suggested-by: Paul Swan <Paul.Swan@microsoft.com> Signed-off-by: Pascal Brand <pascal.brand@st.com>
show more ...
|
| 6da451b2 | 22-Mar-2016 |
Pascal Brand <pascal.brand@st.com> |
stm,vexpress: increase shared memory size from 1 to 2 MiB
This is needed to run the latest "generic driver" configuration. When the shared memory pool is 1 MiB, xtest 7633 fails with a TA panic due
stm,vexpress: increase shared memory size from 1 to 2 MiB
This is needed to run the latest "generic driver" configuration. When the shared memory pool is 1 MiB, xtest 7633 fails with a TA panic due to memory allocation error. This commit increases the size of the shared memory pool so that the test will pass.
Reviewed-by: Jerome Forissier <jerome.forissier@linaro.org> Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org> Signed-off-by: Pascal Brand <pascal.brand@st.com>
show more ...
|
| ff3dc840 | 24-Jan-2016 |
Jens Wiklander <jens.wiklander@linaro.org> |
core: arm: pager: lock shared accesses
Uses the pager spin-lock for all shared accesses to pager resources.
Reviewed-by: Pascal Brand <pascal.brand@linaro.org> Tested-by: Jerome Forissier <jerome.f
core: arm: pager: lock shared accesses
Uses the pager spin-lock for all shared accesses to pager resources.
Reviewed-by: Pascal Brand <pascal.brand@linaro.org> Tested-by: Jerome Forissier <jerome.forissier@linaro.org> (HiKey) Tested-by: Jens Wiklander <jens.wiklander@linaro.org> (QEMU FVP) Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
show more ...
|
| 8a86d345 | 15-Feb-2016 |
Jens Wiklander <jens.wiklander@linaro.org> |
optee_msg: add OPTEE_MSG_RPC_CMD_SHM_FREE
Buffers allocated with OPTEE_MSG_RPC_CMD_SHM_ALLOC must be freed with OPTEE_MSG_RPC_CMD_SHM_FREE to help normal world driver to route the message correctly.
optee_msg: add OPTEE_MSG_RPC_CMD_SHM_FREE
Buffers allocated with OPTEE_MSG_RPC_CMD_SHM_ALLOC must be freed with OPTEE_MSG_RPC_CMD_SHM_FREE to help normal world driver to route the message correctly.
Reviewed-by: Joakim Bech <joakim.bech@linaro.org> Reviewed-by: Pascal Brand <pascal.brand@linaro.org> Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
show more ...
|
| 41b742fb | 21-Mar-2016 |
Jerome Forissier <jerome.forissier@linaro.org> |
fs: do not call thread_rpc_free() when allocation fails
When thread_rpc_alloc_payload() fails, the cookie is not valid, so thread_rpc_free() must not be called. This fixes a crash in xtest 7633 when
fs: do not call thread_rpc_free() when allocation fails
When thread_rpc_alloc_payload() fails, the cookie is not valid, so thread_rpc_free() must not be called. This fixes a crash in xtest 7633 when shared memory is not large enough.
Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org> Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org> Reviewed-by: Pascal Brand <pascal.brand@linaro.org>
show more ...
|