Home
last modified time | relevance | path

Searched refs:dll (Results 1 - 25 of 33) sorted by relevance

12

/kernel/linux/linux-5.10/arch/powerpc/kernel/
H A Dudbg_16550.c97 unsigned int dll, base_bauds; in udbg_uart_setup() local
108 dll = base_bauds / speed; in udbg_uart_setup()
114 udbg_uart_out(UART_DLL, dll & 0xff); in udbg_uart_setup()
115 udbg_uart_out(UART_DLM, dll >> 8); in udbg_uart_setup()
126 unsigned int dll, dlm, divisor, prescaler, speed; in udbg_probe_uart_speed() local
135 dll = udbg_uart_in(UART_DLL); in udbg_probe_uart_speed()
137 divisor = dlm << 8 | dll; in udbg_probe_uart_speed()
/kernel/linux/linux-6.6/arch/powerpc/kernel/
H A Dudbg_16550.c98 unsigned int dll, base_bauds; in udbg_uart_setup() local
109 dll = base_bauds / speed; in udbg_uart_setup()
115 udbg_uart_out(UART_DLL, dll & 0xff); in udbg_uart_setup()
116 udbg_uart_out(UART_DLM, dll >> 8); in udbg_uart_setup()
127 unsigned int dll, dlm, divisor, prescaler, speed; in udbg_probe_uart_speed() local
136 dll = udbg_uart_in(UART_DLL); in udbg_probe_uart_speed()
138 divisor = dlm << 8 | dll; in udbg_probe_uart_speed()
/kernel/linux/linux-5.10/arch/x86/boot/
H A Dearly_serial_console.c104 unsigned char lcr, dll, dlh; in probe_baud() local
109 dll = inb(port + DLL); in probe_baud()
112 quot = (dlh << 8) | dll; in probe_baud()
/kernel/linux/linux-6.6/arch/x86/boot/
H A Dearly_serial_console.c104 unsigned char lcr, dll, dlh; in probe_baud() local
109 dll = inb(port + DLL); in probe_baud()
112 quot = (dlh << 8) | dll; in probe_baud()
/kernel/linux/linux-5.10/drivers/tty/serial/8250/
H A D8250_pxa.c66 unsigned int dll; in serial_pxa_dl_write() local
73 dll = serial_in(up, UART_DLL); in serial_pxa_dl_write()
74 WARN_ON(dll != (value & 0xff)); in serial_pxa_dl_write()
H A D8250_port.c317 unsigned char dll = serial_in(up, UART_DLL); in default_serial_dl_read() local
320 return dll | dlm << 8; in default_serial_dl_read()
3387 unsigned char lcr, dll, dlm; in probe_baud() local
3392 dll = serial_port_in(port, UART_DLL); in probe_baud()
3396 quot = (dlm << 8) | dll; in probe_baud()
/kernel/linux/linux-6.6/drivers/tty/serial/8250/
H A D8250_pxa.c65 unsigned int dll; in serial_pxa_dl_write() local
72 dll = serial_in(up, UART_DLL); in serial_pxa_dl_write()
73 WARN_ON(dll != (value & 0xff)); in serial_pxa_dl_write()
H A D8250_port.c339 unsigned char dll = serial_in(up, UART_DLL); in default_serial_dl_read() local
342 return dll | dlm << 8; in default_serial_dl_read()
3480 unsigned char lcr, dll, dlm; in probe_baud() local
3485 dll = serial_port_in(port, UART_DLL); in probe_baud()
3489 quot = (dlm << 8) | dll; in probe_baud()
/kernel/linux/linux-5.10/arch/sh/include/asm/
H A Dsmc37c93x.h90 #define dll rbr macro
/kernel/linux/linux-6.6/arch/sh/include/asm/
H A Dsmc37c93x.h90 #define dll rbr macro
/kernel/linux/linux-6.6/drivers/crypto/intel/keembay/
H A Dkeembay-ocs-aes-core.c365 struct ocs_dll_desc *dll) in cleanup_ocs_dma_linked_list()
367 if (dll->vaddr) in cleanup_ocs_dma_linked_list()
368 dma_free_coherent(dev, dll->size, dll->vaddr, dll->dma_addr); in cleanup_ocs_dma_linked_list()
369 dll->vaddr = NULL; in cleanup_ocs_dma_linked_list()
370 dll->size = 0; in cleanup_ocs_dma_linked_list()
371 dll->dma_addr = DMA_MAPPING_ERROR; in cleanup_ocs_dma_linked_list()
364 cleanup_ocs_dma_linked_list(struct device *dev, struct ocs_dll_desc *dll) cleanup_ocs_dma_linked_list() argument
/kernel/linux/linux-5.10/drivers/tty/serial/
H A Dpxa.c431 unsigned int dll; in serial_pxa_set_termios() local
535 dll = serial_in(up, UART_DLL); in serial_pxa_set_termios()
536 WARN_ON(dll != (quot & 0xff)); in serial_pxa_set_termios()
H A Domap-serial.c135 unsigned char dll; member
888 up->dll = quot & 0xff; in serial_omap_set_termios()
1013 serial_out(up, UART_DLL, up->dll); /* LS of divisor */ in serial_omap_set_termios()
1837 serial_out(up, UART_DLL, up->dll); in serial_omap_restore_context()
H A Dpch_uart.c439 unsigned int dll, dlm, lcr; in pch_uart_hal_set_line() local
448 dll = (unsigned int)div & 0x00FFU; in pch_uart_hal_set_line()
473 iowrite8(dll, priv->membase + PCH_UART_DLL); in pch_uart_hal_set_line()
/kernel/linux/linux-6.6/drivers/tty/serial/
H A Dpxa.c409 unsigned int dll; in serial_pxa_set_termios() local
499 dll = serial_in(up, UART_DLL); in serial_pxa_set_termios()
500 WARN_ON(dll != (quot & 0xff)); in serial_pxa_set_termios()
H A Domap-serial.c136 unsigned char dll; member
807 up->dll = quot & 0xff; in serial_omap_set_termios()
931 serial_out(up, UART_DLL, up->dll); /* LS of divisor */ in serial_omap_set_termios()
1725 serial_out(up, UART_DLL, up->dll); in serial_omap_restore_context()
H A Dpch_uart.c434 unsigned int dll, dlm, lcr; in pch_uart_hal_set_line() local
443 dll = (unsigned int)div & 0x00FFU; in pch_uart_hal_set_line()
468 iowrite8(dll, priv->membase + PCH_UART_DLL); in pch_uart_hal_set_line()
/kernel/linux/linux-5.10/arch/arm/mach-omap2/
H A Dsleep34xx.S270 /* Is dll in lock mode? */
275 /* wait till dll locks */
294 bic r6, #(1<<3) @ disable dll
297 orr r6, r6, #(1<<3) @ enable dll
H A Dsram242x.S45 /* dll lock mode */
55 bl i_dll_wait @ wait for dll to lock
57 /* get dll value */
284 /* update memory timings & briefly lock dll */
H A Dsram243x.S45 /* dll lock mode */
55 bl i_dll_wait @ wait for dll to lock
57 /* get dll value */
284 /* update memory timings & briefly lock dll */
/kernel/linux/linux-6.6/arch/arm/mach-omap2/
H A Dsleep34xx.S270 /* Is dll in lock mode? */
275 /* wait till dll locks */
294 bic r6, #(1<<3) @ disable dll
297 orr r6, r6, #(1<<3) @ enable dll
/kernel/linux/linux-5.10/drivers/video/fbdev/matrox/
H A Dmatroxfb_base.h491 dll:1; member
H A Dmatroxfb_misc.c670 minfo->values.memory.dll = (bd->pins[115] & 0x02) != 0; in parse_pins5()
707 minfo->values.memory.dll = 1; in default_pins5()
/kernel/linux/linux-6.6/drivers/video/fbdev/matrox/
H A Dmatroxfb_base.h490 dll:1; member
H A Dmatroxfb_misc.c670 minfo->values.memory.dll = (bd->pins[115] & 0x02) != 0; in parse_pins5()
707 minfo->values.memory.dll = 1; in default_pins5()

Completed in 33 milliseconds

12