Lines Matching full:space
16 * Device CSRs that do not appear in PCI config space should be described
17 * via ACPI. This would normally be done with Address Space Descriptors
20 * describe the location and size of CSR space.
62 struct csr_space *space = data; in find_csr_space() local
71 space->base = addr.address.minimum; in find_csr_space()
72 space->length = addr.address.address_length; in find_csr_space()
80 struct csr_space space = { 0, 0 }; in hp_crs_locate() local
82 acpi_walk_resources(obj, METHOD_NAME__CRS, find_csr_space, &space); in hp_crs_locate()
83 if (!space.length) in hp_crs_locate()
86 *base = space.base; in hp_crs_locate()
87 *length = space.length; in hp_crs_locate()