Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 


Quelle  serial_core.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0+
/*
 *  Driver core for serial ports
 *
 *  Based on drivers/char/serial.c, by Linus Torvalds, Theodore Ts'o.
 *
 *  Copyright 1999 ARM Limited
 *  Copyright (C) 2000-2001 Deep Blue Solutions Ltd.
 */

#include <linux/module.h>
#include <linux/tty.h>
#include <linux/tty_flip.h>
#include <linux/slab.h>
#include <linux/sched/signal.h>
#include <linux/init.h>
#include <linux/console.h>
#include <linux/gpio/consumer.h>
#include <linux/kernel.h>
#include <linux/of.h>
#include <linux/pm_runtime.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/device.h>
#include <linux/serial.h> /* for serial_state and serial_icounter_struct */
#include <linux/serial_core.h>
#include <linux/sysrq.h>
#include <linux/delay.h>
#include <linux/mutex.h>
#include <linux/math64.h>
#include <linux/security.h>

#include <linux/irq.h>
#include <linux/uaccess.h>

#include "serial_base.h"

/*
 * This is used to lock changes in serial line configuration.
 */

static DEFINE_MUTEX(port_mutex);

/*
 * lockdep: port->lock is initialized in two places, but we
 *          want only one lock-class:
 */

static struct lock_class_key port_lock_key;

#define HIGH_BITS_OFFSET ((sizeof(long)-sizeof(int))*8)

/*
 * Max time with active RTS before/after data is sent.
 */

#define RS485_MAX_RTS_DELAY 100 /* msecs */

static void uart_change_pm(struct uart_state *state,
      enum uart_pm_state pm_state);

static void uart_port_shutdown(struct tty_port *port);

static int uart_dcd_enabled(struct uart_port *uport)
{
 return !!(uport->status & UPSTAT_DCD_ENABLE);
}

static inline struct uart_port *uart_port_ref(struct uart_state *state)
{
 if (atomic_add_unless(&state->refcount, 1, 0))
  return state->uart_port;
 return NULL;
}

static inline void uart_port_deref(struct uart_port *uport)
{
 if (atomic_dec_and_test(&uport->state->refcount))
  wake_up(&uport->state->remove_wait);
}

static inline struct uart_port *uart_port_ref_lock(struct uart_state *state, unsigned long *flags)
{
 struct uart_port *uport = uart_port_ref(state);

 if (uport)
  uart_port_lock_irqsave(uport, flags);

 return uport;
}

static inline void uart_port_unlock_deref(struct uart_port *uport, unsigned long flags)
{
 if (uport) {
  uart_port_unlock_irqrestore(uport, flags);
  uart_port_deref(uport);
 }
}

static inline struct uart_port *uart_port_check(struct uart_state *state)
{
 lockdep_assert_held(&state->port.mutex);
 return state->uart_port;
}

/**
 * uart_write_wakeup - schedule write processing
 * @port: port to be processed
 *
 * This routine is used by the interrupt handler to schedule processing in the
 * software interrupt portion of the driver. A driver is expected to call this
 * function when the number of characters in the transmit buffer have dropped
 * below a threshold.
 *
 * Locking: @port->lock should be held
 */

void uart_write_wakeup(struct uart_port *port)
{
 struct uart_state *state = port->state;
 /*
 * This means you called this function _after_ the port was
 * closed.  No cookie for you.
 */

 BUG_ON(!state);
 tty_port_tty_wakeup(&state->port);
}
EXPORT_SYMBOL(uart_write_wakeup);

static void uart_stop(struct tty_struct *tty)
{
 struct uart_state *state = tty->driver_data;
 struct uart_port *port;
 unsigned long flags;

 port = uart_port_ref_lock(state, &flags);
 if (port)
  port->ops->stop_tx(port);
 uart_port_unlock_deref(port, flags);
}

static void __uart_start(struct uart_state *state)
{
 struct uart_port *port = state->uart_port;
 struct serial_port_device *port_dev;
 int err;

 if (!port || port->flags & UPF_DEAD || uart_tx_stopped(port))
  return;

 port_dev = port->port_dev;

 /* Increment the runtime PM usage count for the active check below */
 err = pm_runtime_get(&port_dev->dev);
 if (err < 0 && err != -EINPROGRESS) {
  pm_runtime_put_noidle(&port_dev->dev);
  return;
 }

 /*
 * Start TX if enabled, and kick runtime PM. If the device is not
 * enabled, serial_port_runtime_resume() calls start_tx() again
 * after enabling the device.
 */

 if (!pm_runtime_enabled(port->dev) || pm_runtime_active(&port_dev->dev))
  port->ops->start_tx(port);
 pm_runtime_mark_last_busy(&port_dev->dev);
 pm_runtime_put_autosuspend(&port_dev->dev);
}

static void uart_start(struct tty_struct *tty)
{
 struct uart_state *state = tty->driver_data;
 struct uart_port *port;
 unsigned long flags;

 port = uart_port_ref_lock(state, &flags);
 __uart_start(state);
 uart_port_unlock_deref(port, flags);
}

static void
uart_update_mctrl(struct uart_port *port, unsigned int set, unsigned int clear)
{
 unsigned long flags;
 unsigned int old;

 uart_port_lock_irqsave(port, &flags);
 old = port->mctrl;
 port->mctrl = (old & ~clear) | set;
 if (old != port->mctrl && !(port->rs485.flags & SER_RS485_ENABLED))
  port->ops->set_mctrl(port, port->mctrl);
 uart_port_unlock_irqrestore(port, flags);
}

#define uart_set_mctrl(port, set) uart_update_mctrl(port, set, 0)
#define uart_clear_mctrl(port, clear) uart_update_mctrl(port, 0, clear)

static void uart_port_dtr_rts(struct uart_port *uport, bool active)
{
 if (active)
  uart_set_mctrl(uport, TIOCM_DTR | TIOCM_RTS);
 else
  uart_clear_mctrl(uport, TIOCM_DTR | TIOCM_RTS);
}

/* Caller holds port mutex */
static void uart_change_line_settings(struct tty_struct *tty, struct uart_state *state,
          const struct ktermios *old_termios)
{
 struct uart_port *uport = uart_port_check(state);
 struct ktermios *termios;
 bool old_hw_stopped;

 /*
 * If we have no tty, termios, or the port does not exist,
 * then we can't set the parameters for this port.
 */

 if (!tty || uport->type == PORT_UNKNOWN)
  return;

 termios = &tty->termios;
 uport->ops->set_termios(uport, termios, old_termios);

 /*
 * Set modem status enables based on termios cflag
 */

 uart_port_lock_irq(uport);
 if (termios->c_cflag & CRTSCTS)
  uport->status |= UPSTAT_CTS_ENABLE;
 else
  uport->status &= ~UPSTAT_CTS_ENABLE;

 if (termios->c_cflag & CLOCAL)
  uport->status &= ~UPSTAT_DCD_ENABLE;
 else
  uport->status |= UPSTAT_DCD_ENABLE;

 /* reset sw-assisted CTS flow control based on (possibly) new mode */
 old_hw_stopped = uport->hw_stopped;
 uport->hw_stopped = uart_softcts_mode(uport) &&
       !(uport->ops->get_mctrl(uport) & TIOCM_CTS);
 if (uport->hw_stopped != old_hw_stopped) {
  if (!old_hw_stopped)
   uport->ops->stop_tx(uport);
  else
   __uart_start(state);
 }
 uart_port_unlock_irq(uport);
}

static int uart_alloc_xmit_buf(struct tty_port *port)
{
 struct uart_state *state = container_of(port, struct uart_state, port);
 struct uart_port *uport;
 unsigned long flags;
 unsigned long page;

 /*
 * Initialise and allocate the transmit and temporary
 * buffer.
 */

 page = get_zeroed_page(GFP_KERNEL);
 if (!page)
  return -ENOMEM;

 uport = uart_port_ref_lock(state, &flags);
 if (!state->port.xmit_buf) {
  state->port.xmit_buf = (unsigned char *)page;
  kfifo_init(&state->port.xmit_fifo, state->port.xmit_buf,
    PAGE_SIZE);
  uart_port_unlock_deref(uport, flags);
 } else {
  uart_port_unlock_deref(uport, flags);
  /*
 * Do not free() the page under the port lock, see
 * uart_free_xmit_buf().
 */

  free_page(page);
 }

 return 0;
}

static void uart_free_xmit_buf(struct tty_port *port)
{
 struct uart_state *state = container_of(port, struct uart_state, port);
 struct uart_port *uport;
 unsigned long flags;
 char *xmit_buf;

 /*
 * Do not free() the transmit buffer page under the port lock since
 * this can create various circular locking scenarios. For instance,
 * console driver may need to allocate/free a debug object, which
 * can end up in printk() recursion.
 */

 uport = uart_port_ref_lock(state, &flags);
 xmit_buf = port->xmit_buf;
 port->xmit_buf = NULL;
 INIT_KFIFO(port->xmit_fifo);
 uart_port_unlock_deref(uport, flags);

 free_page((unsigned long)xmit_buf);
}

/*
 * Startup the port.  This will be called once per open.  All calls
 * will be serialised by the per-port mutex.
 */

