/Linux-v6.1/drivers/scsi/ |
D | esp_scsi.c | 2 /* esp_scsi.c: ESP SCSI driver. 33 #define DRV_MODULE_NAME "esp" 58 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 63 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 68 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 73 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 78 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 83 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 88 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ 93 shost_printk(KERN_DEBUG, esp->host, f, ## a); \ [all …]
|
D | sun_esp.c | 2 /* sun_esp.c: ESP front-end for Sparc SBUS systems. 32 sbus_readl(esp->dma_regs + (REG)) 34 sbus_writel((VAL), esp->dma_regs + (REG)) 47 static int esp_sbus_setup_dma(struct esp *esp, struct platform_device *dma_of) in esp_sbus_setup_dma() argument 49 esp->dma = dma_of; in esp_sbus_setup_dma() 51 esp->dma_regs = of_ioremap(&dma_of->resource[0], 0, in esp_sbus_setup_dma() 54 if (!esp->dma_regs) in esp_sbus_setup_dma() 59 esp->dmarev = dvmarev0; in esp_sbus_setup_dma() 62 esp->dmarev = dvmaesc1; in esp_sbus_setup_dma() 65 esp->dmarev = dvmarev1; in esp_sbus_setup_dma() [all …]
|
D | jazz_esp.c | 2 /* jazz_esp.c: ESP front-end for MIPS JAZZ systems. 32 static void jazz_esp_write8(struct esp *esp, u8 val, unsigned long reg) in jazz_esp_write8() argument 34 *(volatile u8 *)(esp->regs + reg) = val; in jazz_esp_write8() 37 static u8 jazz_esp_read8(struct esp *esp, unsigned long reg) in jazz_esp_read8() argument 39 return *(volatile u8 *)(esp->regs + reg); in jazz_esp_read8() 42 static int jazz_esp_irq_pending(struct esp *esp) in jazz_esp_irq_pending() argument 44 if (jazz_esp_read8(esp, ESP_STATUS) & ESP_STAT_INTR) in jazz_esp_irq_pending() 49 static void jazz_esp_reset_dma(struct esp *esp) in jazz_esp_reset_dma() argument 51 vdma_disable ((int)esp->dma_regs); in jazz_esp_reset_dma() 54 static void jazz_esp_dma_drain(struct esp *esp) in jazz_esp_dma_drain() argument [all …]
|
D | zorro_esp.c | 3 * ESP front-end for Amiga ZORRO SCSI systems. 8 * migration to ESP SCSI core 52 MODULE_DESCRIPTION("Amiga Zorro NCR5C9x (ESP) driver"); 158 struct esp *esp; /* our ESP instance - for Scsi_host* */ member 165 * On all implementations except for the Oktagon, padding between ESP 172 static void zorro_esp_write8(struct esp *esp, u8 val, unsigned long reg) in zorro_esp_write8() argument 174 writeb(val, esp->regs + (reg * 4UL)); in zorro_esp_write8() 177 static u8 zorro_esp_read8(struct esp *esp, unsigned long reg) in zorro_esp_read8() argument 179 return readb(esp->regs + (reg * 4UL)); in zorro_esp_read8() 182 static int zorro_esp_irq_pending(struct esp *esp) in zorro_esp_irq_pending() argument [all …]
|
D | sun3x_esp.c | 2 /* sun3x_esp.c: ESP front-end for Sun3x systems. 44 readl(esp->dma_regs + (REG)) 46 writel((VAL), esp->dma_regs + (REG)) 49 *(volatile u32 *)(esp->dma_regs + (REG)) 51 do { *(volatile u32 *)(esp->dma_regs + (REG)) = (VAL); } while (0) 54 static void sun3x_esp_write8(struct esp *esp, u8 val, unsigned long reg) in sun3x_esp_write8() argument 56 writeb(val, esp->regs + (reg * 4UL)); in sun3x_esp_write8() 59 static u8 sun3x_esp_read8(struct esp *esp, unsigned long reg) in sun3x_esp_read8() argument 61 return readb(esp->regs + (reg * 4UL)); in sun3x_esp_read8() 64 static int sun3x_esp_irq_pending(struct esp *esp) in sun3x_esp_irq_pending() argument [all …]
|
D | am53c974.c | 27 shost_printk(KERN_DEBUG, esp->host, f, ##a); \ 92 struct esp *esp; member 96 static void pci_esp_dma_drain(struct esp *esp); 98 static inline struct pci_esp_priv *pci_esp_get_priv(struct esp *esp) in pci_esp_get_priv() argument 100 return dev_get_drvdata(esp->dev); in pci_esp_get_priv() 103 static void pci_esp_write8(struct esp *esp, u8 val, unsigned long reg) in pci_esp_write8() argument 105 iowrite8(val, esp->regs + (reg * 4UL)); in pci_esp_write8() 108 static u8 pci_esp_read8(struct esp *esp, unsigned long reg) in pci_esp_read8() argument 110 return ioread8(esp->regs + (reg * 4UL)); in pci_esp_read8() 113 static void pci_esp_write32(struct esp *esp, u32 val, unsigned long reg) in pci_esp_write32() argument [all …]
|
D | mac_esp.c | 2 /* mac_esp.c: ESP front-end for Macintosh Quadra systems. 7 * See sys/arch/mac68k/obio/esp.c for some background information. 49 #define esp_read8(REG) mac_esp_read8(esp, REG) 50 #define esp_write8(VAL, REG) mac_esp_write8(esp, VAL, REG) 53 struct esp *esp; member 57 static struct esp *esp_chips[2]; 60 #define MAC_ESP_GET_PRIV(esp) ((struct mac_esp_priv *) \ argument 61 dev_get_drvdata((esp)->dev)) 63 static inline void mac_esp_write8(struct esp *esp, u8 val, unsigned long reg) in mac_esp_write8() argument 65 nubus_writeb(val, esp->regs + reg * 16); in mac_esp_write8() [all …]
|
D | esp_scsi.h | 2 /* esp_scsi.h: Defines and structures for the ESP driver. 15 #define ESP_STATUS 0x04UL /* ro ESP status register 0x10 */ 40 /* ESP config reg 1, read-write, found on all ESP chips */ 42 #define ESP_CONFIG1_CHTEST 0x08 /* Enable ESP chip tests */ 48 /* ESP config reg 2, read-write, found only on esp100a+esp200+esp236 chips */ 63 /* ESP config register 3 read-write, found only esp236+fas236+fas100a+hme chips */ 65 #define ESP_CONFIG3_TEM 0x01 /* Enable thresh-8 mode (esp/fas236) */ 67 #define ESP_CONFIG3_ADMA 0x02 /* Enable alternate-dma (esp/fas236) */ 69 #define ESP_CONFIG3_SRB 0x04 /* Save residual byte (esp/fas236) */ 71 #define ESP_CONFIG3_FCLK 0x08 /* Fast SCSI clock rate (esp/fas236) */ [all …]
|
/Linux-v6.1/arch/x86/entry/ |
D | entry_32.S | 13 * 0(%esp) - %ebx 14 * 4(%esp) - %ecx 15 * 8(%esp) - %edx 16 * C(%esp) - %esi 17 * 10(%esp) - %edi 18 * 14(%esp) - %ebp 19 * 18(%esp) - %eax 20 * 1C(%esp) - %ds 21 * 20(%esp) - %es 22 * 24(%esp) - %fs [all …]
|
/Linux-v6.1/arch/x86/kernel/ |
D | ftrace_32.S | 35 pushl 4(%esp) /* parent ip */ 37 movl %esp, %ebp 38 pushl 2*4(%esp) /* function ip */ 42 movl %esp, %ebp 51 movl 4*4(%esp), %edx 54 lea 4*4(%esp), %edx 57 movl (MCOUNT_FRAME+4)*4(%esp), %eax /* load the rip */ 68 addl $4, %esp /* skip NULL pointer */ 74 addl $4,%esp /* skip function ip */ 76 addl $4, %esp /* skip parent ip */ [all …]
|
D | relocate_kernel_32.S | 28 #define ESP DATA(0x0) macro 49 movl 20+8(%esp), %ebp /* list of pages */ 51 movl %esp, ESP(%edi) 60 movl 20+4(%esp), %ebx /* page_list */ 61 movl 20+8(%esp), %ebp /* list of pages */ 62 movl 20+12(%esp), %edx /* start address */ 63 movl 20+16(%esp), %ecx /* cpu_has_pae */ 64 movl 20+20(%esp), %esi /* preserve_context */ 90 lea PAGE_SIZE(%edi), %esp 142 addl $8, %esp [all …]
|
D | head_32.S | 81 leal -__PAGE_OFFSET(%ecx),%esp 149 movl %ecx, %esp 172 leal -__PAGE_OFFSET(%ecx),%esp 261 addl $__PAGE_OFFSET, %esp 347 # 36(%esp) %eflags 348 # 32(%esp) %cs 349 # 28(%esp) %eip 356 pushl $i # 20(%esp) Vector number 392 movl PT_GS(%esp), %edx 395 movw %gs, PT_GS(%esp) [all …]
|
/Linux-v6.1/net/ipv6/ |
D | esp6.c | 11 * This file is derived from net/ipv4/esp.c 22 #include <net/esp.h> 321 /* Move ESP header back into place. */ 381 struct esp_info *esp, in esp6_output_udp_encap() argument 389 len = skb->len + esp->tailen - skb_transport_offset(skb); in esp6_output_udp_encap() 393 uh = (struct udphdr *)esp->esph; in esp6_output_udp_encap() 413 struct esp_info *esp) in esp6_output_tcp_encap() argument 415 __be16 *lenp = (void *)esp->esph; in esp6_output_tcp_encap() 420 len = skb->len + esp->tailen - skb_transport_offset(skb); in esp6_output_tcp_encap() 439 struct esp_info *esp) in esp6_output_tcp_encap() argument [all …]
|
D | esp6_offload.c | 9 * ESP GRO support 22 #include <net/esp.h> 296 struct esp_info esp; in esp6_xmit() local 300 esp.inplace = true; in esp6_xmit() 312 esp.proto = xo->proto; in esp6_xmit() 319 esp.tfclen = 0; in esp6_xmit() 323 esp.clen = ALIGN(skb->len + 2 + esp.tfclen, blksize); in esp6_xmit() 324 esp.plen = esp.clen - skb->len - esp.tfclen; in esp6_xmit() 325 esp.tailen = esp.tfclen + esp.plen + alen; in esp6_xmit() 328 esp.nfrags = esp6_output_head(x, skb, &esp); in esp6_xmit() [all …]
|
/Linux-v6.1/net/ipv4/ |
D | esp4.c | 10 #include <net/esp.h> 285 /* Move ESP header back into place. */ 345 struct esp_info *esp, in esp_output_udp_encap() argument 353 len = skb->len + esp->tailen - skb_transport_offset(skb); in esp_output_udp_encap() 357 uh = (struct udphdr *)esp->esph; in esp_output_udp_encap() 377 struct esp_info *esp) in esp_output_tcp_encap() argument 379 __be16 *lenp = (void *)esp->esph; in esp_output_tcp_encap() 384 len = skb->len + esp->tailen - skb_transport_offset(skb); in esp_output_tcp_encap() 403 struct esp_info *esp) in esp_output_tcp_encap() argument 410 struct esp_info *esp) in esp_output_encap() argument [all …]
|
D | esp4_offload.c | 9 * ESP GRO support 22 #include <net/esp.h> 259 struct esp_info esp; in esp_xmit() local 263 esp.inplace = true; in esp_xmit() 277 esp.proto = xo->proto; in esp_xmit() 284 esp.tfclen = 0; in esp_xmit() 288 esp.clen = ALIGN(skb->len + 2 + esp.tfclen, blksize); in esp_xmit() 289 esp.plen = esp.clen - skb->len - esp.tfclen; in esp_xmit() 290 esp.tailen = esp.tfclen + esp.plen + alen; in esp_xmit() 292 esp.esph = ip_esp_hdr(skb); in esp_xmit() [all …]
|
D | xfrm4_input.c | 115 /* ESP Packet without Non-ESP header */ in xfrm4_udp_encap_rcv() 128 /* ESP Packet with Non-IKE marker */ in xfrm4_udp_encap_rcv() 138 * header and optional ESP marker bytes) and then modify the in xfrm4_udp_encap_rcv() 139 * protocol to ESP, and then call into the transform receiver. in xfrm4_udp_encap_rcv() 153 /* pull the data buffer up to the ESP header and set the in xfrm4_udp_encap_rcv() 154 * transport header to point to ESP. Keep UDP on the stack in xfrm4_udp_encap_rcv() 160 /* process ESP */ in xfrm4_udp_encap_rcv()
|
/Linux-v6.1/arch/x86/um/ |
D | stub_32.S | 8 /* %esp comes in as "top of page" */ 9 mov %esp, %ecx 10 /* %esp has pointer to first operation */ 11 add $8, %esp 14 mov 0x0(%esp), %eax 23 mov %esp, 0x4(%ecx) 26 add %eax, %esp 43 mov %esp, %ecx
|
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
|
/Linux-v6.1/arch/x86/lib/ |
D | checksum_32.S | 52 movl 20(%esp),%eax # Function arg: unsigned int sum 53 movl 16(%esp),%ecx # Function arg: int len 54 movl 12(%esp),%esi # Function arg: unsigned char *buff 124 testb $1, 12(%esp) 140 movl 20(%esp),%eax # Function arg: unsigned int sum 141 movl 16(%esp),%ecx # Function arg: int len 142 movl 12(%esp),%esi # Function arg: const unsigned char *buf 242 testb $1, 12(%esp) 273 subl $4,%esp 277 movl ARGBASE+12(%esp),%ecx # len [all …]
|
/Linux-v6.1/arch/x86/platform/efi/ |
D | efi_stub_32.S | 17 movl %esp, %ebp 20 push 16(%esp) 21 push 16(%esp) 41 subl $__PAGE_OFFSET, %esp 49 movl 36(%esp), %edx // &efi.runtime 57 movl 16(%esp), %ebx
|
/Linux-v6.1/arch/x86/boot/compressed/ |
D | mem_encrypt.S | 111 cmpl $0x72, 16(%esp) 119 movl %edx, 12(%esp) # Store result 126 movl %edx, 8(%esp) # Store result 133 movl %edx, 4(%esp) # Store result 140 movl %edx, 0(%esp) # Store result 150 cmpl $0x8000001f, 12(%esp) 158 btl $1, 12(%esp) 168 addl $4, %esp 171 addl $2, (%esp)
|
/Linux-v6.1/Documentation/devicetree/bindings/net/wireless/ |
D | esp,esp8089.yaml | 4 $id: http://devicetree.org/schemas/net/wireless/esp,esp8089.yaml# 14 const: esp,esp8089 19 esp,crystal-26M-en: 37 compatible = "esp,esp8089"; 39 esp,crystal-26M-en = <2>;
|
/Linux-v6.1/tools/testing/selftests/net/ |
D | l2tp.sh | 236 tmpl proto esp mode transport 240 tmpl proto esp mode transport 244 tmpl proto esp mode transport 248 tmpl proto esp mode transport 252 spi 0x1000 proto esp aead 'rfc4106(gcm(aes))' \ 257 spi 0x1001 proto esp aead 'rfc4106(gcm(aes))' \ 262 spi 0x1000 proto esp aead 'rfc4106(gcm(aes))' \ 267 spi 0x1001 proto esp aead 'rfc4106(gcm(aes))' \ 275 tmpl proto esp mode transport 279 tmpl proto esp mode transport [all …]
|
D | vrf-xfrm-tests.sh | 223 tmpl src ${HOST1_4} dst ${HOST2_4} proto esp mode tunnel 228 tmpl src ${HOST1_4} dst ${HOST2_4} proto esp mode tunnel 233 tmpl src ${HOST2_4} dst ${HOST1_4} proto esp mode tunnel 238 tmpl src ${HOST2_4} dst ${HOST1_4} proto esp mode tunnel 244 tmpl src ${HOST1_6} dst ${HOST2_6} proto esp mode tunnel 249 tmpl src ${HOST1_6} dst ${HOST2_6} proto esp mode tunnel 254 tmpl src ${HOST2_6} dst ${HOST1_6} proto esp mode tunnel 259 tmpl src ${HOST2_6} dst ${HOST1_6} proto esp mode tunnel 265 proto esp spi ${SPI_1} reqid 0 mode tunnel \ 272 proto esp spi ${SPI_1} reqid 0 mode tunnel \ [all …]
|