/linux-4.1.27/drivers/net/ethernet/amd/ |
H A D | sun3lance.c | 105 #define PKTBUF_ADDR(head) (void *)((unsigned long)(MEM) | (head)->base) 161 #define MEM lp->mem macro 347 MEM = dvma_malloc_align(sizeof(struct lance_memory), 0x10000); lance_probe() 348 if (MEM == NULL) { lance_probe() 365 dvma_free((void *)MEM); lance_probe() 375 (unsigned long)MEM, lance_probe() 383 MEM->init.hwaddr[0] = dev->dev_addr[1]; lance_probe() 384 MEM->init.hwaddr[1] = dev->dev_addr[0]; lance_probe() 385 MEM->init.hwaddr[2] = dev->dev_addr[3]; lance_probe() 386 MEM->init.hwaddr[3] = dev->dev_addr[2]; lance_probe() 387 MEM->init.hwaddr[4] = dev->dev_addr[5]; lance_probe() 388 MEM->init.hwaddr[5] = dev->dev_addr[4]; lance_probe() 392 MEM->init.mode = 0x0000; lance_probe() 393 MEM->init.filter[0] = 0x00000000; lance_probe() 394 MEM->init.filter[1] = 0x00000000; lance_probe() 395 MEM->init.rdra = dvma_vtob(MEM->rx_head); lance_probe() 396 MEM->init.rlen = (RX_LOG_RING_SIZE << 13) | lance_probe() 397 (dvma_vtob(MEM->rx_head) >> 16); lance_probe() 398 MEM->init.tdra = dvma_vtob(MEM->tx_head); lance_probe() 399 MEM->init.tlen = (TX_LOG_RING_SIZE << 13) | lance_probe() 400 (dvma_vtob(MEM->tx_head) >> 16); lance_probe() 403 dvma_vtob(&(MEM->init)), dvma_vtob(MEM->rx_head), lance_probe() 404 (dvma_vtob(MEM->tx_head)))); lance_probe() 465 MEM->tx_head[i].base = dvma_vtob(MEM->tx_data[i]); lance_init_ring() 466 MEM->tx_head[i].flag = 0; lance_init_ring() 467 MEM->tx_head[i].base_hi = lance_init_ring() 468 (dvma_vtob(MEM->tx_data[i])) >>16; lance_init_ring() 469 MEM->tx_head[i].length = 0; lance_init_ring() 470 MEM->tx_head[i].misc = 0; lance_init_ring() 474 MEM->rx_head[i].base = dvma_vtob(MEM->rx_data[i]); lance_init_ring() 475 MEM->rx_head[i].flag = RMD1_OWN_CHIP; lance_init_ring() 476 MEM->rx_head[i].base_hi = lance_init_ring() 477 (dvma_vtob(MEM->rx_data[i])) >> 16; lance_init_ring() 478 MEM->rx_head[i].buf_length = -PKT_BUF_SZ | 0xf000; lance_init_ring() 479 MEM->rx_head[i].msg_length = 0; lance_init_ring() 483 MEM->init.hwaddr[0] = dev->dev_addr[1]; lance_init_ring() 484 MEM->init.hwaddr[1] = dev->dev_addr[0]; lance_init_ring() 485 MEM->init.hwaddr[2] = dev->dev_addr[3]; lance_init_ring() 486 MEM->init.hwaddr[3] = dev->dev_addr[2]; lance_init_ring() 487 MEM->init.hwaddr[4] = dev->dev_addr[5]; lance_init_ring() 488 MEM->init.hwaddr[5] = dev->dev_addr[4]; lance_init_ring() 490 MEM->init.mode = 0x0000; lance_init_ring() 491 MEM->init.filter[0] = 0x00000000; lance_init_ring() 492 MEM->init.filter[1] = 0x00000000; lance_init_ring() 493 MEM->init.rdra = dvma_vtob(MEM->rx_head); lance_init_ring() 494 MEM->init.rlen = (RX_LOG_RING_SIZE << 13) | lance_init_ring() 495 (dvma_vtob(MEM->rx_head) >> 16); lance_init_ring() 496 MEM->init.tdra = dvma_vtob(MEM->tx_head); lance_init_ring() 497 MEM->init.tlen = (TX_LOG_RING_SIZE << 13) | lance_init_ring() 498 (dvma_vtob(MEM->tx_head) >> 16); lance_init_ring() 502 REGA(CSR1) = dvma_vtob(&(MEM->init)); lance_init_ring() 503 REGA(CSR2) = dvma_vtob(&(MEM->init)) >> 16; lance_init_ring() 548 i, MEM->rx_head[i].base, lance_start_xmit() 549 -MEM->rx_head[i].buf_length, lance_start_xmit() 550 MEM->rx_head[i].msg_length); lance_start_xmit() 553 i, MEM->tx_head[i].base, lance_start_xmit() 554 -MEM->tx_head[i].length, lance_start_xmit() 555 MEM->tx_head[i].misc ); lance_start_xmit() 612 head = &(MEM->tx_head[entry]); lance_start_xmit() 642 if ((MEM->tx_head[(entry+1) & TX_RING_MOD_MASK].flag & TMD1_OWN) == lance_start_xmit() 696 // MEM->tx_head[i].flag); lance_interrupt() 700 struct lance_tx_head *head = &(MEM->tx_head[old_tx]); lance_interrupt() 786 while( (MEM->rx_head[entry].flag & RMD1_OWN) == RMD1_OWN_HOST ) { lance_rx() 787 struct lance_rx_head *head = &(MEM->rx_head[entry]); lance_rx()
|
H A D | atarilance.c | 175 #define RIEBL_MAGIC_ADDR ((unsigned long *)(((char *)MEM) + 0xee8a)) 176 #define RIEBL_HWADDR_ADDR ((unsigned char *)(((char *)MEM) + 0xee8e)) 177 #define RIEBL_IVEC_ADDR ((unsigned short *)(((char *)MEM) + 0xfffe)) 233 #define MEM lp->mem macro 241 #define PKTBUF_ADDR(head) (((unsigned char *)(MEM)) + (head)->base) 533 MEM = (struct lance_memory *)memaddr; lance_probe1() 598 ((((unsigned short *)MEM)[i*2] & 0x0f) << 4) | lance_probe1() 599 ((((unsigned short *)MEM)[i*2+1] & 0x0f)); lance_probe1() 612 MEM->init.mode = 0x0000; /* Disable Rx and Tx. */ lance_probe1() 614 MEM->init.hwaddr[i] = dev->dev_addr[i^1]; /* <- 16 bit swap! */ lance_probe1() 615 MEM->init.filter[0] = 0x00000000; lance_probe1() 616 MEM->init.filter[1] = 0x00000000; lance_probe1() 617 MEM->init.rx_ring.adr_lo = offsetof( struct lance_memory, rx_head ); lance_probe1() 618 MEM->init.rx_ring.adr_hi = 0; lance_probe1() 619 MEM->init.rx_ring.len = RX_RING_LEN_BITS; lance_probe1() 620 MEM->init.tx_ring.adr_lo = offsetof( struct lance_memory, tx_head ); lance_probe1() 621 MEM->init.tx_ring.adr_hi = 0; lance_probe1() 622 MEM->init.tx_ring.len = TX_RING_LEN_BITS; lance_probe1() 707 MEM->tx_head[i].base = offset; lance_init_ring() 708 MEM->tx_head[i].flag = TMD1_OWN_HOST; lance_init_ring() 709 MEM->tx_head[i].base_hi = 0; lance_init_ring() 710 MEM->tx_head[i].length = 0; lance_init_ring() 711 MEM->tx_head[i].misc = 0; lance_init_ring() 717 MEM->rx_head[i].base = offset; lance_init_ring() 718 MEM->rx_head[i].flag = TMD1_OWN_CHIP; lance_init_ring() 719 MEM->rx_head[i].base_hi = 0; lance_init_ring() 720 MEM->rx_head[i].buf_length = -PKT_BUF_SZ; lance_init_ring() 721 MEM->rx_head[i].msg_length = 0; lance_init_ring() 753 i, MEM->rx_head[i].base, lance_tx_timeout() 754 -MEM->rx_head[i].buf_length, lance_tx_timeout() 755 MEM->rx_head[i].msg_length )); lance_tx_timeout() 758 i, MEM->tx_head[i].base, lance_tx_timeout() 759 -MEM->tx_head[i].length, lance_tx_timeout() 760 MEM->tx_head[i].misc )); lance_tx_timeout() 815 head = &(MEM->tx_head[entry]); lance_start_xmit() 837 if ((MEM->tx_head[(entry+1) & TX_RING_MOD_MASK].flag & TMD1_OWN) == lance_start_xmit() 886 int status = MEM->tx_head[entry].flag; lance_interrupt() 891 MEM->tx_head[entry].flag = 0; lance_interrupt() 895 int err_status = MEM->tx_head[entry].misc; lance_interrupt() 968 MEM->rx_head[entry].flag )); lance_rx() 971 while( (MEM->rx_head[entry].flag & RMD1_OWN) == RMD1_OWN_HOST ) { lance_rx() 972 struct lance_rx_head *head = &(MEM->rx_head[entry]); lance_rx() 1000 if (MEM->rx_head[(entry+i) & RX_RING_MOD_MASK].flag & lance_rx() 1135 MEM->init.hwaddr[i] = dev->dev_addr[i^1]; /* <- 16 bit swap! */ lance_set_mac_address()
|
/linux-4.1.27/arch/sh/include/mach-sh03/mach/ |
H A D | sh03.h | 13 #define PA_PCI_MEM (0xbd000000) /* PCI MEM space */
|
/linux-4.1.27/arch/sh/drivers/pci/ |
H A D | fixups-se7751.c | 78 PCIC_WRITE(SH7751_PCICONF5, 0x0c000000); /* PCI MEM address (local RAM) */ pci_fixup_pcic() 79 PCIC_WRITE(SH7751_PCICONF6, 0xd0000000); /* PCI MEM address (unused) */ pci_fixup_pcic() 81 PCIC_WRITE(SH7751_PCILSR0, 0x03f00000); /* MEM (full 64M exposed) */ pci_fixup_pcic() 82 PCIC_WRITE(SH7751_PCILSR1, 0x00000000); /* MEM (unused) */ pci_fixup_pcic() 83 PCIC_WRITE(SH7751_PCILAR0, 0x0c000000); /* MEM (direct map from PCI) */ pci_fixup_pcic() 84 PCIC_WRITE(SH7751_PCILAR1, 0x00000000); /* MEM (unused) */ pci_fixup_pcic() 91 * (16M MEM, 256K IO) is enough. If a larger space is pci_fixup_pcic()
|
H A D | pcie-sh7786.c | 48 .name = "PCIe0 MEM 0", 53 .name = "PCIe0 MEM 1", 58 .name = "PCIe0 MEM 2", 72 .name = "PCIe1 MEM 0", 77 .name = "PCIe1 MEM 1", 82 .name = "PCIe1 MEM 2", 96 .name = "PCIe2 MEM 0", 101 .name = "PCIe2 MEM 1", 106 .name = "PCIe2 MEM 2",
|
H A D | pci-sh7780.c | 38 .name = "PCI MEM 0", 43 .name = "PCI MEM 1", 51 .name = "PCI MEM 2",
|
/linux-4.1.27/arch/m68k/include/asm/ |
H A D | cmpxchg.h | 88 * Atomic compare and exchange. Compare OLD with MEM, if identical, 89 * store NEW in MEM. Return the initial value in MEM. Success is
|
H A D | io_mm.h | 35 * IO/MEM definitions for various ISA bridges
|
/linux-4.1.27/arch/sparc/include/asm/ |
H A D | cmpxchg_64.h | 61 * Atomic compare and exchange. Compare OLD with MEM, if identical, 62 * store NEW in MEM. Return the initial value in MEM. Success is
|
/linux-4.1.27/arch/blackfin/include/asm/ |
H A D | cmpxchg.h | 45 * Atomic compare and exchange. Compare OLD with MEM, if identical, 46 * store NEW in MEM. Return the initial value in MEM. Success is
|
/linux-4.1.27/arch/ia64/include/uapi/asm/ |
H A D | cmpxchg.h | 59 * Atomic compare and exchange. Compare OLD with MEM, if identical, 60 * store NEW in MEM. Return the initial value in MEM. Success is
|
/linux-4.1.27/include/uapi/linux/ |
H A D | pci.h | 38 #define PCIIOC_MMAP_IS_MEM (PCIIOC_BASE | 0x02) /* Set mmap state to MEM space. */
|
/linux-4.1.27/arch/powerpc/platforms/embedded6xx/ |
H A D | mpc10x.h | 25 * Processor: 0xc0000000 - 0xdfffffff -> PCI MEM: 0x00000000 - 0x1fffffff 26 * PCI MEM: 0x80000000 -> Processor System Memory: 0x00000000 31 * Processor: 0x80000000 - 0xbfffffff -> PCI MEM: 0x80000000 - 0xbfffffff 32 * PCI MEM: 0x00000000 -> Processor System Memory: 0x00000000
|
/linux-4.1.27/arch/mn10300/mm/ |
H A D | misalignment.c | 164 #define MEM(ADDR) (0x80000000 | (ADDR)) macro 193 { "mov", 0x60, 0xf0, 0, FMT_S0, 0, {DM1, MEM(AN0)}}, 194 { "mov", 0x70, 0xf0, 0, FMT_S0, 0, {MEM(AM0), DN1}}, 195 { "mov", 0xf000, 0xfff0, 0, FMT_D0, 0, {MEM(AM0), AN1}}, 196 { "mov", 0xf010, 0xfff0, 0, FMT_D0, 0, {AM1, MEM(AN0)}}, 205 { "mov", 0xf90a00, 0xffff00, 0, FMT_D6, AM33, {MEM(RM0), RN2}}, 206 { "mov", 0xf91a00, 0xffff00, 0, FMT_D6, AM33, {RM2, MEM(RN0)}}, 229 { "mov", 0xfc800000, 0xfff30000, 0, FMT_D4, 0, {AM1, MEM(IMM32_MEM)}}, 230 { "mov", 0xfc810000, 0xfff30000, 0, FMT_D4, 0, {DM1, MEM(IMM32_MEM)}}, 233 { "mov", 0xfca00000, 0xfffc0000, 0, FMT_D4, 0, {MEM(IMM32_MEM), AN0}}, 234 { "mov", 0xfca40000, 0xfffc0000, 0, FMT_D4, 0, {MEM(IMM32_MEM), DN0}}, 245 { "mov", 0xfe0e0000, 0xffff0f00, 0, FMT_D9, AM33, {MEM(IMM32_HIGH8_MEM), RN2}}, 248 { "mov", 0xfe1e0000, 0xffff0f00, 0, FMT_D9, AM33, {RM2, MEM(IMM32_HIGH8_MEM)}}, 254 { "movhu", 0xf060, 0xfff0, 0, FMT_D0, 0, {MEM(AM0), DN1}}, 255 { "movhu", 0xf070, 0xfff0, 0, FMT_D0, 0, {DM1, MEM(AN0)}}, 262 { "movhu", 0xf94a00, 0xffff00, 0, FMT_D6, AM33, {MEM(RM0), RN2}}, 263 { "movhu", 0xf95a00, 0xffff00, 0, FMT_D6, AM33, {RM2, MEM(RN0)}}, 280 { "movhu", 0xfc830000, 0xfff30000, 0, FMT_D4, 0, {DM1, MEM(IMM32_MEM)}}, 282 { "movhu", 0xfcac0000, 0xfffc0000, 0, FMT_D4, 0, {MEM(IMM32_MEM), DN0}}, 291 { "movhu", 0xfe4e0000, 0xffff0f00, 0, FMT_D9, AM33, {MEM(IMM32_HIGH8_MEM), RN2}}, 293 { "movhu", 0xfe5e0000, 0xffff0f00, 0, FMT_D9, AM33, {RM2, MEM(IMM32_HIGH8_MEM)}},
|
/linux-4.1.27/arch/xtensa/lib/ |
H A D | pci-auto.c | 37 * pci_ctrl->mem_space.start = <MEM space start address (PCI view)> 38 * pci_ctrl->mem_space.end = <MEM space end address (PCI view)> 39 * pci_ctrl->mem_space.base = <MEM space offset: address 0 from CPU space> 43 * pcibios_init_resource(&pci_ctrl->mem_resources[0], <MEM space start>, 44 * <MEM space end>, IORESOURCE_MEM, "PCI host bridge");
|
/linux-4.1.27/arch/arm/mm/ |
H A D | dump.c | 82 .set = "MEM/BUFFERABLE/WC", 86 .set = "MEM/CACHED/WT", 90 .set = "MEM/CACHED/WBRA", 95 .set = "MEM/MINICACHE", 100 .set = "MEM/CACHED/WBWA",
|
/linux-4.1.27/drivers/ipack/carriers/ |
H A D | tpci200.h | 113 #define VME_MEM_SPACE "MEM" 136 * @mem_phys MEM physical base address register of the slot 148 * @mem8_space Pointer to MEM space (Bar 4)
|
/linux-4.1.27/arch/alpha/include/asm/ |
H A D | xchg.h | 126 * Atomic compare and exchange. Compare OLD with MEM, if identical, 127 * store NEW in MEM. Return the initial value in MEM. Success is
|
H A D | core_marvel.h | 271 #define IO7_MEM_SPACE (2UL * 1024 * 1024 * 1024) /* 2GB MEM */
|
H A D | core_mcpcia.h | 178 * The canonical non-remaped I/O and MEM addresses have these values
|
H A D | core_titan.h | 308 * The canonical non-remaped I/O and MEM addresses have these values
|
H A D | core_tsunami.h | 267 * The canonical non-remaped I/O and MEM addresses have these values
|
H A D | uaccess.h | 456 * as in a MEM format instruction. This lets us emit our three
|
H A D | core_t2.h | 235 struct el_t2_frame_header elcm_hdr; /* ID$MEM-FERR = 0x08 */
|
/linux-4.1.27/drivers/pci/hotplug/ |
H A D | ibmphp_res.c | 110 case MEM: alloc_bus_range() 141 case MEM: alloc_bus_range() 227 rc = alloc_bus_range(&newbus, &newrange, curr, MEM, 1); ibmphp_rsrc_init() 236 rc = alloc_bus_range (&bus_cur, &newrange, curr, MEM, 0); ibmphp_rsrc_init() 241 rc = alloc_bus_range(&newbus, &newrange, curr, MEM, 1); ibmphp_rsrc_init() 310 new_mem->type = MEM; ibmphp_rsrc_init() 398 case MEM: add_bus_range() 423 case MEM: add_bus_range() 471 case MEM: update_resources() 516 case MEM: fix_me() 534 case MEM: fix_me() 626 case MEM: ibmphp_add_resource() 656 case MEM: ibmphp_add_resource() 673 case MEM: ibmphp_add_resource() 725 case MEM: ibmphp_add_resource() 750 case MEM: ibmphp_add_resource() 804 case MEM: ibmphp_remove_resource() 885 case MEM: ibmphp_remove_resource() 897 case MEM: ibmphp_remove_resource() 909 case MEM: ibmphp_remove_resource() 947 case MEM: find_range() 967 * can fit w/i our list of available IO/MEM/PFMEM resources. If cannot, returns -EINVAL, 1018 case MEM: ibmphp_check_resource() 1217 case MEM: ibmphp_check_resource() 1283 case MEM: ibmphp_check_resource() 1469 if (ibmphp_find_resource (bus_prev, range_cur->start, &res, MEM) < 0) remove_ranges() 1516 case MEM: ibmphp_find_resource() 1722 mem->type = MEM; once_over() 1906 case MEM: range_exists_already() 2063 if (!range_exists_already (range, bus_sec, MEM)) { update_bridge_ranges() 2064 add_bus_range (MEM, range, bus_sec); update_bridge_ranges() 2079 if (ibmphp_find_resource (bus_cur, start_address, &mem, MEM)) { update_bridge_ranges() 2086 mem->type = MEM; update_bridge_ranges()
|
H A D | ibmphp_pci.c | 465 mem_tmp->type = MEM; configure_device() 503 debug ("REGULAR MEM SPACE\n"); configure_device() 515 mem[count]->type = MEM; configure_device() 729 mem_tmp->type = MEM; configure_bridge() 770 bus_mem[count]->type = MEM; configure_bridge() 863 mem->type = MEM; configure_bridge() 900 mem_tmp->type = MEM; configure_bridge() 1312 if (ibmphp_find_resource (bus, start_address, &mem, MEM) < 0) { unconfigure_boot_device() 1313 err ("cannot find corresponding MEM resource to remove\n"); unconfigure_boot_device() 1424 if (ibmphp_find_resource (bus, start_address, &mem, MEM) < 0) { unconfigure_boot_bridge() 1425 err ("cannot find corresponding MEM resource to remove\n"); unconfigure_boot_bridge()
|
H A D | ibmphp.h | 291 #define MEM 0 macro 367 int type; /* MEM, IO, PFMEM */
|
H A D | ibmphp_ebda.c | 46 * reconstruct linked lists about all system resource(MEM, PFM, IO)
|
/linux-4.1.27/arch/unicore32/include/mach/ |
H A D | PKUnity.h | 31 * 0x90000000 - 0x97FFFFFF 128MB PCI AHB-PCI MEM-mapping 32 * 0x98000000 - 0x9FFFFFFF 128MB PCI PCI-AHB MEM-mapping
|
/linux-4.1.27/arch/mips/pci/ |
H A D | pci-ip32.c | 88 .name = "SGI O2 PCI MEM", 102 .name = "SGI O2 PCI MEM",
|
H A D | pci-lasat.c | 20 .name = "LASAT PCI MEM",
|
H A D | pci-virtio-guest.c | 101 .name = "Virtio MEM",
|
H A D | pci-malta.c | 36 .name = "Bonito PCI MEM", 48 .name = "GT-64120 PCI MEM", 58 .name = "MSC PCI MEM",
|
H A D | pci-ip27.c | 68 bc->mem.name = "Bridge PCI MEM"; bridge_probe() 74 bc->io.name = "Bridge IO MEM"; bridge_probe()
|
H A D | pci-xlp.c | 157 .name = "XLP PCI MEM", 164 .name = "XLP IO MEM",
|
H A D | pci-xlr.c | 139 .name = "XLR PCI MEM", 146 .name = "XLR IO MEM",
|
H A D | ops-tx4927.c | 287 /* PCI->GB mappings (MEM 512MB (64MB on R1.x)) */ tx4927_pcic_setup() 297 /* PCI->GB mappings (MEM 16MB) */ tx4927_pcic_setup() 301 /* PCI->GB mappings (MEM 1MB) */ tx4927_pcic_setup()
|
H A D | pci-bcm1480ht.c | 175 .name = "BCM1480 HT MEM",
|
H A D | pci-rt2880.c | 136 .name = "PCI MEM space",
|
H A D | pci-bcm1480.c | 181 .name = "BCM1480 PCI MEM",
|
H A D | pci-lantiq.c | 149 /* BUS Master/IO/MEM access */ ltq_pci_startup()
|
H A D | pci-rc32434.c | 158 /* Setup PCILBA1 as MEM */ rc32434_pcibridge_init()
|
H A D | pci-sb1250.c | 190 .name = "SB1250 PCI MEM",
|
H A D | pci.c | 151 pr_info(" MEM 0x%016llx..0x%016llx\n", pci_load_of_ranges()
|
H A D | pci-octeon.c | 333 .name = "Octeon PCI MEM", 590 /* PCI I/O and PCI MEM values */ octeon_pci_setup()
|
H A D | pci-alchemy.c | 54 /* IO/MEM resources for PCI. Keep the memres in sync with __fixup_bigphys_addr
|
H A D | pcie-octeon.c | 134 * Return the Core virtual base address for PCIe MEM access. Memory is 1792 .name = "Octeon PCIe0 MEM", 1813 .name = "Octeon PCIe1 MEM", 1834 .name = "Virtual PCIe MEM",
|
/linux-4.1.27/arch/arm/mach-orion5x/include/mach/ |
H A D | orion5x.h | 21 * e0000000 PCIe MEM space 22 * e8000000 PCI MEM space
|
/linux-4.1.27/drivers/staging/vt6656/ |
H A D | usbpipe.c | 29 * vnt_control_out - Write variable length bytes to MEM/BB/MAC/EEPROM 30 * vnt_control_in - Read variable length bytes from MEM/BB/MAC/EEPROM 31 * vnt_control_out_u8 - Write one byte to MEM/BB/MAC/EEPROM 32 * vnt_control_in_u8 - Read one byte from MEM/BB/MAC/EEPROM
|
/linux-4.1.27/include/linux/platform_data/ |
H A D | dma-ste-dma40.h | 91 * @dir: MEM 2 MEM, PERIPH 2 MEM , MEM 2 PERIPH, PERIPH 2 PERIPH
|
/linux-4.1.27/arch/mips/pnx833x/common/ |
H A D | setup.c | 56 /* IO/MEM resources. */ plat_mem_setup()
|
/linux-4.1.27/arch/arm/mach-prima2/ |
H A D | sleep.S | 40 @ read the MEM ctl register and set the self
|
/linux-4.1.27/arch/mips/txx9/generic/ |
H A D | pci.c | 93 { .name = "PCI MEM" }, 142 * MEM, then search a region for PCI IO. txx9_alloc_pci_controller() 162 /* search free region for PCI MEM */ txx9_alloc_pci_controller() 216 printk(KERN_INFO "PCI: IO %pR MEM %pR\n", txx9_alloc_pci_controller() 219 /* register_pci_controller() will request MEM resource */ txx9_alloc_pci_controller()
|
/linux-4.1.27/arch/powerpc/boot/ |
H A D | mv64x60.c | 333 /* PCI MEM -> system memory, et. al. setup */ 416 /* Disable all windows but PCI MEM -> Bridge's regs window */ mv64x60_config_pci_windows() 436 /* Map PCI MEM addr 0 -> System Mem addr 0 */ mv64x60_config_pci_windows() 450 /* Set PCI MEM->bridge's reg window to where they are in CPU mem map */ mv64x60_config_pci_windows() 459 enables &= ~0x1; /* Enable PCI MEM -> System Mem window 0 */ mv64x60_config_pci_windows() 463 /* CPU -> PCI I/O & MEM setup */
|
H A D | cuboot-c2k.c | 92 case 0x02000000: /* PCI MEM Space */ c2k_bridge_setup()
|
H A D | prpmc2800.c | 371 case 0x02000000: /* PCI MEM Space */ prpmc2800_bridge_setup()
|
/linux-4.1.27/lib/zlib_inflate/ |
H A D | inflate.h | 44 MEM, /* got an inflate() memory error -- remain here until reset */ enumerator in enum:__anon14047 51 (most modes can go to the BAD or MEM mode -- not shown for clarity)
|
H A D | inflate.c | 703 case MEM: zlib_inflate()
|
/linux-4.1.27/arch/sparc/kernel/ |
H A D | pci_common.c | 446 /* 32-bit MEM space, 2GB */ pci_determine_mem_io_space() 454 /* XXX 64-bit MEM handling XXX */ pci_determine_mem_io_space() 464 (!saw_io ? "IO" : "MEM")); pci_determine_mem_io_space() 468 printk("%s: PCI IO[%llx] MEM[%llx]\n", pci_determine_mem_io_space()
|
H A D | leon_pci_grpci1.c | 605 priv->info.mem_space.name = "GRPCI1 PCI MEM Space"; grpci1_of_probe()
|
H A D | leon_pci_grpci2.c | 792 priv->info.mem_space.name = "GRPCI2 PCI MEM Space"; grpci2_of_probe()
|
H A D | pci.c | 727 * this to perform a raw mmap() of the I/O or MEM space behind
|
/linux-4.1.27/arch/arm/mach-realview/include/mach/ |
H A D | board-pba8.h | 67 #define REALVIEW_PBA8_PCI_MEM_BASE 0xA0000000 /* MEM Region on AHB */
|
H A D | board-pb11mp.h | 69 #define REALVIEW_PB11MP_PCI_MEM_BASE 0xA0000000 /* MEM Region on AHB */
|
H A D | board-pbx.h | 77 #define REALVIEW_PBX_PCI_MEM_BASE 0xA0000000 /* MEM Region on AHB */
|
/linux-4.1.27/arch/x86/include/asm/ |
H A D | cmpxchg.h | 81 * Atomic compare and exchange. Compare OLD with MEM, if identical, 82 * store NEW in MEM. Return the initial value in MEM. Success is
|
/linux-4.1.27/arch/mips/sni/ |
H A D | pcimt.c | 116 .name = "PCIMT IO MEM", 170 .name = "PCIMT PCI MEM", 181 /* request MEM space for devices used on all i[345]86 PCs */ sni_pcimt_resource_init()
|
H A D | pcit.c | 147 .name = "PCIT PCI MEM",
|
/linux-4.1.27/drivers/isdn/hardware/eicon/ |
H A D | debuglib.c | 62 DBG_FUNC(MEM) DBG_FUNC()
|
H A D | os_4bri.c | 137 ** BAR0 - MEM - 0x100 - CONFIG MEM 139 ** BAR2 - MEM - MQ_MEMORY_SIZE (MQ2_MEMORY_SIZE on Rev.2) - SDRAM 140 ** BAR3 - MEM - 0x2000 (0x10000 on Rev.2) - CNTRL
|
H A D | debuglib.h | 144 DBG_DECL(MEM) 198 #define DBG_MEM(args) DBG_TEST(MEM, args)
|
H A D | os_bri.c | 71 ** BAR0 - MEM Addr - 0x80 - NOT USED
|
/linux-4.1.27/drivers/staging/fbtft/ |
H A D | fb_hx8353d.c | 55 /* MEM ACCESS */ init_display()
|
/linux-4.1.27/drivers/pcmcia/ |
H A D | rsrc_iodyn.c | 2 * rsrc_iodyn.c -- Resource management routines for MEM-static sockets.
|
H A D | xxs1500_ss.c | 249 * to access the I/O or MEM address directly, without xxs1500_pcmcia_probe()
|
H A D | db1xxx_ss.c | 506 * to access the I/O or MEM address directly, without db1x_pcmcia_socket_probe()
|
H A D | pcmcia_cis.c | 226 /* MEM window settings? */ pcmcia_do_loop_config()
|
H A D | rsrc_nonstatic.c | 1001 /* if we got at least one of IO, and one of MEM, we can be glad and
|
/linux-4.1.27/arch/mips/alchemy/common/ |
H A D | setup.c | 67 /* IO/MEM resources. */ plat_mem_setup()
|
/linux-4.1.27/drivers/platform/x86/ |
H A D | apple-gmux.c | 508 * VGA. In addition changing IO+MEM ownership between IGP and dGPU gmux_probe() 509 * disables IO/MEM used for backlight control on some systems. gmux_probe() 510 * Lock IO+MEM to GPU with active IO to prevent switch. gmux_probe() 515 pr_err("IO+MEM vgaarb-locking for PCI:%s failed\n", gmux_probe()
|
/linux-4.1.27/arch/arm64/mm/ |
H A D | dump.c | 135 .set = "MEM/NORMAL-NC", 139 .set = "MEM/NORMAL",
|
/linux-4.1.27/arch/arm/mach-mv78xx0/ |
H A D | pcie.c | 81 "PCIe %d.%d MEM", pp->maj, pp->min); mv78xx0_pcie_preinit() 90 panic("can't allocate PCIe MEM sub-space"); mv78xx0_pcie_preinit()
|
/linux-4.1.27/arch/alpha/kernel/ |
H A D | sys_nautilus.c | 195 .name = "Irongate PCI MEM", 239 printk(KERN_ERR "Failed to request MEM on hose 0\n"); nautilus_init_pci()
|
H A D | core_mcpcia.c | 330 printk(KERN_ERR "Failed to request MEM on hose %d\n", h); mcpcia_new_hose()
|
H A D | core_t2.c | 466 *(vulp)T2_HAE_1 = 0; mb(); /* Sparse MEM HAE */ t2_init_arch()
|
H A D | core_tsunami.c | 288 printk(KERN_ERR "Failed to request MEM on hose %d\n", index); tsunami_init_one_pchip()
|
H A D | core_wildfire.c | 94 printk(KERN_ERR "Failed to request MEM on qbb %d hose %d\n", wildfire_init_hose()
|
H A D | core_marvel.c | 253 hose->mem_space->name = mk_resource_name(io7->pe, port, "MEM"); io7_init_hose() 260 printk(KERN_ERR "Failed to request MEM on hose %d\n", io7_init_hose()
|
H A D | core_titan.c | 290 printk(KERN_ERR "Failed to request MEM on hose %d\n", index); titan_init_one_pachip_port()
|
/linux-4.1.27/drivers/net/wireless/ti/wl1251/ |
H A D | io.c | 120 * |MEM | ... | |
|
/linux-4.1.27/drivers/net/wireless/ti/wlcore/ |
H A D | io.c | 123 * |MEM | ... | |
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/ |
H A D | memx.c | 158 nv_debug(memx->pmu, " MEM TRAIN\n"); nvkm_memx_train()
|
/linux-4.1.27/drivers/pnp/ |
H A D | base.h | 71 unsigned long type; /* IORESOURCE_{IO,MEM,IRQ,DMA} */
|
H A D | resource.c | 600 dev_err(&dev->dev, "can't add resource for MEM %#llx-%#llx\n", pnp_add_mem_resource()
|
/linux-4.1.27/arch/mips/netlogic/xlr/ |
H A D | platform-flash.c | 139 * FLASH_BAR (on the MEM/IO bridge) gives the base for mapping all the
|
/linux-4.1.27/arch/arm/mach-dove/ |
H A D | pcie.c | 65 "PCIe %d MEM", pp->index); dove_pcie_setup()
|
/linux-4.1.27/arch/arm/mach-lpc32xx/ |
H A D | pm.c | 81 * Both STANDBY and MEM suspend states are handled the same with no
|
/linux-4.1.27/arch/powerpc/platforms/powernv/ |
H A D | opal-lpc.c | 205 * access type. IO and MEM only support byte acceses, lpc_debug_read() 296 * access type. IO and MEM only support byte acceses, lpc_debug_write()
|
/linux-4.1.27/arch/arm/mach-omap2/ |
H A D | powerdomain.h | 50 * PWRDM_HAS_MPU_QUIRK - MPU pwr domain has MEM bank 0 bits in MEM
|
H A D | omap_device.c | 286 * @flags: Type of resources to include when counting (IRQ/DMA/MEM) 407 * does for MEM & IRQ resource) and we should respect/use these omap_device_alloc() 409 * If pdev->num_resources > 0, we assume that MEM & IRQ resources omap_device_alloc()
|
H A D | omap_hwmod.c | 3383 * @flags: Type of resources to include when counting (IRQ/DMA/MEM)
|
/linux-4.1.27/sound/soc/blackfin/ |
H A D | bf6xx-sport.c | 281 dev_err(dev, "No tx MEM resource\n"); sport_get_resource() 288 dev_err(dev, "No rx MEM resource\n"); sport_get_resource()
|
H A D | bf5xx-sport.c | 824 dev_err(dev, "no MEM resource\n"); sport_config_pdev()
|
/linux-4.1.27/drivers/pci/host/ |
H A D | pcie-designware.c | 407 pp->mem.name = "MEM"; dw_pcie_host_init() 411 /* Find the untranslated MEM space address */ dw_pcie_host_init() 550 /* Program viewport 0 : OUTBOUND : MEM */ dw_pcie_prog_viewport_mem_outbound()
|
H A D | pci-mvebu.c | 726 pcie->mem.name = "PCI MEM"; mvebu_pcie_setup()
|
/linux-4.1.27/drivers/isdn/hisax/ |
H A D | telespci.c | 344 "TelesPCI: wrong HSCX versions check IO/MEM addresses\n"); setup_telespci()
|
H A D | teles0.c | 359 "Teles0: wrong HSCX versions check IO/MEM addresses\n"); setup_teles0()
|
/linux-4.1.27/drivers/mtd/maps/ |
H A D | sbc_gxx.c | 211 printk( KERN_INFO"%s: IO:0x%x-0x%x MEM:0x%x-0x%x\n", init_sbc_gxx()
|
/linux-4.1.27/drivers/media/usb/dvb-usb-v2/ |
H A D | rtl28xxu.h | 214 #define USB_MEM_BIST 0x2F9C /* MEM BIST test */
|
H A D | lmedm04.c | 186 info("MEM Error no memory"); lme2510_usb_talk()
|
/linux-4.1.27/drivers/of/ |
H A D | of_pci.c | 205 snprintf(range_type, 4, "MEM"); of_pci_get_host_bridge_resources()
|
/linux-4.1.27/drivers/parport/ |
H A D | parport_ax88796.c | 291 dev_err(_dev, "no MEM specified\n"); parport_ax88796_probe()
|
/linux-4.1.27/drivers/input/keyboard/ |
H A D | davinci_keyscan.c | 238 dev_err(dev, "can't ioremap MEM resource.\n"); davinci_ks_probe()
|
/linux-4.1.27/arch/sh/kernel/ |
H A D | io_trapped.c | 64 /* support IORESOURCE_IO _or_ MEM, not both */ register_trapped_io()
|
/linux-4.1.27/arch/mips/include/asm/mach-loongson/cs5536/ |
H A D | cs5536.h | 62 /* MEM space for ALL USB modules */
|
/linux-4.1.27/arch/mips/include/asm/mips-boards/ |
H A D | msc01_pci.h | 170 /* The defines below are ONLY valid for a MEM bar! */
|
/linux-4.1.27/drivers/usb/isp1760/ |
H A D | isp1760-if.c | 98 if (!request_mem_region(mem_start, mem_length, "ISP1761 IO MEM")) { isp1761_pci_init()
|
/linux-4.1.27/drivers/video/fbdev/ |
H A D | pmag-ba-fb.c | 173 /* Request the I/O MEM resource. */ pmagbafb_probe()
|
H A D | pmagb-b-fb.c | 280 /* Request the I/O MEM resource. */ pmagbbfb_probe()
|
/linux-4.1.27/arch/powerpc/xmon/ |
H A D | spu-insns.h | 341 1 rt[0] = open(MEM[ra[0]], ra[1]) 343 3 rt[0] = read(ra[0], MEM[ra[1]], ra[2]) 344 4 rt[0] = write(ra[0], MEM[ra[1]], ra[2]) 345 5 printf(MEM[ra[0]], ra[1], ra[2], ra[3])
|
/linux-4.1.27/arch/parisc/kernel/ |
H A D | pci.c | 211 /* If it's not IO, then it's gotta be MEM */ pcibios_align_resource()
|
/linux-4.1.27/arch/ia64/sn/kernel/ |
H A D | io_init.c | 122 * legacy IO and MEM space. This needs to
|
H A D | setup.c | 663 * Set up addresses of PIO/MEM write status registers. sn_cpu_init()
|
/linux-4.1.27/arch/m68k/kernel/ |
H A D | setup_no.c | 225 pr_debug("MEMORY -> ROMFS=0x%p-0x%06lx MEM=0x%06lx-0x%06lx\n ", setup_arch()
|
/linux-4.1.27/include/linux/ |
H A D | ipack.h | 90 * @mem_space: Virtual address to MEM space.
|
/linux-4.1.27/arch/microblaze/pci/ |
H A D | pci-common.c | 437 mmap_state == pci_mmap_mem ? "MEM" : "IO", pci_mmap_legacy_page_range() 622 pr_info(" MEM 0x%016llx..0x%016llx -> 0x%016llx %s\n", pci_process_bridge_OF_ranges() 1316 /* Workaround for lack of MEM resource only on 32-bit */ pcibios_setup_phb_resources() 1324 pr_debug("PCI: PHB MEM resource %d = %016llx-%016llx [%lx]\n", pcibios_setup_phb_resources() 1330 pr_debug("PCI: PHB MEM offset = %016llx\n", pcibios_setup_phb_resources()
|
/linux-4.1.27/drivers/mfd/ |
H A D | asic3.c | 889 dev_dbg(asic->dev, "no SDIO MEM resource\n"); asic3_mfd_probe() 977 dev_err(asic->dev, "no MEM resource\n"); asic3_probe()
|
H A D | sm501.c | 775 * Fill in an MEM resource for a sub device
|
/linux-4.1.27/arch/ia64/include/asm/sn/ |
H A D | tioca.h | 477 /* PCI MEM Cycles - mapped to PCI with CA_PIO_ADDR_OFFSET of ca_control1 */ 482 /* PCI MEM Cycles - mapped to PCI Address 0x00000000-0xbfffffff */
|
H A D | tioce.h | 745 /* PCI MEM Space */
|
/linux-4.1.27/drivers/isdn/hysdn/ |
H A D | hysdn_defs.h | 100 /* PCI 32 bit parms for IO and MEM */
|
/linux-4.1.27/drivers/scsi/aic7xxx/ |
H A D | aic7xxx_osm_pci.c | 427 printk("aic7xxx: PCI%d:%d:%d MEM region 0x%llx " ahc_pci_map_registers()
|
H A D | aic79xx_osm_pci.c | 348 printk("aic79xx: PCI%d:%d:%d MEM region 0x%llx " ahd_pci_map_registers()
|
/linux-4.1.27/drivers/regulator/ |
H A D | da9052-regulator.c | 64 * BUCK-MEM and BUCK-PERI
|
/linux-4.1.27/arch/parisc/include/asm/ |
H A D | pdcpat.h | 139 /* PDC PAT MEM -- Manage memory page deallocation */
|
/linux-4.1.27/arch/arm/probes/kprobes/ |
H A D | test-core.h | 92 * To specify arguments for a test case the TEST_ARG_{REG,PTR,MEM} macros are
|
/linux-4.1.27/arch/frv/mb93090-mb00/ |
H A D | pci-vdk.c | 362 printk("PCI MEM window: %08llx-%08llx\n", pcibios_init()
|
/linux-4.1.27/sound/pci/hda/ |
H A D | hda_tegra.c | 198 /* Enable MEM/IO space and bus master */ hda_tegra_init()
|
/linux-4.1.27/drivers/gpu/vga/ |
H A D | vgaarb.c | 62 unsigned int mem_lock_cnt; /* legacy MEM lock count */ 64 unsigned int mem_norm_cnt; /* normal MEM count */ 222 * if we don't, then we must tie both IO and MEM resources __vga_tryget()
|
/linux-4.1.27/arch/tile/kernel/ |
H A D | pci_gx.c | 922 pr_err("PCI: MEM PIO alloc failure on TRIO %d mac %d, give up\n", pcibios_init() 931 * For PIO MEM, the bus_address_hi parameter is hard-coded 0 pcibios_init() 940 pr_err("PCI: MEM PIO init failure on TRIO %d mac %d, give up\n", pcibios_init()
|
/linux-4.1.27/drivers/net/wireless/iwlegacy/ |
H A D | csr.h | 354 /* HPET MEM debug */
|
/linux-4.1.27/drivers/pinctrl/sh-pfc/ |
H A D | core.c | 39 /* Count the MEM and IRQ resources. */ sh_pfc_map_resources()
|
/linux-4.1.27/sound/soc/sh/rcar/ |
H A D | dma.c | 465 #define MOD_MAX 4 /* MEM/SSI/SRC/DVC */ rsnd_dma_of_path()
|
/linux-4.1.27/drivers/edac/ |
H A D | i5100_edac.c | 890 /* MEM[1:0]EINJMSK0 i5100_do_inject() 908 /* MEM[1:0]EINJMSK1 i5100_do_inject()
|
H A D | mce_amd.c | 59 static const char * const ii_msgs[] = { "MEM", "RESV", "IO", "GEN" };
|
/linux-4.1.27/arch/powerpc/sysdev/ |
H A D | fsl_pci.c | 156 pr_debug("PCI MEM resource start 0x%016llx, size 0x%016llx.\n", setup_one_atmu() 210 /* Setup outbound MEM window */ setup_pci_atmu()
|
/linux-4.1.27/arch/powerpc/kernel/ |
H A D | pci-common.c | 567 mmap_state == pci_mmap_mem ? "MEM" : "IO", pci_mmap_legacy_page_range() 736 " MEM 0x%016llx..0x%016llx -> 0x%016llx %s\n", pci_process_bridge_OF_ranges() 1534 pr_debug("PCI: PHB MEM resource %d = %08llx-%08llx [%lx] off 0x%08llx\n", i, pcibios_setup_phb_resources()
|
/linux-4.1.27/drivers/ide/ |
H A D | setup-pci.c | 327 "reported as MEM for port %d!\n", ide_hw_configure()
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/ |
H A D | iwl-csr.h | 420 /* HPET MEM debug */
|
/linux-4.1.27/drivers/net/wireless/iwlwifi/mvm/ |
H A D | fw.c | 474 IWL_DEBUG_INFO(mvm, "SHARED MEM CFG: got memory offsets/sizes\n"); iwl_mvm_get_shared_mem_conf()
|
/linux-4.1.27/drivers/staging/comedi/drivers/ |
H A D | plx9080.h | 275 /*** MAILBOX #(-1) - MEM ACCESS STS ***/
|
/linux-4.1.27/arch/arm/kernel/ |
H A D | traps.c | 631 * Return zero in r0 if *MEM was changed or non-zero if no exchange arm_syscall()
|
/linux-4.1.27/drivers/net/ethernet/smsc/ |
H A D | smc91x.c | 1238 DBG(2, dev, "INT 0x%02x MASK 0x%02x MEM 0x%04x FIFO 0x%04x\n", smc_interrupt() 1352 PRINTK(dev, "TX timeout (INT 0x%02x INTMASK 0x%02x MEM 0x%04x FIFO 0x%04x EPH_ST 0x%04x)\n", smc_timeout()
|
H A D | smc9194.c | 1004 netdev_info(dev, "%s(r:%d) at %#3x IRQ:%d INTF:%s MEM:%db ", smc_probe()
|
/linux-4.1.27/sound/usb/ |
H A D | mixer.c | 34 * - RANGE and MEM set commands (UAC2) 35 * - RANGE and MEM interrupt dispatchers (UAC2)
|
/linux-4.1.27/drivers/net/ethernet/8390/ |
H A D | ax88796.c | 878 dev_err(&pdev->dev, "no MEM specified\n"); ax_probe()
|
/linux-4.1.27/drivers/net/ethernet/i825xx/ |
H A D | sun3_82586.c | 28 static int rfdadd = 0; /* rfdadd=1 may be better for 8K MEM cards */
|
/linux-4.1.27/drivers/net/ethernet/xilinx/ |
H A D | ll_temac_main.c | 1078 dev_dbg(&op->dev, "MEM base: %p\n", lp->sdma_regs); temac_of_probe()
|
H A D | xilinx_axienet_main.c | 1572 dev_dbg(&op->dev, "MEM base: %p\n", lp->dma_regs); axienet_of_probe()
|
/linux-4.1.27/drivers/spi/ |
H A D | spi-s3c64xx.c | 1048 dev_err(&pdev->dev, "Unable to get SPI MEM resource\n"); s3c64xx_spi_probe()
|
/linux-4.1.27/drivers/pinctrl/bcm/ |
H A D | pinctrl-bcm281xx.c | 1409 dev_err(&pdev->dev, "Failed to ioremap MEM resource\n"); bcm281xx_pinctrl_probe()
|
/linux-4.1.27/drivers/crypto/ |
H A D | atmel-aes.c | 1369 dev_err(dev, "no MEM resource info\n"); atmel_aes_probe()
|
H A D | atmel-sha.c | 1378 dev_err(dev, "no MEM resource info\n"); atmel_sha_probe()
|
H A D | atmel-tdes.c | 1390 dev_err(dev, "no MEM resource info\n"); atmel_tdes_probe()
|
H A D | omap-aes.c | 1136 dev_err(dev, "no MEM resource info\n"); omap_aes_get_res_pdev()
|
H A D | omap-des.c | 1072 dev_err(dev, "no MEM resource info\n"); omap_des_probe()
|
H A D | omap-sham.c | 1863 dev_err(dev, "no MEM resource info\n"); omap_sham_get_res_pdev()
|
/linux-4.1.27/arch/tile/mm/ |
H A D | init.c | 835 printk(KERN_DEBUG " MEM%d %#lx - %#lx\n", mem_init()
|
/linux-4.1.27/arch/mips/cavium-octeon/ |
H A D | setup.c | 818 if ((strncmp(arg, "MEM=", 4) == 0) || prom_init()
|
/linux-4.1.27/drivers/tty/serial/ |
H A D | serial_txx9.c | 1105 "(IO%lx MEM%llx IRQ%d): %d\n", i, serial_txx9_probe()
|
/linux-4.1.27/drivers/usb/phy/ |
H A D | phy-fsl-usb.c | 867 /* We don't require predefined MEM/IRQ resource index */ usb_otg_start()
|
/linux-4.1.27/net/rxrpc/ |
H A D | ar-ack.c | 69 "---", "REQ", "DUP", "OOS", "WIN", "MEM", "PNG", "PNR", "DLY", rxrpc_acks()
|
/linux-4.1.27/drivers/staging/dgap/ |
H A D | dgap.h | 413 #define MEM 80 macro
|
H A D | dgap.c | 270 { MEM, "mem" }, 271 { MEM, "memory" }, 716 case MEM: /* memory address */ dgap_parsefile()
|
/linux-4.1.27/drivers/staging/vt6655/ |
H A D | device_main.c | 1758 "len in MEM %x, BAR %d\n", len, i); vt6655_probe()
|
/linux-4.1.27/drivers/gpu/drm/ast/ |
H A D | ast_post.c | 100 /* disable standard IO/MEM decode if secondary */ ast_set_def_ext_reg()
|
/linux-4.1.27/drivers/gpu/drm/ |
H A D | drm_modes.c | 1033 MODE_STATUS(MEM),
|
/linux-4.1.27/drivers/dma/ipu/ |
H A D | ipu_idmac.c | 1786 * We need two MEM resources - with IPU-common and Image Converter registers,
|
/linux-4.1.27/arch/x86/kernel/ |
H A D | pci-calgary_64.c | 1554 /* Don't give out TCEs that map MEM resources */ calgary_fixup_one_tce_space()
|
/linux-4.1.27/drivers/net/ethernet/adaptec/ |
H A D | starfire.c | 671 dev_err(d, "no PCI MEM resources, aborting\n"); starfire_init_one()
|
/linux-4.1.27/drivers/net/wireless/rtlwifi/ |
H A D | pci.c | 2240 /* MEM map */ rtl_pci_probe()
|
H A D | wifi.h | 1322 /*PCI MEM map */
|
/linux-4.1.27/drivers/parisc/ |
H A D | lba_pci.c | 1042 /* used to fix up pre-initialized MEM BARs */ lba_pat_resources()
|
/linux-4.1.27/drivers/pci/ |
H A D | probe.c | 1173 dev_info(&dev->dev, "device has non-compliant BARs; disabling IO/MEM decoding\n"); pci_setup_device()
|
/linux-4.1.27/drivers/gpu/drm/radeon/ |
H A D | r600_cs.c | 853 DRM_ERROR("vline WAIT_REG_MEM waiting on MEM instead of REG\n"); r600_cs_common_vline_parse()
|
/linux-4.1.27/drivers/gpu/drm/vmwgfx/ |
H A D | svga_reg.h | 200 * device and the driver: the FIFO ('MEM') and the framebuffer. GMRs
|
/linux-4.1.27/drivers/atm/ |
H A D | ambassador.c | 2216 " IO %llx, IRQ %u, MEM %p", amb_probe()
|
H A D | horizon.c | 2706 PRINTD(DBG_INFO, "found Madge ATM adapter (hrz) at: IO %x, IRQ %u, MEM %p", hrz_probe()
|
H A D | idt77252.c | 3689 printk("%s: ABR SAR (Rev %c): MEM %08lx SRAM %08lx [%u KB]\n", idt77252_init_one()
|
/linux-4.1.27/drivers/gpu/drm/i915/ |
H A D | intel_pm.c | 261 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n"); intel_get_cxsr_latency() 647 DRM_DEBUG_KMS("Unknown FSB/MEM found, disable CxSR\n"); pineview_update_wm()
|
/linux-4.1.27/drivers/tty/serial/8250/ |
H A D | 8250_core.c | 3708 "(IO%lx MEM%llx IRQ%d): %d\n", i, serial8250_probe()
|
/linux-4.1.27/drivers/scsi/ |
H A D | ips.c | 6916 /* Init MEM/IO addresses to 0 */ ips_init_phase1()
|
/linux-4.1.27/drivers/message/fusion/ |
H A D | mptbase.c | 1664 "MEM failed\n", ioc->name); mpt_mapresources()
|