Home
last modified time | relevance | path

Searched refs:root_page (Results 1 – 1 of 1) sorted by relevance

/trusted-firmware-m-latest/platform/ext/target/arm/rse/common/host_drivers/smmu_v3/
Dsmmu_v3_drv.c40 struct _smmu_root_ctrl_page_t *root_page; in smmu_cr0_setbits() local
49 root_page = (struct _smmu_root_ctrl_page_t *)(dev->smmu_base + in smmu_cr0_setbits()
52 write_val = root_page->cr0 | val; in smmu_cr0_setbits()
53 root_page->cr0 = write_val; in smmu_cr0_setbits()
57 while (root_page->cr0ack != write_val) { in smmu_cr0_setbits()
70 struct _smmu_root_ctrl_page_t *root_page; in smmu_cr0_clearbits() local
79 root_page = (struct _smmu_root_ctrl_page_t *)(dev->smmu_base + in smmu_cr0_clearbits()
82 write_val = root_page->cr0 & ~val; in smmu_cr0_clearbits()
83 root_page->cr0 = write_val; in smmu_cr0_clearbits()
87 while (root_page->cr0ack != write_val) { in smmu_cr0_clearbits()