Home
last modified time | relevance | path

Searched refs:MMIO_UPPER_LIMIT (Results 1 – 4 of 4) sorted by relevance

/Linux-v4.19/lib/
Dlogic_pio.c39 resource_size_t iio_sz = MMIO_UPPER_LIMIT; in logic_pio_register_range()
72 if (mmio_sz + new_range->size - 1 > MMIO_UPPER_LIMIT) { in logic_pio_register_range()
74 if (mmio_sz + SZ_64K - 1 > MMIO_UPPER_LIMIT) { in logic_pio_register_range()
200 if (addr < MMIO_UPPER_LIMIT) { \
202 } else if (addr >= MMIO_UPPER_LIMIT && addr < IO_SPACE_LIMIT) { \
216 if (addr < MMIO_UPPER_LIMIT) { \
218 } else if (addr >= MMIO_UPPER_LIMIT && addr < IO_SPACE_LIMIT) { \
232 if (addr < MMIO_UPPER_LIMIT) { \
234 } else if (addr >= MMIO_UPPER_LIMIT && addr < IO_SPACE_LIMIT) { \
249 if (addr < MMIO_UPPER_LIMIT) { \
[all …]
/Linux-v4.19/include/linux/
Dlogic_pio.h111 #define MMIO_UPPER_LIMIT (IO_SPACE_LIMIT - PIO_INDIRECT_SIZE) macro
113 #define MMIO_UPPER_LIMIT IO_SPACE_LIMIT macro
/Linux-v4.19/include/asm-generic/
Dio.h1030 return (port > MMIO_UPPER_LIMIT) ? NULL : PCI_IOBASE + port; in ioport_map()
/Linux-v4.19/drivers/pci/
Dpci.c3794 if (pio >= MMIO_UPPER_LIMIT) in pci_pio_to_address()