/src/sys/arch/sandpoint/stand/altboot/ |
pci.c | 54 unsigned iostart, iolimit; variable in typeref:typename:unsigned 63 iostart = PCI_IOBASE; 236 val = (iostart + (0xfff)) & ~0xfff; /* 4KB boundary */ 237 iostart = val; 289 mapbase = (iostart + size - 1) & ~(size - 1); 293 iostart = mapbase + size;
|
/src/sys/dev/marvell/ |
mvpex.c | 112 uint64_t iostart = 0, ioend = 0, memstart = 0, memend = 0; local in function:mvpex_attach 143 if (!prop_dictionary_get_uint64(dict, "iostart", &iostart)) { 144 aprint_error_dev(self, "no iostart property\n"); 191 mvpex_chipset, iostart, ioend, memstart, memend, cl_size); 407 u_long iostart, u_long ioend, u_long memstart, u_long memend, 419 iostart, (ioend - iostart) + 1);
|
gtpci.c | 125 uint64_t iostart = 0, ioend = 0, memstart = 0, memend = 0; local in function:gtpci_attach 165 if (!prop_dictionary_get_uint64(dict, "iostart", &iostart)) { 166 aprint_error_dev(self, "no iostart property\n"); 227 gtpci_chipset, iostart, ioend, memstart, memend, cl_size); 443 u_long iostart, u_long ioend, u_long memstart, u_long memend, 455 iostart, (ioend - iostart) + 1);
|
/src/sys/arch/powerpc/oea/ |
ofw_autoconf.c | 283 int iostart, ioend; local in function:ofw_device_register 290 iostart = 0; 297 iostart = 0x1400; 325 prop_dictionary_set_uint64(dict, "iostart", iostart);
|
/src/sys/arch/hppa/dev/ |
elroy.c | 379 bus_addr_t iostart, ioend; local in function:elroy_ioalloc 381 iostart = r->io_base & ~htole32(ELROY_BASE_RE); 382 ioend = iostart + ~htole32(r->io_mask) + 1; 383 if (rstart < iostart || rend > ioend)
|
/src/sys/dev/pci/ |
pci_resource.c | 522 uint64_t iostart, ioend; local in function:pci_resource_scan_bridge 536 iostart = PCI_BRIDGE_STATIO_IOBASE_ADDR(res); 540 iostart |= __SHIFTOUT(reshigh, PCI_BRIDGE_IOHIGH_BASE) << 16; 543 if (iostart < ioend) { 545 PCI_RANGE_IO, iostart, ioend);
|