static int uart_port_startup(struct tty_struct *tty, struct uart_state *state,
        bool init_hw)
{
 struct uart_port *uport = uart_port_check(state);
 int retval;

 if (uport->type == PORT_UNKNOWN)
  return 1;

 /*
 * Make sure the device is in D0 state.
 */

 uart_change_pm(state, UART_PM_STATE_ON);

 retval = uart_alloc_xmit_buf(&state->port);
 if (retval)
  return retval;

 retval = uport->ops->startup(uport);
 if (retval == 0) {
  if (uart_console(uport) && uport->cons->cflag) {
   tty->termios.c_cflag = uport->cons->cflag;
   tty->termios.c_ispeed = uport->cons->ispeed;
   tty->termios.c_ospeed = uport->cons->ospeed;
   uport->cons->cflag = 0;
   uport->cons->ispeed = 0;
   uport->cons->ospeed = 0;
  }
  /*
 * Initialise the hardware port settings.
 */

  uart_change_line_settings(tty, state, NULL);

  /*
 * Setup the RTS and DTR signals once the
 * port is open and ready to respond.
 */

  if (init_hw && C_BAUD(tty))
   uart_port_dtr_rts(uport, true);
 }

 /*
 * This is to allow setserial on this port. People may want to set
 * port/irq/type and then reconfigure the port properly if it failed
 * now.
 */

 if (retval && capable(CAP_SYS_ADMIN))
  return 1;

 return retval;
}

static int uart_startup(struct tty_struct *tty, struct uart_state *state,
   bool init_hw)
{
 struct tty_port *port = &state->port;
 struct uart_port *uport;
 int retval;

 if (tty_port_initialized(port))
  goto out_base_port_startup;

 retval = uart_port_startup(tty, state, init_hw);
 if (retval) {
  set_bit(TTY_IO_ERROR, &tty->flags);
  return retval;
 }

out_base_port_startup:
 uport = uart_port_check(state);
 if (!uport)
  return -EIO;

 serial_base_port_startup(uport);

 return 0;
}

/*
 * This routine will shutdown a serial port; interrupts are disabled, and
 * DTR is dropped if the hangup on close termio flag is on.  Calls to
 * uart_shutdown are serialised by the per-port semaphore.
 *
 * uport == NULL if uart_port has already been removed
 */

static void uart_shutdown(struct tty_struct *tty, struct uart_state *state)
{
 struct uart_port *uport = uart_port_check(state);
 struct tty_port *port = &state->port;

 /*
 * Set the TTY IO error marker
 */

 if (tty)
  set_bit(TTY_IO_ERROR, &tty->flags);

 if (uport)
  serial_base_port_shutdown(uport);

 if (tty_port_initialized(port)) {
  tty_port_set_initialized(port, false);

  /*
 * Turn off DTR and RTS early.
 */

  if (uport) {
   if (uart_console(uport) && tty) {
    uport->cons->cflag = tty->termios.c_cflag;
    uport->cons->ispeed = tty->termios.c_ispeed;
    uport->cons->ospeed = tty->termios.c_ospeed;
   }

   if (!tty || C_HUPCL(tty))
    uart_port_dtr_rts(uport, false);
  }

  uart_port_shutdown(port);
 }

 /*
 * It's possible for shutdown to be called after suspend if we get
 * a DCD drop (hangup) at just the right time.  Clear suspended bit so
 * we don't try to resume a port that has been shutdown.
 */

 tty_port_set_suspended(port, false);

 uart_free_xmit_buf(port);
}

/**
 * uart_update_timeout - update per-port frame timing information
 * @port: uart_port structure describing the port
 * @cflag: termios cflag value
 * @baud: speed of the port
 *
 * Set the @port frame timing information from which the FIFO timeout value is
 * derived. The @cflag value should reflect the actual hardware settings as
 * number of bits, parity, stop bits and baud rate is taken into account here.
 *
 * Locking: caller is expected to take @port->lock
 */

void
uart_update_timeout(struct uart_port *port, unsigned int cflag,
      unsigned int baud)
{
 u64 temp = tty_get_frame_size(cflag);

 temp *= NSEC_PER_SEC;
 port->frame_time = (unsigned int)DIV64_U64_ROUND_UP(temp, baud);
}
EXPORT_SYMBOL(uart_update_timeout);

/**
 * uart_get_baud_rate - return baud rate for a particular port
 * @port: uart_port structure describing the port in question.
 * @termios: desired termios settings
 * @old: old termios (or %NULL)
 * @min: minimum acceptable baud rate
 * @max: maximum acceptable baud rate
 *
 * Decode the termios structure into a numeric baud rate, taking account of the
 * magic 38400 baud rate (with spd_* flags), and mapping the %B0 rate to 9600
 * baud.
 *
 * If the new baud rate is invalid, try the @old termios setting. If it's still
 * invalid, we try 9600 baud. If that is also invalid 0 is returned.
 *
 * The @termios structure is updated to reflect the baud rate we're actually
 * going to be using. Don't do this for the case where B0 is requested ("hang
 * up").
 *
 * Locking: caller dependent
 */

unsigned int
uart_get_baud_rate(struct uart_port *port, struct ktermios *termios,
     const struct ktermios *old, unsigned int min, unsigned int max)
{
 unsigned int try;
 unsigned int baud;
 unsigned int altbaud;
 int hung_up = 0;
 upf_t flags = port->flags & UPF_SPD_MASK;

 switch (flags) {
 case UPF_SPD_HI:
  altbaud = 57600;
  break;
 case UPF_SPD_VHI:
  altbaud = 115200;
  break;
 case UPF_SPD_SHI:
  altbaud = 230400;
  break;
 case UPF_SPD_WARP:
  altbaud = 460800;
  break;
 default:
  altbaud = 38400;
  break;
 }

 for (try = 0; try < 2; try++) {
  baud = tty_termios_baud_rate(termios);

  /*
 * The spd_hi, spd_vhi, spd_shi, spd_warp kludge...
 * Die! Die! Die!
 */

  if (try == 0 && baud == 38400)
   baud = altbaud;

  /*
 * Special case: B0 rate.
 */

  if (baud == 0) {
   hung_up = 1;
   baud = 9600;
  }

  if (baud >= min && baud <= max)
   return baud;

  /*
 * Oops, the quotient was zero.  Try again with
 * the old baud rate if possible.
 */

  termios->c_cflag &= ~CBAUD;
  if (old) {
   baud = tty_termios_baud_rate(old);
   if (!hung_up)
    tty_termios_encode_baud_rate(termios,
        baud, baud);
   old = NULL;
   continue;
  }

  /*
 * As a last resort, if the range cannot be met then clip to
 * the nearest chip supported rate.
 */

  if (!hung_up) {
   if (baud <= min)
    tty_termios_encode_baud_rate(termios,
       min + 1, min + 1);
   else
    tty_termios_encode_baud_rate(termios,
       max - 1, max - 1);
  }
 }
 return 0;
}
EXPORT_SYMBOL(uart_get_baud_rate);

/**
 * uart_get_divisor - return uart clock divisor
 * @port: uart_port structure describing the port
 * @baud: desired baud rate
 *
 * Calculate the divisor (baud_base / baud) for the specified @baud,
 * appropriately rounded.
 *
 * If 38400 baud and custom divisor is selected, return the custom divisor
 * instead.
 *
 * Locking: caller dependent
 */

unsigned int
uart_get_divisor(struct uart_port *port, unsigned int baud)
{
 unsigned int quot;

 /*
 * Old custom speed handling.
 */

 if (baud == 38400 && (port->flags & UPF_SPD_MASK) == UPF_SPD_CUST)
  quot = port->custom_divisor;
 else
  quot = DIV_ROUND_CLOSEST(port->uartclk, 16 * baud);

 return quot;
}
EXPORT_SYMBOL(uart_get_divisor);

static int uart_put_char(struct tty_struct *tty, u8 c)
{
 struct uart_state *state = tty->driver_data;
 struct uart_port *port;
 unsigned long flags;
 int ret = 0;

 port = uart_port_ref_lock(state, &flags);
 if (!state->port.xmit_buf) {
  uart_port_unlock_deref(port, flags);
  return 0;
 }

 if (port)
  ret = kfifo_put(&state->port.xmit_fifo, c);
 uart_port_unlock_deref(port, flags);
 return ret;
}

static void uart_flush_chars(struct tty_struct *tty)
{
 uart_start(tty);
}

static ssize_t uart_write(struct tty_struct *tty, const u8 *buf, size_t count)
{
 struct uart_state *state = tty->driver_data;
 struct uart_port *port;
 unsigned long flags;
 int ret = 0;

 /*
 * This means you called this function _after_ the port was
 * closed.  No cookie for you.
 */

 if (WARN_ON(!state))
  return -EL3HLT;

 port = uart_port_ref_lock(state, &flags);
 if (!state->port.xmit_buf) {
  uart_port_unlock_deref(port, flags);
  return 0;
 }

 if (port)
  ret = kfifo_in(&state->port.xmit_fifo, buf, count);

 __uart_start(state);
 uart_port_unlock_deref(port, flags);
 return ret;
}

static unsigned int uart_write_room(struct tty_struct *tty)
{
 struct uart_state *state = tty->driver_data;
 struct uart_port *port;
 unsigned long flags;
 unsigned int ret;

 port = uart_port_ref_lock(state, &flags);
 ret = kfifo_avail(&state->port.xmit_fifo);
 uart_port_unlock_deref(port, flags);
 return ret;
}

static unsigned int uart_chars_in_buffer(struct tty_struct *tty)
{
 struct uart_state *state = tty->driver_data;
 struct uart_port *port;
 unsigned long flags;
 unsigned int ret;

 port = uart_port_ref_lock(state, &flags);
 ret = kfifo_len(&state->port.xmit_fifo);
 uart_port_unlock_deref(port, flags);
 return ret;
}

static void uart_flush_buffer(struct tty_struct *tty)
{
 struct uart_state *state = tty->driver_data;
 struct uart_port *port;
 unsigned long flags;

 /*
 * This means you called this function _after_ the port was
 * closed.  No cookie for you.
 */

 if (WARN_ON(!state))
  return;

 pr_debug("uart_flush_buffer(%d) called\n", tty->index);

 port = uart_port_ref_lock(state, &flags);
 if (!port)
  return;
 kfifo_reset(&state->port.xmit_fifo);
 if (port->ops->flush_buffer)
  port->ops->flush_buffer(port);
 uart_port_unlock_deref(port, flags);
 tty_port_tty_wakeup(&state->port);
}

