2 * FireWire Serial driver
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
23 #include <linux/sched.h>
24 #include <linux/slab.h>
25 #include <linux/device.h>
26 #include <linux/mod_devicetable.h>
27 #include <linux/rculist.h>
28 #include <linux/workqueue.h>
29 #include <linux/ratelimit.h>
30 #include <linux/bug.h>
31 #include <linux/uaccess.h>
35 #define be32_to_u64(hi, lo) ((u64)be32_to_cpu(hi) << 32 | be32_to_cpu(lo))
37 #define LINUX_VENDOR_ID 0xd00d1eU /* same id used in card root directory */
38 #define FWSERIAL_VERSION 0x00e81cU /* must be unique within LINUX_VENDOR_ID */
40 /* configurable options */
41 static int num_ttys = 4; /* # of std ttys to create per fw_card */
42 /* - doubles as loopback port index */
43 static bool auto_connect = true; /* try to VIRT_CABLE to every peer */
44 static bool create_loop_dev = true; /* create a loopback device for each card */
46 module_param_named(ttys, num_ttys, int, S_IRUGO | S_IWUSR);
47 module_param_named(auto, auto_connect, bool, S_IRUGO | S_IWUSR);
48 module_param_named(loop, create_loop_dev, bool, S_IRUGO | S_IWUSR);
51 * Threshold below which the tty is woken for writing
52 * - should be equal to WAKEUP_CHARS in drivers/tty/n_tty.c because
53 * even if the writer is woken, n_tty_poll() won't set POLLOUT until
54 * our fifo is below this level
56 #define WAKEUP_CHARS 256
59 * fwserial_list: list of every fw_serial created for each fw_card
60 * See discussion in fwserial_probe.
62 static LIST_HEAD(fwserial_list);
63 static DEFINE_MUTEX(fwserial_list_mutex);
66 * port_table: array of tty ports allocated to each fw_card
68 * tty ports are allocated during probe when an fw_serial is first
69 * created for a given fw_card. Ports are allocated in a contiguous block,
70 * each block consisting of 'num_ports' ports.
72 static struct fwtty_port *port_table[MAX_TOTAL_PORTS];
73 static DEFINE_MUTEX(port_table_lock);
74 static bool port_table_corrupt;
75 #define FWTTY_INVALID_INDEX MAX_TOTAL_PORTS
77 #define loop_idx(port) (((port)->index) / num_ports)
78 #define table_idx(loop) ((loop) * num_ports + num_ttys)
80 /* total # of tty ports created per fw_card */
83 /* slab used as pool for struct fwtty_transactions */
84 static struct kmem_cache *fwtty_txn_cache;
86 struct tty_driver *fwtty_driver;
87 static struct tty_driver *fwloop_driver;
89 static struct dentry *fwserial_debugfs;
91 struct fwtty_transaction;
92 typedef void (*fwtty_transaction_cb)(struct fw_card *card, int rcode,
93 void *data, size_t length,
94 struct fwtty_transaction *txn);
96 struct fwtty_transaction {
97 struct fw_transaction fw_txn;
98 fwtty_transaction_cb callback;
99 struct fwtty_port *port;
101 struct dma_pending dma_pended;
105 #define to_device(a, b) (a->b)
106 #define fwtty_err(p, fmt, ...) \
107 dev_err(to_device(p, device), fmt, ##__VA_ARGS__)
108 #define fwtty_info(p, fmt, ...) \
109 dev_info(to_device(p, device), fmt, ##__VA_ARGS__)
110 #define fwtty_notice(p, fmt, ...) \
111 dev_notice(to_device(p, device), fmt, ##__VA_ARGS__)
112 #define fwtty_dbg(p, fmt, ...) \
113 dev_dbg(to_device(p, device), "%s: " fmt, __func__, ##__VA_ARGS__)
114 #define fwtty_err_ratelimited(p, fmt, ...) \
115 dev_err_ratelimited(to_device(p, device), fmt, ##__VA_ARGS__)
118 static inline void debug_short_write(struct fwtty_port *port, int c, int n)
123 spin_lock_bh(&port->lock);
124 avail = dma_fifo_avail(&port->tx_fifo);
125 spin_unlock_bh(&port->lock);
126 fwtty_dbg(port, "short write: avail:%d req:%d wrote:%d\n",
131 #define debug_short_write(port, c, n)
134 static struct fwtty_peer *__fwserial_peer_by_node_id(struct fw_card *card,
135 int generation, int id);
137 #ifdef FWTTY_PROFILING
139 static void fwtty_profile_fifo(struct fwtty_port *port, unsigned *stat)
141 spin_lock_bh(&port->lock);
142 fwtty_profile_data(stat, dma_fifo_avail(&port->tx_fifo));
143 spin_unlock_bh(&port->lock);
146 static void fwtty_dump_profile(struct seq_file *m, struct stats *stats)
148 /* for each stat, print sum of 0 to 2^k, then individually */
154 snprintf(t, 10, "< %d", 1 << k);
155 seq_printf(m, "\n%14s %6s", " ", t);
156 for (j = k + 1; j < DISTRIBUTION_MAX_INDEX; ++j)
157 seq_printf(m, "%6d", 1 << j);
160 for (j = 0, sum = 0; j <= k; ++j)
161 sum += stats->reads[j];
162 seq_printf(m, "\n%14s: %6d", "reads", sum);
163 for (j = k + 1; j <= DISTRIBUTION_MAX_INDEX; ++j)
164 seq_printf(m, "%6d", stats->reads[j]);
166 for (j = 0, sum = 0; j <= k; ++j)
167 sum += stats->writes[j];
168 seq_printf(m, "\n%14s: %6d", "writes", sum);
169 for (j = k + 1; j <= DISTRIBUTION_MAX_INDEX; ++j)
170 seq_printf(m, "%6d", stats->writes[j]);
172 for (j = 0, sum = 0; j <= k; ++j)
173 sum += stats->txns[j];
174 seq_printf(m, "\n%14s: %6d", "txns", sum);
175 for (j = k + 1; j <= DISTRIBUTION_MAX_INDEX; ++j)
176 seq_printf(m, "%6d", stats->txns[j]);
178 for (j = 0, sum = 0; j <= k; ++j)
179 sum += stats->unthrottle[j];
180 seq_printf(m, "\n%14s: %6d", "avail @ unthr", sum);
181 for (j = k + 1; j <= DISTRIBUTION_MAX_INDEX; ++j)
182 seq_printf(m, "%6d", stats->unthrottle[j]);
186 #define fwtty_profile_fifo(port, stat)
187 #define fwtty_dump_profile(m, stats)
191 * Returns the max receive packet size for the given node
192 * Devices which are OHCI v1.0/ v1.1/ v1.2-draft or RFC 2734 compliant
193 * are required by specification to support max_rec of 8 (512 bytes) or more.
195 static inline int device_max_receive(struct fw_device *fw_device)
197 /* see IEEE 1394-2008 table 8-8 */
198 return min(2 << fw_device->max_rec, 4096);
201 static void fwtty_log_tx_error(struct fwtty_port *port, int rcode)
204 case RCODE_SEND_ERROR:
205 fwtty_err_ratelimited(port, "card busy\n");
207 case RCODE_ADDRESS_ERROR:
208 fwtty_err_ratelimited(port, "bad unit addr or write length\n");
210 case RCODE_DATA_ERROR:
211 fwtty_err_ratelimited(port, "failed rx\n");
214 fwtty_err_ratelimited(port, "missing ack\n");
217 fwtty_err_ratelimited(port, "remote busy\n");
220 fwtty_err_ratelimited(port, "failed tx: %d\n", rcode);
224 static void fwtty_txn_constructor(void *this)
226 struct fwtty_transaction *txn = this;
228 init_timer(&txn->fw_txn.split_timeout_timer);
231 static void fwtty_common_callback(struct fw_card *card, int rcode,
232 void *payload, size_t len, void *cb_data)
234 struct fwtty_transaction *txn = cb_data;
235 struct fwtty_port *port = txn->port;
237 if (port && rcode != RCODE_COMPLETE)
238 fwtty_log_tx_error(port, rcode);
240 txn->callback(card, rcode, payload, len, txn);
241 kmem_cache_free(fwtty_txn_cache, txn);
244 static int fwtty_send_data_async(struct fwtty_peer *peer, int tcode,
245 unsigned long long addr, void *payload,
246 size_t len, fwtty_transaction_cb callback,
247 struct fwtty_port *port)
249 struct fwtty_transaction *txn;
252 txn = kmem_cache_alloc(fwtty_txn_cache, GFP_ATOMIC);
256 txn->callback = callback;
259 generation = peer->generation;
261 fw_send_request(peer->serial->card, &txn->fw_txn, tcode,
262 peer->node_id, generation, peer->speed, addr, payload,
263 len, fwtty_common_callback, txn);
267 static void fwtty_send_txn_async(struct fwtty_peer *peer,
268 struct fwtty_transaction *txn, int tcode,
269 unsigned long long addr, void *payload,
270 size_t len, fwtty_transaction_cb callback,
271 struct fwtty_port *port)
275 txn->callback = callback;
278 generation = peer->generation;
280 fw_send_request(peer->serial->card, &txn->fw_txn, tcode,
281 peer->node_id, generation, peer->speed, addr, payload,
282 len, fwtty_common_callback, txn);
286 static void __fwtty_restart_tx(struct fwtty_port *port)
290 len = dma_fifo_out_level(&port->tx_fifo);
292 schedule_delayed_work(&port->drain, 0);
293 avail = dma_fifo_avail(&port->tx_fifo);
295 fwtty_dbg(port, "fifo len: %d avail: %d\n", len, avail);
298 static void fwtty_restart_tx(struct fwtty_port *port)
300 spin_lock_bh(&port->lock);
301 __fwtty_restart_tx(port);
302 spin_unlock_bh(&port->lock);
306 * fwtty_update_port_status - decodes & dispatches line status changes
308 * Note: in loopback, the port->lock is being held. Only use functions that
309 * don't attempt to reclaim the port->lock.
311 static void fwtty_update_port_status(struct fwtty_port *port, unsigned status)
314 struct tty_struct *tty;
316 /* simulated LSR/MSR status from remote */
317 status &= ~MCTRL_MASK;
318 delta = (port->mstatus ^ status) & ~MCTRL_MASK;
319 delta &= ~(status & TIOCM_RNG);
320 port->mstatus = status;
322 if (delta & TIOCM_RNG)
324 if (delta & TIOCM_DSR)
326 if (delta & TIOCM_CAR)
328 if (delta & TIOCM_CTS)
331 fwtty_dbg(port, "status: %x delta: %x\n", status, delta);
333 if (delta & TIOCM_CAR) {
334 tty = tty_port_tty_get(&port->port);
335 if (tty && !C_CLOCAL(tty)) {
336 if (status & TIOCM_CAR)
337 wake_up_interruptible(&port->port.open_wait);
339 schedule_work(&port->hangup);
344 if (delta & TIOCM_CTS) {
345 tty = tty_port_tty_get(&port->port);
346 if (tty && C_CRTSCTS(tty)) {
347 if (tty->hw_stopped) {
348 if (status & TIOCM_CTS) {
351 __fwtty_restart_tx(port);
353 fwtty_restart_tx(port);
356 if (~status & TIOCM_CTS)
362 } else if (delta & OOB_TX_THROTTLE) {
363 tty = tty_port_tty_get(&port->port);
365 if (tty->hw_stopped) {
366 if (~status & OOB_TX_THROTTLE) {
369 __fwtty_restart_tx(port);
371 fwtty_restart_tx(port);
374 if (status & OOB_TX_THROTTLE)
381 if (delta & (UART_LSR_BI << 24)) {
382 if (status & (UART_LSR_BI << 24)) {
383 port->break_last = jiffies;
384 schedule_delayed_work(&port->emit_breaks, 0);
386 /* run emit_breaks one last time (if pending) */
387 mod_delayed_work(system_wq, &port->emit_breaks, 0);
391 if (delta & (TIOCM_DSR | TIOCM_CAR | TIOCM_CTS | TIOCM_RNG))
392 wake_up_interruptible(&port->port.delta_msr_wait);
396 * __fwtty_port_line_status - generate 'line status' for indicated port
398 * This function returns a remote 'MSR' state based on the local 'MCR' state,
399 * as if a null modem cable was attached. The actual status is a mangling
400 * of TIOCM_* bits suitable for sending to a peer's status_addr.
402 * Note: caller must be holding port lock
404 static unsigned __fwtty_port_line_status(struct fwtty_port *port)
408 /* TODO: add module param to tie RNG to DTR as well */
410 if (port->mctrl & TIOCM_DTR)
411 status |= TIOCM_DSR | TIOCM_CAR;
412 if (port->mctrl & TIOCM_RTS)
414 if (port->mctrl & OOB_RX_THROTTLE)
415 status |= OOB_TX_THROTTLE;
416 /* emulate BRK as add'l line status */
418 status |= UART_LSR_BI << 24;
424 * __fwtty_write_port_status - send the port line status to peer
426 * Note: caller must be holding the port lock.
428 static int __fwtty_write_port_status(struct fwtty_port *port)
430 struct fwtty_peer *peer;
432 unsigned status = __fwtty_port_line_status(port);
435 peer = rcu_dereference(port->peer);
437 err = fwtty_send_data_async(peer, TCODE_WRITE_QUADLET_REQUEST,
438 peer->status_addr, &status,
439 sizeof(status), NULL, port);
447 * fwtty_write_port_status - same as above but locked by port lock
449 static int fwtty_write_port_status(struct fwtty_port *port)
453 spin_lock_bh(&port->lock);
454 err = __fwtty_write_port_status(port);
455 spin_unlock_bh(&port->lock);
459 static void fwtty_throttle_port(struct fwtty_port *port)
461 struct tty_struct *tty;
464 tty = tty_port_tty_get(&port->port);
468 spin_lock_bh(&port->lock);
471 port->mctrl |= OOB_RX_THROTTLE;
473 port->mctrl &= ~TIOCM_RTS;
474 if (~old & OOB_RX_THROTTLE)
475 __fwtty_write_port_status(port);
477 spin_unlock_bh(&port->lock);
483 * fwtty_do_hangup - wait for ldisc to deliver all pending rx; only then hangup
485 * When the remote has finished tx, and all in-flight rx has been received and
486 * and pushed to the flip buffer, the remote may close its device. This will
487 * drop DTR on the remote which will drop carrier here. Typically, the tty is
488 * hung up when carrier is dropped or lost.
490 * However, there is a race between the hang up and the line discipline
491 * delivering its data to the reader. A hangup will cause the ldisc to flush
492 * (ie., clear) the read buffer and flip buffer. Because of firewire's
493 * relatively high throughput, the ldisc frequently lags well behind the driver,
494 * resulting in lost data (which has already been received and written to
495 * the flip buffer) when the remote closes its end.
497 * Unfortunately, since the flip buffer offers no direct method for determining
498 * if it holds data, ensuring the ldisc has delivered all data is problematic.
501 /* FIXME: drop this workaround when __tty_hangup waits for ldisc completion */
502 static void fwtty_do_hangup(struct work_struct *work)
504 struct fwtty_port *port = to_port(work, hangup);
505 struct tty_struct *tty;
507 schedule_timeout_uninterruptible(msecs_to_jiffies(50));
509 tty = tty_port_tty_get(&port->port);
516 static void fwtty_emit_breaks(struct work_struct *work)
518 struct fwtty_port *port = to_port(to_delayed_work(work), emit_breaks);
519 static const char buf[16];
520 unsigned long now = jiffies;
521 unsigned long elapsed = now - port->break_last;
522 int n, t, c, brk = 0;
524 /* generate breaks at the line rate (but at least 1) */
525 n = (elapsed * port->cps) / HZ + 1;
526 port->break_last = now;
528 fwtty_dbg(port, "sending %d brks\n", n);
532 c = tty_insert_flip_string_fixed_flag(&port->port, buf,
539 tty_flip_buffer_push(&port->port);
541 if (port->mstatus & (UART_LSR_BI << 24))
542 schedule_delayed_work(&port->emit_breaks, FREQ_BREAKS);
543 port->icount.brk += brk;
546 static int fwtty_rx(struct fwtty_port *port, unsigned char *data, size_t len)
552 fwtty_dbg(port, "%d\n", n);
553 fwtty_profile_data(port->stats.reads, n);
555 if (port->write_only) {
560 /* disregard break status; breaks are generated by emit_breaks work */
561 lsr = (port->mstatus >> 24) & ~UART_LSR_BI;
566 if (lsr & UART_LSR_OE)
567 ++port->icount.overrun;
569 lsr &= port->status_mask;
570 if (lsr & ~port->ignore_mask & UART_LSR_OE) {
571 if (!tty_insert_flip_char(&port->port, 0, TTY_OVERRUN)) {
576 port->overrun = false;
578 if (lsr & port->ignore_mask & ~UART_LSR_OE) {
579 /* TODO: don't drop SAK and Magic SysRq here */
584 c = tty_insert_flip_string_fixed_flag(&port->port, data, TTY_NORMAL, n);
586 tty_flip_buffer_push(&port->port);
590 port->overrun = true;
592 fwtty_err_ratelimited(port, "flip buffer overrun\n");
595 /* throttle the sender if remaining flip buffer space has
596 * reached high watermark to avoid losing data which may be
597 * in-flight. Since the AR request context is 32k, that much
598 * data may have _already_ been acked.
600 if (tty_buffer_space_avail(&port->port) < HIGH_WATERMARK)
601 fwtty_throttle_port(port);
605 port->icount.rx += len;
606 port->stats.lost += n;
611 * fwtty_port_handler - bus address handler for port reads/writes
612 * @parameters: fw_address_callback_t as specified by firewire core interface
614 * This handler is responsible for handling inbound read/write dma from remotes.
616 static void fwtty_port_handler(struct fw_card *card,
617 struct fw_request *request,
618 int tcode, int destination, int source,
620 unsigned long long addr,
621 void *data, size_t len,
624 struct fwtty_port *port = callback_data;
625 struct fwtty_peer *peer;
629 /* Only accept rx from the peer virtual-cabled to this port */
631 peer = __fwserial_peer_by_node_id(card, generation, source);
633 if (!peer || peer != rcu_access_pointer(port->peer)) {
634 rcode = RCODE_ADDRESS_ERROR;
635 fwtty_err_ratelimited(port, "ignoring unauthenticated data\n");
640 case TCODE_WRITE_QUADLET_REQUEST:
641 if (addr != port->rx_handler.offset || len != 4)
642 rcode = RCODE_ADDRESS_ERROR;
644 fwtty_update_port_status(port, *(unsigned *)data);
645 rcode = RCODE_COMPLETE;
649 case TCODE_WRITE_BLOCK_REQUEST:
650 if (addr != port->rx_handler.offset + 4 ||
651 len > port->rx_handler.length - 4) {
652 rcode = RCODE_ADDRESS_ERROR;
654 err = fwtty_rx(port, data, len);
657 rcode = RCODE_COMPLETE;
660 rcode = RCODE_DATA_ERROR;
663 rcode = RCODE_CONFLICT_ERROR;
670 rcode = RCODE_TYPE_ERROR;
674 fw_send_response(card, request, rcode);
678 * fwtty_tx_complete - callback for tx dma
679 * @data: ignored, has no meaning for write txns
680 * @length: ignored, has no meaning for write txns
682 * The writer must be woken here if the fifo has been emptied because it
683 * may have slept if chars_in_buffer was != 0
685 static void fwtty_tx_complete(struct fw_card *card, int rcode,
686 void *data, size_t length,
687 struct fwtty_transaction *txn)
689 struct fwtty_port *port = txn->port;
692 fwtty_dbg(port, "rcode: %d\n", rcode);
696 spin_lock_bh(&port->lock);
697 dma_fifo_out_complete(&port->tx_fifo, &txn->dma_pended);
698 len = dma_fifo_level(&port->tx_fifo);
699 spin_unlock_bh(&port->lock);
701 port->icount.tx += txn->dma_pended.len;
705 /* TODO: implement retries */
706 spin_lock_bh(&port->lock);
707 dma_fifo_out_complete(&port->tx_fifo, &txn->dma_pended);
708 len = dma_fifo_level(&port->tx_fifo);
709 spin_unlock_bh(&port->lock);
711 port->stats.dropped += txn->dma_pended.len;
714 if (len < WAKEUP_CHARS)
715 tty_port_tty_wakeup(&port->port);
718 static int fwtty_tx(struct fwtty_port *port, bool drain)
720 struct fwtty_peer *peer;
721 struct fwtty_transaction *txn;
722 struct tty_struct *tty;
725 tty = tty_port_tty_get(&port->port);
730 peer = rcu_dereference(port->peer);
736 if (test_and_set_bit(IN_TX, &port->flags)) {
741 /* try to write as many dma transactions out as possible */
743 while (!tty->stopped && !tty->hw_stopped &&
744 !test_bit(STOP_TX, &port->flags)) {
745 txn = kmem_cache_alloc(fwtty_txn_cache, GFP_ATOMIC);
751 spin_lock_bh(&port->lock);
752 n = dma_fifo_out_pend(&port->tx_fifo, &txn->dma_pended);
753 spin_unlock_bh(&port->lock);
755 fwtty_dbg(port, "out: %u rem: %d\n", txn->dma_pended.len, n);
758 kmem_cache_free(fwtty_txn_cache, txn);
760 ++port->stats.tx_stall;
761 else if (n == -ENODATA)
762 fwtty_profile_data(port->stats.txns, 0);
764 ++port->stats.fifo_errs;
765 fwtty_err_ratelimited(port, "fifo err: %d\n",
771 fwtty_profile_data(port->stats.txns, txn->dma_pended.len);
773 fwtty_send_txn_async(peer, txn, TCODE_WRITE_BLOCK_REQUEST,
774 peer->fifo_addr, txn->dma_pended.data,
775 txn->dma_pended.len, fwtty_tx_complete,
780 * Stop tx if the 'last view' of the fifo is empty or if
781 * this is the writer and there's not enough data to bother
783 if (n == 0 || (!drain && n < WRITER_MINIMUM))
787 if (n >= 0 || n == -EAGAIN || n == -ENOMEM || n == -ENODATA) {
788 spin_lock_bh(&port->lock);
789 len = dma_fifo_out_level(&port->tx_fifo);
791 unsigned long delay = (n == -ENOMEM) ? HZ : 1;
792 schedule_delayed_work(&port->drain, delay);
794 len = dma_fifo_level(&port->tx_fifo);
795 spin_unlock_bh(&port->lock);
797 /* wakeup the writer */
798 if (drain && len < WAKEUP_CHARS)
802 clear_bit(IN_TX, &port->flags);
803 wake_up_interruptible(&port->wait_tx);
811 static void fwtty_drain_tx(struct work_struct *work)
813 struct fwtty_port *port = to_port(to_delayed_work(work), drain);
815 fwtty_tx(port, true);
818 static void fwtty_write_xchar(struct fwtty_port *port, char ch)
820 struct fwtty_peer *peer;
822 ++port->stats.xchars;
824 fwtty_dbg(port, "%02x\n", ch);
827 peer = rcu_dereference(port->peer);
829 fwtty_send_data_async(peer, TCODE_WRITE_BLOCK_REQUEST,
830 peer->fifo_addr, &ch, sizeof(ch),
836 struct fwtty_port *fwtty_port_get(unsigned index)
838 struct fwtty_port *port;
840 if (index >= MAX_TOTAL_PORTS)
843 mutex_lock(&port_table_lock);
844 port = port_table[index];
846 kref_get(&port->serial->kref);
847 mutex_unlock(&port_table_lock);
850 EXPORT_SYMBOL(fwtty_port_get);
852 static int fwtty_ports_add(struct fw_serial *serial)
857 if (port_table_corrupt)
860 mutex_lock(&port_table_lock);
861 for (i = 0; i + num_ports <= MAX_TOTAL_PORTS; i += num_ports) {
862 if (!port_table[i]) {
863 for (j = 0; j < num_ports; ++i, ++j) {
864 serial->ports[j]->index = i;
865 port_table[i] = serial->ports[j];
871 mutex_unlock(&port_table_lock);
875 static void fwserial_destroy(struct kref *kref)
877 struct fw_serial *serial = to_serial(kref, kref);
878 struct fwtty_port **ports = serial->ports;
879 int j, i = ports[0]->index;
883 mutex_lock(&port_table_lock);
884 for (j = 0; j < num_ports; ++i, ++j) {
885 port_table_corrupt |= port_table[i] != ports[j];
886 WARN_ONCE(port_table_corrupt, "port_table[%d]: %p != ports[%d]: %p",
887 i, port_table[i], j, ports[j]);
889 port_table[i] = NULL;
891 mutex_unlock(&port_table_lock);
893 for (j = 0; j < num_ports; ++j) {
894 fw_core_remove_address_handler(&ports[j]->rx_handler);
895 tty_port_destroy(&ports[j]->port);
901 void fwtty_port_put(struct fwtty_port *port)
903 kref_put(&port->serial->kref, fwserial_destroy);
905 EXPORT_SYMBOL(fwtty_port_put);
907 static void fwtty_port_dtr_rts(struct tty_port *tty_port, int on)
909 struct fwtty_port *port = to_port(tty_port, port);
911 fwtty_dbg(port, "on/off: %d\n", on);
913 spin_lock_bh(&port->lock);
914 /* Don't change carrier state if this is a console */
915 if (!port->port.console) {
917 port->mctrl |= TIOCM_DTR | TIOCM_RTS;
919 port->mctrl &= ~(TIOCM_DTR | TIOCM_RTS);
922 __fwtty_write_port_status(port);
923 spin_unlock_bh(&port->lock);
927 * fwtty_port_carrier_raised: required tty_port operation
929 * This port operation is polled after a tty has been opened and is waiting for
930 * carrier detect -- see drivers/tty/tty_port:tty_port_block_til_ready().
932 static int fwtty_port_carrier_raised(struct tty_port *tty_port)
934 struct fwtty_port *port = to_port(tty_port, port);
937 rc = (port->mstatus & TIOCM_CAR);
939 fwtty_dbg(port, "%d\n", rc);
944 static unsigned set_termios(struct fwtty_port *port, struct tty_struct *tty)
946 unsigned baud, frame;
948 baud = tty_termios_baud_rate(&tty->termios);
949 tty_termios_encode_baud_rate(&tty->termios, baud, baud);
951 /* compute bit count of 2 frames */
952 frame = 12 + ((C_CSTOPB(tty)) ? 4 : 2) + ((C_PARENB(tty)) ? 2 : 0);
954 switch (C_CSIZE(tty)) {
956 frame -= (C_CSTOPB(tty)) ? 1 : 0;
969 port->cps = (baud << 1) / frame;
971 port->status_mask = UART_LSR_OE;
972 if (_I_FLAG(tty, BRKINT | PARMRK))
973 port->status_mask |= UART_LSR_BI;
975 port->ignore_mask = 0;
977 port->ignore_mask |= UART_LSR_BI;
979 port->ignore_mask |= UART_LSR_OE;
982 port->write_only = !C_CREAD(tty);
984 /* turn off echo and newline xlat if loopback */
985 if (port->loopback) {
986 tty->termios.c_lflag &= ~(ECHO | ECHOE | ECHOK | ECHOKE |
987 ECHONL | ECHOPRT | ECHOCTL);
988 tty->termios.c_oflag &= ~ONLCR;
994 static int fwtty_port_activate(struct tty_port *tty_port,
995 struct tty_struct *tty)
997 struct fwtty_port *port = to_port(tty_port, port);
1001 set_bit(TTY_IO_ERROR, &tty->flags);
1003 err = dma_fifo_alloc(&port->tx_fifo, FWTTY_PORT_TXFIFO_LEN,
1006 FWTTY_PORT_MAX_PEND_DMA,
1011 spin_lock_bh(&port->lock);
1013 baud = set_termios(port, tty);
1015 /* if console, don't change carrier state */
1016 if (!port->port.console) {
1019 port->mctrl = TIOCM_DTR | TIOCM_RTS;
1022 if (C_CRTSCTS(tty) && ~port->mstatus & TIOCM_CTS)
1023 tty->hw_stopped = 1;
1025 __fwtty_write_port_status(port);
1026 spin_unlock_bh(&port->lock);
1028 clear_bit(TTY_IO_ERROR, &tty->flags);
1034 * fwtty_port_shutdown
1036 * Note: the tty port core ensures this is not the console and
1037 * manages TTY_IO_ERROR properly
1039 static void fwtty_port_shutdown(struct tty_port *tty_port)
1041 struct fwtty_port *port = to_port(tty_port, port);
1043 /* TODO: cancel outstanding transactions */
1045 cancel_delayed_work_sync(&port->emit_breaks);
1046 cancel_delayed_work_sync(&port->drain);
1048 spin_lock_bh(&port->lock);
1050 port->break_ctl = 0;
1052 __fwtty_write_port_status(port);
1053 dma_fifo_free(&port->tx_fifo);
1054 spin_unlock_bh(&port->lock);
1057 static int fwtty_open(struct tty_struct *tty, struct file *fp)
1059 struct fwtty_port *port = tty->driver_data;
1061 return tty_port_open(&port->port, tty, fp);
1064 static void fwtty_close(struct tty_struct *tty, struct file *fp)
1066 struct fwtty_port *port = tty->driver_data;
1068 tty_port_close(&port->port, tty, fp);
1071 static void fwtty_hangup(struct tty_struct *tty)
1073 struct fwtty_port *port = tty->driver_data;
1075 tty_port_hangup(&port->port);
1078 static void fwtty_cleanup(struct tty_struct *tty)
1080 struct fwtty_port *port = tty->driver_data;
1082 tty->driver_data = NULL;
1083 fwtty_port_put(port);
1086 static int fwtty_install(struct tty_driver *driver, struct tty_struct *tty)
1088 struct fwtty_port *port = fwtty_port_get(tty->index);
1091 err = tty_standard_install(driver, tty);
1093 tty->driver_data = port;
1095 fwtty_port_put(port);
1099 static int fwloop_install(struct tty_driver *driver, struct tty_struct *tty)
1101 struct fwtty_port *port = fwtty_port_get(table_idx(tty->index));
1104 err = tty_standard_install(driver, tty);
1106 tty->driver_data = port;
1108 fwtty_port_put(port);
1112 static int fwtty_write(struct tty_struct *tty, const unsigned char *buf, int c)
1114 struct fwtty_port *port = tty->driver_data;
1117 fwtty_dbg(port, "%d\n", c);
1118 fwtty_profile_data(port->stats.writes, c);
1120 spin_lock_bh(&port->lock);
1121 n = dma_fifo_in(&port->tx_fifo, buf, c);
1122 len = dma_fifo_out_level(&port->tx_fifo);
1123 if (len < DRAIN_THRESHOLD)
1124 schedule_delayed_work(&port->drain, 1);
1125 spin_unlock_bh(&port->lock);
1127 if (len >= DRAIN_THRESHOLD)
1128 fwtty_tx(port, false);
1130 debug_short_write(port, c, n);
1132 return (n < 0) ? 0 : n;
1135 static int fwtty_write_room(struct tty_struct *tty)
1137 struct fwtty_port *port = tty->driver_data;
1140 spin_lock_bh(&port->lock);
1141 n = dma_fifo_avail(&port->tx_fifo);
1142 spin_unlock_bh(&port->lock);
1144 fwtty_dbg(port, "%d\n", n);
1149 static int fwtty_chars_in_buffer(struct tty_struct *tty)
1151 struct fwtty_port *port = tty->driver_data;
1154 spin_lock_bh(&port->lock);
1155 n = dma_fifo_level(&port->tx_fifo);
1156 spin_unlock_bh(&port->lock);
1158 fwtty_dbg(port, "%d\n", n);
1163 static void fwtty_send_xchar(struct tty_struct *tty, char ch)
1165 struct fwtty_port *port = tty->driver_data;
1167 fwtty_dbg(port, "%02x\n", ch);
1169 fwtty_write_xchar(port, ch);
1172 static void fwtty_throttle(struct tty_struct *tty)
1174 struct fwtty_port *port = tty->driver_data;
1177 * Ignore throttling (but not unthrottling).
1178 * It only makes sense to throttle when data will no longer be
1179 * accepted by the tty flip buffer. For example, it is
1180 * possible for received data to overflow the tty buffer long
1181 * before the line discipline ever has a chance to throttle the driver.
1182 * Additionally, the driver may have already completed the I/O
1183 * but the tty buffer is still emptying, so the line discipline is
1184 * throttling and unthrottling nothing.
1187 ++port->stats.throttled;
1190 static void fwtty_unthrottle(struct tty_struct *tty)
1192 struct fwtty_port *port = tty->driver_data;
1194 fwtty_dbg(port, "CRTSCTS: %d\n", (C_CRTSCTS(tty) != 0));
1196 fwtty_profile_fifo(port, port->stats.unthrottle);
1198 spin_lock_bh(&port->lock);
1199 port->mctrl &= ~OOB_RX_THROTTLE;
1201 port->mctrl |= TIOCM_RTS;
1202 __fwtty_write_port_status(port);
1203 spin_unlock_bh(&port->lock);
1206 static int check_msr_delta(struct fwtty_port *port, unsigned long mask,
1207 struct async_icount *prev)
1209 struct async_icount now;
1214 delta = ((mask & TIOCM_RNG && prev->rng != now.rng) ||
1215 (mask & TIOCM_DSR && prev->dsr != now.dsr) ||
1216 (mask & TIOCM_CAR && prev->dcd != now.dcd) ||
1217 (mask & TIOCM_CTS && prev->cts != now.cts));
1224 static int wait_msr_change(struct fwtty_port *port, unsigned long mask)
1226 struct async_icount prev;
1228 prev = port->icount;
1230 return wait_event_interruptible(port->port.delta_msr_wait,
1231 check_msr_delta(port, mask, &prev));
1234 static int get_serial_info(struct fwtty_port *port,
1235 struct serial_struct __user *info)
1237 struct serial_struct tmp;
1239 memset(&tmp, 0, sizeof(tmp));
1241 tmp.type = PORT_UNKNOWN;
1242 tmp.line = port->port.tty->index;
1243 tmp.flags = port->port.flags;
1244 tmp.xmit_fifo_size = FWTTY_PORT_TXFIFO_LEN;
1245 tmp.baud_base = 400000000;
1246 tmp.close_delay = port->port.close_delay;
1248 return (copy_to_user(info, &tmp, sizeof(*info))) ? -EFAULT : 0;
1251 static int set_serial_info(struct fwtty_port *port,
1252 struct serial_struct __user *info)
1254 struct serial_struct tmp;
1256 if (copy_from_user(&tmp, info, sizeof(tmp)))
1259 if (tmp.irq != 0 || tmp.port != 0 || tmp.custom_divisor != 0 ||
1260 tmp.baud_base != 400000000)
1263 if (!capable(CAP_SYS_ADMIN)) {
1264 if (((tmp.flags & ~ASYNC_USR_MASK) !=
1265 (port->port.flags & ~ASYNC_USR_MASK)))
1268 port->port.close_delay = tmp.close_delay * HZ / 100;
1273 static int fwtty_ioctl(struct tty_struct *tty, unsigned cmd,
1276 struct fwtty_port *port = tty->driver_data;
1281 mutex_lock(&port->port.mutex);
1282 err = get_serial_info(port, (void __user *)arg);
1283 mutex_unlock(&port->port.mutex);
1287 mutex_lock(&port->port.mutex);
1288 err = set_serial_info(port, (void __user *)arg);
1289 mutex_unlock(&port->port.mutex);
1293 err = wait_msr_change(port, arg);
1303 static void fwtty_set_termios(struct tty_struct *tty, struct ktermios *old)
1305 struct fwtty_port *port = tty->driver_data;
1308 spin_lock_bh(&port->lock);
1309 baud = set_termios(port, tty);
1311 if ((baud == 0) && (old->c_cflag & CBAUD))
1312 port->mctrl &= ~(TIOCM_DTR | TIOCM_RTS);
1313 else if ((baud != 0) && !(old->c_cflag & CBAUD)) {
1314 if (C_CRTSCTS(tty) || !test_bit(TTY_THROTTLED, &tty->flags))
1315 port->mctrl |= TIOCM_DTR | TIOCM_RTS;
1317 port->mctrl |= TIOCM_DTR;
1319 __fwtty_write_port_status(port);
1320 spin_unlock_bh(&port->lock);
1322 if (old->c_cflag & CRTSCTS) {
1323 if (!C_CRTSCTS(tty)) {
1324 tty->hw_stopped = 0;
1325 fwtty_restart_tx(port);
1327 } else if (C_CRTSCTS(tty) && ~port->mstatus & TIOCM_CTS) {
1328 tty->hw_stopped = 1;
1333 * fwtty_break_ctl - start/stop sending breaks
1335 * Signals the remote to start or stop generating simulated breaks.
1336 * First, stop dequeueing from the fifo and wait for writer/drain to leave tx
1337 * before signalling the break line status. This guarantees any pending rx will
1338 * be queued to the line discipline before break is simulated on the remote.
1339 * Conversely, turning off break_ctl requires signalling the line status change,
1342 static int fwtty_break_ctl(struct tty_struct *tty, int state)
1344 struct fwtty_port *port = tty->driver_data;
1347 fwtty_dbg(port, "%d\n", state);
1350 set_bit(STOP_TX, &port->flags);
1351 ret = wait_event_interruptible_timeout(port->wait_tx,
1352 !test_bit(IN_TX, &port->flags),
1354 if (ret == 0 || ret == -ERESTARTSYS) {
1355 clear_bit(STOP_TX, &port->flags);
1356 fwtty_restart_tx(port);
1361 spin_lock_bh(&port->lock);
1362 port->break_ctl = (state == -1);
1363 __fwtty_write_port_status(port);
1364 spin_unlock_bh(&port->lock);
1367 spin_lock_bh(&port->lock);
1368 dma_fifo_reset(&port->tx_fifo);
1369 clear_bit(STOP_TX, &port->flags);
1370 spin_unlock_bh(&port->lock);
1375 static int fwtty_tiocmget(struct tty_struct *tty)
1377 struct fwtty_port *port = tty->driver_data;
1380 spin_lock_bh(&port->lock);
1381 tiocm = (port->mctrl & MCTRL_MASK) | (port->mstatus & ~MCTRL_MASK);
1382 spin_unlock_bh(&port->lock);
1384 fwtty_dbg(port, "%x\n", tiocm);
1389 static int fwtty_tiocmset(struct tty_struct *tty, unsigned set, unsigned clear)
1391 struct fwtty_port *port = tty->driver_data;
1393 fwtty_dbg(port, "set: %x clear: %x\n", set, clear);
1395 /* TODO: simulate loopback if TIOCM_LOOP set */
1397 spin_lock_bh(&port->lock);
1398 port->mctrl &= ~(clear & MCTRL_MASK & 0xffff);
1399 port->mctrl |= set & MCTRL_MASK & 0xffff;
1400 __fwtty_write_port_status(port);
1401 spin_unlock_bh(&port->lock);
1405 static int fwtty_get_icount(struct tty_struct *tty,
1406 struct serial_icounter_struct *icount)
1408 struct fwtty_port *port = tty->driver_data;
1411 memcpy(&stats, &port->stats, sizeof(stats));
1412 if (port->port.console)
1413 (*port->fwcon_ops->stats)(&stats, port->con_data);
1415 icount->cts = port->icount.cts;
1416 icount->dsr = port->icount.dsr;
1417 icount->rng = port->icount.rng;
1418 icount->dcd = port->icount.dcd;
1419 icount->rx = port->icount.rx;
1420 icount->tx = port->icount.tx + stats.xchars;
1421 icount->frame = port->icount.frame;
1422 icount->overrun = port->icount.overrun;
1423 icount->parity = port->icount.parity;
1424 icount->brk = port->icount.brk;
1425 icount->buf_overrun = port->icount.overrun;
1429 static void fwtty_proc_show_port(struct seq_file *m, struct fwtty_port *port)
1433 memcpy(&stats, &port->stats, sizeof(stats));
1434 if (port->port.console)
1435 (*port->fwcon_ops->stats)(&stats, port->con_data);
1437 seq_printf(m, " addr:%012llx tx:%d rx:%d", port->rx_handler.offset,
1438 port->icount.tx + stats.xchars, port->icount.rx);
1439 seq_printf(m, " cts:%d dsr:%d rng:%d dcd:%d", port->icount.cts,
1440 port->icount.dsr, port->icount.rng, port->icount.dcd);
1441 seq_printf(m, " fe:%d oe:%d pe:%d brk:%d", port->icount.frame,
1442 port->icount.overrun, port->icount.parity, port->icount.brk);
1445 static void fwtty_debugfs_show_port(struct seq_file *m, struct fwtty_port *port)
1449 memcpy(&stats, &port->stats, sizeof(stats));
1450 if (port->port.console)
1451 (*port->fwcon_ops->stats)(&stats, port->con_data);
1453 seq_printf(m, " dr:%d st:%d err:%d lost:%d", stats.dropped,
1454 stats.tx_stall, stats.fifo_errs, stats.lost);
1455 seq_printf(m, " pkts:%d thr:%d", stats.sent, stats.throttled);
1457 if (port->port.console) {
1459 (*port->fwcon_ops->proc_show)(m, port->con_data);
1462 fwtty_dump_profile(m, &port->stats);
1465 static void fwtty_debugfs_show_peer(struct seq_file *m, struct fwtty_peer *peer)
1467 int generation = peer->generation;
1470 seq_printf(m, " %s:", dev_name(&peer->unit->device));
1471 seq_printf(m, " node:%04x gen:%d", peer->node_id, generation);
1472 seq_printf(m, " sp:%d max:%d guid:%016llx", peer->speed,
1473 peer->max_payload, (unsigned long long) peer->guid);
1474 seq_printf(m, " mgmt:%012llx", (unsigned long long) peer->mgmt_addr);
1475 seq_printf(m, " addr:%012llx", (unsigned long long) peer->status_addr);
1479 static int fwtty_proc_show(struct seq_file *m, void *v)
1481 struct fwtty_port *port;
1484 seq_puts(m, "fwserinfo: 1.0 driver: 1.0\n");
1485 for (i = 0; i < MAX_TOTAL_PORTS && (port = fwtty_port_get(i)); ++i) {
1486 seq_printf(m, "%2d:", i);
1487 if (capable(CAP_SYS_ADMIN))
1488 fwtty_proc_show_port(m, port);
1489 fwtty_port_put(port);
1495 static int fwtty_debugfs_stats_show(struct seq_file *m, void *v)
1497 struct fw_serial *serial = m->private;
1498 struct fwtty_port *port;
1501 for (i = 0; i < num_ports; ++i) {
1502 port = fwtty_port_get(serial->ports[i]->index);
1504 seq_printf(m, "%2d:", port->index);
1505 fwtty_proc_show_port(m, port);
1506 fwtty_debugfs_show_port(m, port);
1507 fwtty_port_put(port);
1514 static int fwtty_debugfs_peers_show(struct seq_file *m, void *v)
1516 struct fw_serial *serial = m->private;
1517 struct fwtty_peer *peer;
1520 seq_printf(m, "card: %s guid: %016llx\n",
1521 dev_name(serial->card->device),
1522 (unsigned long long) serial->card->guid);
1523 list_for_each_entry_rcu(peer, &serial->peer_list, list)
1524 fwtty_debugfs_show_peer(m, peer);
1529 static int fwtty_proc_open(struct inode *inode, struct file *fp)
1531 return single_open(fp, fwtty_proc_show, NULL);
1534 static int fwtty_stats_open(struct inode *inode, struct file *fp)
1536 return single_open(fp, fwtty_debugfs_stats_show, inode->i_private);
1539 static int fwtty_peers_open(struct inode *inode, struct file *fp)
1541 return single_open(fp, fwtty_debugfs_peers_show, inode->i_private);
1544 static const struct file_operations fwtty_stats_fops = {
1545 .owner = THIS_MODULE,
1546 .open = fwtty_stats_open,
1548 .llseek = seq_lseek,
1549 .release = single_release,
1552 static const struct file_operations fwtty_peers_fops = {
1553 .owner = THIS_MODULE,
1554 .open = fwtty_peers_open,
1556 .llseek = seq_lseek,
1557 .release = single_release,
1560 static const struct file_operations fwtty_proc_fops = {
1561 .owner = THIS_MODULE,
1562 .open = fwtty_proc_open,
1564 .llseek = seq_lseek,
1565 .release = single_release,
1568 static const struct tty_port_operations fwtty_port_ops = {
1569 .dtr_rts = fwtty_port_dtr_rts,
1570 .carrier_raised = fwtty_port_carrier_raised,
1571 .shutdown = fwtty_port_shutdown,
1572 .activate = fwtty_port_activate,
1575 static const struct tty_operations fwtty_ops = {
1577 .close = fwtty_close,
1578 .hangup = fwtty_hangup,
1579 .cleanup = fwtty_cleanup,
1580 .install = fwtty_install,
1581 .write = fwtty_write,
1582 .write_room = fwtty_write_room,
1583 .chars_in_buffer = fwtty_chars_in_buffer,
1584 .send_xchar = fwtty_send_xchar,
1585 .throttle = fwtty_throttle,
1586 .unthrottle = fwtty_unthrottle,
1587 .ioctl = fwtty_ioctl,
1588 .set_termios = fwtty_set_termios,
1589 .break_ctl = fwtty_break_ctl,
1590 .tiocmget = fwtty_tiocmget,
1591 .tiocmset = fwtty_tiocmset,
1592 .get_icount = fwtty_get_icount,
1593 .proc_fops = &fwtty_proc_fops,
1596 static const struct tty_operations fwloop_ops = {
1598 .close = fwtty_close,
1599 .hangup = fwtty_hangup,
1600 .cleanup = fwtty_cleanup,
1601 .install = fwloop_install,
1602 .write = fwtty_write,
1603 .write_room = fwtty_write_room,
1604 .chars_in_buffer = fwtty_chars_in_buffer,
1605 .send_xchar = fwtty_send_xchar,
1606 .throttle = fwtty_throttle,
1607 .unthrottle = fwtty_unthrottle,
1608 .ioctl = fwtty_ioctl,
1609 .set_termios = fwtty_set_termios,
1610 .break_ctl = fwtty_break_ctl,
1611 .tiocmget = fwtty_tiocmget,
1612 .tiocmset = fwtty_tiocmset,
1613 .get_icount = fwtty_get_icount,
1616 static inline int mgmt_pkt_expected_len(__be16 code)
1618 static const struct fwserial_mgmt_pkt pkt;
1620 switch (be16_to_cpu(code)) {
1621 case FWSC_VIRT_CABLE_PLUG:
1622 return sizeof(pkt.hdr) + sizeof(pkt.plug_req);
1624 case FWSC_VIRT_CABLE_PLUG_RSP: /* | FWSC_RSP_OK */
1625 return sizeof(pkt.hdr) + sizeof(pkt.plug_rsp);
1628 case FWSC_VIRT_CABLE_UNPLUG:
1629 case FWSC_VIRT_CABLE_UNPLUG_RSP:
1630 case FWSC_VIRT_CABLE_PLUG_RSP | FWSC_RSP_NACK:
1631 case FWSC_VIRT_CABLE_UNPLUG_RSP | FWSC_RSP_NACK:
1632 return sizeof(pkt.hdr);
1639 static inline void fill_plug_params(struct virt_plug_params *params,
1640 struct fwtty_port *port)
1642 u64 status_addr = port->rx_handler.offset;
1643 u64 fifo_addr = port->rx_handler.offset + 4;
1644 size_t fifo_len = port->rx_handler.length - 4;
1646 params->status_hi = cpu_to_be32(status_addr >> 32);
1647 params->status_lo = cpu_to_be32(status_addr);
1648 params->fifo_hi = cpu_to_be32(fifo_addr >> 32);
1649 params->fifo_lo = cpu_to_be32(fifo_addr);
1650 params->fifo_len = cpu_to_be32(fifo_len);
1653 static inline void fill_plug_req(struct fwserial_mgmt_pkt *pkt,
1654 struct fwtty_port *port)
1656 pkt->hdr.code = cpu_to_be16(FWSC_VIRT_CABLE_PLUG);
1657 pkt->hdr.len = cpu_to_be16(mgmt_pkt_expected_len(pkt->hdr.code));
1658 fill_plug_params(&pkt->plug_req, port);
1661 static inline void fill_plug_rsp_ok(struct fwserial_mgmt_pkt *pkt,
1662 struct fwtty_port *port)
1664 pkt->hdr.code = cpu_to_be16(FWSC_VIRT_CABLE_PLUG_RSP);
1665 pkt->hdr.len = cpu_to_be16(mgmt_pkt_expected_len(pkt->hdr.code));
1666 fill_plug_params(&pkt->plug_rsp, port);
1669 static inline void fill_plug_rsp_nack(struct fwserial_mgmt_pkt *pkt)
1671 pkt->hdr.code = cpu_to_be16(FWSC_VIRT_CABLE_PLUG_RSP | FWSC_RSP_NACK);
1672 pkt->hdr.len = cpu_to_be16(mgmt_pkt_expected_len(pkt->hdr.code));
1675 static inline void fill_unplug_req(struct fwserial_mgmt_pkt *pkt)
1677 pkt->hdr.code = cpu_to_be16(FWSC_VIRT_CABLE_UNPLUG);
1678 pkt->hdr.len = cpu_to_be16(mgmt_pkt_expected_len(pkt->hdr.code));
1681 static inline void fill_unplug_rsp_nack(struct fwserial_mgmt_pkt *pkt)
1683 pkt->hdr.code = cpu_to_be16(FWSC_VIRT_CABLE_UNPLUG_RSP | FWSC_RSP_NACK);
1684 pkt->hdr.len = cpu_to_be16(mgmt_pkt_expected_len(pkt->hdr.code));
1687 static inline void fill_unplug_rsp_ok(struct fwserial_mgmt_pkt *pkt)
1689 pkt->hdr.code = cpu_to_be16(FWSC_VIRT_CABLE_UNPLUG_RSP);
1690 pkt->hdr.len = cpu_to_be16(mgmt_pkt_expected_len(pkt->hdr.code));
1693 static void fwserial_virt_plug_complete(struct fwtty_peer *peer,
1694 struct virt_plug_params *params)
1696 struct fwtty_port *port = peer->port;
1698 peer->status_addr = be32_to_u64(params->status_hi, params->status_lo);
1699 peer->fifo_addr = be32_to_u64(params->fifo_hi, params->fifo_lo);
1700 peer->fifo_len = be32_to_cpu(params->fifo_len);
1701 peer_set_state(peer, FWPS_ATTACHED);
1703 /* reconfigure tx_fifo optimally for this peer */
1704 spin_lock_bh(&port->lock);
1705 port->max_payload = min(peer->max_payload, peer->fifo_len);
1706 dma_fifo_change_tx_limit(&port->tx_fifo, port->max_payload);
1707 spin_unlock_bh(&peer->port->lock);
1709 if (port->port.console && port->fwcon_ops->notify != NULL)
1710 (*port->fwcon_ops->notify)(FWCON_NOTIFY_ATTACH, port->con_data);
1712 fwtty_info(&peer->unit, "peer (guid:%016llx) connected on %s\n",
1713 (unsigned long long)peer->guid, dev_name(port->device));
1716 static inline int fwserial_send_mgmt_sync(struct fwtty_peer *peer,
1717 struct fwserial_mgmt_pkt *pkt)
1720 int rcode, tries = 5;
1723 generation = peer->generation;
1726 rcode = fw_run_transaction(peer->serial->card,
1727 TCODE_WRITE_BLOCK_REQUEST,
1729 generation, peer->speed,
1731 pkt, be16_to_cpu(pkt->hdr.len));
1732 if (rcode == RCODE_BUSY || rcode == RCODE_SEND_ERROR ||
1733 rcode == RCODE_GENERATION) {
1734 fwtty_dbg(&peer->unit, "mgmt write error: %d\n", rcode);
1738 } while (--tries > 0);
1743 * fwserial_claim_port - attempt to claim port @ index for peer
1745 * Returns ptr to claimed port or error code (as ERR_PTR())
1746 * Can sleep - must be called from process context
1748 static struct fwtty_port *fwserial_claim_port(struct fwtty_peer *peer,
1751 struct fwtty_port *port;
1753 if (index < 0 || index >= num_ports)
1754 return ERR_PTR(-EINVAL);
1756 /* must guarantee that previous port releases have completed */
1759 port = peer->serial->ports[index];
1760 spin_lock_bh(&port->lock);
1761 if (!rcu_access_pointer(port->peer))
1762 rcu_assign_pointer(port->peer, peer);
1764 port = ERR_PTR(-EBUSY);
1765 spin_unlock_bh(&port->lock);
1771 * fwserial_find_port - find avail port and claim for peer
1773 * Returns ptr to claimed port or NULL if none avail
1774 * Can sleep - must be called from process context
1776 static struct fwtty_port *fwserial_find_port(struct fwtty_peer *peer)
1778 struct fwtty_port **ports = peer->serial->ports;
1781 /* must guarantee that previous port releases have completed */
1784 /* TODO: implement optional GUID-to-specific port # matching */
1786 /* find an unattached port (but not the loopback port, if present) */
1787 for (i = 0; i < num_ttys; ++i) {
1788 spin_lock_bh(&ports[i]->lock);
1789 if (!ports[i]->peer) {
1791 rcu_assign_pointer(ports[i]->peer, peer);
1792 spin_unlock_bh(&ports[i]->lock);
1795 spin_unlock_bh(&ports[i]->lock);
1800 static void fwserial_release_port(struct fwtty_port *port, bool reset)
1802 /* drop carrier (and all other line status) */
1804 fwtty_update_port_status(port, 0);
1806 spin_lock_bh(&port->lock);
1808 /* reset dma fifo max transmission size back to S100 */
1809 port->max_payload = link_speed_to_max_payload(SCODE_100);
1810 dma_fifo_change_tx_limit(&port->tx_fifo, port->max_payload);
1812 rcu_assign_pointer(port->peer, NULL);
1813 spin_unlock_bh(&port->lock);
1815 if (port->port.console && port->fwcon_ops->notify != NULL)
1816 (*port->fwcon_ops->notify)(FWCON_NOTIFY_DETACH, port->con_data);
1819 static void fwserial_plug_timeout(unsigned long data)
1821 struct fwtty_peer *peer = (struct fwtty_peer *) data;
1822 struct fwtty_port *port;
1824 spin_lock_bh(&peer->lock);
1825 if (peer->state != FWPS_PLUG_PENDING) {
1826 spin_unlock_bh(&peer->lock);
1830 port = peer_revert_state(peer);
1831 spin_unlock_bh(&peer->lock);
1834 fwserial_release_port(port, false);
1838 * fwserial_connect_peer - initiate virtual cable with peer
1840 * Returns 0 if VIRT_CABLE_PLUG request was successfully sent,
1841 * otherwise error code. Must be called from process context.
1843 static int fwserial_connect_peer(struct fwtty_peer *peer)
1845 struct fwtty_port *port;
1846 struct fwserial_mgmt_pkt *pkt;
1849 pkt = kmalloc(sizeof(*pkt), GFP_KERNEL);
1853 port = fwserial_find_port(peer);
1855 fwtty_err(&peer->unit, "avail ports in use\n");
1860 spin_lock_bh(&peer->lock);
1862 /* only initiate VIRT_CABLE_PLUG if peer is currently not attached */
1863 if (peer->state != FWPS_NOT_ATTACHED) {
1869 peer_set_state(peer, FWPS_PLUG_PENDING);
1871 fill_plug_req(pkt, peer->port);
1873 setup_timer(&peer->timer, fwserial_plug_timeout, (unsigned long)peer);
1874 mod_timer(&peer->timer, jiffies + VIRT_CABLE_PLUG_TIMEOUT);
1875 spin_unlock_bh(&peer->lock);
1877 rcode = fwserial_send_mgmt_sync(peer, pkt);
1879 spin_lock_bh(&peer->lock);
1880 if (peer->state == FWPS_PLUG_PENDING && rcode != RCODE_COMPLETE) {
1881 if (rcode == RCODE_CONFLICT_ERROR)
1887 spin_unlock_bh(&peer->lock);
1893 del_timer(&peer->timer);
1894 peer_revert_state(peer);
1896 spin_unlock_bh(&peer->lock);
1897 fwserial_release_port(port, false);
1904 * fwserial_close_port -
1905 * HUP the tty (if the tty exists) and unregister the tty device.
1906 * Only used by the unit driver upon unit removal to disconnect and
1907 * cleanup all attached ports
1909 * The port reference is put by fwtty_cleanup (if a reference was
1912 static void fwserial_close_port(struct tty_driver *driver,
1913 struct fwtty_port *port)
1915 struct tty_struct *tty;
1917 mutex_lock(&port->port.mutex);
1918 tty = tty_port_tty_get(&port->port);
1923 mutex_unlock(&port->port.mutex);
1925 if (driver == fwloop_driver)
1926 tty_unregister_device(driver, loop_idx(port));
1928 tty_unregister_device(driver, port->index);
1932 * fwserial_lookup - finds first fw_serial associated with card
1933 * @card: fw_card to match
1935 * NB: caller must be holding fwserial_list_mutex
1937 static struct fw_serial *fwserial_lookup(struct fw_card *card)
1939 struct fw_serial *serial;
1941 list_for_each_entry(serial, &fwserial_list, list) {
1942 if (card == serial->card)
1950 * __fwserial_lookup_rcu - finds first fw_serial associated with card
1951 * @card: fw_card to match
1953 * NB: caller must be inside rcu_read_lock() section
1955 static struct fw_serial *__fwserial_lookup_rcu(struct fw_card *card)
1957 struct fw_serial *serial;
1959 list_for_each_entry_rcu(serial, &fwserial_list, list) {
1960 if (card == serial->card)
1968 * __fwserial_peer_by_node_id - finds a peer matching the given generation + id
1970 * If a matching peer could not be found for the specified generation/node id,
1971 * this could be because:
1972 * a) the generation has changed and one of the nodes hasn't updated yet
1973 * b) the remote node has created its remote unit device before this
1974 * local node has created its corresponding remote unit device
1975 * In either case, the remote node should retry
1977 * Note: caller must be in rcu_read_lock() section
1979 static struct fwtty_peer *__fwserial_peer_by_node_id(struct fw_card *card,
1980 int generation, int id)
1982 struct fw_serial *serial;
1983 struct fwtty_peer *peer;
1985 serial = __fwserial_lookup_rcu(card);
1988 * Something is very wrong - there should be a matching
1989 * fw_serial structure for every fw_card. Maybe the remote node
1990 * has created its remote unit device before this driver has
1991 * been probed for any unit devices...
1993 fwtty_err(card, "unknown card (guid %016llx)\n",
1994 (unsigned long long) card->guid);
1998 list_for_each_entry_rcu(peer, &serial->peer_list, list) {
1999 int g = peer->generation;
2001 if (generation == g && id == peer->node_id)
2009 static void __dump_peer_list(struct fw_card *card)
2011 struct fw_serial *serial;
2012 struct fwtty_peer *peer;
2014 serial = __fwserial_lookup_rcu(card);
2018 list_for_each_entry_rcu(peer, &serial->peer_list, list) {
2019 int g = peer->generation;
2021 fwtty_dbg(card, "peer(%d:%x) guid: %016llx\n",
2022 g, peer->node_id, (unsigned long long) peer->guid);
2026 #define __dump_peer_list(s)
2029 static void fwserial_auto_connect(struct work_struct *work)
2031 struct fwtty_peer *peer = to_peer(to_delayed_work(work), connect);
2034 err = fwserial_connect_peer(peer);
2035 if (err == -EAGAIN && ++peer->connect_retries < MAX_CONNECT_RETRIES)
2036 schedule_delayed_work(&peer->connect, CONNECT_RETRY_DELAY);
2040 * fwserial_add_peer - add a newly probed 'serial' unit device as a 'peer'
2041 * @serial: aggregate representing the specific fw_card to add the peer to
2042 * @unit: 'peer' to create and add to peer_list of serial
2044 * Adds a 'peer' (ie, a local or remote 'serial' unit device) to the list of
2045 * peers for a specific fw_card. Optionally, auto-attach this peer to an
2046 * available tty port. This function is called either directly or indirectly
2047 * as a result of a 'serial' unit device being created & probed.
2049 * Note: this function is serialized with fwserial_remove_peer() by the
2050 * fwserial_list_mutex held in fwserial_probe().
2052 * A 1:1 correspondence between an fw_unit and an fwtty_peer is maintained
2053 * via the dev_set_drvdata() for the device of the fw_unit.
2055 static int fwserial_add_peer(struct fw_serial *serial, struct fw_unit *unit)
2057 struct device *dev = &unit->device;
2058 struct fw_device *parent = fw_parent_device(unit);
2059 struct fwtty_peer *peer;
2060 struct fw_csr_iterator ci;
2064 peer = kzalloc(sizeof(*peer), GFP_KERNEL);
2068 peer_set_state(peer, FWPS_NOT_ATTACHED);
2070 dev_set_drvdata(dev, peer);
2072 peer->guid = (u64)parent->config_rom[3] << 32 | parent->config_rom[4];
2073 peer->speed = parent->max_speed;
2074 peer->max_payload = min(device_max_receive(parent),
2075 link_speed_to_max_payload(peer->speed));
2077 generation = parent->generation;
2079 peer->node_id = parent->node_id;
2081 peer->generation = generation;
2083 /* retrieve the mgmt bus addr from the unit directory */
2084 fw_csr_iterator_init(&ci, unit->directory);
2085 while (fw_csr_iterator_next(&ci, &key, &val)) {
2086 if (key == (CSR_OFFSET | CSR_DEPENDENT_INFO)) {
2087 peer->mgmt_addr = CSR_REGISTER_BASE + 4 * val;
2091 if (peer->mgmt_addr == 0ULL) {
2093 * No mgmt address effectively disables VIRT_CABLE_PLUG -
2094 * this peer will not be able to attach to a remote
2096 peer_set_state(peer, FWPS_NO_MGMT_ADDR);
2099 spin_lock_init(&peer->lock);
2102 init_timer(&peer->timer);
2103 INIT_WORK(&peer->work, NULL);
2104 INIT_DELAYED_WORK(&peer->connect, fwserial_auto_connect);
2106 /* associate peer with specific fw_card */
2107 peer->serial = serial;
2108 list_add_rcu(&peer->list, &serial->peer_list);
2110 fwtty_info(&peer->unit, "peer added (guid:%016llx)\n",
2111 (unsigned long long)peer->guid);
2113 /* identify the local unit & virt cable to loopback port */
2114 if (parent->is_local) {
2115 serial->self = peer;
2116 if (create_loop_dev) {
2117 struct fwtty_port *port;
2118 port = fwserial_claim_port(peer, num_ttys);
2119 if (!IS_ERR(port)) {
2120 struct virt_plug_params params;
2122 spin_lock_bh(&peer->lock);
2124 fill_plug_params(¶ms, port);
2125 fwserial_virt_plug_complete(peer, ¶ms);
2126 spin_unlock_bh(&peer->lock);
2128 fwtty_write_port_status(port);
2132 } else if (auto_connect) {
2133 /* auto-attach to remote units only (if policy allows) */
2134 schedule_delayed_work(&peer->connect, 1);
2141 * fwserial_remove_peer - remove a 'serial' unit device as a 'peer'
2143 * Remove a 'peer' from its list of peers. This function is only
2144 * called by fwserial_remove() on bus removal of the unit device.
2146 * Note: this function is serialized with fwserial_add_peer() by the
2147 * fwserial_list_mutex held in fwserial_remove().
2149 static void fwserial_remove_peer(struct fwtty_peer *peer)
2151 struct fwtty_port *port;
2153 spin_lock_bh(&peer->lock);
2154 peer_set_state(peer, FWPS_GONE);
2155 spin_unlock_bh(&peer->lock);
2157 cancel_delayed_work_sync(&peer->connect);
2158 cancel_work_sync(&peer->work);
2160 spin_lock_bh(&peer->lock);
2161 /* if this unit is the local unit, clear link */
2162 if (peer == peer->serial->self)
2163 peer->serial->self = NULL;
2165 /* cancel the request timeout timer (if running) */
2166 del_timer(&peer->timer);
2171 list_del_rcu(&peer->list);
2173 fwtty_info(&peer->unit, "peer removed (guid:%016llx)\n",
2174 (unsigned long long)peer->guid);
2176 spin_unlock_bh(&peer->lock);
2179 fwserial_release_port(port, true);
2186 * fwserial_create - init everything to create TTYs for a specific fw_card
2187 * @unit: fw_unit for first 'serial' unit device probed for this fw_card
2189 * This function inits the aggregate structure (an fw_serial instance)
2190 * used to manage the TTY ports registered by a specific fw_card. Also, the
2191 * unit device is added as the first 'peer'.
2193 * This unit device may represent a local unit device (as specified by the
2194 * config ROM unit directory) or it may represent a remote unit device
2195 * (as specified by the reading of the remote node's config ROM).
2197 * Returns 0 to indicate "ownership" of the unit device, or a negative errno
2198 * value to indicate which error.
2200 static int fwserial_create(struct fw_unit *unit)
2202 struct fw_device *parent = fw_parent_device(unit);
2203 struct fw_card *card = parent->card;
2204 struct fw_serial *serial;
2205 struct fwtty_port *port;
2206 struct device *tty_dev;
2210 serial = kzalloc(sizeof(*serial), GFP_KERNEL);
2214 kref_init(&serial->kref);
2215 serial->card = card;
2216 INIT_LIST_HEAD(&serial->peer_list);
2218 for (i = 0; i < num_ports; ++i) {
2219 port = kzalloc(sizeof(*port), GFP_KERNEL);
2224 tty_port_init(&port->port);
2225 port->index = FWTTY_INVALID_INDEX;
2226 port->port.ops = &fwtty_port_ops;
2227 port->serial = serial;
2228 tty_buffer_set_limit(&port->port, 128 * 1024);
2230 spin_lock_init(&port->lock);
2231 INIT_DELAYED_WORK(&port->drain, fwtty_drain_tx);
2232 INIT_DELAYED_WORK(&port->emit_breaks, fwtty_emit_breaks);
2233 INIT_WORK(&port->hangup, fwtty_do_hangup);
2234 init_waitqueue_head(&port->wait_tx);
2235 port->max_payload = link_speed_to_max_payload(SCODE_100);
2236 dma_fifo_init(&port->tx_fifo);
2238 rcu_assign_pointer(port->peer, NULL);
2239 serial->ports[i] = port;
2241 /* get unique bus addr region for port's status & recv fifo */
2242 port->rx_handler.length = FWTTY_PORT_RXFIFO_LEN + 4;
2243 port->rx_handler.address_callback = fwtty_port_handler;
2244 port->rx_handler.callback_data = port;
2246 * XXX: use custom memory region above cpu physical memory addrs
2247 * this will ease porting to 64-bit firewire adapters
2249 err = fw_core_add_address_handler(&port->rx_handler,
2250 &fw_high_memory_region);
2256 /* preserve i for error cleanup */
2258 err = fwtty_ports_add(serial);
2260 fwtty_err(&unit, "no space in port table\n");
2264 for (j = 0; j < num_ttys; ++j) {
2265 tty_dev = tty_port_register_device(&serial->ports[j]->port,
2267 serial->ports[j]->index,
2269 if (IS_ERR(tty_dev)) {
2270 err = PTR_ERR(tty_dev);
2271 fwtty_err(&unit, "register tty device error (%d)\n",
2273 goto unregister_ttys;
2276 serial->ports[j]->device = tty_dev;
2278 /* preserve j for error cleanup */
2280 if (create_loop_dev) {
2281 struct device *loop_dev;
2283 loop_dev = tty_port_register_device(&serial->ports[j]->port,
2285 loop_idx(serial->ports[j]),
2287 if (IS_ERR(loop_dev)) {
2288 err = PTR_ERR(loop_dev);
2289 fwtty_err(&unit, "create loop device failed (%d)\n",
2291 goto unregister_ttys;
2293 serial->ports[j]->device = loop_dev;
2294 serial->ports[j]->loopback = true;
2297 if (!IS_ERR_OR_NULL(fwserial_debugfs)) {
2298 serial->debugfs = debugfs_create_dir(dev_name(&unit->device),
2300 if (!IS_ERR_OR_NULL(serial->debugfs)) {
2301 debugfs_create_file("peers", 0444, serial->debugfs,
2302 serial, &fwtty_peers_fops);
2303 debugfs_create_file("stats", 0444, serial->debugfs,
2304 serial, &fwtty_stats_fops);
2308 list_add_rcu(&serial->list, &fwserial_list);
2310 fwtty_notice(&unit, "TTY over FireWire on device %s (guid %016llx)\n",
2311 dev_name(card->device), (unsigned long long) card->guid);
2313 err = fwserial_add_peer(serial, unit);
2317 fwtty_err(&unit, "unable to add peer unit device (%d)\n", err);
2319 /* fall-through to error processing */
2320 debugfs_remove_recursive(serial->debugfs);
2322 list_del_rcu(&serial->list);
2323 if (create_loop_dev)
2324 tty_unregister_device(fwloop_driver,
2325 loop_idx(serial->ports[j]));
2327 for (--j; j >= 0; --j)
2328 tty_unregister_device(fwtty_driver, serial->ports[j]->index);
2329 kref_put(&serial->kref, fwserial_destroy);
2333 for (--i; i >= 0; --i) {
2334 tty_port_destroy(&serial->ports[i]->port);
2335 kfree(serial->ports[i]);
2342 * fwserial_probe: bus probe function for firewire 'serial' unit devices
2344 * A 'serial' unit device is created and probed as a result of:
2345 * - declaring a ieee1394 bus id table for 'devices' matching a fabricated
2346 * 'serial' unit specifier id
2347 * - adding a unit directory to the config ROM(s) for a 'serial' unit
2349 * The firewire core registers unit devices by enumerating unit directories
2350 * of a node's config ROM after reading the config ROM when a new node is
2351 * added to the bus topology after a bus reset.
2353 * The practical implications of this are:
2354 * - this probe is called for both local and remote nodes that have a 'serial'
2355 * unit directory in their config ROM (that matches the specifiers in
2356 * fwserial_id_table).
2357 * - no specific order is enforced for local vs. remote unit devices
2359 * This unit driver copes with the lack of specific order in the same way the
2360 * firewire net driver does -- each probe, for either a local or remote unit
2361 * device, is treated as a 'peer' (has a struct fwtty_peer instance) and the
2362 * first peer created for a given fw_card (tracked by the global fwserial_list)
2363 * creates the underlying TTYs (aggregated in a fw_serial instance).
2365 * NB: an early attempt to differentiate local & remote unit devices by creating
2366 * peers only for remote units and fw_serial instances (with their
2367 * associated TTY devices) only for local units was discarded. Managing
2368 * the peer lifetimes on device removal proved too complicated.
2370 * fwserial_probe/fwserial_remove are effectively serialized by the
2371 * fwserial_list_mutex. This is necessary because the addition of the first peer
2372 * for a given fw_card will trigger the creation of the fw_serial for that
2373 * fw_card, which must not simultaneously contend with the removal of the
2374 * last peer for a given fw_card triggering the destruction of the same
2375 * fw_serial for the same fw_card.
2377 static int fwserial_probe(struct fw_unit *unit,
2378 const struct ieee1394_device_id *id)
2380 struct fw_serial *serial;
2383 mutex_lock(&fwserial_list_mutex);
2384 serial = fwserial_lookup(fw_parent_device(unit)->card);
2386 err = fwserial_create(unit);
2388 err = fwserial_add_peer(serial, unit);
2389 mutex_unlock(&fwserial_list_mutex);
2394 * fwserial_remove: bus removal function for firewire 'serial' unit devices
2396 * The corresponding 'peer' for this unit device is removed from the list of
2397 * peers for the associated fw_serial (which has a 1:1 correspondence with a
2398 * specific fw_card). If this is the last peer being removed, then trigger
2399 * the destruction of the underlying TTYs.
2401 static void fwserial_remove(struct fw_unit *unit)
2403 struct fwtty_peer *peer = dev_get_drvdata(&unit->device);
2404 struct fw_serial *serial = peer->serial;
2407 mutex_lock(&fwserial_list_mutex);
2408 fwserial_remove_peer(peer);
2410 if (list_empty(&serial->peer_list)) {
2411 /* unlink from the fwserial_list here */
2412 list_del_rcu(&serial->list);
2414 debugfs_remove_recursive(serial->debugfs);
2416 for (i = 0; i < num_ttys; ++i)
2417 fwserial_close_port(fwtty_driver, serial->ports[i]);
2418 if (create_loop_dev)
2419 fwserial_close_port(fwloop_driver, serial->ports[i]);
2420 kref_put(&serial->kref, fwserial_destroy);
2422 mutex_unlock(&fwserial_list_mutex);
2426 * fwserial_update: bus update function for 'firewire' serial unit devices
2428 * Updates the new node_id and bus generation for this peer. Note that locking
2429 * is unnecessary; but careful memory barrier usage is important to enforce the
2430 * load and store order of generation & node_id.
2432 * The fw-core orders the write of node_id before generation in the parent
2433 * fw_device to ensure that a stale node_id cannot be used with a current
2434 * bus generation. So the generation value must be read before the node_id.
2436 * In turn, this orders the write of node_id before generation in the peer to
2437 * also ensure a stale node_id cannot be used with a current bus generation.
2439 static void fwserial_update(struct fw_unit *unit)
2441 struct fw_device *parent = fw_parent_device(unit);
2442 struct fwtty_peer *peer = dev_get_drvdata(&unit->device);
2445 generation = parent->generation;
2447 peer->node_id = parent->node_id;
2449 peer->generation = generation;
2452 static const struct ieee1394_device_id fwserial_id_table[] = {
2454 .match_flags = IEEE1394_MATCH_SPECIFIER_ID |
2455 IEEE1394_MATCH_VERSION,
2456 .specifier_id = LINUX_VENDOR_ID,
2457 .version = FWSERIAL_VERSION,
2462 static struct fw_driver fwserial_driver = {
2464 .owner = THIS_MODULE,
2465 .name = KBUILD_MODNAME,
2466 .bus = &fw_bus_type,
2468 .probe = fwserial_probe,
2469 .update = fwserial_update,
2470 .remove = fwserial_remove,
2471 .id_table = fwserial_id_table,
2474 #define FW_UNIT_SPECIFIER(id) ((CSR_SPECIFIER_ID << 24) | (id))
2475 #define FW_UNIT_VERSION(ver) ((CSR_VERSION << 24) | (ver))
2476 #define FW_UNIT_ADDRESS(ofs) (((CSR_OFFSET | CSR_DEPENDENT_INFO) << 24) \
2477 | (((ofs) - CSR_REGISTER_BASE) >> 2))
2478 /* XXX: config ROM definitons could be improved with semi-automated offset
2479 * and length calculation
2481 #define FW_ROM_LEN(quads) ((quads) << 16)
2482 #define FW_ROM_DESCRIPTOR(ofs) (((CSR_LEAF | CSR_DESCRIPTOR) << 24) | (ofs))
2484 struct fwserial_unit_directory_data {
2487 u32 unit_sw_version;
2488 u32 unit_addr_offset;
2494 static struct fwserial_unit_directory_data fwserial_unit_directory_data = {
2495 .len_crc = FW_ROM_LEN(4),
2496 .unit_specifier = FW_UNIT_SPECIFIER(LINUX_VENDOR_ID),
2497 .unit_sw_version = FW_UNIT_VERSION(FWSERIAL_VERSION),
2498 .desc1_ofs = FW_ROM_DESCRIPTOR(1),
2499 .desc1_len_crc = FW_ROM_LEN(5),
2501 0x00000000, /* type = text */
2502 0x00000000, /* enc = ASCII, lang EN */
2503 0x4c696e75, /* 'Linux TTY' */
2509 static struct fw_descriptor fwserial_unit_directory = {
2510 .length = sizeof(fwserial_unit_directory_data) / sizeof(u32),
2511 .key = (CSR_DIRECTORY | CSR_UNIT) << 24,
2512 .data = (u32 *)&fwserial_unit_directory_data,
2516 * The management address is in the unit space region but above other known
2517 * address users (to keep wild writes from causing havoc)
2519 static const struct fw_address_region fwserial_mgmt_addr_region = {
2520 .start = CSR_REGISTER_BASE + 0x1e0000ULL,
2521 .end = 0x1000000000000ULL,
2524 static struct fw_address_handler fwserial_mgmt_addr_handler;
2527 * fwserial_handle_plug_req - handle VIRT_CABLE_PLUG request work
2528 * @work: ptr to peer->work
2530 * Attempts to complete the VIRT_CABLE_PLUG handshake sequence for this peer.
2532 * This checks for a collided request-- ie, that a VIRT_CABLE_PLUG request was
2533 * already sent to this peer. If so, the collision is resolved by comparing
2534 * guid values; the loser sends the plug response.
2536 * Note: if an error prevents a response, don't do anything -- the
2537 * remote will timeout its request.
2539 static void fwserial_handle_plug_req(struct work_struct *work)
2541 struct fwtty_peer *peer = to_peer(work, work);
2542 struct virt_plug_params *plug_req = &peer->work_params.plug_req;
2543 struct fwtty_port *port;
2544 struct fwserial_mgmt_pkt *pkt;
2547 pkt = kmalloc(sizeof(*pkt), GFP_KERNEL);
2551 port = fwserial_find_port(peer);
2553 spin_lock_bh(&peer->lock);
2555 switch (peer->state) {
2556 case FWPS_NOT_ATTACHED:
2558 fwtty_err(&peer->unit, "no more ports avail\n");
2559 fill_plug_rsp_nack(pkt);
2562 fill_plug_rsp_ok(pkt, peer->port);
2563 peer_set_state(peer, FWPS_PLUG_RESPONDING);
2564 /* don't release claimed port */
2569 case FWPS_PLUG_PENDING:
2570 if (peer->serial->card->guid > peer->guid)
2573 /* We lost - hijack the already-claimed port and send ok */
2574 del_timer(&peer->timer);
2575 fill_plug_rsp_ok(pkt, peer->port);
2576 peer_set_state(peer, FWPS_PLUG_RESPONDING);
2580 fill_plug_rsp_nack(pkt);
2583 spin_unlock_bh(&peer->lock);
2585 fwserial_release_port(port, false);
2587 rcode = fwserial_send_mgmt_sync(peer, pkt);
2589 spin_lock_bh(&peer->lock);
2590 if (peer->state == FWPS_PLUG_RESPONDING) {
2591 if (rcode == RCODE_COMPLETE) {
2592 struct fwtty_port *tmp = peer->port;
2594 fwserial_virt_plug_complete(peer, plug_req);
2595 spin_unlock_bh(&peer->lock);
2597 fwtty_write_port_status(tmp);
2598 spin_lock_bh(&peer->lock);
2600 fwtty_err(&peer->unit, "PLUG_RSP error (%d)\n", rcode);
2601 port = peer_revert_state(peer);
2605 spin_unlock_bh(&peer->lock);
2607 fwserial_release_port(port, false);
2612 static void fwserial_handle_unplug_req(struct work_struct *work)
2614 struct fwtty_peer *peer = to_peer(work, work);
2615 struct fwtty_port *port = NULL;
2616 struct fwserial_mgmt_pkt *pkt;
2619 pkt = kmalloc(sizeof(*pkt), GFP_KERNEL);
2623 spin_lock_bh(&peer->lock);
2625 switch (peer->state) {
2627 fill_unplug_rsp_ok(pkt);
2628 peer_set_state(peer, FWPS_UNPLUG_RESPONDING);
2631 case FWPS_UNPLUG_PENDING:
2632 if (peer->serial->card->guid > peer->guid)
2635 /* We lost - send unplug rsp */
2636 del_timer(&peer->timer);
2637 fill_unplug_rsp_ok(pkt);
2638 peer_set_state(peer, FWPS_UNPLUG_RESPONDING);
2642 fill_unplug_rsp_nack(pkt);
2645 spin_unlock_bh(&peer->lock);
2647 rcode = fwserial_send_mgmt_sync(peer, pkt);
2649 spin_lock_bh(&peer->lock);
2650 if (peer->state == FWPS_UNPLUG_RESPONDING) {
2651 if (rcode != RCODE_COMPLETE)
2652 fwtty_err(&peer->unit, "UNPLUG_RSP error (%d)\n",
2654 port = peer_revert_state(peer);
2657 spin_unlock_bh(&peer->lock);
2659 fwserial_release_port(port, true);
2664 static int fwserial_parse_mgmt_write(struct fwtty_peer *peer,
2665 struct fwserial_mgmt_pkt *pkt,
2666 unsigned long long addr,
2669 struct fwtty_port *port = NULL;
2673 if (addr != fwserial_mgmt_addr_handler.offset || len < sizeof(pkt->hdr))
2674 return RCODE_ADDRESS_ERROR;
2676 if (len != be16_to_cpu(pkt->hdr.len) ||
2677 len != mgmt_pkt_expected_len(pkt->hdr.code))
2678 return RCODE_DATA_ERROR;
2680 spin_lock_bh(&peer->lock);
2681 if (peer->state == FWPS_GONE) {
2683 * This should never happen - it would mean that the
2684 * remote unit that just wrote this transaction was
2685 * already removed from the bus -- and the removal was
2686 * processed before we rec'd this transaction
2688 fwtty_err(&peer->unit, "peer already removed\n");
2689 spin_unlock_bh(&peer->lock);
2690 return RCODE_ADDRESS_ERROR;
2693 rcode = RCODE_COMPLETE;
2695 fwtty_dbg(&peer->unit, "mgmt: hdr.code: %04hx\n", pkt->hdr.code);
2697 switch (be16_to_cpu(pkt->hdr.code) & FWSC_CODE_MASK) {
2698 case FWSC_VIRT_CABLE_PLUG:
2699 if (work_pending(&peer->work)) {
2700 fwtty_err(&peer->unit, "plug req: busy\n");
2701 rcode = RCODE_CONFLICT_ERROR;
2704 peer->work_params.plug_req = pkt->plug_req;
2705 PREPARE_WORK(&peer->work, fwserial_handle_plug_req);
2706 queue_work(system_unbound_wq, &peer->work);
2710 case FWSC_VIRT_CABLE_PLUG_RSP:
2711 if (peer->state != FWPS_PLUG_PENDING) {
2712 rcode = RCODE_CONFLICT_ERROR;
2714 } else if (be16_to_cpu(pkt->hdr.code) & FWSC_RSP_NACK) {
2715 fwtty_notice(&peer->unit, "NACK plug rsp\n");
2716 port = peer_revert_state(peer);
2719 struct fwtty_port *tmp = peer->port;
2721 fwserial_virt_plug_complete(peer, &pkt->plug_rsp);
2722 spin_unlock_bh(&peer->lock);
2724 fwtty_write_port_status(tmp);
2725 spin_lock_bh(&peer->lock);
2729 case FWSC_VIRT_CABLE_UNPLUG:
2730 if (work_pending(&peer->work)) {
2731 fwtty_err(&peer->unit, "unplug req: busy\n");
2732 rcode = RCODE_CONFLICT_ERROR;
2734 PREPARE_WORK(&peer->work, fwserial_handle_unplug_req);
2735 queue_work(system_unbound_wq, &peer->work);
2739 case FWSC_VIRT_CABLE_UNPLUG_RSP:
2740 if (peer->state != FWPS_UNPLUG_PENDING)
2741 rcode = RCODE_CONFLICT_ERROR;
2743 if (be16_to_cpu(pkt->hdr.code) & FWSC_RSP_NACK)
2744 fwtty_notice(&peer->unit, "NACK unplug?\n");
2745 port = peer_revert_state(peer);
2751 fwtty_err(&peer->unit, "unknown mgmt code %d\n",
2752 be16_to_cpu(pkt->hdr.code));
2753 rcode = RCODE_DATA_ERROR;
2755 spin_unlock_bh(&peer->lock);
2758 fwserial_release_port(port, reset);
2764 * fwserial_mgmt_handler: bus address handler for mgmt requests
2765 * @parameters: fw_address_callback_t as specified by firewire core interface
2767 * This handler is responsible for handling virtual cable requests from remotes
2770 static void fwserial_mgmt_handler(struct fw_card *card,
2771 struct fw_request *request,
2772 int tcode, int destination, int source,
2774 unsigned long long addr,
2775 void *data, size_t len,
2776 void *callback_data)
2778 struct fwserial_mgmt_pkt *pkt = data;
2779 struct fwtty_peer *peer;
2783 peer = __fwserial_peer_by_node_id(card, generation, source);
2785 fwtty_dbg(card, "peer(%d:%x) not found\n", generation, source);
2786 __dump_peer_list(card);
2787 rcode = RCODE_CONFLICT_ERROR;
2791 case TCODE_WRITE_BLOCK_REQUEST:
2792 rcode = fwserial_parse_mgmt_write(peer, pkt, addr, len);
2796 rcode = RCODE_TYPE_ERROR;
2801 fw_send_response(card, request, rcode);
2804 static int __init fwserial_init(void)
2806 int err, num_loops = !!(create_loop_dev);
2808 /* XXX: placeholder for a "firewire" debugfs node */
2809 fwserial_debugfs = debugfs_create_dir(KBUILD_MODNAME, NULL);
2811 /* num_ttys/num_ports must not be set above the static alloc avail */
2812 if (num_ttys + num_loops > MAX_CARD_PORTS)
2813 num_ttys = MAX_CARD_PORTS - num_loops;
2814 num_ports = num_ttys + num_loops;
2816 fwtty_driver = tty_alloc_driver(MAX_TOTAL_PORTS, TTY_DRIVER_REAL_RAW
2817 | TTY_DRIVER_DYNAMIC_DEV);
2818 if (IS_ERR(fwtty_driver)) {
2819 err = PTR_ERR(fwtty_driver);
2823 fwtty_driver->driver_name = KBUILD_MODNAME;
2824 fwtty_driver->name = tty_dev_name;
2825 fwtty_driver->major = 0;
2826 fwtty_driver->minor_start = 0;
2827 fwtty_driver->type = TTY_DRIVER_TYPE_SERIAL;
2828 fwtty_driver->subtype = SERIAL_TYPE_NORMAL;
2829 fwtty_driver->init_termios = tty_std_termios;
2830 fwtty_driver->init_termios.c_cflag |= CLOCAL;
2831 tty_set_operations(fwtty_driver, &fwtty_ops);
2833 err = tty_register_driver(fwtty_driver);
2835 pr_err("register tty driver failed (%d)\n", err);
2839 if (create_loop_dev) {
2840 fwloop_driver = tty_alloc_driver(MAX_TOTAL_PORTS / num_ports,
2842 | TTY_DRIVER_DYNAMIC_DEV);
2843 if (IS_ERR(fwloop_driver)) {
2844 err = PTR_ERR(fwloop_driver);
2845 goto unregister_driver;
2848 fwloop_driver->driver_name = KBUILD_MODNAME "_loop";
2849 fwloop_driver->name = loop_dev_name;
2850 fwloop_driver->major = 0;
2851 fwloop_driver->minor_start = 0;
2852 fwloop_driver->type = TTY_DRIVER_TYPE_SERIAL;
2853 fwloop_driver->subtype = SERIAL_TYPE_NORMAL;
2854 fwloop_driver->init_termios = tty_std_termios;
2855 fwloop_driver->init_termios.c_cflag |= CLOCAL;
2856 tty_set_operations(fwloop_driver, &fwloop_ops);
2858 err = tty_register_driver(fwloop_driver);
2860 pr_err("register loop driver failed (%d)\n", err);
2865 fwtty_txn_cache = kmem_cache_create("fwtty_txn_cache",
2866 sizeof(struct fwtty_transaction),
2867 0, 0, fwtty_txn_constructor);
2868 if (!fwtty_txn_cache) {
2870 goto unregister_loop;
2874 * Ideally, this address handler would be registered per local node
2875 * (rather than the same handler for all local nodes). However,
2876 * since the firewire core requires the config rom descriptor *before*
2877 * the local unit device(s) are created, a single management handler
2878 * must suffice for all local serial units.
2880 fwserial_mgmt_addr_handler.length = sizeof(struct fwserial_mgmt_pkt);
2881 fwserial_mgmt_addr_handler.address_callback = fwserial_mgmt_handler;
2883 err = fw_core_add_address_handler(&fwserial_mgmt_addr_handler,
2884 &fwserial_mgmt_addr_region);
2886 pr_err("add management handler failed (%d)\n", err);
2890 fwserial_unit_directory_data.unit_addr_offset =
2891 FW_UNIT_ADDRESS(fwserial_mgmt_addr_handler.offset);
2892 err = fw_core_add_descriptor(&fwserial_unit_directory);
2894 pr_err("add unit descriptor failed (%d)\n", err);
2895 goto remove_handler;
2898 err = driver_register(&fwserial_driver.driver);
2900 pr_err("register fwserial driver failed (%d)\n", err);
2901 goto remove_descriptor;
2907 fw_core_remove_descriptor(&fwserial_unit_directory);
2909 fw_core_remove_address_handler(&fwserial_mgmt_addr_handler);
2911 kmem_cache_destroy(fwtty_txn_cache);
2913 if (create_loop_dev)
2914 tty_unregister_driver(fwloop_driver);
2916 if (create_loop_dev)
2917 put_tty_driver(fwloop_driver);
2919 tty_unregister_driver(fwtty_driver);
2921 put_tty_driver(fwtty_driver);
2922 debugfs_remove_recursive(fwserial_debugfs);
2926 static void __exit fwserial_exit(void)
2928 driver_unregister(&fwserial_driver.driver);
2929 fw_core_remove_descriptor(&fwserial_unit_directory);
2930 fw_core_remove_address_handler(&fwserial_mgmt_addr_handler);
2931 kmem_cache_destroy(fwtty_txn_cache);
2932 if (create_loop_dev) {
2933 tty_unregister_driver(fwloop_driver);
2934 put_tty_driver(fwloop_driver);
2936 tty_unregister_driver(fwtty_driver);
2937 put_tty_driver(fwtty_driver);
2938 debugfs_remove_recursive(fwserial_debugfs);
2941 module_init(fwserial_init);
2942 module_exit(fwserial_exit);
2945 MODULE_DESCRIPTION("FireWire Serial TTY Driver");
2946 MODULE_LICENSE("GPL");
2947 MODULE_DEVICE_TABLE(ieee1394, fwserial_id_table);
2948 MODULE_PARM_DESC(ttys, "Number of ttys to create for each local firewire node");
2949 MODULE_PARM_DESC(auto, "Auto-connect a tty to each firewire node discovered");
2950 MODULE_PARM_DESC(loop, "Create a loopback device, fwloop<n>, with ttys");