/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __LINUX_SERIAL_SCI_H #define __LINUX_SERIAL_SCI_H #include <linux/bitops.h> #include <linux/serial_core.h> #include <linux/sh_dma.h> /* * Generic header for SuperH (H)SCI(F) (used by sh/sh64 and related parts) */ /* Serial Control Register (@ = not supported by all parts) */ #define SCSCR_TIE … #define SCSCR_RIE … #define SCSCR_TE … #define SCSCR_RE … #define SCSCR_REIE … #define SCSCR_TOIE … #define SCSCR_CKE1 … #define SCSCR_CKE0 … enum { … }; struct plat_sci_port_ops { … }; /* * Platform device specific platform_data struct */ struct plat_sci_port { … }; #endif /* __LINUX_SERIAL_SCI_H */