/*
 * This function performs low-level write of high-priority XON/XOFF
 * character and accounting for it.
 *
 * Requires uart_port to implement .serial_out().
 */

void uart_xchar_out(struct uart_port *uport, int offset)
{
 serial_port_out(uport, offset, uport->x_char);
 uport->icount.tx++;
 uport->x_char = 0;
}
EXPORT_SYMBOL_GPL(uart_xchar_out);

/*
 * This function is used to send a high-priority XON/XOFF character to
 * the device
 */

static void uart_send_xchar(struct tty_struct *tty, u8 ch)
{
 struct uart_state *state = tty->driver_data;
 struct uart_port *port;
 unsigned long flags;

 port = uart_port_ref(state);
 if (!port)
  return;

 if (port->ops->send_xchar)
  port->ops->send_xchar(port, ch);
 else {
  uart_port_lock_irqsave(port, &flags);
  port->x_char = ch;
  if (ch)
   port->ops->start_tx(port);
  uart_port_unlock_irqrestore(port, flags);
 }
 uart_port_deref(port);
}

static void uart_throttle(struct tty_struct *tty)
{
 struct uart_state *state = tty->driver_data;
 upstat_t mask = UPSTAT_SYNC_FIFO;
 struct uart_port *port;

 port = uart_port_ref(state);
 if (!port)
  return;

 if (I_IXOFF(tty))
  mask |= UPSTAT_AUTOXOFF;
 if (C_CRTSCTS(tty))
  mask |= UPSTAT_AUTORTS;

 if (port->status & mask) {
  port->ops->throttle(port);
  mask &= ~port->status;
 }

 if (mask & UPSTAT_AUTORTS)
  uart_clear_mctrl(port, TIOCM_RTS);

 if (mask & UPSTAT_AUTOXOFF)
  uart_send_xchar(tty, STOP_CHAR(tty));

 uart_port_deref(port);
}

static void uart_unthrottle(struct tty_struct *tty)
{
 struct uart_state *state = tty->driver_data;
 upstat_t mask = UPSTAT_SYNC_FIFO;
 struct uart_port *port;

 port = uart_port_ref(state);
 if (!port)
  return;

 if (I_IXOFF(tty))
  mask |= UPSTAT_AUTOXOFF;
 if (C_CRTSCTS(tty))
  mask |= UPSTAT_AUTORTS;

 if (port->status & mask) {
  port->ops->unthrottle(port);
  mask &= ~port->status;
 }

 if (mask & UPSTAT_AUTORTS)
  uart_set_mctrl(port, TIOCM_RTS);

 if (mask & UPSTAT_AUTOXOFF)
  uart_send_xchar(tty, START_CHAR(tty));

 uart_port_deref(port);
}

static int uart_get_info(struct tty_port *port, struct serial_struct *retinfo)
{
 struct uart_state *state = container_of(port, struct uart_state, port);
 struct uart_port *uport;

 /* Initialize structure in case we error out later to prevent any stack info leakage. */
 *retinfo = (struct serial_struct){};

 /*
 * Ensure the state we copy is consistent and no hardware changes
 * occur as we go
 */

 guard(mutex)(&port->mutex);
 uport = uart_port_check(state);
 if (!uport)
  return -ENODEV;

 retinfo->type     = uport->type;
 retinfo->line     = uport->line;
 retinfo->port     = uport->iobase;
 if (HIGH_BITS_OFFSET)
  retinfo->port_high = (long) uport->iobase >> HIGH_BITS_OFFSET;
 retinfo->irq      = uport->irq;
 retinfo->flags     = (__force int)uport->flags;
 retinfo->xmit_fifo_size  = uport->fifosize;
 retinfo->baud_base     = uport->uartclk / 16;
 retinfo->close_delay     = jiffies_to_msecs(port->close_delay) / 10;
 retinfo->closing_wait    = port->closing_wait == ASYNC_CLOSING_WAIT_NONE ?
    ASYNC_CLOSING_WAIT_NONE :
    jiffies_to_msecs(port->closing_wait) / 10;
 retinfo->custom_divisor  = uport->custom_divisor;
 retinfo->hub6     = uport->hub6;
 retinfo->io_type         = uport->iotype;
 retinfo->iomem_reg_shift = uport->regshift;
 retinfo->iomem_base      = (void *)(unsigned long)uport->mapbase;

 return 0;
}

static int uart_get_info_user(struct tty_struct *tty,
    struct serial_struct *ss)
{
 struct uart_state *state = tty->driver_data;
 struct tty_port *port = &state->port;

 return uart_get_info(port, ss) < 0 ? -EIO : 0;
}

static int uart_change_port(struct uart_port *uport,
       const struct serial_struct *new_info,
       unsigned long new_port)
{
 unsigned long old_iobase, old_mapbase;
 unsigned int old_type, old_iotype, old_hub6, old_shift;
 int retval;

 old_iobase = uport->iobase;
 old_mapbase = uport->mapbase;
 old_type = uport->type;
 old_hub6 = uport->hub6;
 old_iotype = uport->iotype;
 old_shift = uport->regshift;

 if (old_type != PORT_UNKNOWN && uport->ops->release_port)
  uport->ops->release_port(uport);

 uport->iobase = new_port;
 uport->type = new_info->type;
 uport->hub6 = new_info->hub6;
 uport->iotype = new_info->io_type;
 uport->regshift = new_info->iomem_reg_shift;
 uport->mapbase = (unsigned long)new_info->iomem_base;

 if (uport->type == PORT_UNKNOWN || !uport->ops->request_port)
  return 0;

 retval = uport->ops->request_port(uport);
 if (retval == 0)
  return 0; /* succeeded => done */

 /*
 * If we fail to request resources for the new port, try to restore the
 * old settings.
 */

 uport->iobase = old_iobase;
 uport->type = old_type;
 uport->hub6 = old_hub6;
 uport->iotype = old_iotype;
 uport->regshift = old_shift;
 uport->mapbase = old_mapbase;

 if (old_type == PORT_UNKNOWN)
  return retval;

 retval = uport->ops->request_port(uport);
 /* If we failed to restore the old settings, we fail like this. */
 if (retval)
  uport->type = PORT_UNKNOWN;

 /* We failed anyway. */
 return -EBUSY;
}

static int uart_set_info(struct tty_struct *tty, struct tty_port *port,
    struct uart_state *state,
    struct serial_struct *new_info)
{
 struct uart_port *uport = uart_port_check(state);
 unsigned long new_port;
 unsigned int old_custom_divisor, close_delay, closing_wait;
 bool change_irq, change_port;
 upf_t old_flags, new_flags;
 int retval;

 if (!uport)
  return -EIO;

 new_port = new_info->port;
 if (HIGH_BITS_OFFSET)
  new_port += (unsigned long) new_info->port_high << HIGH_BITS_OFFSET;

 new_info->irq = irq_canonicalize(new_info->irq);
 close_delay = msecs_to_jiffies(new_info->close_delay * 10);
 closing_wait = new_info->closing_wait == ASYNC_CLOSING_WAIT_NONE ?
   ASYNC_CLOSING_WAIT_NONE :
   msecs_to_jiffies(new_info->closing_wait * 10);


 change_irq  = !(uport->flags & UPF_FIXED_PORT)
  && new_info->irq != uport->irq;

 /*
 * Since changing the 'type' of the port changes its resource
 * allocations, we should treat type changes the same as
 * IO port changes.
 */

 change_port = !(uport->flags & UPF_FIXED_PORT)
  && (new_port != uport->iobase ||
      (unsigned long)new_info->iomem_base != uport->mapbase ||
      new_info->hub6 != uport->hub6 ||
      new_info->io_type != uport->iotype ||
      new_info->iomem_reg_shift != uport->regshift ||
      new_info->type != uport->type);

 old_flags = uport->flags;
 new_flags = (__force upf_t)new_info->flags;
 old_custom_divisor = uport->custom_divisor;

 if (!(uport->flags & UPF_FIXED_PORT)) {
  unsigned int uartclk = new_info->baud_base * 16;
  /* check needs to be done here before other settings made */
  if (uartclk == 0)
   return -EINVAL;
 }
 if (!capable(CAP_SYS_ADMIN)) {
  if (change_irq || change_port ||
      (new_info->baud_base != uport->uartclk / 16) ||
      (close_delay != port->close_delay) ||
      (closing_wait != port->closing_wait) ||
      (new_info->xmit_fifo_size &&
       new_info->xmit_fifo_size != uport->fifosize) ||
      (((new_flags ^ old_flags) & ~UPF_USR_MASK) != 0))
   return -EPERM;
  uport->flags = ((uport->flags & ~UPF_USR_MASK) |
          (new_flags & UPF_USR_MASK));
  uport->custom_divisor = new_info->custom_divisor;
  goto check_and_exit;
 }

 if (change_irq || change_port) {
  retval = security_locked_down(LOCKDOWN_TIOCSSERIAL);
  if (retval)
   return retval;
 }

  /* Ask the low level driver to verify the settings. */
 if (uport->ops->verify_port) {
  retval = uport->ops->verify_port(uport, new_info);
  if (retval)
   return retval;
 }

 if ((new_info->irq >= irq_get_nr_irqs()) || (new_info->irq < 0) ||
     (new_info->baud_base < 9600))
  return -EINVAL;

 if (change_port || change_irq) {
   /* Make sure that we are the sole user of this port. */
  if (tty_port_users(port) > 1)
   return -EBUSY;

  /*
 * We need to shutdown the serial port at the old
 * port/type/irq combination.
 */

  uart_shutdown(tty, state);
 }

 if (change_port) {
  retval = uart_change_port(uport, new_info, new_port);
  if (retval)
   return retval;
 }

