Lines Matching refs:mpe
176 struct mp_ext_system_address_space *mpe; in mp_write_address_space() local
178 mpe = (struct mp_ext_system_address_space *)mp_next_mpe_entry(mc); in mp_write_address_space()
179 mpe->mpe_type = MPE_SYSTEM_ADDRESS_SPACE; in mp_write_address_space()
180 mpe->mpe_length = sizeof(*mpe); in mp_write_address_space()
181 mpe->mpe_busid = busid; in mp_write_address_space()
182 mpe->mpe_addr_type = addr_type; in mp_write_address_space()
183 mpe->mpe_addr_base_low = addr_base_low; in mp_write_address_space()
184 mpe->mpe_addr_base_high = addr_base_high; in mp_write_address_space()
185 mpe->mpe_addr_length_low = addr_length_low; in mp_write_address_space()
186 mpe->mpe_addr_length_high = addr_length_high; in mp_write_address_space()
187 mp_add_mpe_entry(mc, (struct mp_ext_config *)mpe); in mp_write_address_space()
193 struct mp_ext_bus_hierarchy *mpe; in mp_write_bus_hierarchy() local
195 mpe = (struct mp_ext_bus_hierarchy *)mp_next_mpe_entry(mc); in mp_write_bus_hierarchy()
196 mpe->mpe_type = MPE_BUS_HIERARCHY; in mp_write_bus_hierarchy()
197 mpe->mpe_length = sizeof(*mpe); in mp_write_bus_hierarchy()
198 mpe->mpe_busid = busid; in mp_write_bus_hierarchy()
199 mpe->mpe_bus_info = bus_info; in mp_write_bus_hierarchy()
200 mpe->mpe_parent_busid = parent_busid; in mp_write_bus_hierarchy()
201 mpe->reserved[0] = 0; in mp_write_bus_hierarchy()
202 mpe->reserved[1] = 0; in mp_write_bus_hierarchy()
203 mpe->reserved[2] = 0; in mp_write_bus_hierarchy()
204 mp_add_mpe_entry(mc, (struct mp_ext_config *)mpe); in mp_write_bus_hierarchy()
210 struct mp_ext_compat_address_space *mpe; in mp_write_compat_address_space() local
212 mpe = (struct mp_ext_compat_address_space *)mp_next_mpe_entry(mc); in mp_write_compat_address_space()
213 mpe->mpe_type = MPE_COMPAT_ADDRESS_SPACE; in mp_write_compat_address_space()
214 mpe->mpe_length = sizeof(*mpe); in mp_write_compat_address_space()
215 mpe->mpe_busid = busid; in mp_write_compat_address_space()
216 mpe->mpe_addr_modifier = addr_modifier; in mp_write_compat_address_space()
217 mpe->mpe_range_list = range_list; in mp_write_compat_address_space()
218 mp_add_mpe_entry(mc, (struct mp_ext_config *)mpe); in mp_write_compat_address_space()