/openbmc/linux/drivers/scsi/ |
H A 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 …]
|
H A D | sun_esp.c | 2 /* sun_esp.c: ESP front-end for Sparc SBUS systems. 33 sbus_readl(esp->dma_regs + (REG)) 35 sbus_writel((VAL), esp->dma_regs + (REG)) 48 static int esp_sbus_setup_dma(struct esp *esp, struct platform_device *dma_of) in esp_sbus_setup_dma() argument 50 esp->dma = dma_of; in esp_sbus_setup_dma() 52 esp->dma_regs = of_ioremap(&dma_of->resource[0], 0, in esp_sbus_setup_dma() 55 if (!esp->dma_regs) in esp_sbus_setup_dma() 60 esp->dmarev = dvmarev0; in esp_sbus_setup_dma() 63 esp->dmarev = dvmaesc1; in esp_sbus_setup_dma() 66 esp->dmarev = dvmarev1; in esp_sbus_setup_dma() [all …]
|
H A 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 …]
|
H A 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 …]
|
H A 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 …]
|
H A 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 …]
|
H A 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 …]
|
H A 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 …]
|
/openbmc/linux/arch/x86/entry/ |
H A 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 …]
|
/openbmc/linux/arch/x86/kernel/ |
H A 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 …]
|
H A 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 …]
|
/openbmc/qemu/common-user/host/i386/ |
H A D | safe-syscall.inc.S | 40 * we enter with 0(%esp) == return address 41 * 4(%esp) == &signal_pending 42 * 8(%esp) == syscall number 43 * 12(%esp) ... 32(%esp) == syscall arguments 52 mov 12+16(%esp), %ebx /* the syscall arguments */ 53 mov 16+16(%esp), %ecx 54 mov 20+16(%esp), %edx 55 mov 24+16(%esp), %esi 56 mov 28+16(%esp), %edi 57 mov 32+16(%esp), %ebp [all …]
|
/openbmc/linux/net/ipv6/ |
H A D | esp6.c | 11 * This file is derived from net/ipv4/esp.c 22 #include <net/esp.h> 320 /* Move ESP header back into place. */ 380 struct esp_info *esp, in esp6_output_udp_encap() argument 388 len = skb->len + esp->tailen - skb_transport_offset(skb); in esp6_output_udp_encap() 392 uh = (struct udphdr *)esp->esph; in esp6_output_udp_encap() 412 struct esp_info *esp) in esp6_output_tcp_encap() argument 414 __be16 *lenp = (void *)esp->esph; in esp6_output_tcp_encap() 419 len = skb->len + esp->tailen - skb_transport_offset(skb); in esp6_output_tcp_encap() 438 struct esp_info *esp) in esp6_output_tcp_encap() argument [all …]
|
H A D | esp6_offload.c | 9 * ESP GRO support 23 #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 …]
|
/openbmc/linux/net/ipv4/ |
H A D | esp4.c | 10 #include <net/esp.h> 284 /* Move ESP header back into place. */ 344 struct esp_info *esp, in esp_output_udp_encap() argument 352 len = skb->len + esp->tailen - skb_transport_offset(skb); in esp_output_udp_encap() 356 uh = (struct udphdr *)esp->esph; in esp_output_udp_encap() 376 struct esp_info *esp) in esp_output_tcp_encap() argument 378 __be16 *lenp = (void *)esp->esph; in esp_output_tcp_encap() 383 len = skb->len + esp->tailen - skb_transport_offset(skb); in esp_output_tcp_encap() 402 struct esp_info *esp) in esp_output_tcp_encap() argument 409 struct esp_info *esp) in esp_output_encap() argument [all …]
|
H A D | esp4_offload.c | 9 * ESP GRO support 23 #include <net/esp.h> 260 struct esp_info esp; in esp_xmit() local 264 esp.inplace = true; in esp_xmit() 278 esp.proto = xo->proto; in esp_xmit() 285 esp.tfclen = 0; in esp_xmit() 289 esp.clen = ALIGN(skb->len + 2 + esp.tfclen, blksize); in esp_xmit() 290 esp.plen = esp.clen - skb->len - esp.tfclen; in esp_xmit() 291 esp.tailen = esp.tfclen + esp.plen + alen; in esp_xmit() 293 esp.esph = ip_esp_hdr(skb); in esp_xmit() [all …]
|
/openbmc/linux/arch/x86/um/ |
H A 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
|
H A 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
|
/openbmc/qemu/linux-user/i386/ |
H A D | vdso.S | 23 mov 4(%esp), %ebx 37 mov 4(%esp), %ebx 38 mov 8(%esp), %ecx 53 mov 8(%esp), %ebx 54 mov 12(%esp), %ecx 55 mov 16(%esp), %edx 94 .cfi_def_cfa %esp, SIGFRAME_SIGCONTEXT_eip + 4 103 .cfi_offset %esp, -32
|
/openbmc/linux/arch/x86/lib/ |
H A 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 …]
|
/openbmc/linux/arch/x86/platform/efi/ |
H A 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
|
/openbmc/u-boot/arch/x86/lib/ |
H A D | bios_asm.S | 75 * 16-bit ESP at segment 0 will work for any case. 89 movl %eax, %esp 171 movl %esp, __stack 172 movl %esp, %ebp 198 movl __stack, %esp 208 movl %esp, __stack 209 movl %esp, %ebp 229 movl __stack, %esp 264 * Now we are in protected mode. We need compute the right ESP based 270 addl %ecx, %esp [all …]
|
/openbmc/u-boot/arch/x86/cpu/i386/ |
H A D | setjmp.S | 13 * %esp 28 movl 4(%esp), %edx 33 movl %esp, 4(%edx) /* Post-return %esp! */ 51 movl 4(%esp), %edx /* jmp_ptr address */ 54 movl 4(%edx), %esp
|
/openbmc/linux/Documentation/devicetree/bindings/net/wireless/ |
H A 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>;
|
/openbmc/linux/tools/testing/selftests/net/ |
H A 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 …]
|