Searched defs:up (Results 1 - 13 of 13) sorted by relevance

/arch/arm/mach-davinci/
H A Dserial.c34 static inline unsigned int serial_read_reg(struct plat_serial8250_port *up, argument
37 offset <<= up->regshift;
39 WARN_ONCE(!up->membase, "unmapped read: uart[%d]\n", offset);
41 return (unsigned int)__raw_readl(up->membase + offset);
/arch/mips/cavium-octeon/
H A Dserial.c24 unsigned int octeon_serial_in(struct uart_port *up, int offset) argument
26 int rv = cvmx_read_csr((uint64_t)(up->membase + (offset << 3)));
29 cvmx_read_csr((uint64_t)(up->membase + (39 << 3)));
30 rv = cvmx_read_csr((uint64_t)(up->membase + (offset << 3)));
35 void octeon_serial_out(struct uart_port *up, int offset, int value) argument
43 cvmx_write_csr((uint64_t)(up->membase + (offset << 3)), (u8)value);
/arch/mips/pmc-sierra/msp71xx/
H A Dmsp_serial.c95 struct uart_port up; local
98 memset(&up, 0, sizeof(up));
107 up.mapbase = MSP_UART0_BASE;
108 up.membase = ioremap_nocache(up.mapbase, MSP_UART_REG_LEN);
109 up.irq = MSP_INT_UART0;
110 up.uartclk = uartclk;
111 up.regshift = 2;
112 up
[all...]
/arch/sh/drivers/
H A Dheartbeat.c65 static unsigned bit = 0, up = 1; local
69 bit += up;
71 up = -up;
/arch/x86/platform/ce4100/
H A Dce4100.c78 static void ce4100_serial_fixup(int port, struct uart_port *up, argument
87 if (up->iotype != UPIO_MEM32) {
88 up->uartclk = 14745600;
89 up->mapbase = 0xdffe0200;
91 up->mapbase & PAGE_MASK);
92 up->membase =
94 up->membase += up->mapbase & ~PAGE_MASK;
95 up->iotype = UPIO_MEM32;
96 up
[all...]
/arch/arm/mach-omap1/
H A Dserial.c35 static inline unsigned int omap_serial_in(struct plat_serial8250_port *up, argument
38 offset <<= up->regshift;
39 return (unsigned int)__raw_readb(up->membase + offset);
184 /* Need to do something with serial port right after wake-up? */
190 * sleep to allow waking up the device from serial port even
/arch/cris/include/arch-v32/arch/hwregs/
H A Ddma.h28 struct dma_descr_group *up; member in struct:dma_descr_group
/arch/mips/pmc-sierra/yosemite/
H A Dsetup.c131 /* day of week -- not really used, but let's keep it up-to-date */
173 struct uart_port up; local
179 memset(&up, 0, sizeof(up));
180 up.membase = (unsigned char *) ioremap(TITAN_SERIAL_BASE, 8);
181 up.irq = TITAN_SERIAL_IRQ;
182 up.uartclk = TITAN_UART_CLK;
183 up.regshift = 0;
184 up.iotype = UPIO_MEM;
185 up
[all...]
/arch/parisc/kernel/
H A Dsignal32.c66 put_sigset32(compat_sigset_t __user *up, sigset_t *set, size_t sz) argument
73 return copy_to_user(up, &s, sizeof s);
77 get_sigset32(compat_sigset_t __user *up, sigset_t *set, size_t sz) argument
84 if ((r = copy_from_user(&s, up, sz)) == 0) {
260 * Set up the sigcontext structure for this process.
/arch/arm/mach-msm/
H A Dacpuclock-arm11.c95 short up; member in struct:clkctl_acpu_speed
102 * Table stepping up/down is optimized for 256mhz jumps while staying on the
364 /* Step up or down depending on target vs current. */
366 cur_s->up : cur_s->down;
/arch/powerpc/kernel/
H A Dsignal_32.c228 /* copy up to but not including MSR */
232 /* copy from orig_r3 (the word after the MSR) up to the end */
292 * When we have signals to deliver, we set up on the
307 * Programs using the rs6000/xcoff abi can save up to 19 gp
317 * When we have rt signals to deliver, we set up on the
335 * Programs using the rs6000/xcoff abi can save up to 19 gp
485 /* Set up the sigreturn trampoline: li r0,sigret; sc */
643 sigset_t __user *up; local
654 up = (sigset_t __user *) &s;
655 ret = sys_rt_sigprocmask((int)how, set ? up
[all...]
H A Dsys_ppc32.c151 off_t __user *up; local
158 up = offset ? (off_t __user *) &of : NULL;
159 ret = sys_sendfile((int)out_fd, (int)in_fd, up, count);
173 loff_t __user *up; local
180 up = offset ? (loff_t __user *) &lof : NULL;
181 ret = sys_sendfile64(out_fd, in_fd, up, count);
/arch/ia64/include/asm/
H A Dprocessor.h90 __u64 up : 1; member in struct:ia64_psr

Completed in 545 milliseconds