Lines Matching refs:mpe

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