mirror of
https://github.com/armbian/linux-cix.git
synced 2026-01-06 12:30:45 -08:00
Pull tty/serial driver updates from Greg KH:
"Here is the big set of TTY and Serial driver updates for 6.1-rc1.
Lots of cleanups in here, no real new functionality this time around,
with the diffstat being that we removed more lines than we added!
Included in here are:
- termios unification cleanups from Al Viro, it's nice to finally get
this work done
- tty serial transmit cleanups in various drivers in preparation for
more cleanup and unification in future releases (that work was not
ready for this release)
- n_gsm fixes and updates
- ktermios cleanups and code reductions
- dt bindings json conversions and updates for new devices
- some serial driver updates for new devices
- lots of other tiny cleanups and janitorial stuff. Full details in
the shortlog.
All of these have been in linux-next for a while with no reported
issues"
* tag 'tty-6.1-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty: (102 commits)
serial: cpm_uart: Don't request IRQ too early for console port
tty: serial: do unlock on a common path in altera_jtaguart_console_putc()
tty: serial: unify TX space reads under altera_jtaguart_tx_space()
tty: serial: use FIELD_GET() in lqasc_tx_ready()
tty: serial: extend lqasc_tx_ready() to lqasc_console_putchar()
tty: serial: allow pxa.c to be COMPILE_TESTed
serial: stm32: Fix unused-variable warning
tty: serial: atmel: Add COMMON_CLK dependency to SERIAL_ATMEL
serial: 8250: Fix restoring termios speed after suspend
serial: Deassert Transmit Enable on probe in driver-specific way
serial: 8250_dma: Convert to use uart_xmit_advance()
serial: 8250_omap: Convert to use uart_xmit_advance()
MAINTAINERS: Solve warning regarding inexistent atmel-usart binding
serial: stm32: Deassert Transmit Enable on ->rs485_config()
serial: ar933x: Deassert Transmit Enable on ->rs485_config()
tty: serial: atmel: Use FIELD_PREP/FIELD_GET
tty: serial: atmel: Make the driver aware of the existence of GCLK
tty: serial: atmel: Only divide Clock Divisor if the IP is USART
tty: serial: atmel: Separate mode clearing between UART and USART
dt-bindings: serial: atmel,at91-usart: Add gclk as a possible USART clock
...
109 lines
4.1 KiB
Makefile
109 lines
4.1 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
extra-y := head.o vmlinux.lds
|
|
asflags-y := $(KBUILD_CFLAGS)
|
|
ccflags-y := -Wno-sign-compare
|
|
|
|
obj-y := entry.o traps.o process.o osf_sys.o irq.o \
|
|
irq_alpha.o signal.o setup.o ptrace.o time.o \
|
|
systbls.o err_common.o io.o bugs.o termios.o
|
|
|
|
obj-$(CONFIG_VGA_HOSE) += console.o
|
|
obj-$(CONFIG_SMP) += smp.o
|
|
obj-$(CONFIG_PCI) += pci.o pci_iommu.o pci-sysfs.o
|
|
obj-$(CONFIG_SRM_ENV) += srm_env.o
|
|
obj-$(CONFIG_MODULES) += module.o
|
|
obj-$(CONFIG_PERF_EVENTS) += perf_event.o
|
|
obj-$(CONFIG_RTC_DRV_ALPHA) += rtc.o
|
|
obj-$(CONFIG_AUDIT) += audit.o
|
|
|
|
ifdef CONFIG_ALPHA_GENERIC
|
|
|
|
obj-y += core_apecs.o core_cia.o core_irongate.o core_lca.o \
|
|
core_mcpcia.o core_polaris.o core_t2.o \
|
|
core_tsunami.o
|
|
|
|
obj-y += sys_alcor.o sys_cabriolet.o sys_dp264.o sys_eb64p.o sys_eiger.o \
|
|
sys_jensen.o sys_miata.o sys_mikasa.o sys_nautilus.o \
|
|
sys_noritake.o sys_rawhide.o sys_ruffian.o sys_rx164.o \
|
|
sys_sable.o sys_sio.o sys_sx164.o sys_takara.o
|
|
|
|
ifndef CONFIG_ALPHA_LEGACY_START_ADDRESS
|
|
obj-y += core_marvel.o core_titan.o core_wildfire.o
|
|
obj-y += sys_marvel.o sys_titan.o sys_wildfire.o
|
|
obj-y += err_ev7.o err_titan.o err_marvel.o
|
|
endif
|
|
|
|
obj-y += irq_pyxis.o irq_i8259.o irq_srm.o
|
|
obj-y += err_ev6.o
|
|
obj-y += es1888.o smc37c669.o smc37c93x.o pc873xx.o gct.o
|
|
obj-y += srmcons.o
|
|
|
|
else
|
|
|
|
# Misc support
|
|
obj-$(CONFIG_ALPHA_SRM) += srmcons.o
|
|
|
|
# Core logic support
|
|
obj-$(CONFIG_ALPHA_APECS) += core_apecs.o
|
|
obj-$(CONFIG_ALPHA_CIA) += core_cia.o
|
|
obj-$(CONFIG_ALPHA_IRONGATE) += core_irongate.o
|
|
obj-$(CONFIG_ALPHA_LCA) += core_lca.o
|
|
obj-$(CONFIG_ALPHA_MARVEL) += core_marvel.o gct.o
|
|
obj-$(CONFIG_ALPHA_MCPCIA) += core_mcpcia.o
|
|
obj-$(CONFIG_ALPHA_POLARIS) += core_polaris.o
|
|
obj-$(CONFIG_ALPHA_T2) += core_t2.o
|
|
obj-$(CONFIG_ALPHA_TSUNAMI) += core_tsunami.o
|
|
obj-$(CONFIG_ALPHA_TITAN) += core_titan.o
|
|
obj-$(CONFIG_ALPHA_WILDFIRE) += core_wildfire.o
|
|
|
|
# Board support
|
|
obj-$(CONFIG_ALPHA_ALCOR) += sys_alcor.o irq_i8259.o irq_srm.o
|
|
obj-$(CONFIG_ALPHA_CABRIOLET) += sys_cabriolet.o irq_i8259.o irq_srm.o \
|
|
pc873xx.o
|
|
obj-$(CONFIG_ALPHA_EB164) += sys_cabriolet.o irq_i8259.o irq_srm.o \
|
|
pc873xx.o
|
|
obj-$(CONFIG_ALPHA_EB66P) += sys_cabriolet.o irq_i8259.o irq_srm.o \
|
|
pc873xx.o
|
|
obj-$(CONFIG_ALPHA_LX164) += sys_cabriolet.o irq_i8259.o irq_srm.o \
|
|
smc37c93x.o
|
|
obj-$(CONFIG_ALPHA_PC164) += sys_cabriolet.o irq_i8259.o irq_srm.o \
|
|
smc37c93x.o
|
|
obj-$(CONFIG_ALPHA_DP264) += sys_dp264.o irq_i8259.o es1888.o smc37c669.o
|
|
obj-$(CONFIG_ALPHA_SHARK) += sys_dp264.o irq_i8259.o es1888.o smc37c669.o
|
|
obj-$(CONFIG_ALPHA_TITAN) += sys_titan.o irq_i8259.o smc37c669.o
|
|
obj-$(CONFIG_ALPHA_EB64P) += sys_eb64p.o irq_i8259.o
|
|
obj-$(CONFIG_ALPHA_EB66) += sys_eb64p.o irq_i8259.o
|
|
obj-$(CONFIG_ALPHA_EIGER) += sys_eiger.o irq_i8259.o
|
|
obj-$(CONFIG_ALPHA_JENSEN) += sys_jensen.o pci-noop.o irq_i8259.o
|
|
obj-$(CONFIG_ALPHA_MARVEL) += sys_marvel.o
|
|
obj-$(CONFIG_ALPHA_MIATA) += sys_miata.o irq_pyxis.o irq_i8259.o \
|
|
es1888.o smc37c669.o
|
|
obj-$(CONFIG_ALPHA_MIKASA) += sys_mikasa.o irq_i8259.o irq_srm.o
|
|
obj-$(CONFIG_ALPHA_NAUTILUS) += sys_nautilus.o irq_i8259.o irq_srm.o
|
|
obj-$(CONFIG_ALPHA_NORITAKE) += sys_noritake.o irq_i8259.o
|
|
obj-$(CONFIG_ALPHA_RAWHIDE) += sys_rawhide.o irq_i8259.o
|
|
obj-$(CONFIG_ALPHA_RUFFIAN) += sys_ruffian.o irq_pyxis.o irq_i8259.o
|
|
obj-$(CONFIG_ALPHA_RX164) += sys_rx164.o irq_i8259.o
|
|
obj-$(CONFIG_ALPHA_SABLE) += sys_sable.o
|
|
obj-$(CONFIG_ALPHA_LYNX) += sys_sable.o
|
|
obj-$(CONFIG_ALPHA_BOOK1) += sys_sio.o irq_i8259.o irq_srm.o pc873xx.o
|
|
obj-$(CONFIG_ALPHA_AVANTI) += sys_sio.o irq_i8259.o irq_srm.o pc873xx.o
|
|
obj-$(CONFIG_ALPHA_NONAME) += sys_sio.o irq_i8259.o irq_srm.o pc873xx.o
|
|
obj-$(CONFIG_ALPHA_P2K) += sys_sio.o irq_i8259.o irq_srm.o pc873xx.o
|
|
obj-$(CONFIG_ALPHA_XL) += sys_sio.o irq_i8259.o irq_srm.o pc873xx.o
|
|
obj-$(CONFIG_ALPHA_SX164) += sys_sx164.o irq_pyxis.o irq_i8259.o \
|
|
irq_srm.o smc37c669.o
|
|
obj-$(CONFIG_ALPHA_TAKARA) += sys_takara.o irq_i8259.o pc873xx.o
|
|
obj-$(CONFIG_ALPHA_WILDFIRE) += sys_wildfire.o irq_i8259.o
|
|
|
|
# Error support
|
|
obj-$(CONFIG_ALPHA_MARVEL) += err_ev7.o err_marvel.o
|
|
obj-$(CONFIG_ALPHA_NAUTILUS) += err_ev6.o
|
|
obj-$(CONFIG_ALPHA_TITAN) += err_ev6.o err_titan.o
|
|
|
|
endif # GENERIC
|