Lines Matching defs:partition

69  * get_xbl_cpu() - Get the target CPU for partition.
70 * @partition: Pointer to partition struct.
75 static int32_t get_xbl_cpu(const struct xbl_partition *partition)
77 uint64_t flags = partition->flags & XBL_FLAGS_CPU_MASK;
83 * get_xbl_el() - Get the target exception level for partition.
84 * @partition: Pointer to partition struct.
89 static int32_t get_xbl_el(const struct xbl_partition *partition)
91 uint64_t flags = partition->flags & XBL_FLAGS_EL_MASK;
97 * get_xbl_ss() - Get the target security state for partition.
98 * @partition: Pointer to partition struct.
103 static int32_t get_xbl_ss(const struct xbl_partition *partition)
105 uint64_t flags = partition->flags & XBL_FLAGS_TZ_MASK;
111 * get_xbl_endian() - Get the target endianness for partition.
112 * @partition: Pointer to partition struct.
117 static int32_t get_xbl_endian(const struct xbl_partition *partition)
119 uint64_t flags = partition->flags & XBL_FLAGS_ENDIAN_MASK;
131 * get_xbl_estate() - Get the target execution state for partition.
132 * @partition: Pointer to partition struct.
137 static int32_t get_xbl_estate(const struct xbl_partition *partition)
139 uint64_t flags = partition->flags & XBL_FLAGS_ESTATE_MASK;
147 * @partition: pointer to the partition structure.
149 * Return: cluster number for the partition.
151 static int32_t get_xbl_cluster(const struct xbl_partition *partition)
153 uint64_t flags = partition->flags & XBL_FLAGS_CLUSTER_MASK;
211 HandoffParams->partition[i].entry_point,
212 HandoffParams->partition[i].flags);
217 target_cluster = get_xbl_cluster(&HandoffParams->partition[i]);
225 target_cpu = get_xbl_cpu(&HandoffParams->partition[i]);
231 target_el = get_xbl_el(&HandoffParams->partition[i]);
239 target_secure = get_xbl_ss(&HandoffParams->partition[i]);
247 target_estate = get_xbl_estate(&HandoffParams->partition[i]);
248 target_endianness = get_xbl_endian(&HandoffParams->partition[i]);
288 HandoffParams->partition[i].entry_point,
290 image->pc = HandoffParams->partition[i].entry_point;