 if (change_irq)
  uport->irq      = new_info->irq;
 if (!(uport->flags & UPF_FIXED_PORT))
  uport->uartclk  = new_info->baud_base * 16;
 uport->flags            = (uport->flags & ~UPF_CHANGE_MASK) |
     (new_flags & UPF_CHANGE_MASK);
 uport->custom_divisor   = new_info->custom_divisor;
 port->close_delay     = close_delay;
 port->closing_wait    = closing_wait;
 if (new_info->xmit_fifo_size)
  uport->fifosize = new_info->xmit_fifo_size;

 check_and_exit:
 if (uport->type == PORT_UNKNOWN)
  return 0;

 if (tty_port_initialized(port)) {
  if (((old_flags ^ uport->flags) & UPF_SPD_MASK) ||
      old_custom_divisor != uport->custom_divisor) {
   /*
 * If they're setting up a custom divisor or speed,
 * instead of clearing it, then bitch about it.
 */

   if (uport->flags & UPF_SPD_MASK) {
    dev_notice_ratelimited(uport->dev,
           "%s sets custom speed on %s. This is deprecated.\n",
          current->comm,
          tty_name(port->tty));
   }
   uart_change_line_settings(tty, state, NULL);
  }

  return 0;
 }

 retval = uart_startup(tty, state, true);
 if (retval < 0)
  return retval;
 if (retval == 0)
  tty_port_set_initialized(port, true);

 return 0;
}

static int uart_set_info_user(struct tty_struct *tty, struct serial_struct *ss)
{
 struct uart_state *state = tty->driver_data;
 struct tty_port *port = &state->port;
 int retval;

 down_write(&tty->termios_rwsem);
 /*
 * This semaphore protects port->count.  It is also
 * very useful to prevent opens.  Also, take the
 * port configuration semaphore to make sure that a
 * module insertion/removal doesn't change anything
 * under us.
 */

 mutex_lock(&port->mutex);
 retval = uart_set_info(tty, port, state, ss);
 mutex_unlock(&port->mutex);
 up_write(&tty->termios_rwsem);
 return retval;
}

/**
 * uart_get_lsr_info - get line status register info
 * @tty: tty associated with the UART
 * @state: UART being queried
 * @value: returned modem value
 */

static int uart_get_lsr_info(struct tty_struct *tty,
   struct uart_state *state, unsigned int __user *value)
{
 struct uart_port *uport = uart_port_check(state);
 unsigned int result;

 result = uport->ops->tx_empty(uport);

 /*
 * If we're about to load something into the transmit
 * register, we'll pretend the transmitter isn't empty to
 * avoid a race condition (depending on when the transmit
 * interrupt happens).
 */

 if (uport->x_char ||
     (!kfifo_is_empty(&state->port.xmit_fifo) &&
      !uart_tx_stopped(uport)))
  result &= ~TIOCSER_TEMT;

 return put_user(result, value);
}

static int uart_tiocmget(struct tty_struct *tty)
{
 struct uart_state *state = tty->driver_data;
 struct tty_port *port = &state->port;
 struct uart_port *uport;
 int result;

 guard(mutex)(&port->mutex);

 uport = uart_port_check(state);
 if (!uport || tty_io_error(tty))
  return -EIO;

 uart_port_lock_irq(uport);
 result = uport->mctrl;
 result |= uport->ops->get_mctrl(uport);
 uart_port_unlock_irq(uport);

 return result;
}

static int
uart_tiocmset(struct tty_struct *tty, unsigned int set, unsigned int clear)
{
 struct uart_state *state = tty->driver_data;
 struct tty_port *port = &state->port;
 struct uart_port *uport;

 guard(mutex)(&port->mutex);

 uport = uart_port_check(state);
 if (!uport || tty_io_error(tty))
  return -EIO;

 uart_update_mctrl(uport, set, clear);

 return 0;
}

static int uart_break_ctl(struct tty_struct *tty, int break_state)
{
 struct uart_state *state = tty->driver_data;
 struct tty_port *port = &state->port;
 struct uart_port *uport;

 guard(mutex)(&port->mutex);

 uport = uart_port_check(state);
 if (!uport)
  return -EIO;

 if (uport->type != PORT_UNKNOWN && uport->ops->break_ctl)
  uport->ops->break_ctl(uport, break_state);

 return 0;
}

static int uart_do_autoconfig(struct tty_struct *tty, struct uart_state *state)
{
 struct tty_port *port = &state->port;
 struct uart_port *uport;
 int flags, ret;

 if (!capable(CAP_SYS_ADMIN))
  return -EPERM;

 /*
 * Take the per-port semaphore.  This prevents count from
 * changing, and hence any extra opens of the port while
 * we're auto-configuring.
 */

 scoped_cond_guard(mutex_intr, return -ERESTARTSYS, &port->mutex) {
  uport = uart_port_check(state);
  if (!uport)
   return -EIO;

  if (tty_port_users(port) != 1)
   return -EBUSY;

  uart_shutdown(tty, state);

  /*
 * If we already have a port type configured,
 * we must release its resources.
 */

  if (uport->type != PORT_UNKNOWN && uport->ops->release_port)
   uport->ops->release_port(uport);

  flags = UART_CONFIG_TYPE;
  if (uport->flags & UPF_AUTO_IRQ)
   flags |= UART_CONFIG_IRQ;

  /*
 * This will claim the ports resources if
 * a port is found.
 */

  uport->ops->config_port(uport, flags);

  ret = uart_startup(tty, state, true);
  if (ret < 0)
   return ret;
  if (ret > 0)
   return 0;

  tty_port_set_initialized(port, true);
 }

 return 0;
}

static void uart_enable_ms(struct uart_port *uport)
{
 /*
 * Force modem status interrupts on
 */

 if (uport->ops->enable_ms)
  uport->ops->enable_ms(uport);
}

/*
 * Wait for any of the 4 modem inputs (DCD,RI,DSR,CTS) to change
 * - mask passed in arg for lines of interest
 *   (use |'ed TIOCM_RNG/DSR/CD/CTS for masking)
 * Caller should use TIOCGICOUNT to see which one it was
 *
 * FIXME: This wants extracting into a common all driver implementation
 * of TIOCMWAIT using tty_port.
 */

static int uart_wait_modem_status(struct uart_state *state, unsigned long arg)
{
 struct uart_port *uport;
 struct tty_port *port = &state->port;
 DECLARE_WAITQUEUE(wait, current);
 struct uart_icount cprev, cnow;
 int ret;

 /*
 * note the counters on entry
 */

 uport = uart_port_ref(state);
 if (!uport)
  return -EIO;
 uart_port_lock_irq(uport);
 memcpy(&cprev, &uport->icount, sizeof(struct uart_icount));
 uart_enable_ms(uport);
 uart_port_unlock_irq(uport);

 add_wait_queue(&port->delta_msr_wait, &wait);
 for (;;) {
  uart_port_lock_irq(uport);
  memcpy(&cnow, &uport->icount, sizeof(struct uart_icount));
  uart_port_unlock_irq(uport);

  set_current_state(TASK_INTERRUPTIBLE);

  if (((arg & TIOCM_RNG) && (cnow.rng != cprev.rng)) ||
      ((arg & TIOCM_DSR) && (cnow.dsr != cprev.dsr)) ||
      ((arg & TIOCM_CD)  && (cnow.dcd != cprev.dcd)) ||
      ((arg & TIOCM_CTS) && (cnow.cts != cprev.cts))) {
   ret = 0;
   break;
  }

  schedule();

  /* see if a signal did it */
  if (signal_pending(current)) {
   ret = -ERESTARTSYS;
   break;
  }

  cprev = cnow;
 }
 __set_current_state(TASK_RUNNING);
 remove_wait_queue(&port->delta_msr_wait, &wait);
 uart_port_deref(uport);

 return ret;
}

/*
 * Get counter of input serial line interrupts (DCD,RI,DSR,CTS)
 * Return: write counters to the user passed counter struct
 * NB: both 1->0 and 0->1 transitions are counted except for
 *     RI where only 0->1 is counted.
 */

static int uart_get_icount(struct tty_struct *tty,
     struct serial_icounter_struct *icount)
{
 struct uart_state *state = tty->driver_data;
 struct uart_icount cnow;
 struct uart_port *uport;
 unsigned long flags;

 uport = uart_port_ref_lock(state, &flags);
 if (!uport)
  return -EIO;
 memcpy(&cnow, &uport->icount, sizeof(struct uart_icount));
 uart_port_unlock_deref(uport, flags);

 icount->cts         = cnow.cts;
 icount->dsr         = cnow.dsr;
 icount->rng         = cnow.rng;
 icount->dcd         = cnow.dcd;
 icount->rx          = cnow.rx;
 icount->tx          = cnow.tx;
 icount->frame       = cnow.frame;
 icount->overrun     = cnow.overrun;
 icount->parity      = cnow.parity;
 icount->brk         = cnow.brk;
 icount->buf_overrun = cnow.buf_overrun;

 return 0;
}

#define SER_RS485_LEGACY_FLAGS (SER_RS485_ENABLED | SER_RS485_RTS_ON_SEND | \
     SER_RS485_RTS_AFTER_SEND | SER_RS485_RX_DURING_TX | \
     SER_RS485_TERMINATE_BUS)

static int uart_check_rs485_flags(struct uart_port *port, struct serial_rs485 *rs485)
{
 u32 flags = rs485->flags;

 /* Don't return -EINVAL for unsupported legacy flags */
 flags &= ~SER_RS485_LEGACY_FLAGS;

 /*
 * For any bit outside of the legacy ones that is not supported by
 * the driver, return -EINVAL.
 */

 if (flags & ~port->rs485_supported.flags)
  return -EINVAL;

 /* Asking for address w/o addressing mode? */
 if (!(rs485->flags & SER_RS485_ADDRB) &&
     (rs485->flags & (SER_RS485_ADDR_RECV|SER_RS485_ADDR_DEST)))
  return -EINVAL;

 /* Address given but not enabled? */
 if (!(rs485->flags & SER_RS485_ADDR_RECV) && rs485->addr_recv)
  return -EINVAL;
 if (!(rs485->flags & SER_RS485_ADDR_DEST) && rs485->addr_dest)
  return -EINVAL;

 return 0;
}

