Lines Matching refs:phys_base
227 ranges[0].pci_base, ranges[0].phys_base); in bcm_pcib_check_ranges()
240 i, ranges[i].pci_base, ranges[i].phys_base, in bcm_pcib_check_ranges()
592 encode_cpu_window_low(pci_addr_t phys_base, bus_size_t size) in encode_cpu_window_low() argument
595 return (((phys_base >> 0x10) & 0xfff0) | in encode_cpu_window_low()
596 ((phys_base + size - 1) & 0xfff00000)); in encode_cpu_window_low()
600 encode_cpu_window_start_high(pci_addr_t phys_base) in encode_cpu_window_start_high() argument
603 return ((phys_base >> 0x20) & 0xff); in encode_cpu_window_start_high()
607 encode_cpu_window_end_high(pci_addr_t phys_base, bus_size_t size) in encode_cpu_window_end_high() argument
610 return (((phys_base + size - 1) >> 0x20) & 0xff); in encode_cpu_window_end_high()
617 pci_addr_t phys_base, pci_base; in bcm_pcib_attach() local
705 phys_base = sc->base.base.ranges[0].phys_base; in bcm_pcib_attach()
712 encode_cpu_window_low(phys_base, size)); in bcm_pcib_attach()
714 encode_cpu_window_start_high(phys_base)); in bcm_pcib_attach()
716 encode_cpu_window_end_high(phys_base, size)); in bcm_pcib_attach()