/** * pvr_mmu_set_flush_flags() - Set MMU cache flush flags for next call to * pvr_mmu_flush_exec(). * @pvr_dev: Target PowerVR device. * @flags: MMU flush flags. Must be one of %PVR_MMU_SYNC_LEVEL_*_FLAGS. * * This function must be called following any possible change to the MMU page * tables.
*/ staticvoid pvr_mmu_set_flush_flags(struct pvr_device *pvr_dev, u32 flags)
{
atomic_fetch_or(flags, &pvr_dev->mmu_flush_cache_flags);
}
/** * pvr_mmu_flush_request_all() - Request flush of all MMU caches when * subsequently calling pvr_mmu_flush_exec(). * @pvr_dev: Target PowerVR device. * * This function must be called following any possible change to the MMU page * tables.
*/ void pvr_mmu_flush_request_all(struct pvr_device *pvr_dev)
{
pvr_mmu_set_flush_flags(pvr_dev, PVR_MMU_SYNC_LEVEL_2_FLAGS);
}
/** * pvr_mmu_flush_exec() - Execute a flush of all MMU caches previously * requested. * @pvr_dev: Target PowerVR device. * @wait: Do not return until the flush is completed. * * This function must be called prior to submitting any new GPU job. The flush * will complete before the jobs are scheduled, so this can be called once after * a series of maps. However, a single unmap should always be immediately * followed by a flush and it should be explicitly waited by setting @wait. * * As a failure to flush the MMU caches could risk memory corruption, if the * flush fails (implying the firmware is not responding) then the GPU device is * marked as lost. * * Returns: * * 0 on success when @wait is true, or * * -%EIO if the device is unavailable, or * * Any error encountered while submitting the flush command via the KCCB.
*/ int pvr_mmu_flush_exec(struct pvr_device *pvr_dev, bool wait)
{ struct rogue_fwif_kccb_cmd cmd_mmu_cache = {}; struct rogue_fwif_mmucachedata *cmd_mmu_cache_data =
&cmd_mmu_cache.cmd_data.mmu_cache_data; int err = 0;
u32 slot; int idx;
if (!drm_dev_enter(from_pvr_device(pvr_dev), &idx)) return -EIO;
/* Can't flush MMU if the firmware hasn't booted yet. */ if (!pvr_dev->fw_dev.booted) goto err_drm_dev_exit;
err = pvr_kccb_send_cmd(pvr_dev, &cmd_mmu_cache, &slot); if (err) goto err_reset_and_retry;
err = pvr_kccb_wait_for_completion(pvr_dev, slot, HZ, NULL); if (err) goto err_reset_and_retry;
drm_dev_exit(idx);
return 0;
err_reset_and_retry: /* * Flush command failure is most likely the result of a firmware lockup. Hard * reset the GPU and retry.
*/
err = pvr_power_reset(pvr_dev, true); if (err) goto err_drm_dev_exit; /* Device is lost. */
if (wait) {
err = pvr_kccb_wait_for_completion(pvr_dev, slot, HZ, NULL); if (err)
pvr_device_lost(pvr_dev);
}
err_drm_dev_exit:
drm_dev_exit(idx);
return err;
}
/** * DOC: PowerVR Virtual Memory Handling
*/ /** * DOC: PowerVR Virtual Memory Handling (constants) * * .. c:macro:: PVR_IDX_INVALID * * Default value for a u16-based index. * * This value cannot be zero, since zero is a valid index value.
*/ #define PVR_IDX_INVALID ((u16)(-1))
/** * DOC: MMU backing pages
*/ /** * DOC: MMU backing pages (constants) * * .. c:macro:: PVR_MMU_BACKING_PAGE_SIZE * * Page size of a PowerVR device's integrated MMU. The CPU page size must be * at least as large as this value for the current implementation; this is * checked at compile-time.
*/ #define PVR_MMU_BACKING_PAGE_SIZE SZ_4K
static_assert(PAGE_SIZE >= PVR_MMU_BACKING_PAGE_SIZE);
/** * struct pvr_mmu_backing_page - Represents a single page used to back a page * table of any level. * @dma_addr: DMA address of this page. * @host_ptr: CPU address of this page. * @pvr_dev: The PowerVR device to which this page is associated. **For * internal use only.**
*/ struct pvr_mmu_backing_page {
dma_addr_t dma_addr; void *host_ptr; /* private: internal use only */ struct page *raw_page; struct pvr_device *pvr_dev;
};
/** * pvr_mmu_backing_page_init() - Initialize a MMU backing page. * @page: Target backing page. * @pvr_dev: Target PowerVR device. * * This function performs three distinct operations: * * 1. Allocate a single page, * 2. Map the page to the CPU, and * 3. Map the page to DMA-space. * * It is expected that @page be zeroed (e.g. from kzalloc()) before calling * this function. * * Return: * * 0 on success, or * * -%ENOMEM if allocation of the backing page or mapping of the backing * page to DMA fails.
*/ staticint
pvr_mmu_backing_page_init(struct pvr_mmu_backing_page *page, struct pvr_device *pvr_dev)
{ struct device *dev = from_pvr_device(pvr_dev)->dev;
struct page *raw_page;
pgprot_t prot; int err;
dma_addr_t dma_addr; void *host_ptr;
raw_page = alloc_page(__GFP_ZERO | GFP_KERNEL); if (!raw_page) return -ENOMEM;
prot = PAGE_KERNEL; if (device_get_dma_attr(dev) != DEV_DMA_COHERENT)
prot = pgprot_writecombine(prot);
/** * pvr_mmu_backing_page_fini() - Teardown a MMU backing page. * @page: Target backing page. * * This function performs the mirror operations to pvr_mmu_backing_page_init(), * in reverse order: * * 1. Unmap the page from DMA-space, * 2. Unmap the page from the CPU, and * 3. Free the page. * * It also zeros @page. * * It is a no-op to call this function a second (or further) time on any @page.
*/ staticvoid
pvr_mmu_backing_page_fini(struct pvr_mmu_backing_page *page)
{ struct device *dev;
/* Do nothing if no allocation is present. */ if (!page->pvr_dev) return;
/** * pvr_mmu_backing_page_sync() - Flush a MMU backing page from the CPU to the * device. * @page: Target backing page. * @flags: MMU flush flags. Must be one of %PVR_MMU_SYNC_LEVEL_*_FLAGS. * * .. caution:: * * **This is potentially an expensive function call.** Only call * pvr_mmu_backing_page_sync() once you're sure you have no more changes to * make to the backing page in the immediate future.
*/ staticvoid
pvr_mmu_backing_page_sync(struct pvr_mmu_backing_page *page, u32 flags)
{ struct pvr_device *pvr_dev = page->pvr_dev; struct device *dev;
/* * Do nothing if no allocation is present. This may be the case if * we are unmapping pages.
*/ if (!pvr_dev) return;
/** * struct pvr_page_table_l2_entry_raw - A single entry in a level 2 page table. * @val: The raw value of this entry. * * This type is a structure for type-checking purposes. At compile-time, its * size is checked against %ROGUE_MMUCTRL_ENTRY_SIZE_PC_VALUE. * * The value stored in this structure can be decoded using the following bitmap: * * .. flat-table:: * :widths: 1 5 * :stub-columns: 1 * * * - 31..4 * - **Level 1 Page Table Base Address:** Bits 39..12 of the L1 * page table base address, which is 4KiB aligned. * * * - 3..2 * - *(reserved)* * * * - 1 * - **Pending:** When valid bit is not set, indicates that a valid * entry is pending and the MMU should wait for the driver to map * the entry. This is used to support page demand mapping of * memory. * * * - 0 * - **Valid:** Indicates that the entry contains a valid L1 page * table. If the valid bit is not set, then an attempted use of * the page would result in a page fault.
*/ struct pvr_page_table_l2_entry_raw {
u32 val;
} __packed;
static_assert(sizeof(struct pvr_page_table_l2_entry_raw) * 8 ==
ROGUE_MMUCTRL_ENTRY_SIZE_PC_VALUE);
/** * pvr_page_table_l2_entry_raw_set() - Write a valid entry into a raw level 2 * page table. * @entry: Target raw level 2 page table entry. * @child_table_dma_addr: DMA address of the level 1 page table to be * associated with @entry. * * When calling this function, @child_table_dma_addr must be a valid DMA * address and a multiple of %ROGUE_MMUCTRL_PC_DATA_PD_BASE_ALIGNSIZE.
*/ staticvoid
pvr_page_table_l2_entry_raw_set(struct pvr_page_table_l2_entry_raw *entry,
dma_addr_t child_table_dma_addr)
{
child_table_dma_addr >>= ROGUE_MMUCTRL_PC_DATA_PD_BASE_ALIGNSHIFT;
/** * struct pvr_page_table_l1_entry_raw - A single entry in a level 1 page table. * @val: The raw value of this entry. * * This type is a structure for type-checking purposes. At compile-time, its * size is checked against %ROGUE_MMUCTRL_ENTRY_SIZE_PD_VALUE. * * The value stored in this structure can be decoded using the following bitmap: * * .. flat-table:: * :widths: 1 5 * :stub-columns: 1 * * * - 63..41 * - *(reserved)* * * * - 40 * - **Pending:** When valid bit is not set, indicates that a valid entry * is pending and the MMU should wait for the driver to map the entry. * This is used to support page demand mapping of memory. * * * - 39..5 * - **Level 0 Page Table Base Address:** The way this value is * interpreted depends on the page size. Bits not specified in the * table below (e.g. bits 11..5 for page size 4KiB) should be * considered reserved. * * This table shows the bits used in an L1 page table entry to * represent the Physical Table Base Address for a given Page Size. * Since each L1 page table entry covers 2MiB of address space, the * maximum page size is 2MiB. * * .. flat-table:: * :widths: 1 1 1 1 * :header-rows: 1 * :stub-columns: 1 * * * - Page size * - L0 page table base address bits * - Number of L0 page table entries * - Size of L0 page table * * * - 4KiB * - 39..12 * - 512 * - 4KiB * * * - 16KiB * - 39..10 * - 128 * - 1KiB * * * - 64KiB * - 39..8 * - 32 * - 256B * * * - 256KiB * - 39..6 * - 8 * - 64B * * * - 1MiB * - 39..5 (4 = '0') * - 2 * - 16B * * * - 2MiB * - 39..5 (4..3 = '00') * - 1 * - 8B * * * - 4 * - *(reserved)* * * * - 3..1 * - **Page Size:** Sets the page size, from 4KiB to 2MiB. * * * - 0 * - **Valid:** Indicates that the entry contains a valid L0 page table. * If the valid bit is not set, then an attempted use of the page would * result in a page fault.
*/ struct pvr_page_table_l1_entry_raw {
u64 val;
} __packed;
static_assert(sizeof(struct pvr_page_table_l1_entry_raw) * 8 ==
ROGUE_MMUCTRL_ENTRY_SIZE_PD_VALUE);
/** * pvr_page_table_l1_entry_raw_set() - Write a valid entry into a raw level 1 * page table. * @entry: Target raw level 1 page table entry. * @child_table_dma_addr: DMA address of the level 0 page table to be * associated with @entry. * * When calling this function, @child_table_dma_addr must be a valid DMA * address and a multiple of 4 KiB.
*/ staticvoid
pvr_page_table_l1_entry_raw_set(struct pvr_page_table_l1_entry_raw *entry,
dma_addr_t child_table_dma_addr)
{
WRITE_ONCE(entry->val,
PVR_PAGE_TABLE_FIELD_PREP(1, PD, VALID, true) |
PVR_PAGE_TABLE_FIELD_PREP(1, PD, ENTRY_PENDING, false) |
PVR_PAGE_TABLE_FIELD_PREP(1, PD, PAGE_SIZE, ROGUE_MMUCTRL_PAGE_SIZE_X) | /* * The use of a 4K-specific macro here is correct. It is * a future optimization to allocate sub-host-page-sized * blocks for individual tables, so the condition that any * page table address is aligned to the size of the * largest (a 4KB) table currently holds.
*/
(child_table_dma_addr & ~ROGUE_MMUCTRL_PT_BASE_4KB_RANGE_CLRMSK));
}
/** * struct pvr_page_table_l0_entry_raw - A single entry in a level 0 page table. * @val: The raw value of this entry. * * This type is a structure for type-checking purposes. At compile-time, its * size is checked against %ROGUE_MMUCTRL_ENTRY_SIZE_PT_VALUE. * * The value stored in this structure can be decoded using the following bitmap: * * .. flat-table:: * :widths: 1 5 * :stub-columns: 1 * * * - 63 * - *(reserved)* * * * - 62 * - **PM/FW Protect:** Indicates a protected region which only the * Parameter Manager (PM) or firmware processor can write to. * * * - 61..40 * - **VP Page (High):** Virtual-physical page used for Parameter Manager * (PM) memory. This field is only used if the additional level of PB * virtualization is enabled. The VP Page field is needed by the PM in * order to correctly reconstitute the free lists after render * completion. This (High) field holds bits 39..18 of the value; the * Low field holds bits 17..12. Bits 11..0 are always zero because the * value is always aligned to the 4KiB page size. * * * - 39..12 * - **Physical Page Address:** The way this value is interpreted depends * on the page size. Bits not specified in the table below (e.g. bits * 20..12 for page size 2MiB) should be considered reserved. * * This table shows the bits used in an L0 page table entry to represent * the Physical Page Address for a given page size (as defined in the * associated L1 page table entry). * * .. flat-table:: * :widths: 1 1 * :header-rows: 1 * :stub-columns: 1 * * * - Page size * - Physical address bits * * * - 4KiB * - 39..12 * * * - 16KiB * - 39..14 * * * - 64KiB * - 39..16 * * * - 256KiB * - 39..18 * * * - 1MiB * - 39..20 * * * - 2MiB * - 39..21 * * * - 11..6 * - **VP Page (Low):** Continuation of VP Page (High). * * * - 5 * - **Pending:** When valid bit is not set, indicates that a valid entry * is pending and the MMU should wait for the driver to map the entry. * This is used to support page demand mapping of memory. * * * - 4 * - **PM Src:** Set on Parameter Manager (PM) allocated page table * entries when indicated by the PM. Note that this bit will only be set * by the PM, not by the device driver. * * * - 3 * - **SLC Bypass Control:** Specifies requests to this page should bypass * the System Level Cache (SLC), if enabled in SLC configuration. * * * - 2 * - **Cache Coherency:** Indicates that the page is coherent (i.e. it * does not require a cache flush between operations on the CPU and the * device). * * * - 1 * - **Read Only:** If set, this bit indicates that the page is read only. * An attempted write to this page would result in a write-protection * fault. * * * - 0 * - **Valid:** Indicates that the entry contains a valid page. If the * valid bit is not set, then an attempted use of the page would result * in a page fault.
*/ struct pvr_page_table_l0_entry_raw {
u64 val;
} __packed;
static_assert(sizeof(struct pvr_page_table_l0_entry_raw) * 8 ==
ROGUE_MMUCTRL_ENTRY_SIZE_PT_VALUE);
/** * struct pvr_page_flags_raw - The configurable flags from a single entry in a * level 0 page table. * @val: The raw value of these flags. Since these are a strict subset of * &struct pvr_page_table_l0_entry_raw; use that type for our member here. * * The flags stored in this type are: PM/FW Protect; SLC Bypass Control; Cache * Coherency, and Read Only (bits 62, 3, 2 and 1 respectively). * * This type should never be instantiated directly; instead use * pvr_page_flags_raw_create() to ensure only valid bits of @val are set.
*/ struct pvr_page_flags_raw { struct pvr_page_table_l0_entry_raw val;
} __packed;
static_assert(sizeof(struct pvr_page_flags_raw) == sizeof(struct pvr_page_table_l0_entry_raw));
/** * pvr_page_table_l0_entry_raw_set() - Write a valid entry into a raw level 0 * page table. * @entry: Target raw level 0 page table entry. * @dma_addr: DMA address of the physical page to be associated with @entry. * @flags: Options to be set on @entry. * * When calling this function, @child_table_dma_addr must be a valid DMA * address and a multiple of %PVR_DEVICE_PAGE_SIZE. * * The @flags parameter is directly assigned into @entry. It is the callers * responsibility to ensure that only bits specified in * &struct pvr_page_flags_raw are set in @flags.
*/ staticvoid
pvr_page_table_l0_entry_raw_set(struct pvr_page_table_l0_entry_raw *entry,
dma_addr_t dma_addr, struct pvr_page_flags_raw flags)
{
WRITE_ONCE(entry->val, PVR_PAGE_TABLE_FIELD_PREP(0, PT, VALID, true) |
PVR_PAGE_TABLE_FIELD_PREP(0, PT, ENTRY_PENDING, false) |
(dma_addr & ~ROGUE_MMUCTRL_PAGE_X_RANGE_CLRMSK) |
flags.val.val);
}
/** * pvr_page_flags_raw_create() - Initialize the flag bits of a raw level 0 page * table entry. * @read_only: This page is read-only (see: Read Only). * @cache_coherent: This page does not require cache flushes (see: Cache * Coherency). * @slc_bypass: This page bypasses the device cache (see: SLC Bypass Control). * @pm_fw_protect: This page is only for use by the firmware or Parameter * Manager (see PM/FW Protect). * * For more details on the use of these four options, see their respective * entries in the table under &struct pvr_page_table_l0_entry_raw. * * Return: * A new &struct pvr_page_flags_raw instance which can be passed directly to * pvr_page_table_l0_entry_raw_set() or pvr_page_table_l0_insert().
*/ staticstruct pvr_page_flags_raw
pvr_page_flags_raw_create(bool read_only, bool cache_coherent, bool slc_bypass, bool pm_fw_protect)
{ struct pvr_page_flags_raw flags;
/** * struct pvr_page_table_l2_raw - The raw data of a level 2 page table. * * This type is a structure for type-checking purposes. At compile-time, its * size is checked against %PVR_MMU_BACKING_PAGE_SIZE.
*/ struct pvr_page_table_l2_raw { /** @entries: The raw values of this table. */ struct pvr_page_table_l2_entry_raw
entries[ROGUE_MMUCTRL_ENTRIES_PC_VALUE];
} __packed;
static_assert(sizeof(struct pvr_page_table_l2_raw) == PVR_MMU_BACKING_PAGE_SIZE);
/** * struct pvr_page_table_l1_raw - The raw data of a level 1 page table. * * This type is a structure for type-checking purposes. At compile-time, its * size is checked against %PVR_MMU_BACKING_PAGE_SIZE.
*/ struct pvr_page_table_l1_raw { /** @entries: The raw values of this table. */ struct pvr_page_table_l1_entry_raw
entries[ROGUE_MMUCTRL_ENTRIES_PD_VALUE];
} __packed;
static_assert(sizeof(struct pvr_page_table_l1_raw) == PVR_MMU_BACKING_PAGE_SIZE);
/** * struct pvr_page_table_l0_raw - The raw data of a level 0 page table. * * This type is a structure for type-checking purposes. At compile-time, its * size is checked against %PVR_MMU_BACKING_PAGE_SIZE. * * .. caution:: * * The size of level 0 page tables is variable depending on the page size * specified in the associated level 1 page table entry. Since the device * page size in use is pegged to the host page size, it cannot vary at * runtime. This structure is therefore only defined to contain the required * number of entries for the current device page size. **You should never * read or write beyond the last supported entry.**
*/ struct pvr_page_table_l0_raw { /** @entries: The raw values of this table. */ struct pvr_page_table_l0_entry_raw
entries[ROGUE_MMUCTRL_ENTRIES_PT_VALUE_X];
} __packed;
static_assert(sizeof(struct pvr_page_table_l0_raw) <= PVR_MMU_BACKING_PAGE_SIZE);
/** * DOC: Mirror page tables
*/
/* * We pre-declare these types because they cross-depend on pointers to each * other.
*/ struct pvr_page_table_l1; struct pvr_page_table_l0;
/** * struct pvr_page_table_l2 - A wrapped level 2 page table. * * To access the raw part of this table, use pvr_page_table_l2_get_raw(). * Alternatively to access a raw entry directly, use * pvr_page_table_l2_get_entry_raw(). * * A level 2 page table forms the root of the page table tree structure, so * this type has no &parent or &parent_idx members.
*/ struct pvr_page_table_l2 { /** * @entries: The children of this node in the page table tree * structure. These are also mirror tables. The indexing of this array * is identical to that of the raw equivalent * (&pvr_page_table_l1_raw.entries).
*/ struct pvr_page_table_l1 *entries[ROGUE_MMUCTRL_ENTRIES_PC_VALUE];
/** * @backing_page: A handle to the memory which holds the raw * equivalent of this table. **For internal use only.**
*/ struct pvr_mmu_backing_page backing_page;
/** * @entry_count: The current number of valid entries (that we know of) * in this table. This value is essentially a refcount - the table is * destroyed when this value is decremented to zero by * pvr_page_table_l2_remove().
*/
u16 entry_count;
};
/** * pvr_page_table_l2_init() - Initialize a level 2 page table. * @table: Target level 2 page table. * @pvr_dev: Target PowerVR device * * It is expected that @table be zeroed (e.g. from kzalloc()) before calling * this function. * * Return: * * 0 on success, or * * Any error encountered while intializing &table->backing_page using * pvr_mmu_backing_page_init().
*/ staticint
pvr_page_table_l2_init(struct pvr_page_table_l2 *table, struct pvr_device *pvr_dev)
{ return pvr_mmu_backing_page_init(&table->backing_page, pvr_dev);
}
/** * pvr_page_table_l2_fini() - Teardown a level 2 page table. * @table: Target level 2 page table. * * It is an error to attempt to use @table after calling this function.
*/ staticvoid
pvr_page_table_l2_fini(struct pvr_page_table_l2 *table)
{
pvr_mmu_backing_page_fini(&table->backing_page);
}
/** * pvr_page_table_l2_sync() - Flush a level 2 page table from the CPU to the * device. * @table: Target level 2 page table. * * This is just a thin wrapper around pvr_mmu_backing_page_sync(), so the * warning there applies here too: **Only call pvr_page_table_l2_sync() once * you're sure you have no more changes to make to** @table **in the immediate * future.** * * If child level 1 page tables of @table also need to be flushed, this should * be done first using pvr_page_table_l1_sync() *before* calling this function.
*/ staticvoid
pvr_page_table_l2_sync(struct pvr_page_table_l2 *table)
{
pvr_mmu_backing_page_sync(&table->backing_page, PVR_MMU_SYNC_LEVEL_2_FLAGS);
}
/** * pvr_page_table_l2_get_raw() - Access the raw equivalent of a mirror level 2 * page table. * @table: Target level 2 page table. * * Essentially returns the CPU address of the raw equivalent of @table, cast to * a &struct pvr_page_table_l2_raw pointer. * * You probably want to call pvr_page_table_l2_get_entry_raw() instead. * * Return: * The raw equivalent of @table.
*/ staticstruct pvr_page_table_l2_raw *
pvr_page_table_l2_get_raw(struct pvr_page_table_l2 *table)
{ return table->backing_page.host_ptr;
}
/** * pvr_page_table_l2_get_entry_raw() - Access an entry from the raw equivalent * of a mirror level 2 page table. * @table: Target level 2 page table. * @idx: Index of the entry to access. * * Technically this function returns a pointer to a slot in a raw level 2 page * table, since the returned "entry" is not guaranteed to be valid. The caller * must verify the validity of the entry at the returned address (perhaps using * pvr_page_table_l2_entry_raw_is_valid()) before reading or overwriting it. * * The value of @idx is not checked here; it is the callers responsibility to * ensure @idx refers to a valid index within @table before dereferencing the * returned pointer. * * Return: * A pointer to the requested raw level 2 page table entry.
*/ staticstruct pvr_page_table_l2_entry_raw *
pvr_page_table_l2_get_entry_raw(struct pvr_page_table_l2 *table, u16 idx)
{ return &pvr_page_table_l2_get_raw(table)->entries[idx];
}
/** * pvr_page_table_l2_entry_is_valid() - Check if a level 2 page table entry is * marked as valid. * @table: Target level 2 page table. * @idx: Index of the entry to check. * * The value of @idx is not checked here; it is the callers responsibility to * ensure @idx refers to a valid index within @table before calling this * function.
*/ staticbool
pvr_page_table_l2_entry_is_valid(struct pvr_page_table_l2 *table, u16 idx)
{ struct pvr_page_table_l2_entry_raw entry_raw =
*pvr_page_table_l2_get_entry_raw(table, idx);
/** * struct pvr_page_table_l1 - A wrapped level 1 page table. * * To access the raw part of this table, use pvr_page_table_l1_get_raw(). * Alternatively to access a raw entry directly, use * pvr_page_table_l1_get_entry_raw().
*/ struct pvr_page_table_l1 { /** * @entries: The children of this node in the page table tree * structure. These are also mirror tables. The indexing of this array * is identical to that of the raw equivalent * (&pvr_page_table_l0_raw.entries).
*/ struct pvr_page_table_l0 *entries[ROGUE_MMUCTRL_ENTRIES_PD_VALUE];
/** * @backing_page: A handle to the memory which holds the raw * equivalent of this table. **For internal use only.**
*/ struct pvr_mmu_backing_page backing_page;
union { /** * @parent: The parent of this node in the page table tree structure. * * This is also a mirror table. * * Only valid when the L1 page table is active. When the L1 page table * has been removed and queued for destruction, the next_free field * should be used instead.
*/ struct pvr_page_table_l2 *parent;
/** * @next_free: Pointer to the next L1 page table to take/free. * * Used to form a linked list of L1 page tables. This is used * when preallocating tables and when the page table has been * removed and queued for destruction.
*/ struct pvr_page_table_l1 *next_free;
};
/** * @parent_idx: The index of the entry in the parent table (see * @parent) which corresponds to this table.
*/
u16 parent_idx;
/** * @entry_count: The current number of valid entries (that we know of) * in this table. This value is essentially a refcount - the table is * destroyed when this value is decremented to zero by * pvr_page_table_l1_remove().
*/
u16 entry_count;
};
/** * pvr_page_table_l1_init() - Initialize a level 1 page table. * @table: Target level 1 page table. * @pvr_dev: Target PowerVR device * * When this function returns successfully, @table is still not considered * valid. It must be inserted into the page table tree structure with * pvr_page_table_l2_insert() before it is ready for use. * * It is expected that @table be zeroed (e.g. from kzalloc()) before calling * this function. * * Return: * * 0 on success, or * * Any error encountered while intializing &table->backing_page using * pvr_mmu_backing_page_init().
*/ staticint
pvr_page_table_l1_init(struct pvr_page_table_l1 *table, struct pvr_device *pvr_dev)
{
table->parent_idx = PVR_IDX_INVALID;
/** * pvr_page_table_l1_free() - Teardown a level 1 page table. * @table: Target level 1 page table. * * It is an error to attempt to use @table after calling this function, even * indirectly. This includes calling pvr_page_table_l2_remove(), which must * be called *before* pvr_page_table_l1_free().
*/ staticvoid
pvr_page_table_l1_free(struct pvr_page_table_l1 *table)
{
pvr_mmu_backing_page_fini(&table->backing_page);
kfree(table);
}
/** * pvr_page_table_l1_sync() - Flush a level 1 page table from the CPU to the * device. * @table: Target level 1 page table. * * This is just a thin wrapper around pvr_mmu_backing_page_sync(), so the * warning there applies here too: **Only call pvr_page_table_l1_sync() once * you're sure you have no more changes to make to** @table **in the immediate * future.** * * If child level 0 page tables of @table also need to be flushed, this should * be done first using pvr_page_table_l0_sync() *before* calling this function.
*/ staticvoid
pvr_page_table_l1_sync(struct pvr_page_table_l1 *table)
{
pvr_mmu_backing_page_sync(&table->backing_page, PVR_MMU_SYNC_LEVEL_1_FLAGS);
}
/** * pvr_page_table_l1_get_raw() - Access the raw equivalent of a mirror level 1 * page table. * @table: Target level 1 page table. * * Essentially returns the CPU address of the raw equivalent of @table, cast to * a &struct pvr_page_table_l1_raw pointer. * * You probably want to call pvr_page_table_l1_get_entry_raw() instead. * * Return: * The raw equivalent of @table.
*/ staticstruct pvr_page_table_l1_raw *
pvr_page_table_l1_get_raw(struct pvr_page_table_l1 *table)
{ return table->backing_page.host_ptr;
}
/** * pvr_page_table_l1_get_entry_raw() - Access an entry from the raw equivalent * of a mirror level 1 page table. * @table: Target level 1 page table. * @idx: Index of the entry to access. * * Technically this function returns a pointer to a slot in a raw level 1 page * table, since the returned "entry" is not guaranteed to be valid. The caller * must verify the validity of the entry at the returned address (perhaps using * pvr_page_table_l1_entry_raw_is_valid()) before reading or overwriting it. * * The value of @idx is not checked here; it is the callers responsibility to * ensure @idx refers to a valid index within @table before dereferencing the * returned pointer. * * Return: * A pointer to the requested raw level 1 page table entry.
*/ staticstruct pvr_page_table_l1_entry_raw *
pvr_page_table_l1_get_entry_raw(struct pvr_page_table_l1 *table, u16 idx)
{ return &pvr_page_table_l1_get_raw(table)->entries[idx];
}
/** * pvr_page_table_l1_entry_is_valid() - Check if a level 1 page table entry is * marked as valid. * @table: Target level 1 page table. * @idx: Index of the entry to check. * * The value of @idx is not checked here; it is the callers responsibility to * ensure @idx refers to a valid index within @table before calling this * function.
*/ staticbool
pvr_page_table_l1_entry_is_valid(struct pvr_page_table_l1 *table, u16 idx)
{ struct pvr_page_table_l1_entry_raw entry_raw =
*pvr_page_table_l1_get_entry_raw(table, idx);
/** * struct pvr_page_table_l0 - A wrapped level 0 page table. * * To access the raw part of this table, use pvr_page_table_l0_get_raw(). * Alternatively to access a raw entry directly, use * pvr_page_table_l0_get_entry_raw(). * * There is no mirror representation of an individual page, so this type has no * &entries member.
*/ struct pvr_page_table_l0 { /** * @backing_page: A handle to the memory which holds the raw * equivalent of this table. **For internal use only.**
*/ struct pvr_mmu_backing_page backing_page;
union { /** * @parent: The parent of this node in the page table tree structure. * * This is also a mirror table. * * Only valid when the L0 page table is active. When the L0 page table * has been removed and queued for destruction, the next_free field * should be used instead.
*/ struct pvr_page_table_l1 *parent;
/** * @next_free: Pointer to the next L0 page table to take/free. * * Used to form a linked list of L0 page tables. This is used * when preallocating tables and when the page table has been * removed and queued for destruction.
*/ struct pvr_page_table_l0 *next_free;
};
/** * @parent_idx: The index of the entry in the parent table (see * @parent) which corresponds to this table.
*/
u16 parent_idx;
/** * @entry_count: The current number of valid entries (that we know of) * in this table. This value is essentially a refcount - the table is * destroyed when this value is decremented to zero by * pvr_page_table_l0_remove().
*/
u16 entry_count;
};
/** * pvr_page_table_l0_init() - Initialize a level 0 page table. * @table: Target level 0 page table. * @pvr_dev: Target PowerVR device * * When this function returns successfully, @table is still not considered * valid. It must be inserted into the page table tree structure with * pvr_page_table_l1_insert() before it is ready for use. * * It is expected that @table be zeroed (e.g. from kzalloc()) before calling * this function. * * Return: * * 0 on success, or * * Any error encountered while intializing &table->backing_page using * pvr_mmu_backing_page_init().
*/ staticint
pvr_page_table_l0_init(struct pvr_page_table_l0 *table, struct pvr_device *pvr_dev)
{
table->parent_idx = PVR_IDX_INVALID;
/** * pvr_page_table_l0_free() - Teardown a level 0 page table. * @table: Target level 0 page table. * * It is an error to attempt to use @table after calling this function, even * indirectly. This includes calling pvr_page_table_l1_remove(), which must * be called *before* pvr_page_table_l0_free().
*/ staticvoid
pvr_page_table_l0_free(struct pvr_page_table_l0 *table)
{
pvr_mmu_backing_page_fini(&table->backing_page);
kfree(table);
}
/** * pvr_page_table_l0_sync() - Flush a level 0 page table from the CPU to the * device. * @table: Target level 0 page table. * * This is just a thin wrapper around pvr_mmu_backing_page_sync(), so the * warning there applies here too: **Only call pvr_page_table_l0_sync() once * you're sure you have no more changes to make to** @table **in the immediate * future.** * * If child pages of @table also need to be flushed, this should be done first * using a DMA sync function (e.g. dma_sync_sg_for_device()) *before* calling * this function.
*/ staticvoid
pvr_page_table_l0_sync(struct pvr_page_table_l0 *table)
{
pvr_mmu_backing_page_sync(&table->backing_page, PVR_MMU_SYNC_LEVEL_0_FLAGS);
}
/** * pvr_page_table_l0_get_raw() - Access the raw equivalent of a mirror level 0 * page table. * @table: Target level 0 page table. * * Essentially returns the CPU address of the raw equivalent of @table, cast to * a &struct pvr_page_table_l0_raw pointer. * * You probably want to call pvr_page_table_l0_get_entry_raw() instead. * * Return: * The raw equivalent of @table.
*/ staticstruct pvr_page_table_l0_raw *
pvr_page_table_l0_get_raw(struct pvr_page_table_l0 *table)
{ return table->backing_page.host_ptr;
}
/** * pvr_page_table_l0_get_entry_raw() - Access an entry from the raw equivalent * of a mirror level 0 page table. * @table: Target level 0 page table. * @idx: Index of the entry to access. * * Technically this function returns a pointer to a slot in a raw level 0 page * table, since the returned "entry" is not guaranteed to be valid. The caller * must verify the validity of the entry at the returned address (perhaps using * pvr_page_table_l0_entry_raw_is_valid()) before reading or overwriting it. * * The value of @idx is not checked here; it is the callers responsibility to * ensure @idx refers to a valid index within @table before dereferencing the * returned pointer. This is espcially important for level 0 page tables, which * can have a variable number of entries. * * Return: * A pointer to the requested raw level 0 page table entry.
*/ staticstruct pvr_page_table_l0_entry_raw *
pvr_page_table_l0_get_entry_raw(struct pvr_page_table_l0 *table, u16 idx)
{ return &pvr_page_table_l0_get_raw(table)->entries[idx];
}
/** * pvr_page_table_l0_entry_is_valid() - Check if a level 0 page table entry is * marked as valid. * @table: Target level 0 page table. * @idx: Index of the entry to check. * * The value of @idx is not checked here; it is the callers responsibility to * ensure @idx refers to a valid index within @table before calling this * function.
*/ staticbool
pvr_page_table_l0_entry_is_valid(struct pvr_page_table_l0 *table, u16 idx)
{ struct pvr_page_table_l0_entry_raw entry_raw =
*pvr_page_table_l0_get_entry_raw(table, idx);
/** * struct pvr_mmu_context - context holding data for operations at page * catalogue level, intended for use with a VM context.
*/ struct pvr_mmu_context { /** @pvr_dev: The PVR device associated with the owning VM context. */ struct pvr_device *pvr_dev;
/** * struct pvr_page_table_ptr - A reference to a single physical page as indexed * by the page table structure. * * Intended for embedding in a &struct pvr_mmu_op_context.
*/ struct pvr_page_table_ptr { /** * @l1_table: A cached handle to the level 1 page table the * context is currently traversing.
*/ struct pvr_page_table_l1 *l1_table;
/** * @l0_table: A cached handle to the level 0 page table the * context is currently traversing.
*/ struct pvr_page_table_l0 *l0_table;
/** * @l2_idx: Index into the level 2 page table the context is * currently referencing.
*/
u16 l2_idx;
/** * @l1_idx: Index into the level 1 page table the context is * currently referencing.
*/
u16 l1_idx;
/** * @l0_idx: Index into the level 0 page table the context is * currently referencing.
*/
u16 l0_idx;
};
/** * struct pvr_mmu_op_context - context holding data for individual * device-virtual mapping operations. Intended for use with a VM bind operation.
*/ struct pvr_mmu_op_context { /** @mmu_ctx: The MMU context associated with the owning VM context. */ struct pvr_mmu_context *mmu_ctx;
/** @map: Data specifically for map operations. */ struct { /** * @sgt: Scatter gather table containing pages pinned for use by * this context - these are currently pinned when initialising * the VM bind operation.
*/ struct sg_table *sgt;
/** @sgt_offset: Start address of the device-virtual mapping. */
u64 sgt_offset;
/** * @l1_prealloc_tables: Preallocated l1 page table objects * use by this context when creating a page mapping. Linked list * fully created during initialisation.
*/ struct pvr_page_table_l1 *l1_prealloc_tables;
/** * @l0_prealloc_tables: Preallocated l0 page table objects * use by this context when creating a page mapping. Linked list * fully created during initialisation.
*/ struct pvr_page_table_l0 *l0_prealloc_tables;
} map;
/** @unmap: Data specifically for unmap operations. */ struct { /** * @l1_free_tables: Collects page table objects freed by unmap * ops. Linked list empty at creation.
*/ struct pvr_page_table_l1 *l1_free_tables;
/** * @l0_free_tables: Collects page table objects freed by unmap * ops. Linked list empty at creation.
*/ struct pvr_page_table_l0 *l0_free_tables;
} unmap;
/** * @curr_page: A reference to a single physical page as indexed by the * page table structure.
*/ struct pvr_page_table_ptr curr_page;
/** * @sync_level_required: The maximum level of the page table tree * structure which has (possibly) been modified since it was last * flushed to the device. * * This field should only be set with pvr_mmu_op_context_require_sync() * or indirectly by pvr_mmu_op_context_sync_partial().
*/ enum pvr_mmu_sync_level sync_level_required;
};
/** * pvr_page_table_l2_insert() - Insert an entry referring to a level 1 page * table into a level 2 page table. * @op_ctx: Target MMU op context pointing at the entry to insert the L1 page * table into. * @child_table: Target level 1 page table to be referenced by the new entry. * * It is the caller's responsibility to ensure @op_ctx.curr_page points to a * valid L2 entry. * * It is the caller's responsibility to execute any memory barries to ensure * that the creation of @child_table is ordered before the L2 entry is inserted.
*/ staticvoid
pvr_page_table_l2_insert(struct pvr_mmu_op_context *op_ctx, struct pvr_page_table_l1 *child_table)
{ struct pvr_page_table_l2 *l2_table =
&op_ctx->mmu_ctx->page_table_l2; struct pvr_page_table_l2_entry_raw *entry_raw =
pvr_page_table_l2_get_entry_raw(l2_table,
op_ctx->curr_page.l2_idx);
/** * pvr_page_table_l2_remove() - Remove a level 1 page table from a level 2 page * table. * @op_ctx: Target MMU op context pointing at the L2 entry to remove. * * It is the caller's responsibility to ensure @op_ctx.curr_page points to a * valid L2 entry.
*/ staticvoid
pvr_page_table_l2_remove(struct pvr_mmu_op_context *op_ctx)
{ struct pvr_page_table_l2 *l2_table =
&op_ctx->mmu_ctx->page_table_l2; struct pvr_page_table_l2_entry_raw *entry_raw =
pvr_page_table_l2_get_entry_raw(l2_table,
op_ctx->curr_page.l1_table->parent_idx);
/** * pvr_page_table_l1_insert() - Insert an entry referring to a level 0 page * table into a level 1 page table. * @op_ctx: Target MMU op context pointing at the entry to insert the L0 page * table into. * @child_table: L0 page table to insert. * * It is the caller's responsibility to ensure @op_ctx.curr_page points to a * valid L1 entry. * * It is the caller's responsibility to execute any memory barries to ensure * that the creation of @child_table is ordered before the L1 entry is inserted.
*/ staticvoid
pvr_page_table_l1_insert(struct pvr_mmu_op_context *op_ctx, struct pvr_page_table_l0 *child_table)
{ struct pvr_page_table_l1_entry_raw *entry_raw =
pvr_page_table_l1_get_entry_raw(op_ctx->curr_page.l1_table,
op_ctx->curr_page.l1_idx);
/** * pvr_page_table_l1_remove() - Remove a level 0 page table from a level 1 page * table. * @op_ctx: Target MMU op context pointing at the L1 entry to remove. * * If this function results in the L1 table becoming empty, it will be removed * from its parent level 2 page table and destroyed. * * It is the caller's responsibility to ensure @op_ctx.curr_page points to a * valid L1 entry.
*/ staticvoid
pvr_page_table_l1_remove(struct pvr_mmu_op_context *op_ctx)
{ struct pvr_page_table_l1_entry_raw *entry_raw =
pvr_page_table_l1_get_entry_raw(op_ctx->curr_page.l0_table->parent,
op_ctx->curr_page.l0_table->parent_idx);
if (--op_ctx->curr_page.l1_table->entry_count == 0) { /* Clear the parent L2 page table entry. */ if (op_ctx->curr_page.l1_table->parent_idx != PVR_IDX_INVALID)
pvr_page_table_l2_remove(op_ctx);
}
}
/** * pvr_page_table_l0_insert() - Insert an entry referring to a physical page * into a level 0 page table. * @op_ctx: Target MMU op context pointing at the L0 entry to insert. * @dma_addr: Target DMA address to be referenced by the new entry. * @flags: Page options to be stored in the new entry. * * It is the caller's responsibility to ensure @op_ctx.curr_page points to a * valid L0 entry.
*/ staticvoid
pvr_page_table_l0_insert(struct pvr_mmu_op_context *op_ctx,
dma_addr_t dma_addr, struct pvr_page_flags_raw flags)
{ struct pvr_page_table_l0_entry_raw *entry_raw =
pvr_page_table_l0_get_entry_raw(op_ctx->curr_page.l0_table,
op_ctx->curr_page.l0_idx);
/* * There is no entry to set here - we don't keep a mirror of * individual pages.
*/
++op_ctx->curr_page.l0_table->entry_count;
}
/** * pvr_page_table_l0_remove() - Remove a physical page from a level 0 page * table. * @op_ctx: Target MMU op context pointing at the L0 entry to remove. * * If this function results in the L0 table becoming empty, it will be removed * from its parent L1 page table and destroyed. * * It is the caller's responsibility to ensure @op_ctx.curr_page points to a * valid L0 entry.
*/ staticvoid
pvr_page_table_l0_remove(struct pvr_mmu_op_context *op_ctx)
{ struct pvr_page_table_l0_entry_raw *entry_raw =
pvr_page_table_l0_get_entry_raw(op_ctx->curr_page.l0_table,
op_ctx->curr_page.l0_idx);
pvr_page_table_l0_entry_raw_clear(entry_raw);
/* * There is no entry to clear here - we don't keep a mirror of * individual pages.
*/
if (--op_ctx->curr_page.l0_table->entry_count == 0) { /* Clear the parent L1 page table entry. */ if (op_ctx->curr_page.l0_table->parent_idx != PVR_IDX_INVALID)
pvr_page_table_l1_remove(op_ctx);
}
}
/** * DOC: Page table index utilities
*/
/** * pvr_page_table_l2_idx() - Calculate the level 2 page table index for a * device-virtual address. * @device_addr: Target device-virtual address. * * This function does not perform any bounds checking - it is the caller's * responsibility to ensure that @device_addr is valid before interpreting * the result. * * Return: * The index into a level 2 page table corresponding to @device_addr.
*/ static u16
pvr_page_table_l2_idx(u64 device_addr)
{ return (device_addr & ~ROGUE_MMUCTRL_VADDR_PC_INDEX_CLRMSK) >>
ROGUE_MMUCTRL_VADDR_PC_INDEX_SHIFT;
}
/** * pvr_page_table_l1_idx() - Calculate the level 1 page table index for a * device-virtual address. * @device_addr: Target device-virtual address. * * This function does not perform any bounds checking - it is the caller's * responsibility to ensure that @device_addr is valid before interpreting * the result. * * Return: * The index into a level 1 page table corresponding to @device_addr.
*/ static u16
pvr_page_table_l1_idx(u64 device_addr)
{ return (device_addr & ~ROGUE_MMUCTRL_VADDR_PD_INDEX_CLRMSK) >>
ROGUE_MMUCTRL_VADDR_PD_INDEX_SHIFT;
}
/** * pvr_page_table_l0_idx() - Calculate the level 0 page table index for a * device-virtual address. * @device_addr: Target device-virtual address. * * This function does not perform any bounds checking - it is the caller's * responsibility to ensure that @device_addr is valid before interpreting * the result. * * Return: * The index into a level 0 page table corresponding to @device_addr.
*/ static u16
pvr_page_table_l0_idx(u64 device_addr)
{ return (device_addr & ~ROGUE_MMUCTRL_VADDR_PT_INDEX_CLRMSK) >>
ROGUE_MMUCTRL_PAGE_X_RANGE_SHIFT;
}
/** * DOC: High-level page table operations
*/
/** * pvr_page_table_l1_get_or_insert() - Retrieves (optionally inserting if * necessary) a level 1 page table from the specified level 2 page table entry. * @op_ctx: Target MMU op context. * @should_insert: [IN] Specifies whether new page tables should be inserted * when empty page table entries are encountered during traversal. * * Return: * * 0 on success, or * * If @should_insert is %false: * * -%ENXIO if a level 1 page table would have been inserted. * * If @should_insert is %true: * * Any error encountered while inserting the level 1 page table.
*/ staticint
pvr_page_table_l1_get_or_insert(struct pvr_mmu_op_context *op_ctx, bool should_insert)
{ struct pvr_page_table_l2 *l2_table =
&op_ctx->mmu_ctx->page_table_l2; struct pvr_page_table_l1 *table;
if (pvr_page_table_l2_entry_is_valid(l2_table,
op_ctx->curr_page.l2_idx)) {
op_ctx->curr_page.l1_table =
l2_table->entries[op_ctx->curr_page.l2_idx]; return 0;
}
if (!should_insert) return -ENXIO;
/* Take a prealloced table. */
table = op_ctx->map.l1_prealloc_tables; if (!table) return -ENOMEM;
/* Pop */
op_ctx->map.l1_prealloc_tables = table->next_free;
table->next_free = NULL;
/* Ensure new table is fully written out before adding to L2 page table. */
wmb();
pvr_page_table_l2_insert(op_ctx, table);
return 0;
}
/** * pvr_page_table_l0_get_or_insert() - Retrieves (optionally inserting if * necessary) a level 0 page table from the specified level 1 page table entry. * @op_ctx: Target MMU op context. * @should_insert: [IN] Specifies whether new page tables should be inserted * when empty page table entries are encountered during traversal. * * Return: * * 0 on success, * * If @should_insert is %false: * * -%ENXIO if a level 0 page table would have been inserted. * * If @should_insert is %true: * * Any error encountered while inserting the level 0 page table.
*/ staticint
pvr_page_table_l0_get_or_insert(struct pvr_mmu_op_context *op_ctx, bool should_insert)
{ struct pvr_page_table_l0 *table;
if (pvr_page_table_l1_entry_is_valid(op_ctx->curr_page.l1_table,
op_ctx->curr_page.l1_idx)) {
op_ctx->curr_page.l0_table =
op_ctx->curr_page.l1_table->entries[op_ctx->curr_page.l1_idx]; return 0;
}
if (!should_insert) return -ENXIO;
/* Take a prealloced table. */
table = op_ctx->map.l0_prealloc_tables; if (!table) return -ENOMEM;
/* Pop */
op_ctx->map.l0_prealloc_tables = table->next_free;
table->next_free = NULL;
/* Ensure new table is fully written out before adding to L1 page table. */
wmb();
pvr_page_table_l1_insert(op_ctx, table);
return 0;
}
/** * pvr_mmu_context_create() - Create an MMU context. * @pvr_dev: PVR device associated with owning VM context. * * Returns: * * Newly created MMU context object on success, or * * -%ENOMEM if no memory is available, * * Any error code returned by pvr_page_table_l2_init().
*/ struct pvr_mmu_context *pvr_mmu_context_create(struct pvr_device *pvr_dev)
{ struct pvr_mmu_context *ctx = kzalloc(sizeof(*ctx), GFP_KERNEL); int err;
if (!ctx) return ERR_PTR(-ENOMEM);
err = pvr_page_table_l2_init(&ctx->page_table_l2, pvr_dev); if (err) return ERR_PTR(err);
/** * pvr_mmu_get_root_table_dma_addr() - Get the DMA address of the root of the * page table structure behind a VM context. * @ctx: Target MMU context.
*/
dma_addr_t pvr_mmu_get_root_table_dma_addr(struct pvr_mmu_context *ctx)
{ return ctx->page_table_l2.backing_page.dma_addr;
}
/** * pvr_page_table_l1_alloc() - Allocate a l1 page_table object. * @ctx: MMU context of owning VM context. * * Returns: * * Newly created page table object on success, or * * -%ENOMEM if no memory is available, * * Any error code returned by pvr_page_table_l1_init().
*/ staticstruct pvr_page_table_l1 *
pvr_page_table_l1_alloc(struct pvr_mmu_context *ctx)
{ int err;
/** * pvr_page_table_l0_alloc() - Allocate a l0 page_table object. * @ctx: MMU context of owning VM context. * * Returns: * * Newly created page table object on success, or * * -%ENOMEM if no memory is available, * * Any error code returned by pvr_page_table_l0_init().
*/ staticstruct pvr_page_table_l0 *
pvr_page_table_l0_alloc(struct pvr_mmu_context *ctx)
{ int err;
/** * pvr_mmu_op_context_require_sync() - Mark an MMU op context as requiring a * sync operation for the referenced page tables up to a specified level. * @op_ctx: Target MMU op context. * @level: Maximum page table level for which a sync is required.
*/ staticvoid
pvr_mmu_op_context_require_sync(struct pvr_mmu_op_context *op_ctx, enum pvr_mmu_sync_level level)
{ if (op_ctx->sync_level_required < level)
op_ctx->sync_level_required = level;
}
/** * pvr_mmu_op_context_sync_manual() - Trigger a sync of some or all of the * page tables referenced by a MMU op context. * @op_ctx: Target MMU op context. * @level: Maximum page table level to sync. * * Do not call this function directly. Instead use * pvr_mmu_op_context_sync_partial() which is checked against the current * value of &op_ctx->sync_level_required as set by * pvr_mmu_op_context_require_sync().
*/ staticvoid
pvr_mmu_op_context_sync_manual(struct pvr_mmu_op_context *op_ctx, enum pvr_mmu_sync_level level)
{ /* * We sync the page table levels in ascending order (starting from the * leaf node) to ensure consistency.
*/
WARN_ON(level < PVR_MMU_SYNC_LEVEL_NONE);
if (level <= PVR_MMU_SYNC_LEVEL_NONE) return;
if (op_ctx->curr_page.l0_table)
pvr_page_table_l0_sync(op_ctx->curr_page.l0_table);
if (level < PVR_MMU_SYNC_LEVEL_1) return;
if (op_ctx->curr_page.l1_table)
pvr_page_table_l1_sync(op_ctx->curr_page.l1_table);
/** * pvr_mmu_op_context_sync_partial() - Trigger a sync of some or all of the * page tables referenced by a MMU op context. * @op_ctx: Target MMU op context. * @level: Requested page table level to sync up to (inclusive). * * If @level is greater than the maximum level recorded by @op_ctx as requiring * a sync operation, only the previously recorded maximum will be used. * * Additionally, if @level is greater than or equal to the maximum level * recorded by @op_ctx as requiring a sync operation, that maximum level will be * reset as a full sync will be performed. This is equivalent to calling * pvr_mmu_op_context_sync().
*/ staticvoid
pvr_mmu_op_context_sync_partial(struct pvr_mmu_op_context *op_ctx, enum pvr_mmu_sync_level level)
{ /* * If the requested sync level is greater than or equal to the * currently required sync level, we do two things: * * Don't waste time syncing levels we haven't previously marked as * requiring a sync, and * * Reset the required sync level since we are about to sync * everything that was previously marked as requiring a sync.
*/ if (level >= op_ctx->sync_level_required) {
level = op_ctx->sync_level_required;
op_ctx->sync_level_required = PVR_MMU_SYNC_LEVEL_NONE;
}
pvr_mmu_op_context_sync_manual(op_ctx, level);
}
/** * pvr_mmu_op_context_sync() - Trigger a sync of every page table referenced by * a MMU op context. * @op_ctx: Target MMU op context. * * The maximum level marked internally as requiring a sync will be reset so * that subsequent calls to this function will be no-ops unless @op_ctx is * otherwise updated.
*/ staticvoid
pvr_mmu_op_context_sync(struct pvr_mmu_op_context *op_ctx)
{
pvr_mmu_op_context_sync_manual(op_ctx, op_ctx->sync_level_required);
/** * pvr_mmu_op_context_load_tables() - Load pointers to tables in each level of * the page table tree structure needed to reference the physical page * referenced by a MMU op context. * @op_ctx: Target MMU op context. * @should_create: Specifies whether new page tables should be created when * empty page table entries are encountered during traversal. * @load_level_required: Maximum page table level to load. * * If @should_create is %true, this function may modify the stored required * sync level of @op_ctx as new page tables are created and inserted into their * respective parents. * * Since there is only one root page table, it is technically incorrect to call * this function with a value of @load_level_required greater than or equal to * the root level number. However, this is not explicitly disallowed here. * * Return: * * 0 on success, * * Any error returned by pvr_page_table_l1_get_or_create() if * @load_level_required >= 1 except -%ENXIO, or * * Any error returned by pvr_page_table_l0_get_or_create() if * @load_level_required >= 0 except -%ENXIO.
*/ staticint
pvr_mmu_op_context_load_tables(struct pvr_mmu_op_context *op_ctx, bool should_create, enum pvr_mmu_sync_level load_level_required)
{ conststruct pvr_page_table_l1 *l1_head_before =
op_ctx->map.l1_prealloc_tables; conststruct pvr_page_table_l0 *l0_head_before =
op_ctx->map.l0_prealloc_tables; int err;
/* Clear tables we're about to fetch in case of error states. */ if (load_level_required >= PVR_MMU_SYNC_LEVEL_1)
op_ctx->curr_page.l1_table = NULL;
if (load_level_required >= PVR_MMU_SYNC_LEVEL_0)
op_ctx->curr_page.l0_table = NULL;
/* Get or create L1 page table. */ if (load_level_required >= PVR_MMU_SYNC_LEVEL_1) {
err = pvr_page_table_l1_get_or_insert(op_ctx, should_create); if (err) { /* * If @should_create is %false and no L1 page table was * found, return early but without an error. Since
--> --------------------
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.