aboutsummaryrefslogtreecommitdiff
path: root/drivers/tty
AgeCommit message (Expand)AuthorFilesLines
2024-02-19serial: amba-pl011: Fix DMA transmission in RS485 modeGravatar Lino Sanfilippo 1-30/+30
2024-02-19serial: stm32: do not always set SER_RS485_RX_DURING_TX if RS485 is enabledGravatar Lino Sanfilippo 1-1/+3
2024-02-19tty: hvc: Don't enable the RISC-V SBI console by defaultGravatar Palmer Dabbelt 1-3/+5
2024-02-06serial: mxs-auart: fix txGravatar Jiri Slaby (SUSE) 1-1/+4
2024-02-06serial: 8250_pci1xxxx: partially revert off by one patchGravatar Dan Carpenter 1-1/+1
2024-01-27serial: max310x: prevent infinite while() loop in port startupGravatar Hugo Villeneuve 1-2/+18
2024-01-27serial: max310x: fail probe if clock crystal is unstableGravatar Hugo Villeneuve 1-3/+9
2024-01-27serial: max310x: improve crystal stable clock detectionGravatar Hugo Villeneuve 1-5/+16
2024-01-27serial: max310x: set default value when reading clock ready bitGravatar Hugo Villeneuve 1-1/+1
2024-01-27serial: core: Fix atomicity violation in uart_tiocmgetGravatar Gui-Dong Han 1-1/+1
2024-01-27serial: 8250_pci1xxxx: fix off by one in pci1xxxx_process_read_data()Gravatar Dan Carpenter 1-2/+2
2024-01-20Merge tag 'riscv-for-linus-6.8-mw4' of git://git.kernel.org/pub/scm/linux/ker...Gravatar Linus Torvalds 4-12/+56
2024-01-18Merge tag 'usb-6.8-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/greg...Gravatar Linus Torvalds 1-0/+3
2024-01-18Merge tag 'tty-6.8-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/greg...Gravatar Linus Torvalds 109-1129/+1244
2024-01-17Merge tag 'leds-next-6.8' of git://git.kernel.org/pub/scm/linux/kernel/git/le...Gravatar Linus Torvalds 1-6/+22
2024-01-11Merge tag 'soc-drivers-6.8' of git://git.kernel.org/pub/scm/linux/kernel/git/...Gravatar Linus Torvalds 1-0/+16
2024-01-10tty: Add SBI debug console support to HVC SBI driverGravatar Atish Patra 2-8/+31
2024-01-10tty/serial: Add RISC-V SBI debug console based earlyconGravatar Anup Patel 2-4/+25
2024-01-04serial: sc16is7xx: refactor EFR lockGravatar Hugo Villeneuve 1-49/+57
2024-01-04serial: sc16is7xx: reorder code to remove prototype declarationsGravatar Hugo Villeneuve 1-39/+36
2024-01-04serial: sc16is7xx: refactor FIFO access functions to increase commonalityGravatar Hugo Villeneuve 1-8/+6
2024-01-04serial: sc16is7xx: drop unneeded MODULE_ALIASGravatar Hugo Villeneuve 1-2/+0
2024-01-04serial: sc16is7xx: replace hardcoded divisor value with BIT() macroGravatar Hugo Villeneuve 1-1/+1
2024-01-04serial: sc16is7xx: add explicit return for some switch default casesGravatar Hugo Villeneuve 1-6/+2
2024-01-04serial: sc16is7xx: add macro for max number of UART portsGravatar Hugo Villeneuve 1-4/+5
2024-01-04serial: sc16is7xx: add driver name to struct uart_driverGravatar Hugo Villeneuve 1-0/+1
2024-01-04serial: sc16is7xx: use i2c_get_match_data()Gravatar Hugo Villeneuve 1-8/+3
2024-01-04serial: sc16is7xx: use spi_get_device_match_data()Gravatar Hugo Villeneuve 1-9/+3
2024-01-04serial: sc16is7xx: use DECLARE_BITMAP for sc16is7xx_lines bitfieldGravatar Hugo Villeneuve 1-5/+5
2024-01-04serial: sc16is7xx: improve do/while loop in sc16is7xx_irq()Gravatar Hugo Villeneuve 1-5/+6
2024-01-04serial: sc16is7xx: remove obsolete loop in sc16is7xx_port_irq()Gravatar Hugo Villeneuve 1-44/+41
2024-01-04serial: sc16is7xx: set safe default SPI clock frequencyGravatar Hugo Villeneuve 1-1/+2
2024-01-04serial: sc16is7xx: add check for unsupported SPI modes during probeGravatar Hugo Villeneuve 1-1/+4
2024-01-04serial: sc16is7xx: fix invalid sc16is7xx_lines bitfield in case of probe errorGravatar Hugo Villeneuve 1-26/+18
2024-01-04serial: 8250_exar: Set missing rs485_supported flagGravatar Lino Sanfilippo 1-2/+3
2024-01-04serial: omap: do not override settings for RS485 supportGravatar Lino Sanfilippo 1-13/+14
2024-01-04serial: core, imx: do not set RS485 enabled if it is not supportedGravatar Lino Sanfilippo 2-7/+3
2024-01-04serial: core: make sure RS485 cannot be enabled when it is not supportedGravatar Lino Sanfilippo 1-1/+1
2024-01-04serial: core: fix sanitizing check for RTS settingsGravatar Lino Sanfilippo 1-10/+18
2024-01-04serial: core: set missing supported flag for RX during TX GPIOGravatar Lino Sanfilippo 1-0/+2
2024-01-04serial: Do not hold the port lock when setting rx-during-tx GPIOGravatar Lino Sanfilippo 3-12/+26
2024-01-04serial: 8250_bcm2835aux: Restore clock error handlingGravatar Stefan Wahren 1-0/+2
2024-01-048250: microchip: pci1xxxx: Add Burst mode reception support in uart driver fo...Gravatar Rengarajan S 1-2/+121
2024-01-048250: microchip: pci1xxxx: Add Syslock support for reading UART system registersGravatar Rengarajan S 1-0/+63
2024-01-048250: microchip: pci1xxxx: Rearranging the structure declarationsGravatar Rengarajan S 1-13/+13
2024-01-04serial: 8250_lpss: copy dma_param using devm_kmemdup()Gravatar Raag Jadav 1-5/+2
2024-01-04tty: serial: 8250: Set RS232 as default for Moxa PCIe board initializationGravatar Crescent CY Hsieh 1-3/+4
2024-01-04serial: 8250_dw: Do not bailout on UCV read returning zeroGravatar Vamshi Gajjela 1-9/+3
2024-01-04serial: imx: Ensure that imx_uart_rs485_config() is called with enabled clockGravatar Christoph Niedermaier 1-11/+12
2024-01-04serial: apbuart: fix console prompt on qemuGravatar Sam Ravnborg 1-1/+1