/Linux-v4.19/drivers/scsi/ |
D | esp_scsi.c | 57 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 62 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 67 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 72 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 77 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 82 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 87 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 92 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 97 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 102 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ [all …]
|
D | jazz_esp.c | 31 static void jazz_esp_write8(struct esp *esp, u8 val, unsigned long reg) in jazz_esp_write8() argument 33 *(volatile u8 *)(esp->regs + reg) = val; in jazz_esp_write8() 36 static u8 jazz_esp_read8(struct esp *esp, unsigned long reg) in jazz_esp_read8() argument 38 return *(volatile u8 *)(esp->regs + reg); in jazz_esp_read8() 41 static dma_addr_t jazz_esp_map_single(struct esp *esp, void *buf, in jazz_esp_map_single() argument 44 return dma_map_single(esp->dev, buf, sz, dir); in jazz_esp_map_single() 47 static int jazz_esp_map_sg(struct esp *esp, struct scatterlist *sg, in jazz_esp_map_sg() argument 50 return dma_map_sg(esp->dev, sg, num_sg, dir); in jazz_esp_map_sg() 53 static void jazz_esp_unmap_single(struct esp *esp, dma_addr_t addr, in jazz_esp_unmap_single() argument 56 dma_unmap_single(esp->dev, addr, sz, dir); in jazz_esp_unmap_single() [all …]
|
D | sun_esp.c | 31 sbus_readl(esp->dma_regs + (REG)) 33 sbus_writel((VAL), esp->dma_regs + (REG)) 46 static int esp_sbus_setup_dma(struct esp *esp, struct platform_device *dma_of) in esp_sbus_setup_dma() argument 48 esp->dma = dma_of; in esp_sbus_setup_dma() 50 esp->dma_regs = of_ioremap(&dma_of->resource[0], 0, in esp_sbus_setup_dma() 53 if (!esp->dma_regs) in esp_sbus_setup_dma() 58 esp->dmarev = dvmarev0; in esp_sbus_setup_dma() 61 esp->dmarev = dvmaesc1; in esp_sbus_setup_dma() 64 esp->dmarev = dvmarev1; in esp_sbus_setup_dma() 67 esp->dmarev = dvmarev2; in esp_sbus_setup_dma() [all …]
|
D | zorro_esp.c | 160 struct esp *esp; /* our ESP instance - for Scsi_host* */ member 175 static void zorro_esp_write8(struct esp *esp, u8 val, unsigned long reg) in zorro_esp_write8() argument 177 writeb(val, esp->regs + (reg * 4UL)); in zorro_esp_write8() 180 static u8 zorro_esp_read8(struct esp *esp, unsigned long reg) in zorro_esp_read8() argument 182 return readb(esp->regs + (reg * 4UL)); in zorro_esp_read8() 185 static dma_addr_t zorro_esp_map_single(struct esp *esp, void *buf, in zorro_esp_map_single() argument 188 return dma_map_single(esp->dev, buf, sz, dir); in zorro_esp_map_single() 191 static int zorro_esp_map_sg(struct esp *esp, struct scatterlist *sg, in zorro_esp_map_sg() argument 194 return dma_map_sg(esp->dev, sg, num_sg, dir); in zorro_esp_map_sg() 197 static void zorro_esp_unmap_single(struct esp *esp, dma_addr_t addr, in zorro_esp_unmap_single() argument [all …]
|
D | am53c974.c | 26 shost_printk(KERN_DEBUG, esp->host, f, ##a); \ 91 struct esp *esp; member 95 static void pci_esp_dma_drain(struct esp *esp); 97 static inline struct pci_esp_priv *pci_esp_get_priv(struct esp *esp) in pci_esp_get_priv() argument 99 struct pci_dev *pdev = esp->dev; in pci_esp_get_priv() 104 static void pci_esp_write8(struct esp *esp, u8 val, unsigned long reg) in pci_esp_write8() argument 106 iowrite8(val, esp->regs + (reg * 4UL)); in pci_esp_write8() 109 static u8 pci_esp_read8(struct esp *esp, unsigned long reg) in pci_esp_read8() argument 111 return ioread8(esp->regs + (reg * 4UL)); in pci_esp_read8() 114 static void pci_esp_write32(struct esp *esp, u32 val, unsigned long reg) in pci_esp_write32() argument [all …]
|
D | sun3x_esp.c | 43 readl(esp->dma_regs + (REG)) 45 writel((VAL), esp->dma_regs + (REG)) 48 *(volatile u32 *)(esp->dma_regs + (REG)) 50 do { *(volatile u32 *)(esp->dma_regs + (REG)) = (VAL); } while (0) 53 static void sun3x_esp_write8(struct esp *esp, u8 val, unsigned long reg) in sun3x_esp_write8() argument 55 writeb(val, esp->regs + (reg * 4UL)); in sun3x_esp_write8() 58 static u8 sun3x_esp_read8(struct esp *esp, unsigned long reg) in sun3x_esp_read8() argument 60 return readb(esp->regs + (reg * 4UL)); in sun3x_esp_read8() 63 static dma_addr_t sun3x_esp_map_single(struct esp *esp, void *buf, in sun3x_esp_map_single() argument 66 return dma_map_single(esp->dev, buf, sz, dir); in sun3x_esp_map_single() [all …]
|
D | mac_esp.c | 48 #define esp_read8(REG) mac_esp_read8(esp, REG) 49 #define esp_write8(VAL, REG) mac_esp_write8(esp, VAL, REG) 52 struct esp *esp; member 57 static struct esp *esp_chips[2]; 60 #define MAC_ESP_GET_PRIV(esp) ((struct mac_esp_priv *) \ argument 62 (esp->dev))) 64 static inline void mac_esp_write8(struct esp *esp, u8 val, unsigned long reg) in mac_esp_write8() argument 66 nubus_writeb(val, esp->regs + reg * 16); in mac_esp_write8() 69 static inline u8 mac_esp_read8(struct esp *esp, unsigned long reg) in mac_esp_read8() argument 71 return nubus_readb(esp->regs + reg * 16); in mac_esp_read8() [all …]
|
D | esp_scsi.h | 357 struct esp; 363 void (*esp_write8)(struct esp *esp, u8 val, unsigned long reg); 364 u8 (*esp_read8)(struct esp *esp, unsigned long reg); 370 dma_addr_t (*map_single)(struct esp *esp, void *buf, 372 int (*map_sg)(struct esp *esp, struct scatterlist *sg, 374 void (*unmap_single)(struct esp *esp, dma_addr_t addr, 376 void (*unmap_sg)(struct esp *esp, struct scatterlist *sg, 384 int (*irq_pending)(struct esp *esp); 389 u32 (*dma_length_limit)(struct esp *esp, u32 dma_addr, 396 void (*reset_dma)(struct esp *esp); [all …]
|
/Linux-v4.19/arch/x86/entry/ |
D | entry_32.S | 73 testl $X86_EFLAGS_IF, PT_EFLAGS(%esp) # interrupts off? 98 addl $(4 + \pop), %esp 124 add $\pop, %esp 129 99: movl $0, (%esp) 136 98: mov PT_GS(%esp), %gs 140 99: movl $0, PT_GS(%esp) 150 movl \reg, PT_GS(%esp) 174 testl $SEGMENT_RPL_MASK, PT_CS(%esp) 259 mov %esp, %ebp 281 4: movl $0, (%esp) [all …]
|
/Linux-v4.19/arch/x86/kernel/ |
D | ftrace_32.S | 48 pushl 4(%esp) /* parent ip */ 50 movl %esp, %ebp 51 pushl 2*4(%esp) /* function ip */ 55 movl %esp, %ebp 64 movl 4*4(%esp), %edx 67 lea 4*4(%esp), %edx 70 movl (MCOUNT_FRAME+4)*4(%esp), %eax /* load the rip */ 81 addl $4, %esp /* skip NULL pointer */ 88 addl $4,%esp /* skip function ip */ 90 addl $4, %esp /* skip parent ip */ [all …]
|
D | relocate_kernel_32.S | 50 movl 20+8(%esp), %ebp /* list of pages */ 52 movl %esp, ESP(%edi) 61 movl 20+4(%esp), %ebx /* page_list */ 62 movl 20+8(%esp), %ebp /* list of pages */ 63 movl 20+12(%esp), %edx /* start address */ 64 movl 20+16(%esp), %ecx /* cpu_has_pae */ 65 movl 20+20(%esp), %esi /* preserve_context */ 91 lea PAGE_SIZE(%edi), %esp 140 addl $8, %esp 167 movl CP_PA_SWAP_PAGE(%edi), %esp [all …]
|
D | head_32.S | 86 leal -__PAGE_OFFSET(%ecx),%esp 184 movl %ecx, %esp 207 leal -__PAGE_OFFSET(%ecx),%esp 296 addl $__PAGE_OFFSET, %esp 396 # 36(%esp) %eflags 397 # 32(%esp) %cs 398 # 28(%esp) %eip 405 pushl $i # 20(%esp) Vector number 441 movl PT_GS(%esp), %edx 444 movw %gs, PT_GS(%esp) [all …]
|
/Linux-v4.19/net/ipv4/ |
D | esp4_offload.c | 170 struct esp_info esp; in esp_xmit() local 174 esp.inplace = true; in esp_xmit() 186 esp.proto = xo->proto; in esp_xmit() 193 esp.tfclen = 0; in esp_xmit() 197 esp.clen = ALIGN(skb->len + 2 + esp.tfclen, blksize); in esp_xmit() 198 esp.plen = esp.clen - skb->len - esp.tfclen; in esp_xmit() 199 esp.tailen = esp.tfclen + esp.plen + alen; in esp_xmit() 201 esp.esph = ip_esp_hdr(skb); in esp_xmit() 205 esp.nfrags = esp_output_head(x, skb, &esp); in esp_xmit() 206 if (esp.nfrags < 0) in esp_xmit() [all …]
|
D | esp4.c | 226 static void esp_output_udp_encap(struct xfrm_state *x, struct sk_buff *skb, struct esp_info *esp) in esp_output_udp_encap() argument 233 struct ip_esp_hdr *esph = esp->esph; in esp_output_udp_encap() 244 uh->len = htons(skb->len + esp->tailen in esp_output_udp_encap() 261 esp->esph = esph; in esp_output_udp_encap() 264 int esp_output_head(struct xfrm_state *x, struct sk_buff *skb, struct esp_info *esp) in esp_output_head() argument 272 int tailen = esp->tailen; in esp_output_head() 276 esp_output_udp_encap(x, skb, esp); in esp_output_head() 291 esp->inplace = false; in esp_output_head() 309 esp_output_fill_trailer(tail, esp->tfclen, esp->plen, esp->proto); in esp_output_head() 336 esph_offset = (unsigned char *)esp->esph - skb_transport_header(skb); in esp_output_head() [all …]
|
/Linux-v4.19/net/ipv6/ |
D | esp6_offload.c | 198 struct esp_info esp; in esp6_xmit() local 202 esp.inplace = true; in esp6_xmit() 214 esp.proto = xo->proto; in esp6_xmit() 221 esp.tfclen = 0; in esp6_xmit() 225 esp.clen = ALIGN(skb->len + 2 + esp.tfclen, blksize); in esp6_xmit() 226 esp.plen = esp.clen - skb->len - esp.tfclen; in esp6_xmit() 227 esp.tailen = esp.tfclen + esp.plen + alen; in esp6_xmit() 230 esp.nfrags = esp6_output_head(x, skb, &esp); in esp6_xmit() 231 if (esp.nfrags < 0) in esp6_xmit() 232 return esp.nfrags; in esp6_xmit() [all …]
|
D | esp6.c | 237 int esp6_output_head(struct xfrm_state *x, struct sk_buff *skb, struct esp_info *esp) in esp6_output_head() argument 244 int tailen = esp->tailen; in esp6_output_head() 259 esp->inplace = false; in esp6_output_head() 277 esp_output_fill_trailer(tail, esp->tfclen, esp->plen, esp->proto); in esp6_output_head() 310 esp_output_fill_trailer(tail, esp->tfclen, esp->plen, esp->proto); in esp6_output_head() 318 int esp6_output_tail(struct xfrm_state *x, struct sk_buff *skb, struct esp_info *esp) in esp6_output_tail() argument 346 tmp = esp_alloc_tmp(aead, esp->nfrags + 2, seqhilen); in esp6_output_tail() 355 if (esp->inplace) in esp6_output_tail() 358 dsg = &sg[esp->nfrags]; in esp6_output_tail() 362 sg_init_table(sg, esp->nfrags); in esp6_output_tail() [all …]
|
/Linux-v4.19/arch/x86/xen/ |
D | xen-asm_32.S | 53 2: movw $0, (%esp) 61 testl $(X86_EFLAGS_VM | XEN_EFLAGS_NMI), 8(%esp) 79 testb $X86_EFLAGS_IF>>8, 8+1+ESP_OFFSET(%esp) 179 movl PT_CS(%esp), %ecx 184 lea PT_ORIG_EAX(%esp), %esi 185 lea PT_EFLAGS(%esp), %edi 195 movl %eax, PT_EAX(%esp) 205 lea 4(%edi), %esp /* point esp to new frame */
|
/Linux-v4.19/arch/x86/lib/ |
D | checksum_32.S | 56 movl 20(%esp),%eax # Function arg: unsigned int sum 57 movl 16(%esp),%ecx # Function arg: int len 58 movl 12(%esp),%esi # Function arg: unsigned char *buff 128 testb $1, 12(%esp) 144 movl 20(%esp),%eax # Function arg: unsigned int sum 145 movl 16(%esp),%ecx # Function arg: int len 146 movl 12(%esp),%esi # Function arg: const unsigned char *buf 246 testb $1, 12(%esp) 288 subl $4,%esp 292 movl ARGBASE+16(%esp),%eax # sum [all …]
|
/Linux-v4.19/arch/x86/um/ |
D | setjmp_32.S | 11 # %esp 26 movl 4(%esp),%edx 31 movl %esp,4(%edx) # Post-return %esp! 49 movl 4(%esp),%edx # jmp_ptr address 50 movl 8(%esp),%eax # Return value 53 movl 4(%edx),%esp
|
D | stub_32.S | 9 mov $(STUB_DATA+8), %esp 13 mov 0x0(%esp), %eax 22 mov %esp, STUB_DATA+4 25 add %eax, %esp
|
/Linux-v4.19/arch/h8300/kernel/ |
D | traps.c | 118 void show_stack(struct task_struct *task, unsigned long *esp) in show_stack() argument 123 if (esp == NULL) in show_stack() 124 esp = (unsigned long *) &esp; in show_stack() 126 stack = esp; in show_stack() 140 stack = esp; in show_stack()
|
/Linux-v4.19/include/net/ |
D | esp.h | 27 int esp_output_head(struct xfrm_state *x, struct sk_buff *skb, struct esp_info *esp); 28 int esp_output_tail(struct xfrm_state *x, struct sk_buff *skb, struct esp_info *esp); 30 int esp6_output_head(struct xfrm_state *x, struct sk_buff *skb, struct esp_info *esp); 31 int esp6_output_tail(struct xfrm_state *x, struct sk_buff *skb, struct esp_info *esp);
|
/Linux-v4.19/Documentation/devicetree/bindings/net/wireless/ |
D | esp,esp8089.txt | 9 - compatible : Should be "esp,esp8089". 12 - esp,crystal-26M-en: Integer value for the crystal_26M_en firmware parameter 26 compatible = "esp,esp8089"; 28 esp,crystal-26M-en = <2>;
|
/Linux-v4.19/arch/x86/crypto/ |
D | aes-i586-asm_32.S | 145 mov %a2,4*a1(%esp) 148 mov 4*a2(%esp),%a1 228 mov ctx(%esp),%ebp 234 mov in_blk+4(%esp),%r2 253 sub $8,%esp // space for register saves on stack 279 add $8,%esp 280 mov out_blk+12(%esp),%ebp 300 mov ctx(%esp),%ebp 306 mov in_blk+4(%esp),%r2 325 sub $8,%esp // space for register saves on stack [all …]
|
/Linux-v4.19/arch/x86/math-emu/ |
D | mul_Xsig.S | 30 movl %esp,%ebp 31 subl $16,%esp 71 movl %esp,%ebp 72 subl $16,%esp 125 movl %esp,%ebp 126 subl $16,%esp
|