Lines Matching refs:table
14 allowed to each security state can be seen in the table below.
16 .. list-table:: Security states and PAS access rights
47 PAS region is configured. The first step is the level 0 table, each entry in the
48 level 0 table controls access to a relatively large region in memory (block
50 mapping is used, or a level 0 entry can link to a level 1 table where relatively
73 GPT setup is split into two parts: table creation and runtime initialization. In
74 the table creation step, a data structure containing information about the
122 its level 0 table in SRAM and its level 1 table(s) in DRAM.
132 table creation.
193 The L0 table memory has some constraints that must be taken into account.
195 * The L0 table must be aligned to either the table size or 4096 bytes, whichever
196 is greater. L0 table size is the total protected space (PPS) divided by the
199 * The L0 memory size must be greater than or equal to the table size.
204 * The L1 tables must be aligned to their size. The size of each L1 table is the
219 We can find the total L0 table size with ((PPS / L0GPTSZ) * 8)
226 Sample calculation for L1 table size and alignment
231 We can find the size of each L1 table with ((L0GPTSZ / PGS) / 2).
235 And solve to get 0x20000 bytes per L1 table.