static void uart_sanitize_serial_rs485_delays(struct uart_port *port,
           struct serial_rs485 *rs485)
{
 if (!port->rs485_supported.delay_rts_before_send) {
  if (rs485->delay_rts_before_send) {
   dev_warn_ratelimited(port->dev,
    "%s (%u): RTS delay before sending not supported\n",
    port->name, port->line);
  }
  rs485->delay_rts_before_send = 0;
 } else if (rs485->delay_rts_before_send > RS485_MAX_RTS_DELAY) {
  rs485->delay_rts_before_send = RS485_MAX_RTS_DELAY;
  dev_warn_ratelimited(port->dev,
   "%s (%u): RTS delay before sending clamped to %u ms\n",
   port->name, port->line, rs485->delay_rts_before_send);
 }

 if (!port->rs485_supported.delay_rts_after_send) {
  if (rs485->delay_rts_after_send) {
   dev_warn_ratelimited(port->dev,
    "%s (%u): RTS delay after sending not supported\n",
    port->name, port->line);
  }
  rs485->delay_rts_after_send = 0;
 } else if (rs485->delay_rts_after_send > RS485_MAX_RTS_DELAY) {
  rs485->delay_rts_after_send = RS485_MAX_RTS_DELAY;
  dev_warn_ratelimited(port->dev,
   "%s (%u): RTS delay after sending clamped to %u ms\n",
   port->name, port->line, rs485->delay_rts_after_send);
 }
}

static void uart_sanitize_serial_rs485(struct uart_port *port, struct serial_rs485 *rs485)
{
 u32 supported_flags = port->rs485_supported.flags;

 if (!(rs485->flags & SER_RS485_ENABLED)) {
  memset(rs485, 0, sizeof(*rs485));
  return;
 }

 /* Clear other RS485 flags but SER_RS485_TERMINATE_BUS and return if enabling RS422 */
 if (rs485->flags & SER_RS485_MODE_RS422) {
  rs485->flags &= (SER_RS485_ENABLED | SER_RS485_MODE_RS422 | SER_RS485_TERMINATE_BUS);
  return;
 }

 rs485->flags &= supported_flags;

 /* Pick sane settings if the user hasn't */
 if (!(rs485->flags & SER_RS485_RTS_ON_SEND) ==
     !(rs485->flags & SER_RS485_RTS_AFTER_SEND)) {
  if (supported_flags & SER_RS485_RTS_ON_SEND) {
   rs485->flags |= SER_RS485_RTS_ON_SEND;
   rs485->flags &= ~SER_RS485_RTS_AFTER_SEND;

   dev_warn_ratelimited(port->dev,
    "%s (%u): invalid RTS setting, using RTS_ON_SEND instead\n",
    port->name, port->line);
  } else {
   rs485->flags |= SER_RS485_RTS_AFTER_SEND;
   rs485->flags &= ~SER_RS485_RTS_ON_SEND;

   dev_warn_ratelimited(port->dev,
    "%s (%u): invalid RTS setting, using RTS_AFTER_SEND instead\n",
    port->name, port->line);
  }
 }

 uart_sanitize_serial_rs485_delays(port, rs485);

 /* Return clean padding area to userspace */
 memset(rs485->padding0, 0, sizeof(rs485->padding0));
 memset(rs485->padding1, 0, sizeof(rs485->padding1));
}

static void uart_set_rs485_termination(struct uart_port *port,
           const struct serial_rs485 *rs485)
{
 if (!(rs485->flags & SER_RS485_ENABLED))
  return;

 gpiod_set_value_cansleep(port->rs485_term_gpio,
     !!(rs485->flags & SER_RS485_TERMINATE_BUS));
}

static void uart_set_rs485_rx_during_tx(struct uart_port *port,
     const struct serial_rs485 *rs485)
{
 if (!(rs485->flags & SER_RS485_ENABLED))
  return;

 gpiod_set_value_cansleep(port->rs485_rx_during_tx_gpio,
     !!(rs485->flags & SER_RS485_RX_DURING_TX));
}

static int uart_rs485_config(struct uart_port *port)
{
 struct serial_rs485 *rs485 = &port->rs485;
 unsigned long flags;
 int ret;

 if (!(rs485->flags & SER_RS485_ENABLED))
  return 0;

 uart_sanitize_serial_rs485(port, rs485);
 uart_set_rs485_termination(port, rs485);
 uart_set_rs485_rx_during_tx(port, rs485);

 uart_port_lock_irqsave(port, &flags);
 ret = port->rs485_config(port, NULL, rs485);
 uart_port_unlock_irqrestore(port, flags);
 if (ret) {
  memset(rs485, 0, sizeof(*rs485));
  /* unset GPIOs */
  gpiod_set_value_cansleep(port->rs485_term_gpio, 0);
  gpiod_set_value_cansleep(port->rs485_rx_during_tx_gpio, 0);
 }

 return ret;
}

static int uart_get_rs485_config(struct uart_port *port,
    struct serial_rs485 __user *rs485)
{
 unsigned long flags;
 struct serial_rs485 aux;

 uart_port_lock_irqsave(port, &flags);
 aux = port->rs485;
 uart_port_unlock_irqrestore(port, flags);

 if (copy_to_user(rs485, &aux, sizeof(aux)))
  return -EFAULT;

 return 0;
}

static int uart_set_rs485_config(struct tty_struct *tty, struct uart_port *port,
    struct serial_rs485 __user *rs485_user)
{
 struct serial_rs485 rs485;
 int ret;
 unsigned long flags;

 if (!(port->rs485_supported.flags & SER_RS485_ENABLED))
  return -ENOTTY;

 if (copy_from_user(&rs485, rs485_user, sizeof(*rs485_user)))
  return -EFAULT;

 ret = uart_check_rs485_flags(port, &rs485);
 if (ret)
  return ret;
 uart_sanitize_serial_rs485(port, &rs485);
 uart_set_rs485_termination(port, &rs485);
 uart_set_rs485_rx_during_tx(port, &rs485);

 uart_port_lock_irqsave(port, &flags);
 ret = port->rs485_config(port, &tty->termios, &rs485);
 if (!ret) {
  port->rs485 = rs485;

  /* Reset RTS and other mctrl lines when disabling RS485 */
  if (!(rs485.flags & SER_RS485_ENABLED))
   port->ops->set_mctrl(port, port->mctrl);
 }
 uart_port_unlock_irqrestore(port, flags);
 if (ret) {
  /* restore old GPIO settings */
  gpiod_set_value_cansleep(port->rs485_term_gpio,
   !!(port->rs485.flags & SER_RS485_TERMINATE_BUS));
  gpiod_set_value_cansleep(port->rs485_rx_during_tx_gpio,
   !!(port->rs485.flags & SER_RS485_RX_DURING_TX));
  return ret;
 }

 if (copy_to_user(rs485_user, &port->rs485, sizeof(port->rs485)))
  return -EFAULT;

 return 0;
}

static int uart_get_iso7816_config(struct uart_port *port,
       struct serial_iso7816 __user *iso7816)
{
 unsigned long flags;
 struct serial_iso7816 aux;

 if (!port->iso7816_config)
  return -ENOTTY;

 uart_port_lock_irqsave(port, &flags);
 aux = port->iso7816;
 uart_port_unlock_irqrestore(port, flags);

 if (copy_to_user(iso7816, &aux, sizeof(aux)))
  return -EFAULT;

 return 0;
}

static int uart_set_iso7816_config(struct uart_port *port,
       struct serial_iso7816 __user *iso7816_user)
{
 struct serial_iso7816 iso7816;
 int i, ret;
 unsigned long flags;

 if (!port->iso7816_config)
  return -ENOTTY;

 if (copy_from_user(&iso7816, iso7816_user, sizeof(*iso7816_user)))
  return -EFAULT;

 /*
 * There are 5 words reserved for future use. Check that userspace
 * doesn't put stuff in there to prevent breakages in the future.
 */

 for (i = 0; i < ARRAY_SIZE(iso7816.reserved); i++)
  if (iso7816.reserved[i])
   return -EINVAL;

 uart_port_lock_irqsave(port, &flags);
 ret = port->iso7816_config(port, &iso7816);
 uart_port_unlock_irqrestore(port, flags);
 if (ret)
  return ret;

 if (copy_to_user(iso7816_user, &port->iso7816, sizeof(port->iso7816)))
  return -EFAULT;

 return 0;
}

/*
 * Called via sys_ioctl.  We can use spin_lock_irq() here.
 */

static int
uart_ioctl(struct tty_struct *tty, unsigned int cmd, unsigned long arg)
{
 struct uart_state *state = tty->driver_data;
 struct tty_port *port = &state->port;
 struct uart_port *uport;
 void __user *uarg = (void __user *)arg;
 int ret = -ENOIOCTLCMD;


 /*
 * These ioctls don't rely on the hardware to be present.
 */

 switch (cmd) {
 case TIOCSERCONFIG:
  down_write(&tty->termios_rwsem);
  ret = uart_do_autoconfig(tty, state);
  up_write(&tty->termios_rwsem);
  break;
 }

 if (ret != -ENOIOCTLCMD)
  goto out;

 if (tty_io_error(tty)) {
  ret = -EIO;
  goto out;
 }

 /*
 * The following should only be used when hardware is present.
 */

 switch (cmd) {
 case TIOCMIWAIT:
  ret = uart_wait_modem_status(state, arg);
  break;
 }

 if (ret != -ENOIOCTLCMD)
  goto out;

 /* rs485_config requires more locking than others */
 if (cmd == TIOCSRS485)
  down_write(&tty->termios_rwsem);

 mutex_lock(&port->mutex);
 uport = uart_port_check(state);

 if (!uport || tty_io_error(tty)) {
  ret = -EIO;
  goto out_up;
 }

 /*
 * All these rely on hardware being present and need to be
 * protected against the tty being hung up.
 */


 switch (cmd) {
 case TIOCSERGETLSR: /* Get line status register */
  ret = uart_get_lsr_info(tty, state, uarg);
  break;

 case TIOCGRS485:
  ret = uart_get_rs485_config(uport, uarg);
  break;

 case TIOCSRS485:
  ret = uart_set_rs485_config(tty, uport, uarg);
  break;

 case TIOCSISO7816:
  ret = uart_set_iso7816_config(state->uart_port, uarg);
  break;

 case TIOCGISO7816:
  ret = uart_get_iso7816_config(state->uart_port, uarg);
  break;
 default:
  if (uport->ops->ioctl)
   ret = uport->ops->ioctl(uport, cmd, arg);
  break;
 }
out_up:
 mutex_unlock(&port->mutex);
 if (cmd == TIOCSRS485)
  up_write(&tty->termios_rwsem);
out:
 return ret;
}

static void uart_set_ldisc(struct tty_struct *tty)
{
 struct uart_state *state = tty->driver_data;
 struct uart_port *uport;
 struct tty_port *port = &state->port;

 if (!tty_port_initialized(port))
  return;

 mutex_lock(&state->port.mutex);
 uport = uart_port_check(state);
 if (uport && uport->ops->set_ldisc)
  uport->ops->set_ldisc(uport, &tty->termios);
 mutex_unlock(&state->port.mutex);
}

static void uart_set_termios(struct tty_struct *tty,
        const struct ktermios *old_termios)
{
 struct uart_state *state = tty->driver_data;
 struct uart_port *uport;
 unsigned int cflag = tty->termios.c_cflag;
 unsigned int iflag_mask = IGNBRK|BRKINT|IGNPAR|PARMRK|INPCK;
 bool sw_changed = false;

 guard(mutex)(&state->port.mutex);

 uport = uart_port_check(state);
 if (!uport)
  return;

 /*
 * Drivers doing software flow control also need to know
 * about changes to these input settings.
 */

 if (uport->flags & UPF_SOFT_FLOW) {
  iflag_mask |= IXANY|IXON|IXOFF;
  sw_changed =
     tty->termios.c_cc[VSTART] != old_termios->c_cc[VSTART] ||
     tty->termios.c_cc[VSTOP] != old_termios->c_cc[VSTOP];
 }

 /*
 * These are the bits that are used to setup various
 * flags in the low level driver. We can ignore the Bfoo
 * bits in c_cflag; c_[io]speed will always be set
 * appropriately by set_termios() in tty_ioctl.c
 */

 if ((cflag ^ old_termios->c_cflag) == 0 &&
     tty->termios.c_ospeed == old_termios->c_ospeed &&
     tty->termios.c_ispeed == old_termios->c_ispeed &&
     ((tty->termios.c_iflag ^ old_termios->c_iflag) & iflag_mask) == 0 &&
     !sw_changed)
  return;

 uart_change_line_settings(tty, state, old_termios);
 /* reload cflag from termios; port driver may have overridden flags */
 cflag = tty->termios.c_cflag;

 /* Handle transition to B0 status */
 if (((old_termios->c_cflag & CBAUD) != B0) && ((cflag & CBAUD) == B0))
  uart_clear_mctrl(uport, TIOCM_RTS | TIOCM_DTR);
 /* Handle transition away from B0 status */
 else if (((old_termios->c_cflag & CBAUD) == B0) && ((cflag & CBAUD) != B0)) {
  unsigned int mask = TIOCM_DTR;

  if (!(cflag & CRTSCTS) || !tty_throttled(tty))
   mask |= TIOCM_RTS;
  uart_set_mctrl(uport, mask);
 }
}

/*
 * Calls to uart_close() are serialised via the tty_lock in
 *   drivers/tty/tty_io.c:tty_release()
 *   drivers/tty/tty_io.c:do_tty_hangup()
 */

static void uart_close(struct tty_struct *tty, struct file *filp)
{
 struct uart_state *state = tty->driver_data;

 if (!state) {
  struct uart_driver *drv = tty->driver->driver_state;
  struct tty_port *port;

  state = drv->state + tty->index;
  port = &state->port;
  spin_lock_irq(&port->lock);
  --port->count;
  spin_unlock_irq(&port->lock);
  return;
 }

 pr_debug("uart_close(%d) called\n", tty->index);

 tty_port_close(tty->port, tty, filp);
}

static void uart_tty_port_shutdown(struct tty_port *port)
{
 struct uart_state *state = container_of(port, struct uart_state, port);
 struct uart_port *uport = uart_port_check(state);

 /*
 * At this point, we stop accepting input.  To do this, we
 * disable the receive line status interrupts.
 */

 if (WARN(!uport, "detached port still initialized!\n"))
  return;

 uart_port_lock_irq(uport);
 uport->ops->stop_rx(uport);
 uart_port_unlock_irq(uport);

 serial_base_port_shutdown(uport);
 uart_port_shutdown(port);

 /*
 * It's possible for shutdown to be called after suspend if we get
 * a DCD drop (hangup) at just the right time.  Clear suspended bit so
 * we don't try to resume a port that has been shutdown.
 */

 tty_port_set_suspended(port, false);

 uart_free_xmit_buf(port);

 uart_change_pm(state, UART_PM_STATE_OFF);
}

static void uart_wait_until_sent(struct tty_struct *tty, int timeout)
{
 struct uart_state *state = tty->driver_data;
 struct uart_port *port;
 unsigned long char_time, expire, fifo_timeout;

 port = uart_port_ref(state);
 if (!port)
  return;

 if (port->type == PORT_UNKNOWN || port->fifosize == 0) {
  uart_port_deref(port);
  return;
 }

 /*
 * Set the check interval to be 1/5 of the estimated time to
 * send a single character, and make it at least 1.  The check
 * interval should also be less than the timeout.
 *
 * Note: we have to use pretty tight timings here to satisfy
 * the NIST-PCTS.
 */

 char_time = max(nsecs_to_jiffies(port->frame_time / 5), 1UL);

 if (timeout && timeout < char_time)
  char_time = timeout;

 if (!uart_cts_enabled(port)) {
  /*
 * If the transmitter hasn't cleared in twice the approximate
 * amount of time to send the entire FIFO, it probably won't
 * ever clear.  This assumes the UART isn't doing flow
 * control, which is currently the case.  Hence, if it ever
 * takes longer than FIFO timeout, this is probably due to a
 * UART bug of some kind.  So, we clamp the timeout parameter at
 * 2 * FIFO timeout.
 */

  fifo_timeout = uart_fifo_timeout(port);
  if (timeout == 0 || timeout > 2 * fifo_timeout)
   timeout = 2 * fifo_timeout;
 }

 expire = jiffies + timeout;

 pr_debug("uart_wait_until_sent(%u), jiffies=%lu, expire=%lu...\n",
  port->line, jiffies, expire);

 /*
 * Check whether the transmitter is empty every 'char_time'.
 * 'timeout' / 'expire' give us the maximum amount of time
 * we wait.
 */

 while (!port->ops->tx_empty(port)) {
  msleep_interruptible(jiffies_to_msecs(char_time));
  if (signal_pending(current))
   break;
  if (timeout && time_after(jiffies, expire))
   break;
 }
 uart_port_deref(port);
}

/*
 * Calls to uart_hangup() are serialised by the tty_lock in
 *   drivers/tty/tty_io.c:do_tty_hangup()
 * This runs from a workqueue and can sleep for a _short_ time only.
 */

static void uart_hangup(struct tty_struct *tty)
{
 struct uart_state *state = tty->driver_data;
 struct tty_port *port = &state->port;
 struct uart_port *uport;
 unsigned long flags;

 pr_debug("uart_hangup(%d)\n", tty->index);

 mutex_lock(&port->mutex);
 uport = uart_port_check(state);
 WARN(!uport, "hangup of detached port!\n");

 if (tty_port_active(port)) {
  uart_flush_buffer(tty);
  uart_shutdown(tty, state);
  spin_lock_irqsave(&port->lock, flags);
  port->count = 0;
  spin_unlock_irqrestore(&port->lock, flags);
  tty_port_set_active(port, false);
  tty_port_tty_set(port, NULL);
  if (uport && !uart_console(uport))
   uart_change_pm(state, UART_PM_STATE_OFF);
  wake_up_interruptible(&port->open_wait);
  wake_up_interruptible(&port->delta_msr_wait);
 }
 mutex_unlock(&port->mutex);
}

/* uport == NULL if uart_port has already been removed */
static void uart_port_shutdown(struct tty_port *port)
{
 struct uart_state *state = container_of(port, struct uart_state, port);
 struct uart_port *uport = uart_port_check(state);

 /*
 * clear delta_msr_wait queue to avoid mem leaks: we may free
 * the irq here so the queue might never be woken up.  Note
 * that we won't end up waiting on delta_msr_wait again since
 * any outstanding file descriptors should be pointing at
 * hung_up_tty_fops now.
 */

 wake_up_interruptible(&port->delta_msr_wait);

 if (uport) {
  /* Free the IRQ and disable the port. */
  uport->ops->shutdown(uport);

  /* Ensure that the IRQ handler isn't running on another CPU. */
  synchronize_irq(uport->irq);
 }
}

static bool uart_carrier_raised(struct tty_port *port)
{
 struct uart_state *state = container_of(port, struct uart_state, port);
 struct uart_port *uport;
 unsigned long flags;
 int mctrl;

 uport = uart_port_ref_lock(state, &flags);
 /*
 * Should never observe uport == NULL since checks for hangup should
 * abort the tty_port_block_til_ready() loop before checking for carrier
 * raised -- but report carrier raised if it does anyway so open will
 * continue and not sleep
 */

 if (WARN_ON(!uport))
  return true;
 uart_enable_ms(uport);
 mctrl = uport->ops->get_mctrl(uport);
 uart_port_unlock_deref(uport, flags);

 return mctrl & TIOCM_CAR;
}

static void uart_dtr_rts(struct tty_port *port, bool active)
{
 struct uart_state *state = container_of(port, struct uart_state, port);
 struct uart_port *uport;

 uport = uart_port_ref(state);
 if (!uport)
  return;
 uart_port_dtr_rts(uport, active);
 uart_port_deref(uport);
}

static int uart_install(struct tty_driver *driver, struct tty_struct *tty)
{
 struct uart_driver *drv = driver->driver_state;
 struct uart_state *state = drv->state + tty->index;

 tty->driver_data = state;

 return tty_standard_install(driver, tty);
}

/*
 * Calls to uart_open are serialised by the tty_lock in
 *   drivers/tty/tty_io.c:tty_open()
 * Note that if this fails, then uart_close() _will_ be called.
 *
 * In time, we want to scrap the "opening nonpresent ports"
 * behaviour and implement an alternative way for setserial
 * to set base addresses/ports/types.  This will allow us to
 * get rid of a certain amount of extra tests.
 */

static int uart_open(struct tty_struct *tty, struct file *filp)
{
 struct uart_state *state = tty->driver_data;
 int retval;

 retval = tty_port_open(&state->port, tty, filp);
 if (retval > 0)
  retval = 0;

 return retval;
}

static int uart_port_activate(struct tty_port *port, struct tty_struct *tty)
{
 struct uart_state *state = container_of(port, struct uart_state, port);
 struct uart_port *uport;
 int ret;

 uport = uart_port_check(state);
 if (!uport || uport->flags & UPF_DEAD)
  return -ENXIO;

 /*
 * Start up the serial port.
 */

 ret = uart_startup(tty, state, false);
 if (ret > 0)
  tty_port_set_active(port, true);

 return ret;
}

static const char *uart_type(struct uart_port *port)
{
 const char *str = NULL;

 if (port->ops->type)
  str = port->ops->type(port);

 if (!str)
  str = "unknown";

 return str;
}

#ifdef CONFIG_PROC_FS

static void uart_line_info(struct seq_file *m, struct uart_state *state)
{
 struct tty_port *port = &state->port;
 enum uart_pm_state pm_state;
 struct uart_port *uport;
 char stat_buf[32];
 unsigned int status;
 int mmio;

 guard(mutex)(&port->mutex);

 uport = uart_port_check(state);
 if (!uport)
  return;

 mmio = uport->iotype >= UPIO_MEM;
 seq_printf(m, "%u: uart:%s %s%08llX irq:%u",
   uport->line, uart_type(uport),
   mmio ? "mmio:0x" : "port:",
   mmio ? (unsigned long long)uport->mapbase
        : (unsigned long long)uport->iobase,
   uport->irq);

 if (uport->type == PORT_UNKNOWN) {
  seq_putc(m, '\n');
  return;
 }

 if (capable(CAP_SYS_ADMIN)) {
  pm_state = state->pm_state;
  if (pm_state != UART_PM_STATE_ON)
   uart_change_pm(state, UART_PM_STATE_ON);
  uart_port_lock_irq(uport);
  status = uport->ops->get_mctrl(uport);
  uart_port_unlock_irq(uport);
  if (pm_state != UART_PM_STATE_ON)
   uart_change_pm(state, pm_state);

  seq_printf(m, " tx:%u rx:%u",
    uport->icount.tx, uport->icount.rx);
  if (uport->icount.frame)
   seq_printf(m, " fe:%u", uport->icount.frame);
  if (uport->icount.parity)
   seq_printf(m, " pe:%u", uport->icount.parity);
  if (uport->icount.brk)
   seq_printf(m, " brk:%u", uport->icount.brk);
  if (uport->icount.overrun)
   seq_printf(m, " oe:%u", uport->icount.overrun);
  if (uport->icount.buf_overrun)
   seq_printf(m, " bo:%u", uport->icount.buf_overrun);

#define INFOBIT(bit, str) \
 if (uport->mctrl & (bit)) \
  strncat(stat_buf, (str), sizeof(stat_buf) - \
   strlen(stat_buf) - 2)
#define STATBIT(bit, str) \
 if (status & (bit)) \
  strncat(stat_buf, (str), sizeof(stat_buf) - \
         strlen(stat_buf) - 2)

  stat_buf[0] = '\0';
  stat_buf[1] = '\0';
  INFOBIT(TIOCM_RTS, "|RTS");
  STATBIT(TIOCM_CTS, "|CTS");
  INFOBIT(TIOCM_DTR, "|DTR");
  STATBIT(TIOCM_DSR, "|DSR");
  STATBIT(TIOCM_CAR, "|CD");
  STATBIT(TIOCM_RNG, "|RI");
  if (stat_buf[0])
   stat_buf[0] = ' ';

  seq_puts(m, stat_buf);
 }
 seq_putc(m, '\n');
#undef STATBIT
#undef INFOBIT
}

static int uart_proc_show(struct seq_file *m, void *v)
{
 struct tty_driver *ttydrv = m->private;
 struct uart_driver *drv = ttydrv->driver_state;
 int i;

 seq_printf(m, "serinfo:1.0 driver%s%s revision:%s\n""""""");
 for (i = 0; i < drv->nr; i++)
  uart_line_info(m, drv->state + i);
 return 0;
}
#endif

static void uart_port_spin_lock_init(struct uart_port *port)
{
 spin_lock_init(&port->lock);
 lockdep_set_class(&port->lock, &port_lock_key);
}

#if defined(CONFIG_SERIAL_CORE_CONSOLE) || defined(CONFIG_CONSOLE_POLL)
/**
 * uart_console_write - write a console message to a serial port
 * @port: the port to write the message
 * @s: array of characters
 * @count: number of characters in string to write
 * @putchar: function to write character to port
 */

void uart_console_write(struct uart_port *port, const char *s,
   unsigned int count,
   void (*putchar)(struct uart_port *, unsigned char))
{
 unsigned int i;

 for (i = 0; i < count; i++, s++) {
  if (*s == '\n')
   putchar(port, '\r');
  putchar(port, *s);
 }
}
EXPORT_SYMBOL_GPL(uart_console_write);

/**
 * uart_parse_earlycon - Parse earlycon options
 * @p:      ptr to 2nd field (ie., just beyond '<name>,')
 * @iotype:  ptr for decoded iotype (out)
 * @addr:    ptr for decoded mapbase/iobase (out)
 * @options: ptr for <options> field; %NULL if not present (out)
 *
 * Decodes earlycon kernel command line parameters of the form:
 *  * earlycon=<name>,io|mmio|mmio16|mmio32|mmio32be|mmio32native,<addr>,<options>
 *  * console=<name>,io|mmio|mmio16|mmio32|mmio32be|mmio32native,<addr>,<options>
 *
 * The optional form:
 *  * earlycon=<name>,0x<addr>,<options>
 *  * console=<name>,0x<addr>,<options>
 *
 * is also accepted; the returned @iotype will be %UPIO_MEM.
 *
 * Returns: 0 on success or -%EINVAL on failure
 */

int uart_parse_earlycon(char *p, enum uart_iotype *iotype,
   resource_size_t *addr, char **options)
{
 if (strncmp(p, "mmio,", 5) == 0) {
  *iotype = UPIO_MEM;
  p += 5;
 } else if (strncmp(p, "mmio16,", 7) == 0) {
  *iotype = UPIO_MEM16;
  p += 7;
 } else if (strncmp(p, "mmio32,", 7) == 0) {
  *iotype = UPIO_MEM32;
  p += 7;
 } else if (strncmp(p, "mmio32be,", 9) == 0) {
  *iotype = UPIO_MEM32BE;
  p += 9;
 } else if (strncmp(p, "mmio32native,", 13) == 0) {
  *iotype = IS_ENABLED(CONFIG_CPU_BIG_ENDIAN) ?
   UPIO_MEM32BE : UPIO_MEM32;
  p += 13;
 } else if (strncmp(p, "io,", 3) == 0) {
  *iotype = UPIO_PORT;
  p += 3;
 } else if (strncmp(p, "0x", 2) == 0) {
  *iotype = UPIO_MEM;
 } else {
  return -EINVAL;
 }

 /*
 * Before you replace it with kstrtoull(), think about options separator
 * (',') it will not tolerate
 */

 *addr = simple_strtoull(p, NULL, 0);
 p = strchr(p, ',');
 if (p)
  p++;

 *options = p;
 return 0;
}
EXPORT_SYMBOL_GPL(uart_parse_earlycon);

/**
 * uart_parse_options - Parse serial port baud/parity/bits/flow control.
 * @options: pointer to option string
 * @baud: pointer to an 'int' variable for the baud rate.
 * @parity: pointer to an 'int' variable for the parity.
 * @bits: pointer to an 'int' variable for the number of data bits.
 * @flow: pointer to an 'int' variable for the flow control character.
 *
 * uart_parse_options() decodes a string containing the serial console
 * options. The format of the string is <baud><parity><bits><flow>,
 * eg: 115200n8r
 */

void
uart_parse_options(const char *options, int *baud, int *parity,
     int *bits, int *flow)
{
 const char *s = options;

 *baud = simple_strtoul(s, NULL, 10);
 while (*s >= '0' && *s <= '9')
  s++;
 if (*s)
  *parity = *s++;
 if (*s)
  *bits = *s++ - '0';
 if (*s)
  *flow = *s;
}
EXPORT_SYMBOL_GPL(uart_parse_options);

/**
 * uart_set_options - setup the serial console parameters
 * @port: pointer to the serial ports uart_port structure
 * @co: console pointer
 * @baud: baud rate
 * @parity: parity character - 'n' (none), 'o' (odd), 'e' (even)
 * @bits: number of data bits
 * @flow: flow control character - 'r' (rts)
 *
 * Locking: Caller must hold console_list_lock in order to serialize
 * early initialization of the serial-console lock.
 */

int
uart_set_options(struct uart_port *port, struct console *co,
   int baud, int parity, int bits, int flow)
{
 struct ktermios termios;
 static struct ktermios dummy;

 /*
 * Ensure that the serial-console lock is initialised early.
 *
 * Note that the console-registered check is needed because
 * kgdboc can call uart_set_options() for an already registered
 * console via tty_find_polling_driver() and uart_poll_init().
 */

 if (!uart_console_registered_locked(port) && !port->console_reinit)
  uart_port_spin_lock_init(port);

 memset(&termios, 0, sizeof(struct ktermios));

 termios.c_cflag |= CREAD | HUPCL | CLOCAL;
 tty_termios_encode_baud_rate(&termios, baud, baud);

 if (bits == 7)
  termios.c_cflag |= CS7;
 else
  termios.c_cflag |= CS8;

 switch (parity) {
 case 'o'case 'O':
  termios.c_cflag |= PARODD;
  fallthrough;
 case 'e'case 'E':
  termios.c_cflag |= PARENB;
  break;
 }

 if (flow == 'r')
  termios.c_cflag |= CRTSCTS;

 /*
 * some uarts on other side don't support no flow control.
 * So we set * DTR in host uart to make them happy
 */

 port->mctrl |= TIOCM_DTR;

 port->ops->set_termios(port, &termios, &dummy);
 /*
 * Allow the setting of the UART parameters with a NULL console
 * too:
 */

 if (co) {
  co->cflag = termios.c_cflag;
  co->ispeed = termios.c_ispeed;
  co->ospeed = termios.c_ospeed;
 }

 return 0;
}
EXPORT_SYMBOL_GPL(uart_set_options);
#endif /* CONFIG_SERIAL_CORE_CONSOLE */

/**
 * uart_change_pm - set power state of the port
 *
 * @state: port descriptor
 * @pm_state: new state
 *
 * Locking: port->mutex has to be held
 */

static void uart_change_pm(struct uart_state *state,
      enum uart_pm_state pm_state)
{
 struct uart_port *port = uart_port_check(state);

 if (state->pm_state != pm_state) {
  if (port && port->ops->pm)
   port->ops->pm(port, pm_state, state->pm_state);
  state->pm_state = pm_state;
 }
}

struct uart_match {
 struct uart_port *port;
 struct uart_driver *driver;
};

static int serial_match_port(struct device *dev, const void *data)
{
 const struct uart_match *match = data;
 struct tty_driver *tty_drv = match->driver->tty_driver;
 dev_t devt = MKDEV(tty_drv->major, tty_drv->minor_start) +
  match->port->line;

 return dev->devt == devt; /* Actually, only one tty per port */
}

int uart_suspend_port(struct uart_driver *drv, struct uart_port *uport)
{
 struct uart_state *state = drv->state + uport->line;
 struct tty_port *port = &state->port;
 struct device *tty_dev;
 struct uart_match match = {uport, drv};

 guard(mutex)(&port->mutex);

 tty_dev = device_find_child(&uport->port_dev->dev, &match, serial_match_port);
 if (tty_dev && device_may_wakeup(tty_dev)) {
  enable_irq_wake(uport->irq);
  put_device(tty_dev);
  return 0;
 }
 put_device(tty_dev);

 /*
 * Nothing to do if the console is not suspending
 * except stop_rx to prevent any asynchronous data
 * over RX line. However ensure that we will be
 * able to Re-start_rx later.
 */

 if (!console_suspend_enabled && uart_console(uport)) {
  if (uport->ops->start_rx) {
   uart_port_lock_irq(uport);
   uport->ops->stop_rx(uport);
   uart_port_unlock_irq(uport);
  }
  device_set_awake_path(uport->dev);
  return 0;
 }

 uport->suspended = 1;

 if (tty_port_initialized(port)) {
  const struct uart_ops *ops = uport->ops;
  int tries;
  unsigned int mctrl;

  tty_port_set_suspended(port, true);
  tty_port_set_initialized(port, false);

  uart_port_lock_irq(uport);
  ops->stop_tx(uport);
  if (!(uport->rs485.flags & SER_RS485_ENABLED))
   ops->set_mctrl(uport, 0);
  /* save mctrl so it can be restored on resume */
  mctrl = uport->mctrl;
  uport->mctrl = 0;
  ops->stop_rx(uport);
  uart_port_unlock_irq(uport);

  /*
 * Wait for the transmitter to empty.
 */

  for (tries = 3; !ops->tx_empty(uport) && tries; tries--)
   msleep(10);
  if (!tries)
   dev_err(uport->dev, "%s: Unable to drain transmitter\n",
    uport->name);

  ops->shutdown(uport);
  uport->mctrl = mctrl;
 }

 /*
 * Suspend the console device before suspending the port.
 */

 if (uart_console(uport))
  console_suspend(uport->cons);

 uart_change_pm(state, UART_PM_STATE_OFF);

 return 0;
}
EXPORT_SYMBOL(uart_suspend_port);

int uart_resume_port(struct uart_driver *drv, struct uart_port *uport)
{
 struct uart_state *state = drv->state + uport->line;
 struct tty_port *port = &state->port;
 struct device *tty_dev;
 struct uart_match match = {uport, drv};
 struct ktermios termios;

 guard(mutex)(&port->mutex);

 tty_dev = device_find_child(&uport->port_dev->dev, &match, serial_match_port);
 if (!uport->suspended && device_may_wakeup(tty_dev)) {
  if (irqd_is_wakeup_set(irq_get_irq_data((uport->irq))))
   disable_irq_wake(uport->irq);
  put_device(tty_dev);
  return 0;
 }
 put_device(tty_dev);
 uport->suspended = 0;

 /*
 * Re-enable the console device after suspending.
 */

 if (uart_console(uport)) {
  /*
 * First try to use the console cflag setting.
 */

  memset(&termios, 0, sizeof(struct ktermios));
  termios.c_cflag = uport->cons->cflag;
  termios.c_ispeed = uport->cons->ispeed;
  termios.c_ospeed = uport->cons->ospeed;

  /*
 * If that's unset, use the tty termios setting.
 */

  if (port->tty && termios.c_cflag == 0)
   termios = port->tty->termios;

  if (console_suspend_enabled)
   uart_change_pm(state, UART_PM_STATE_ON);
  uport->ops->set_termios(uport, &termios, NULL);
  if (!console_suspend_enabled && uport->ops->start_rx) {
   uart_port_lock_irq(uport);
   uport->ops->start_rx(uport);
   uart_port_unlock_irq(uport);
  }
  if (console_suspend_enabled)
   console_resume(uport->cons);
 }

 if (tty_port_suspended(port)) {
  const struct uart_ops *ops = uport->ops;
  int ret;

  uart_change_pm(state, UART_PM_STATE_ON);
  uart_port_lock_irq(uport);
  if (!(uport->rs485.flags & SER_RS485_ENABLED))
   ops->set_mctrl(uport, 0);
  uart_port_unlock_irq(uport);
  if (console_suspend_enabled || !uart_console(uport)) {
   /* Protected by port mutex for now */
   struct tty_struct *tty = port->tty;

   ret = ops->startup(uport);
   if (ret == 0) {
    if (tty)
     uart_change_line_settings(tty, state, NULL);
    uart_rs485_config(uport);
    uart_port_lock_irq(uport);
    if (!(uport->rs485.flags & SER_RS485_ENABLED))
     ops->set_mctrl(uport, uport->mctrl);
    ops->start_tx(uport);
    uart_port_unlock_irq(uport);
    tty_port_set_initialized(port, true);
   } else {
    /*
 * Failed to resume - maybe hardware went away?
 * Clear the "initialized" flag so we won't try
 * to call the low level drivers shutdown method.
 */

    uart_shutdown(tty, state);
   }
  }

  tty_port_set_suspended(port, false);
 }

 return 0;
}
EXPORT_SYMBOL(uart_resume_port);

static inline void
uart_report_port(struct uart_driver *drv, struct uart_port *port)
{
 char address[64];

 switch (port->iotype) {
 case UPIO_PORT:
  snprintf(address, sizeof(address), "I/O 0x%lx", port->iobase);
  break;
 case UPIO_HUB6:
  snprintf(address, sizeof(address),
    "I/O 0x%lx offset 0x%x", port->iobase, port->hub6);
  break;
 case UPIO_MEM:
 case UPIO_MEM16:
 case UPIO_MEM32:
 case UPIO_MEM32BE:
 case UPIO_AU:
 case UPIO_TSI:
  snprintf(address, sizeof(address),
    "MMIO 0x%llx", (unsigned long long)port->mapbase);
  break;
 default:
  strscpy(address, "*unknown*"sizeof(address));
  break;
 }

 pr_info("%s%s%s at %s (irq = %u, base_baud = %u) is a %s\n",
        port->dev ? dev_name(port->dev) : "",
        port->dev ? ": " : "",
        port->name,
        address, port->irq, port->uartclk / 16, uart_type(port));

 /* The magic multiplier feature is a bit obscure, so report it too.  */
 if (port->flags & UPF_MAGIC_MULTIPLIER)
  pr_info("%s%s%s extra baud rates supported: %u, %u",
   port->dev ? dev_name(port->dev) : "",
   port->dev ? ": " : "",
   port->name,
   port->uartclk / 8, port->uartclk / 4);
}

static void
uart_configure_port(struct uart_driver *drv, struct uart_state *state,
      struct uart_port *port)
{
 unsigned int flags;

 /*
--> --------------------

--> maximum size reached

--> --------------------

Messung V0.5
C=96 H=98 G=96

¤ Dauer der Verarbeitung: 0.17 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Produkte
     Quellcodebibliothek

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik

Monitoring

Montastic status badge