2 * FireWire Serial driver
4 * Copyright (C) 2012 Peter Hurley <peter@hurleysoftware.com>
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.
17 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
19 #include <linux/sched.h>
20 #include <linux/slab.h>
21 #include <linux/device.h>
22 #include <linux/mod_devicetable.h>
23 #include <linux/rculist.h>
24 #include <linux/workqueue.h>
25 #include <linux/ratelimit.h>
26 #include <linux/bug.h>
27 #include <linux/uaccess.h>
31 #define be32_to_u64(hi, lo) ((u64)be32_to_cpu(hi) << 32 | be32_to_cpu(lo))
33 #define LINUX_VENDOR_ID 0xd00d1eU /* same id used in card root directory */
34 #define FWSERIAL_VERSION 0x00e81cU /* must be unique within LINUX_VENDOR_ID */
36 /* configurable options */
37 static int num_ttys
= 4; /* # of std ttys to create per fw_card */
38 /* - doubles as loopback port index */
39 static bool auto_connect
= true; /* try to VIRT_CABLE to every peer */
40 static bool create_loop_dev
= true; /* create a loopback device for each card */
42 module_param_named(ttys
, num_ttys
, int, 0644);
43 module_param_named(auto, auto_connect
, bool, 0644);
44 module_param_named(loop
, create_loop_dev
, bool, 0644);
47 * Threshold below which the tty is woken for writing
48 * - should be equal to WAKEUP_CHARS in drivers/tty/n_tty.c because
49 * even if the writer is woken, n_tty_poll() won't set POLLOUT until
50 * our fifo is below this level
52 #define WAKEUP_CHARS 256
55 * fwserial_list: list of every fw_serial created for each fw_card
56 * See discussion in fwserial_probe.
58 static LIST_HEAD(fwserial_list
);
59 static DEFINE_MUTEX(fwserial_list_mutex
);
62 * port_table: array of tty ports allocated to each fw_card
64 * tty ports are allocated during probe when an fw_serial is first
65 * created for a given fw_card. Ports are allocated in a contiguous block,
66 * each block consisting of 'num_ports' ports.
68 static struct fwtty_port
*port_table
[MAX_TOTAL_PORTS
];
69 static DEFINE_MUTEX(port_table_lock
);
70 static bool port_table_corrupt
;
71 #define FWTTY_INVALID_INDEX MAX_TOTAL_PORTS
73 #define loop_idx(port) (((port)->index) / num_ports)
74 #define table_idx(loop) ((loop) * num_ports + num_ttys)
76 /* total # of tty ports created per fw_card */
79 /* slab used as pool for struct fwtty_transactions */
80 static struct kmem_cache
*fwtty_txn_cache
;
82 struct tty_driver
*fwtty_driver
;
83 static struct tty_driver
*fwloop_driver
;
85 static struct dentry
*fwserial_debugfs
;
87 struct fwtty_transaction
;
88 typedef void (*fwtty_transaction_cb
)(struct fw_card
*card
, int rcode
,
89 void *data
, size_t length
,
90 struct fwtty_transaction
*txn
);
92 struct fwtty_transaction
{
93 struct fw_transaction fw_txn
;
94 fwtty_transaction_cb callback
;
95 struct fwtty_port
*port
;
97 struct dma_pending dma_pended
;
101 #define to_device(a, b) (a->b)
102 #define fwtty_err(p, fmt, ...) \
103 dev_err(to_device(p, device), fmt, ##__VA_ARGS__)
104 #define fwtty_info(p, fmt, ...) \
105 dev_info(to_device(p, device), fmt, ##__VA_ARGS__)
106 #define fwtty_notice(p, fmt, ...) \
107 dev_notice(to_device(p, device), fmt, ##__VA_ARGS__)
108 #define fwtty_dbg(p, fmt, ...) \
109 dev_dbg(to_device(p, device), "%s: " fmt, __func__, ##__VA_ARGS__)
110 #define fwtty_err_ratelimited(p, fmt, ...) \
111 dev_err_ratelimited(to_device(p, device), fmt, ##__VA_ARGS__)
114 static inline void debug_short_write(struct fwtty_port
*port
, int c
, int n
)
119 spin_lock_bh(&port
->lock
);
120 avail
= dma_fifo_avail(&port
->tx_fifo
);
121 spin_unlock_bh(&port
->lock
);
122 fwtty_dbg(port
, "short write: avail:%d req:%d wrote:%d\n",
127 #define debug_short_write(port, c, n)
130 static struct fwtty_peer
*__fwserial_peer_by_node_id(struct fw_card
*card
,
131 int generation
, int id
);
133 #ifdef FWTTY_PROFILING
135 static void fwtty_profile_fifo(struct fwtty_port
*port
, unsigned int *stat
)
137 spin_lock_bh(&port
->lock
);
138 fwtty_profile_data(stat
, dma_fifo_avail(&port
->tx_fifo
));
139 spin_unlock_bh(&port
->lock
);
142 static void fwtty_dump_profile(struct seq_file
*m
, struct stats
*stats
)
144 /* for each stat, print sum of 0 to 2^k, then individually */
150 snprintf(t
, 10, "< %d", 1 << k
);
151 seq_printf(m
, "\n%14s %6s", " ", t
);
152 for (j
= k
+ 1; j
< DISTRIBUTION_MAX_INDEX
; ++j
)
153 seq_printf(m
, "%6d", 1 << j
);
156 for (j
= 0, sum
= 0; j
<= k
; ++j
)
157 sum
+= stats
->reads
[j
];
158 seq_printf(m
, "\n%14s: %6d", "reads", sum
);
159 for (j
= k
+ 1; j
<= DISTRIBUTION_MAX_INDEX
; ++j
)
160 seq_printf(m
, "%6d", stats
->reads
[j
]);
162 for (j
= 0, sum
= 0; j
<= k
; ++j
)
163 sum
+= stats
->writes
[j
];
164 seq_printf(m
, "\n%14s: %6d", "writes", sum
);
165 for (j
= k
+ 1; j
<= DISTRIBUTION_MAX_INDEX
; ++j
)
166 seq_printf(m
, "%6d", stats
->writes
[j
]);
168 for (j
= 0, sum
= 0; j
<= k
; ++j
)
169 sum
+= stats
->txns
[j
];
170 seq_printf(m
, "\n%14s: %6d", "txns", sum
);
171 for (j
= k
+ 1; j
<= DISTRIBUTION_MAX_INDEX
; ++j
)
172 seq_printf(m
, "%6d", stats
->txns
[j
]);
174 for (j
= 0, sum
= 0; j
<= k
; ++j
)
175 sum
+= stats
->unthrottle
[j
];
176 seq_printf(m
, "\n%14s: %6d", "avail @ unthr", sum
);
177 for (j
= k
+ 1; j
<= DISTRIBUTION_MAX_INDEX
; ++j
)
178 seq_printf(m
, "%6d", stats
->unthrottle
[j
]);
182 #define fwtty_profile_fifo(port, stat)
183 #define fwtty_dump_profile(m, stats)
187 * Returns the max receive packet size for the given node
188 * Devices which are OHCI v1.0/ v1.1/ v1.2-draft or RFC 2734 compliant
189 * are required by specification to support max_rec of 8 (512 bytes) or more.
191 static inline int device_max_receive(struct fw_device
*fw_device
)
193 /* see IEEE 1394-2008 table 8-8 */
194 return min(2 << fw_device
->max_rec
, 4096);
197 static void fwtty_log_tx_error(struct fwtty_port
*port
, int rcode
)
200 case RCODE_SEND_ERROR
:
201 fwtty_err_ratelimited(port
, "card busy\n");
203 case RCODE_ADDRESS_ERROR
:
204 fwtty_err_ratelimited(port
, "bad unit addr or write length\n");
206 case RCODE_DATA_ERROR
:
207 fwtty_err_ratelimited(port
, "failed rx\n");
210 fwtty_err_ratelimited(port
, "missing ack\n");
213 fwtty_err_ratelimited(port
, "remote busy\n");
216 fwtty_err_ratelimited(port
, "failed tx: %d\n", rcode
);
220 static void fwtty_common_callback(struct fw_card
*card
, int rcode
,
221 void *payload
, size_t len
, void *cb_data
)
223 struct fwtty_transaction
*txn
= cb_data
;
224 struct fwtty_port
*port
= txn
->port
;
226 if (port
&& rcode
!= RCODE_COMPLETE
)
227 fwtty_log_tx_error(port
, rcode
);
229 txn
->callback(card
, rcode
, payload
, len
, txn
);
230 kmem_cache_free(fwtty_txn_cache
, txn
);
233 static int fwtty_send_data_async(struct fwtty_peer
*peer
, int tcode
,
234 unsigned long long addr
, void *payload
,
235 size_t len
, fwtty_transaction_cb callback
,
236 struct fwtty_port
*port
)
238 struct fwtty_transaction
*txn
;
241 txn
= kmem_cache_alloc(fwtty_txn_cache
, GFP_ATOMIC
);
245 txn
->callback
= callback
;
248 generation
= peer
->generation
;
250 fw_send_request(peer
->serial
->card
, &txn
->fw_txn
, tcode
,
251 peer
->node_id
, generation
, peer
->speed
, addr
, payload
,
252 len
, fwtty_common_callback
, txn
);
256 static void fwtty_send_txn_async(struct fwtty_peer
*peer
,
257 struct fwtty_transaction
*txn
, int tcode
,
258 unsigned long long addr
, void *payload
,
259 size_t len
, fwtty_transaction_cb callback
,
260 struct fwtty_port
*port
)
264 txn
->callback
= callback
;
267 generation
= peer
->generation
;
269 fw_send_request(peer
->serial
->card
, &txn
->fw_txn
, tcode
,
270 peer
->node_id
, generation
, peer
->speed
, addr
, payload
,
271 len
, fwtty_common_callback
, txn
);
274 static void __fwtty_restart_tx(struct fwtty_port
*port
)
278 len
= dma_fifo_out_level(&port
->tx_fifo
);
280 schedule_delayed_work(&port
->drain
, 0);
281 avail
= dma_fifo_avail(&port
->tx_fifo
);
283 fwtty_dbg(port
, "fifo len: %d avail: %d\n", len
, avail
);
286 static void fwtty_restart_tx(struct fwtty_port
*port
)
288 spin_lock_bh(&port
->lock
);
289 __fwtty_restart_tx(port
);
290 spin_unlock_bh(&port
->lock
);
294 * fwtty_update_port_status - decodes & dispatches line status changes
296 * Note: in loopback, the port->lock is being held. Only use functions that
297 * don't attempt to reclaim the port->lock.
299 static void fwtty_update_port_status(struct fwtty_port
*port
,
303 struct tty_struct
*tty
;
305 /* simulated LSR/MSR status from remote */
306 status
&= ~MCTRL_MASK
;
307 delta
= (port
->mstatus
^ status
) & ~MCTRL_MASK
;
308 delta
&= ~(status
& TIOCM_RNG
);
309 port
->mstatus
= status
;
311 if (delta
& TIOCM_RNG
)
313 if (delta
& TIOCM_DSR
)
315 if (delta
& TIOCM_CAR
)
317 if (delta
& TIOCM_CTS
)
320 fwtty_dbg(port
, "status: %x delta: %x\n", status
, delta
);
322 if (delta
& TIOCM_CAR
) {
323 tty
= tty_port_tty_get(&port
->port
);
324 if (tty
&& !C_CLOCAL(tty
)) {
325 if (status
& TIOCM_CAR
)
326 wake_up_interruptible(&port
->port
.open_wait
);
328 schedule_work(&port
->hangup
);
333 if (delta
& TIOCM_CTS
) {
334 tty
= tty_port_tty_get(&port
->port
);
335 if (tty
&& C_CRTSCTS(tty
)) {
336 if (tty
->hw_stopped
) {
337 if (status
& TIOCM_CTS
) {
340 __fwtty_restart_tx(port
);
342 fwtty_restart_tx(port
);
345 if (~status
& TIOCM_CTS
)
351 } else if (delta
& OOB_TX_THROTTLE
) {
352 tty
= tty_port_tty_get(&port
->port
);
354 if (tty
->hw_stopped
) {
355 if (~status
& OOB_TX_THROTTLE
) {
358 __fwtty_restart_tx(port
);
360 fwtty_restart_tx(port
);
363 if (status
& OOB_TX_THROTTLE
)
370 if (delta
& (UART_LSR_BI
<< 24)) {
371 if (status
& (UART_LSR_BI
<< 24)) {
372 port
->break_last
= jiffies
;
373 schedule_delayed_work(&port
->emit_breaks
, 0);
375 /* run emit_breaks one last time (if pending) */
376 mod_delayed_work(system_wq
, &port
->emit_breaks
, 0);
380 if (delta
& (TIOCM_DSR
| TIOCM_CAR
| TIOCM_CTS
| TIOCM_RNG
))
381 wake_up_interruptible(&port
->port
.delta_msr_wait
);
385 * __fwtty_port_line_status - generate 'line status' for indicated port
387 * This function returns a remote 'MSR' state based on the local 'MCR' state,
388 * as if a null modem cable was attached. The actual status is a mangling
389 * of TIOCM_* bits suitable for sending to a peer's status_addr.
391 * Note: caller must be holding port lock
393 static unsigned int __fwtty_port_line_status(struct fwtty_port
*port
)
395 unsigned int status
= 0;
397 /* TODO: add module param to tie RNG to DTR as well */
399 if (port
->mctrl
& TIOCM_DTR
)
400 status
|= TIOCM_DSR
| TIOCM_CAR
;
401 if (port
->mctrl
& TIOCM_RTS
)
403 if (port
->mctrl
& OOB_RX_THROTTLE
)
404 status
|= OOB_TX_THROTTLE
;
405 /* emulate BRK as add'l line status */
407 status
|= UART_LSR_BI
<< 24;
413 * __fwtty_write_port_status - send the port line status to peer
415 * Note: caller must be holding the port lock.
417 static int __fwtty_write_port_status(struct fwtty_port
*port
)
419 struct fwtty_peer
*peer
;
421 unsigned int status
= __fwtty_port_line_status(port
);
424 peer
= rcu_dereference(port
->peer
);
426 err
= fwtty_send_data_async(peer
, TCODE_WRITE_QUADLET_REQUEST
,
427 peer
->status_addr
, &status
,
428 sizeof(status
), NULL
, port
);
436 * fwtty_write_port_status - same as above but locked by port lock
438 static int fwtty_write_port_status(struct fwtty_port
*port
)
442 spin_lock_bh(&port
->lock
);
443 err
= __fwtty_write_port_status(port
);
444 spin_unlock_bh(&port
->lock
);
448 static void fwtty_throttle_port(struct fwtty_port
*port
)
450 struct tty_struct
*tty
;
453 tty
= tty_port_tty_get(&port
->port
);
457 spin_lock_bh(&port
->lock
);
460 port
->mctrl
|= OOB_RX_THROTTLE
;
462 port
->mctrl
&= ~TIOCM_RTS
;
463 if (~old
& OOB_RX_THROTTLE
)
464 __fwtty_write_port_status(port
);
466 spin_unlock_bh(&port
->lock
);
472 * fwtty_do_hangup - wait for ldisc to deliver all pending rx; only then hangup
474 * When the remote has finished tx, and all in-flight rx has been received and
475 * and pushed to the flip buffer, the remote may close its device. This will
476 * drop DTR on the remote which will drop carrier here. Typically, the tty is
477 * hung up when carrier is dropped or lost.
479 * However, there is a race between the hang up and the line discipline
480 * delivering its data to the reader. A hangup will cause the ldisc to flush
481 * (ie., clear) the read buffer and flip buffer. Because of firewire's
482 * relatively high throughput, the ldisc frequently lags well behind the driver,
483 * resulting in lost data (which has already been received and written to
484 * the flip buffer) when the remote closes its end.
486 * Unfortunately, since the flip buffer offers no direct method for determining
487 * if it holds data, ensuring the ldisc has delivered all data is problematic.
490 /* FIXME: drop this workaround when __tty_hangup waits for ldisc completion */
491 static void fwtty_do_hangup(struct work_struct
*work
)
493 struct fwtty_port
*port
= to_port(work
, hangup
);
494 struct tty_struct
*tty
;
496 schedule_timeout_uninterruptible(msecs_to_jiffies(50));
498 tty
= tty_port_tty_get(&port
->port
);
504 static void fwtty_emit_breaks(struct work_struct
*work
)
506 struct fwtty_port
*port
= to_port(to_delayed_work(work
), emit_breaks
);
507 static const char buf
[16];
508 unsigned long now
= jiffies
;
509 unsigned long elapsed
= now
- port
->break_last
;
510 int n
, t
, c
, brk
= 0;
512 /* generate breaks at the line rate (but at least 1) */
513 n
= (elapsed
* port
->cps
) / HZ
+ 1;
514 port
->break_last
= now
;
516 fwtty_dbg(port
, "sending %d brks\n", n
);
520 c
= tty_insert_flip_string_fixed_flag(&port
->port
, buf
,
527 tty_flip_buffer_push(&port
->port
);
529 if (port
->mstatus
& (UART_LSR_BI
<< 24))
530 schedule_delayed_work(&port
->emit_breaks
, FREQ_BREAKS
);
531 port
->icount
.brk
+= brk
;
534 static int fwtty_rx(struct fwtty_port
*port
, unsigned char *data
, size_t len
)
540 fwtty_dbg(port
, "%d\n", n
);
541 fwtty_profile_data(port
->stats
.reads
, n
);
543 if (port
->write_only
) {
548 /* disregard break status; breaks are generated by emit_breaks work */
549 lsr
= (port
->mstatus
>> 24) & ~UART_LSR_BI
;
554 if (lsr
& UART_LSR_OE
)
555 ++port
->icount
.overrun
;
557 lsr
&= port
->status_mask
;
558 if (lsr
& ~port
->ignore_mask
& UART_LSR_OE
) {
559 if (!tty_insert_flip_char(&port
->port
, 0, TTY_OVERRUN
)) {
564 port
->overrun
= false;
566 if (lsr
& port
->ignore_mask
& ~UART_LSR_OE
) {
567 /* TODO: don't drop SAK and Magic SysRq here */
572 c
= tty_insert_flip_string_fixed_flag(&port
->port
, data
, TTY_NORMAL
, n
);
574 tty_flip_buffer_push(&port
->port
);
578 port
->overrun
= true;
580 fwtty_err_ratelimited(port
, "flip buffer overrun\n");
583 /* throttle the sender if remaining flip buffer space has
584 * reached high watermark to avoid losing data which may be
585 * in-flight. Since the AR request context is 32k, that much
586 * data may have _already_ been acked.
588 if (tty_buffer_space_avail(&port
->port
) < HIGH_WATERMARK
)
589 fwtty_throttle_port(port
);
593 port
->icount
.rx
+= len
;
594 port
->stats
.lost
+= n
;
599 * fwtty_port_handler - bus address handler for port reads/writes
600 * @parameters: fw_address_callback_t as specified by firewire core interface
602 * This handler is responsible for handling inbound read/write dma from remotes.
604 static void fwtty_port_handler(struct fw_card
*card
,
605 struct fw_request
*request
,
606 int tcode
, int destination
, int source
,
608 unsigned long long addr
,
609 void *data
, size_t len
,
612 struct fwtty_port
*port
= callback_data
;
613 struct fwtty_peer
*peer
;
617 /* Only accept rx from the peer virtual-cabled to this port */
619 peer
= __fwserial_peer_by_node_id(card
, generation
, source
);
621 if (!peer
|| peer
!= rcu_access_pointer(port
->peer
)) {
622 rcode
= RCODE_ADDRESS_ERROR
;
623 fwtty_err_ratelimited(port
, "ignoring unauthenticated data\n");
628 case TCODE_WRITE_QUADLET_REQUEST
:
629 if (addr
!= port
->rx_handler
.offset
|| len
!= 4) {
630 rcode
= RCODE_ADDRESS_ERROR
;
632 fwtty_update_port_status(port
, *(unsigned int *)data
);
633 rcode
= RCODE_COMPLETE
;
637 case TCODE_WRITE_BLOCK_REQUEST
:
638 if (addr
!= port
->rx_handler
.offset
+ 4 ||
639 len
> port
->rx_handler
.length
- 4) {
640 rcode
= RCODE_ADDRESS_ERROR
;
642 err
= fwtty_rx(port
, data
, len
);
645 rcode
= RCODE_COMPLETE
;
648 rcode
= RCODE_DATA_ERROR
;
651 rcode
= RCODE_CONFLICT_ERROR
;
658 rcode
= RCODE_TYPE_ERROR
;
662 fw_send_response(card
, request
, rcode
);
666 * fwtty_tx_complete - callback for tx dma
667 * @data: ignored, has no meaning for write txns
668 * @length: ignored, has no meaning for write txns
670 * The writer must be woken here if the fifo has been emptied because it
671 * may have slept if chars_in_buffer was != 0
673 static void fwtty_tx_complete(struct fw_card
*card
, int rcode
,
674 void *data
, size_t length
,
675 struct fwtty_transaction
*txn
)
677 struct fwtty_port
*port
= txn
->port
;
680 fwtty_dbg(port
, "rcode: %d\n", rcode
);
684 spin_lock_bh(&port
->lock
);
685 dma_fifo_out_complete(&port
->tx_fifo
, &txn
->dma_pended
);
686 len
= dma_fifo_level(&port
->tx_fifo
);
687 spin_unlock_bh(&port
->lock
);
689 port
->icount
.tx
+= txn
->dma_pended
.len
;
693 /* TODO: implement retries */
694 spin_lock_bh(&port
->lock
);
695 dma_fifo_out_complete(&port
->tx_fifo
, &txn
->dma_pended
);
696 len
= dma_fifo_level(&port
->tx_fifo
);
697 spin_unlock_bh(&port
->lock
);
699 port
->stats
.dropped
+= txn
->dma_pended
.len
;
702 if (len
< WAKEUP_CHARS
)
703 tty_port_tty_wakeup(&port
->port
);
706 static int fwtty_tx(struct fwtty_port
*port
, bool drain
)
708 struct fwtty_peer
*peer
;
709 struct fwtty_transaction
*txn
;
710 struct tty_struct
*tty
;
713 tty
= tty_port_tty_get(&port
->port
);
718 peer
= rcu_dereference(port
->peer
);
724 if (test_and_set_bit(IN_TX
, &port
->flags
)) {
729 /* try to write as many dma transactions out as possible */
731 while (!tty
->stopped
&& !tty
->hw_stopped
&&
732 !test_bit(STOP_TX
, &port
->flags
)) {
733 txn
= kmem_cache_alloc(fwtty_txn_cache
, GFP_ATOMIC
);
739 spin_lock_bh(&port
->lock
);
740 n
= dma_fifo_out_pend(&port
->tx_fifo
, &txn
->dma_pended
);
741 spin_unlock_bh(&port
->lock
);
743 fwtty_dbg(port
, "out: %u rem: %d\n", txn
->dma_pended
.len
, n
);
746 kmem_cache_free(fwtty_txn_cache
, txn
);
748 ++port
->stats
.tx_stall
;
749 } else if (n
== -ENODATA
) {
750 fwtty_profile_data(port
->stats
.txns
, 0);
752 ++port
->stats
.fifo_errs
;
753 fwtty_err_ratelimited(port
, "fifo err: %d\n",
759 fwtty_profile_data(port
->stats
.txns
, txn
->dma_pended
.len
);
761 fwtty_send_txn_async(peer
, txn
, TCODE_WRITE_BLOCK_REQUEST
,
762 peer
->fifo_addr
, txn
->dma_pended
.data
,
763 txn
->dma_pended
.len
, fwtty_tx_complete
,
768 * Stop tx if the 'last view' of the fifo is empty or if
769 * this is the writer and there's not enough data to bother
771 if (n
== 0 || (!drain
&& n
< WRITER_MINIMUM
))
775 if (n
>= 0 || n
== -EAGAIN
|| n
== -ENOMEM
|| n
== -ENODATA
) {
776 spin_lock_bh(&port
->lock
);
777 len
= dma_fifo_out_level(&port
->tx_fifo
);
779 unsigned long delay
= (n
== -ENOMEM
) ? HZ
: 1;
781 schedule_delayed_work(&port
->drain
, delay
);
783 len
= dma_fifo_level(&port
->tx_fifo
);
784 spin_unlock_bh(&port
->lock
);
786 /* wakeup the writer */
787 if (drain
&& len
< WAKEUP_CHARS
)
791 clear_bit(IN_TX
, &port
->flags
);
792 wake_up_interruptible(&port
->wait_tx
);
800 static void fwtty_drain_tx(struct work_struct
*work
)
802 struct fwtty_port
*port
= to_port(to_delayed_work(work
), drain
);
804 fwtty_tx(port
, true);
807 static void fwtty_write_xchar(struct fwtty_port
*port
, char ch
)
809 struct fwtty_peer
*peer
;
811 ++port
->stats
.xchars
;
813 fwtty_dbg(port
, "%02x\n", ch
);
816 peer
= rcu_dereference(port
->peer
);
818 fwtty_send_data_async(peer
, TCODE_WRITE_BLOCK_REQUEST
,
819 peer
->fifo_addr
, &ch
, sizeof(ch
),
825 static struct fwtty_port
*fwtty_port_get(unsigned int index
)
827 struct fwtty_port
*port
;
829 if (index
>= MAX_TOTAL_PORTS
)
832 mutex_lock(&port_table_lock
);
833 port
= port_table
[index
];
835 kref_get(&port
->serial
->kref
);
836 mutex_unlock(&port_table_lock
);
840 static int fwtty_ports_add(struct fw_serial
*serial
)
845 if (port_table_corrupt
)
848 mutex_lock(&port_table_lock
);
849 for (i
= 0; i
+ num_ports
<= MAX_TOTAL_PORTS
; i
+= num_ports
) {
850 if (!port_table
[i
]) {
851 for (j
= 0; j
< num_ports
; ++i
, ++j
) {
852 serial
->ports
[j
]->index
= i
;
853 port_table
[i
] = serial
->ports
[j
];
859 mutex_unlock(&port_table_lock
);
863 static void fwserial_destroy(struct kref
*kref
)
865 struct fw_serial
*serial
= to_serial(kref
, kref
);
866 struct fwtty_port
**ports
= serial
->ports
;
867 int j
, i
= ports
[0]->index
;
871 mutex_lock(&port_table_lock
);
872 for (j
= 0; j
< num_ports
; ++i
, ++j
) {
873 port_table_corrupt
|= port_table
[i
] != ports
[j
];
874 WARN_ONCE(port_table_corrupt
, "port_table[%d]: %p != ports[%d]: %p",
875 i
, port_table
[i
], j
, ports
[j
]);
877 port_table
[i
] = NULL
;
879 mutex_unlock(&port_table_lock
);
881 for (j
= 0; j
< num_ports
; ++j
) {
882 fw_core_remove_address_handler(&ports
[j
]->rx_handler
);
883 tty_port_destroy(&ports
[j
]->port
);
889 static void fwtty_port_put(struct fwtty_port
*port
)
891 kref_put(&port
->serial
->kref
, fwserial_destroy
);
894 static void fwtty_port_dtr_rts(struct tty_port
*tty_port
, int on
)
896 struct fwtty_port
*port
= to_port(tty_port
, port
);
898 fwtty_dbg(port
, "on/off: %d\n", on
);
900 spin_lock_bh(&port
->lock
);
901 /* Don't change carrier state if this is a console */
902 if (!port
->port
.console
) {
904 port
->mctrl
|= TIOCM_DTR
| TIOCM_RTS
;
906 port
->mctrl
&= ~(TIOCM_DTR
| TIOCM_RTS
);
909 __fwtty_write_port_status(port
);
910 spin_unlock_bh(&port
->lock
);
914 * fwtty_port_carrier_raised: required tty_port operation
916 * This port operation is polled after a tty has been opened and is waiting for
917 * carrier detect -- see drivers/tty/tty_port:tty_port_block_til_ready().
919 static int fwtty_port_carrier_raised(struct tty_port
*tty_port
)
921 struct fwtty_port
*port
= to_port(tty_port
, port
);
924 rc
= (port
->mstatus
& TIOCM_CAR
);
926 fwtty_dbg(port
, "%d\n", rc
);
931 static unsigned int set_termios(struct fwtty_port
*port
, struct tty_struct
*tty
)
933 unsigned int baud
, frame
;
935 baud
= tty_termios_baud_rate(&tty
->termios
);
936 tty_termios_encode_baud_rate(&tty
->termios
, baud
, baud
);
938 /* compute bit count of 2 frames */
939 frame
= 12 + ((C_CSTOPB(tty
)) ? 4 : 2) + ((C_PARENB(tty
)) ? 2 : 0);
941 switch (C_CSIZE(tty
)) {
943 frame
-= (C_CSTOPB(tty
)) ? 1 : 0;
956 port
->cps
= (baud
<< 1) / frame
;
958 port
->status_mask
= UART_LSR_OE
;
959 if (_I_FLAG(tty
, BRKINT
| PARMRK
))
960 port
->status_mask
|= UART_LSR_BI
;
962 port
->ignore_mask
= 0;
964 port
->ignore_mask
|= UART_LSR_BI
;
966 port
->ignore_mask
|= UART_LSR_OE
;
969 port
->write_only
= !C_CREAD(tty
);
971 /* turn off echo and newline xlat if loopback */
972 if (port
->loopback
) {
973 tty
->termios
.c_lflag
&= ~(ECHO
| ECHOE
| ECHOK
| ECHOKE
|
974 ECHONL
| ECHOPRT
| ECHOCTL
);
975 tty
->termios
.c_oflag
&= ~ONLCR
;
981 static int fwtty_port_activate(struct tty_port
*tty_port
,
982 struct tty_struct
*tty
)
984 struct fwtty_port
*port
= to_port(tty_port
, port
);
988 set_bit(TTY_IO_ERROR
, &tty
->flags
);
990 err
= dma_fifo_alloc(&port
->tx_fifo
, FWTTY_PORT_TXFIFO_LEN
,
993 FWTTY_PORT_MAX_PEND_DMA
,
998 spin_lock_bh(&port
->lock
);
1000 baud
= set_termios(port
, tty
);
1002 /* if console, don't change carrier state */
1003 if (!port
->port
.console
) {
1006 port
->mctrl
= TIOCM_DTR
| TIOCM_RTS
;
1009 if (C_CRTSCTS(tty
) && ~port
->mstatus
& TIOCM_CTS
)
1010 tty
->hw_stopped
= 1;
1012 __fwtty_write_port_status(port
);
1013 spin_unlock_bh(&port
->lock
);
1015 clear_bit(TTY_IO_ERROR
, &tty
->flags
);
1021 * fwtty_port_shutdown
1023 * Note: the tty port core ensures this is not the console and
1024 * manages TTY_IO_ERROR properly
1026 static void fwtty_port_shutdown(struct tty_port
*tty_port
)
1028 struct fwtty_port
*port
= to_port(tty_port
, port
);
1030 /* TODO: cancel outstanding transactions */
1032 cancel_delayed_work_sync(&port
->emit_breaks
);
1033 cancel_delayed_work_sync(&port
->drain
);
1035 spin_lock_bh(&port
->lock
);
1037 port
->break_ctl
= 0;
1039 __fwtty_write_port_status(port
);
1040 dma_fifo_free(&port
->tx_fifo
);
1041 spin_unlock_bh(&port
->lock
);
1044 static int fwtty_open(struct tty_struct
*tty
, struct file
*fp
)
1046 struct fwtty_port
*port
= tty
->driver_data
;
1048 return tty_port_open(&port
->port
, tty
, fp
);
1051 static void fwtty_close(struct tty_struct
*tty
, struct file
*fp
)
1053 struct fwtty_port
*port
= tty
->driver_data
;
1055 tty_port_close(&port
->port
, tty
, fp
);
1058 static void fwtty_hangup(struct tty_struct
*tty
)
1060 struct fwtty_port
*port
= tty
->driver_data
;
1062 tty_port_hangup(&port
->port
);
1065 static void fwtty_cleanup(struct tty_struct
*tty
)
1067 struct fwtty_port
*port
= tty
->driver_data
;
1069 tty
->driver_data
= NULL
;
1070 fwtty_port_put(port
);
1073 static int fwtty_install(struct tty_driver
*driver
, struct tty_struct
*tty
)
1075 struct fwtty_port
*port
= fwtty_port_get(tty
->index
);
1078 err
= tty_standard_install(driver
, tty
);
1080 tty
->driver_data
= port
;
1082 fwtty_port_put(port
);
1086 static int fwloop_install(struct tty_driver
*driver
, struct tty_struct
*tty
)
1088 struct fwtty_port
*port
= fwtty_port_get(table_idx(tty
->index
));
1091 err
= tty_standard_install(driver
, tty
);
1093 tty
->driver_data
= port
;
1095 fwtty_port_put(port
);
1099 static int fwtty_write(struct tty_struct
*tty
, const unsigned char *buf
, int c
)
1101 struct fwtty_port
*port
= tty
->driver_data
;
1104 fwtty_dbg(port
, "%d\n", c
);
1105 fwtty_profile_data(port
->stats
.writes
, c
);
1107 spin_lock_bh(&port
->lock
);
1108 n
= dma_fifo_in(&port
->tx_fifo
, buf
, c
);
1109 len
= dma_fifo_out_level(&port
->tx_fifo
);
1110 if (len
< DRAIN_THRESHOLD
)
1111 schedule_delayed_work(&port
->drain
, 1);
1112 spin_unlock_bh(&port
->lock
);
1114 if (len
>= DRAIN_THRESHOLD
)
1115 fwtty_tx(port
, false);
1117 debug_short_write(port
, c
, n
);
1119 return (n
< 0) ? 0 : n
;
1122 static int fwtty_write_room(struct tty_struct
*tty
)
1124 struct fwtty_port
*port
= tty
->driver_data
;
1127 spin_lock_bh(&port
->lock
);
1128 n
= dma_fifo_avail(&port
->tx_fifo
);
1129 spin_unlock_bh(&port
->lock
);
1131 fwtty_dbg(port
, "%d\n", n
);
1136 static int fwtty_chars_in_buffer(struct tty_struct
*tty
)
1138 struct fwtty_port
*port
= tty
->driver_data
;
1141 spin_lock_bh(&port
->lock
);
1142 n
= dma_fifo_level(&port
->tx_fifo
);
1143 spin_unlock_bh(&port
->lock
);
1145 fwtty_dbg(port
, "%d\n", n
);
1150 static void fwtty_send_xchar(struct tty_struct
*tty
, char ch
)
1152 struct fwtty_port
*port
= tty
->driver_data
;
1154 fwtty_dbg(port
, "%02x\n", ch
);
1156 fwtty_write_xchar(port
, ch
);
1159 static void fwtty_throttle(struct tty_struct
*tty
)
1161 struct fwtty_port
*port
= tty
->driver_data
;
1164 * Ignore throttling (but not unthrottling).
1165 * It only makes sense to throttle when data will no longer be
1166 * accepted by the tty flip buffer. For example, it is
1167 * possible for received data to overflow the tty buffer long
1168 * before the line discipline ever has a chance to throttle the driver.
1169 * Additionally, the driver may have already completed the I/O
1170 * but the tty buffer is still emptying, so the line discipline is
1171 * throttling and unthrottling nothing.
1174 ++port
->stats
.throttled
;
1177 static void fwtty_unthrottle(struct tty_struct
*tty
)
1179 struct fwtty_port
*port
= tty
->driver_data
;
1181 fwtty_dbg(port
, "CRTSCTS: %d\n", C_CRTSCTS(tty
) != 0);
1183 fwtty_profile_fifo(port
, port
->stats
.unthrottle
);
1185 spin_lock_bh(&port
->lock
);
1186 port
->mctrl
&= ~OOB_RX_THROTTLE
;
1188 port
->mctrl
|= TIOCM_RTS
;
1189 __fwtty_write_port_status(port
);
1190 spin_unlock_bh(&port
->lock
);
1193 static int check_msr_delta(struct fwtty_port
*port
, unsigned long mask
,
1194 struct async_icount
*prev
)
1196 struct async_icount now
;
1201 delta
= ((mask
& TIOCM_RNG
&& prev
->rng
!= now
.rng
) ||
1202 (mask
& TIOCM_DSR
&& prev
->dsr
!= now
.dsr
) ||
1203 (mask
& TIOCM_CAR
&& prev
->dcd
!= now
.dcd
) ||
1204 (mask
& TIOCM_CTS
&& prev
->cts
!= now
.cts
));
1211 static int wait_msr_change(struct fwtty_port
*port
, unsigned long mask
)
1213 struct async_icount prev
;
1215 prev
= port
->icount
;
1217 return wait_event_interruptible(port
->port
.delta_msr_wait
,
1218 check_msr_delta(port
, mask
, &prev
));
1221 static int get_serial_info(struct fwtty_port
*port
,
1222 struct serial_struct __user
*info
)
1224 struct serial_struct tmp
;
1226 memset(&tmp
, 0, sizeof(tmp
));
1228 tmp
.type
= PORT_UNKNOWN
;
1229 tmp
.line
= port
->port
.tty
->index
;
1230 tmp
.flags
= port
->port
.flags
;
1231 tmp
.xmit_fifo_size
= FWTTY_PORT_TXFIFO_LEN
;
1232 tmp
.baud_base
= 400000000;
1233 tmp
.close_delay
= port
->port
.close_delay
;
1235 return (copy_to_user(info
, &tmp
, sizeof(*info
))) ? -EFAULT
: 0;
1238 static int set_serial_info(struct fwtty_port
*port
,
1239 struct serial_struct __user
*info
)
1241 struct serial_struct tmp
;
1243 if (copy_from_user(&tmp
, info
, sizeof(tmp
)))
1246 if (tmp
.irq
!= 0 || tmp
.port
!= 0 || tmp
.custom_divisor
!= 0 ||
1247 tmp
.baud_base
!= 400000000)
1250 if (!capable(CAP_SYS_ADMIN
)) {
1251 if (((tmp
.flags
& ~ASYNC_USR_MASK
) !=
1252 (port
->port
.flags
& ~ASYNC_USR_MASK
)))
1255 port
->port
.close_delay
= tmp
.close_delay
* HZ
/ 100;
1261 static int fwtty_ioctl(struct tty_struct
*tty
, unsigned int cmd
,
1264 struct fwtty_port
*port
= tty
->driver_data
;
1269 mutex_lock(&port
->port
.mutex
);
1270 err
= get_serial_info(port
, (void __user
*)arg
);
1271 mutex_unlock(&port
->port
.mutex
);
1275 mutex_lock(&port
->port
.mutex
);
1276 err
= set_serial_info(port
, (void __user
*)arg
);
1277 mutex_unlock(&port
->port
.mutex
);
1281 err
= wait_msr_change(port
, arg
);
1291 static void fwtty_set_termios(struct tty_struct
*tty
, struct ktermios
*old
)
1293 struct fwtty_port
*port
= tty
->driver_data
;
1296 spin_lock_bh(&port
->lock
);
1297 baud
= set_termios(port
, tty
);
1299 if ((baud
== 0) && (old
->c_cflag
& CBAUD
)) {
1300 port
->mctrl
&= ~(TIOCM_DTR
| TIOCM_RTS
);
1301 } else if ((baud
!= 0) && !(old
->c_cflag
& CBAUD
)) {
1302 if (C_CRTSCTS(tty
) || !tty_throttled(tty
))
1303 port
->mctrl
|= TIOCM_DTR
| TIOCM_RTS
;
1305 port
->mctrl
|= TIOCM_DTR
;
1307 __fwtty_write_port_status(port
);
1308 spin_unlock_bh(&port
->lock
);
1310 if (old
->c_cflag
& CRTSCTS
) {
1311 if (!C_CRTSCTS(tty
)) {
1312 tty
->hw_stopped
= 0;
1313 fwtty_restart_tx(port
);
1315 } else if (C_CRTSCTS(tty
) && ~port
->mstatus
& TIOCM_CTS
) {
1316 tty
->hw_stopped
= 1;
1321 * fwtty_break_ctl - start/stop sending breaks
1323 * Signals the remote to start or stop generating simulated breaks.
1324 * First, stop dequeueing from the fifo and wait for writer/drain to leave tx
1325 * before signalling the break line status. This guarantees any pending rx will
1326 * be queued to the line discipline before break is simulated on the remote.
1327 * Conversely, turning off break_ctl requires signalling the line status change,
1330 static int fwtty_break_ctl(struct tty_struct
*tty
, int state
)
1332 struct fwtty_port
*port
= tty
->driver_data
;
1335 fwtty_dbg(port
, "%d\n", state
);
1338 set_bit(STOP_TX
, &port
->flags
);
1339 ret
= wait_event_interruptible_timeout(port
->wait_tx
,
1340 !test_bit(IN_TX
, &port
->flags
),
1342 if (ret
== 0 || ret
== -ERESTARTSYS
) {
1343 clear_bit(STOP_TX
, &port
->flags
);
1344 fwtty_restart_tx(port
);
1349 spin_lock_bh(&port
->lock
);
1350 port
->break_ctl
= (state
== -1);
1351 __fwtty_write_port_status(port
);
1352 spin_unlock_bh(&port
->lock
);
1355 spin_lock_bh(&port
->lock
);
1356 dma_fifo_reset(&port
->tx_fifo
);
1357 clear_bit(STOP_TX
, &port
->flags
);
1358 spin_unlock_bh(&port
->lock
);
1363 static int fwtty_tiocmget(struct tty_struct
*tty
)
1365 struct fwtty_port
*port
= tty
->driver_data
;
1368 spin_lock_bh(&port
->lock
);
1369 tiocm
= (port
->mctrl
& MCTRL_MASK
) | (port
->mstatus
& ~MCTRL_MASK
);
1370 spin_unlock_bh(&port
->lock
);
1372 fwtty_dbg(port
, "%x\n", tiocm
);
1377 static int fwtty_tiocmset(struct tty_struct
*tty
,
1378 unsigned int set
, unsigned int clear
)
1380 struct fwtty_port
*port
= tty
->driver_data
;
1382 fwtty_dbg(port
, "set: %x clear: %x\n", set
, clear
);
1384 /* TODO: simulate loopback if TIOCM_LOOP set */
1386 spin_lock_bh(&port
->lock
);
1387 port
->mctrl
&= ~(clear
& MCTRL_MASK
& 0xffff);
1388 port
->mctrl
|= set
& MCTRL_MASK
& 0xffff;
1389 __fwtty_write_port_status(port
);
1390 spin_unlock_bh(&port
->lock
);
1394 static int fwtty_get_icount(struct tty_struct
*tty
,
1395 struct serial_icounter_struct
*icount
)
1397 struct fwtty_port
*port
= tty
->driver_data
;
1400 memcpy(&stats
, &port
->stats
, sizeof(stats
));
1401 if (port
->port
.console
)
1402 (*port
->fwcon_ops
->stats
)(&stats
, port
->con_data
);
1404 icount
->cts
= port
->icount
.cts
;
1405 icount
->dsr
= port
->icount
.dsr
;
1406 icount
->rng
= port
->icount
.rng
;
1407 icount
->dcd
= port
->icount
.dcd
;
1408 icount
->rx
= port
->icount
.rx
;
1409 icount
->tx
= port
->icount
.tx
+ stats
.xchars
;
1410 icount
->frame
= port
->icount
.frame
;
1411 icount
->overrun
= port
->icount
.overrun
;
1412 icount
->parity
= port
->icount
.parity
;
1413 icount
->brk
= port
->icount
.brk
;
1414 icount
->buf_overrun
= port
->icount
.overrun
;
1418 static void fwtty_proc_show_port(struct seq_file
*m
, struct fwtty_port
*port
)
1422 memcpy(&stats
, &port
->stats
, sizeof(stats
));
1423 if (port
->port
.console
)
1424 (*port
->fwcon_ops
->stats
)(&stats
, port
->con_data
);
1426 seq_printf(m
, " addr:%012llx tx:%d rx:%d", port
->rx_handler
.offset
,
1427 port
->icount
.tx
+ stats
.xchars
, port
->icount
.rx
);
1428 seq_printf(m
, " cts:%d dsr:%d rng:%d dcd:%d", port
->icount
.cts
,
1429 port
->icount
.dsr
, port
->icount
.rng
, port
->icount
.dcd
);
1430 seq_printf(m
, " fe:%d oe:%d pe:%d brk:%d", port
->icount
.frame
,
1431 port
->icount
.overrun
, port
->icount
.parity
, port
->icount
.brk
);
1434 static void fwtty_debugfs_show_port(struct seq_file
*m
, struct fwtty_port
*port
)
1438 memcpy(&stats
, &port
->stats
, sizeof(stats
));
1439 if (port
->port
.console
)
1440 (*port
->fwcon_ops
->stats
)(&stats
, port
->con_data
);
1442 seq_printf(m
, " dr:%d st:%d err:%d lost:%d", stats
.dropped
,
1443 stats
.tx_stall
, stats
.fifo_errs
, stats
.lost
);
1444 seq_printf(m
, " pkts:%d thr:%d", stats
.sent
, stats
.throttled
);
1446 if (port
->port
.console
) {
1448 (*port
->fwcon_ops
->proc_show
)(m
, port
->con_data
);
1451 fwtty_dump_profile(m
, &port
->stats
);
1454 static void fwtty_debugfs_show_peer(struct seq_file
*m
, struct fwtty_peer
*peer
)
1456 int generation
= peer
->generation
;
1459 seq_printf(m
, " %s:", dev_name(&peer
->unit
->device
));
1460 seq_printf(m
, " node:%04x gen:%d", peer
->node_id
, generation
);
1461 seq_printf(m
, " sp:%d max:%d guid:%016llx", peer
->speed
,
1462 peer
->max_payload
, (unsigned long long)peer
->guid
);
1463 seq_printf(m
, " mgmt:%012llx", (unsigned long long)peer
->mgmt_addr
);
1464 seq_printf(m
, " addr:%012llx", (unsigned long long)peer
->status_addr
);
1468 static int fwtty_proc_show(struct seq_file
*m
, void *v
)
1470 struct fwtty_port
*port
;
1473 seq_puts(m
, "fwserinfo: 1.0 driver: 1.0\n");
1474 for (i
= 0; i
< MAX_TOTAL_PORTS
&& (port
= fwtty_port_get(i
)); ++i
) {
1475 seq_printf(m
, "%2d:", i
);
1476 if (capable(CAP_SYS_ADMIN
))
1477 fwtty_proc_show_port(m
, port
);
1478 fwtty_port_put(port
);
1484 static int fwtty_debugfs_stats_show(struct seq_file
*m
, void *v
)
1486 struct fw_serial
*serial
= m
->private;
1487 struct fwtty_port
*port
;
1490 for (i
= 0; i
< num_ports
; ++i
) {
1491 port
= fwtty_port_get(serial
->ports
[i
]->index
);
1493 seq_printf(m
, "%2d:", port
->index
);
1494 fwtty_proc_show_port(m
, port
);
1495 fwtty_debugfs_show_port(m
, port
);
1496 fwtty_port_put(port
);
1503 static int fwtty_debugfs_peers_show(struct seq_file
*m
, void *v
)
1505 struct fw_serial
*serial
= m
->private;
1506 struct fwtty_peer
*peer
;
1509 seq_printf(m
, "card: %s guid: %016llx\n",
1510 dev_name(serial
->card
->device
),
1511 (unsigned long long)serial
->card
->guid
);
1512 list_for_each_entry_rcu(peer
, &serial
->peer_list
, list
)
1513 fwtty_debugfs_show_peer(m
, peer
);
1518 static int fwtty_proc_open(struct inode
*inode
, struct file
*fp
)
1520 return single_open(fp
, fwtty_proc_show
, NULL
);
1523 static int fwtty_stats_open(struct inode
*inode
, struct file
*fp
)
1525 return single_open(fp
, fwtty_debugfs_stats_show
, inode
->i_private
);
1528 static int fwtty_peers_open(struct inode
*inode
, struct file
*fp
)
1530 return single_open(fp
, fwtty_debugfs_peers_show
, inode
->i_private
);
1533 static const struct file_operations fwtty_stats_fops
= {
1534 .owner
= THIS_MODULE
,
1535 .open
= fwtty_stats_open
,
1537 .llseek
= seq_lseek
,
1538 .release
= single_release
,
1541 static const struct file_operations fwtty_peers_fops
= {
1542 .owner
= THIS_MODULE
,
1543 .open
= fwtty_peers_open
,
1545 .llseek
= seq_lseek
,
1546 .release
= single_release
,
1549 static const struct file_operations fwtty_proc_fops
= {
1550 .owner
= THIS_MODULE
,
1551 .open
= fwtty_proc_open
,
1553 .llseek
= seq_lseek
,
1554 .release
= single_release
,
1557 static const struct tty_port_operations fwtty_port_ops
= {
1558 .dtr_rts
= fwtty_port_dtr_rts
,
1559 .carrier_raised
= fwtty_port_carrier_raised
,
1560 .shutdown
= fwtty_port_shutdown
,
1561 .activate
= fwtty_port_activate
,
1564 static const struct tty_operations fwtty_ops
= {
1566 .close
= fwtty_close
,
1567 .hangup
= fwtty_hangup
,
1568 .cleanup
= fwtty_cleanup
,
1569 .install
= fwtty_install
,
1570 .write
= fwtty_write
,
1571 .write_room
= fwtty_write_room
,
1572 .chars_in_buffer
= fwtty_chars_in_buffer
,
1573 .send_xchar
= fwtty_send_xchar
,
1574 .throttle
= fwtty_throttle
,
1575 .unthrottle
= fwtty_unthrottle
,
1576 .ioctl
= fwtty_ioctl
,
1577 .set_termios
= fwtty_set_termios
,
1578 .break_ctl
= fwtty_break_ctl
,
1579 .tiocmget
= fwtty_tiocmget
,
1580 .tiocmset
= fwtty_tiocmset
,
1581 .get_icount
= fwtty_get_icount
,
1582 .proc_fops
= &fwtty_proc_fops
,
1585 static const struct tty_operations fwloop_ops
= {
1587 .close
= fwtty_close
,
1588 .hangup
= fwtty_hangup
,
1589 .cleanup
= fwtty_cleanup
,
1590 .install
= fwloop_install
,
1591 .write
= fwtty_write
,
1592 .write_room
= fwtty_write_room
,
1593 .chars_in_buffer
= fwtty_chars_in_buffer
,
1594 .send_xchar
= fwtty_send_xchar
,
1595 .throttle
= fwtty_throttle
,
1596 .unthrottle
= fwtty_unthrottle
,
1597 .ioctl
= fwtty_ioctl
,
1598 .set_termios
= fwtty_set_termios
,
1599 .break_ctl
= fwtty_break_ctl
,
1600 .tiocmget
= fwtty_tiocmget
,
1601 .tiocmset
= fwtty_tiocmset
,
1602 .get_icount
= fwtty_get_icount
,
1605 static inline int mgmt_pkt_expected_len(__be16 code
)
1607 static const struct fwserial_mgmt_pkt pkt
;
1609 switch (be16_to_cpu(code
)) {
1610 case FWSC_VIRT_CABLE_PLUG
:
1611 return sizeof(pkt
.hdr
) + sizeof(pkt
.plug_req
);
1613 case FWSC_VIRT_CABLE_PLUG_RSP
: /* | FWSC_RSP_OK */
1614 return sizeof(pkt
.hdr
) + sizeof(pkt
.plug_rsp
);
1616 case FWSC_VIRT_CABLE_UNPLUG
:
1617 case FWSC_VIRT_CABLE_UNPLUG_RSP
:
1618 case FWSC_VIRT_CABLE_PLUG_RSP
| FWSC_RSP_NACK
:
1619 case FWSC_VIRT_CABLE_UNPLUG_RSP
| FWSC_RSP_NACK
:
1620 return sizeof(pkt
.hdr
);
1627 static inline void fill_plug_params(struct virt_plug_params
*params
,
1628 struct fwtty_port
*port
)
1630 u64 status_addr
= port
->rx_handler
.offset
;
1631 u64 fifo_addr
= port
->rx_handler
.offset
+ 4;
1632 size_t fifo_len
= port
->rx_handler
.length
- 4;
1634 params
->status_hi
= cpu_to_be32(status_addr
>> 32);
1635 params
->status_lo
= cpu_to_be32(status_addr
);
1636 params
->fifo_hi
= cpu_to_be32(fifo_addr
>> 32);
1637 params
->fifo_lo
= cpu_to_be32(fifo_addr
);
1638 params
->fifo_len
= cpu_to_be32(fifo_len
);
1641 static inline void fill_plug_req(struct fwserial_mgmt_pkt
*pkt
,
1642 struct fwtty_port
*port
)
1644 pkt
->hdr
.code
= cpu_to_be16(FWSC_VIRT_CABLE_PLUG
);
1645 pkt
->hdr
.len
= cpu_to_be16(mgmt_pkt_expected_len(pkt
->hdr
.code
));
1646 fill_plug_params(&pkt
->plug_req
, port
);
1649 static inline void fill_plug_rsp_ok(struct fwserial_mgmt_pkt
*pkt
,
1650 struct fwtty_port
*port
)
1652 pkt
->hdr
.code
= cpu_to_be16(FWSC_VIRT_CABLE_PLUG_RSP
);
1653 pkt
->hdr
.len
= cpu_to_be16(mgmt_pkt_expected_len(pkt
->hdr
.code
));
1654 fill_plug_params(&pkt
->plug_rsp
, port
);
1657 static inline void fill_plug_rsp_nack(struct fwserial_mgmt_pkt
*pkt
)
1659 pkt
->hdr
.code
= cpu_to_be16(FWSC_VIRT_CABLE_PLUG_RSP
| FWSC_RSP_NACK
);
1660 pkt
->hdr
.len
= cpu_to_be16(mgmt_pkt_expected_len(pkt
->hdr
.code
));
1663 static inline void fill_unplug_rsp_nack(struct fwserial_mgmt_pkt
*pkt
)
1665 pkt
->hdr
.code
= cpu_to_be16(FWSC_VIRT_CABLE_UNPLUG_RSP
| FWSC_RSP_NACK
);
1666 pkt
->hdr
.len
= cpu_to_be16(mgmt_pkt_expected_len(pkt
->hdr
.code
));
1669 static inline void fill_unplug_rsp_ok(struct fwserial_mgmt_pkt
*pkt
)
1671 pkt
->hdr
.code
= cpu_to_be16(FWSC_VIRT_CABLE_UNPLUG_RSP
);
1672 pkt
->hdr
.len
= cpu_to_be16(mgmt_pkt_expected_len(pkt
->hdr
.code
));
1675 static void fwserial_virt_plug_complete(struct fwtty_peer
*peer
,
1676 struct virt_plug_params
*params
)
1678 struct fwtty_port
*port
= peer
->port
;
1680 peer
->status_addr
= be32_to_u64(params
->status_hi
, params
->status_lo
);
1681 peer
->fifo_addr
= be32_to_u64(params
->fifo_hi
, params
->fifo_lo
);
1682 peer
->fifo_len
= be32_to_cpu(params
->fifo_len
);
1683 peer_set_state(peer
, FWPS_ATTACHED
);
1685 /* reconfigure tx_fifo optimally for this peer */
1686 spin_lock_bh(&port
->lock
);
1687 port
->max_payload
= min(peer
->max_payload
, peer
->fifo_len
);
1688 dma_fifo_change_tx_limit(&port
->tx_fifo
, port
->max_payload
);
1689 spin_unlock_bh(&peer
->port
->lock
);
1691 if (port
->port
.console
&& port
->fwcon_ops
->notify
)
1692 (*port
->fwcon_ops
->notify
)(FWCON_NOTIFY_ATTACH
, port
->con_data
);
1694 fwtty_info(&peer
->unit
, "peer (guid:%016llx) connected on %s\n",
1695 (unsigned long long)peer
->guid
, dev_name(port
->device
));
1698 static inline int fwserial_send_mgmt_sync(struct fwtty_peer
*peer
,
1699 struct fwserial_mgmt_pkt
*pkt
)
1702 int rcode
, tries
= 5;
1705 generation
= peer
->generation
;
1708 rcode
= fw_run_transaction(peer
->serial
->card
,
1709 TCODE_WRITE_BLOCK_REQUEST
,
1711 generation
, peer
->speed
,
1713 pkt
, be16_to_cpu(pkt
->hdr
.len
));
1714 if (rcode
== RCODE_BUSY
|| rcode
== RCODE_SEND_ERROR
||
1715 rcode
== RCODE_GENERATION
) {
1716 fwtty_dbg(&peer
->unit
, "mgmt write error: %d\n", rcode
);
1721 } while (--tries
> 0);
1726 * fwserial_claim_port - attempt to claim port @ index for peer
1728 * Returns ptr to claimed port or error code (as ERR_PTR())
1729 * Can sleep - must be called from process context
1731 static struct fwtty_port
*fwserial_claim_port(struct fwtty_peer
*peer
,
1734 struct fwtty_port
*port
;
1736 if (index
< 0 || index
>= num_ports
)
1737 return ERR_PTR(-EINVAL
);
1739 /* must guarantee that previous port releases have completed */
1742 port
= peer
->serial
->ports
[index
];
1743 spin_lock_bh(&port
->lock
);
1744 if (!rcu_access_pointer(port
->peer
))
1745 rcu_assign_pointer(port
->peer
, peer
);
1747 port
= ERR_PTR(-EBUSY
);
1748 spin_unlock_bh(&port
->lock
);
1754 * fwserial_find_port - find avail port and claim for peer
1756 * Returns ptr to claimed port or NULL if none avail
1757 * Can sleep - must be called from process context
1759 static struct fwtty_port
*fwserial_find_port(struct fwtty_peer
*peer
)
1761 struct fwtty_port
**ports
= peer
->serial
->ports
;
1764 /* must guarantee that previous port releases have completed */
1767 /* TODO: implement optional GUID-to-specific port # matching */
1769 /* find an unattached port (but not the loopback port, if present) */
1770 for (i
= 0; i
< num_ttys
; ++i
) {
1771 spin_lock_bh(&ports
[i
]->lock
);
1772 if (!ports
[i
]->peer
) {
1774 rcu_assign_pointer(ports
[i
]->peer
, peer
);
1775 spin_unlock_bh(&ports
[i
]->lock
);
1778 spin_unlock_bh(&ports
[i
]->lock
);
1783 static void fwserial_release_port(struct fwtty_port
*port
, bool reset
)
1785 /* drop carrier (and all other line status) */
1787 fwtty_update_port_status(port
, 0);
1789 spin_lock_bh(&port
->lock
);
1791 /* reset dma fifo max transmission size back to S100 */
1792 port
->max_payload
= link_speed_to_max_payload(SCODE_100
);
1793 dma_fifo_change_tx_limit(&port
->tx_fifo
, port
->max_payload
);
1795 RCU_INIT_POINTER(port
->peer
, NULL
);
1796 spin_unlock_bh(&port
->lock
);
1798 if (port
->port
.console
&& port
->fwcon_ops
->notify
)
1799 (*port
->fwcon_ops
->notify
)(FWCON_NOTIFY_DETACH
, port
->con_data
);
1802 static void fwserial_plug_timeout(struct timer_list
*t
)
1804 struct fwtty_peer
*peer
= from_timer(peer
, t
, timer
);
1805 struct fwtty_port
*port
;
1807 spin_lock_bh(&peer
->lock
);
1808 if (peer
->state
!= FWPS_PLUG_PENDING
) {
1809 spin_unlock_bh(&peer
->lock
);
1813 port
= peer_revert_state(peer
);
1814 spin_unlock_bh(&peer
->lock
);
1817 fwserial_release_port(port
, false);
1821 * fwserial_connect_peer - initiate virtual cable with peer
1823 * Returns 0 if VIRT_CABLE_PLUG request was successfully sent,
1824 * otherwise error code. Must be called from process context.
1826 static int fwserial_connect_peer(struct fwtty_peer
*peer
)
1828 struct fwtty_port
*port
;
1829 struct fwserial_mgmt_pkt
*pkt
;
1832 pkt
= kmalloc(sizeof(*pkt
), GFP_KERNEL
);
1836 port
= fwserial_find_port(peer
);
1838 fwtty_err(&peer
->unit
, "avail ports in use\n");
1843 spin_lock_bh(&peer
->lock
);
1845 /* only initiate VIRT_CABLE_PLUG if peer is currently not attached */
1846 if (peer
->state
!= FWPS_NOT_ATTACHED
) {
1852 peer_set_state(peer
, FWPS_PLUG_PENDING
);
1854 fill_plug_req(pkt
, peer
->port
);
1856 mod_timer(&peer
->timer
, jiffies
+ VIRT_CABLE_PLUG_TIMEOUT
);
1857 spin_unlock_bh(&peer
->lock
);
1859 rcode
= fwserial_send_mgmt_sync(peer
, pkt
);
1861 spin_lock_bh(&peer
->lock
);
1862 if (peer
->state
== FWPS_PLUG_PENDING
&& rcode
!= RCODE_COMPLETE
) {
1863 if (rcode
== RCODE_CONFLICT_ERROR
)
1869 spin_unlock_bh(&peer
->lock
);
1875 del_timer(&peer
->timer
);
1876 peer_revert_state(peer
);
1878 spin_unlock_bh(&peer
->lock
);
1879 fwserial_release_port(port
, false);
1886 * fwserial_close_port -
1887 * HUP the tty (if the tty exists) and unregister the tty device.
1888 * Only used by the unit driver upon unit removal to disconnect and
1889 * cleanup all attached ports
1891 * The port reference is put by fwtty_cleanup (if a reference was
1894 static void fwserial_close_port(struct tty_driver
*driver
,
1895 struct fwtty_port
*port
)
1897 struct tty_struct
*tty
;
1899 mutex_lock(&port
->port
.mutex
);
1900 tty
= tty_port_tty_get(&port
->port
);
1905 mutex_unlock(&port
->port
.mutex
);
1907 if (driver
== fwloop_driver
)
1908 tty_unregister_device(driver
, loop_idx(port
));
1910 tty_unregister_device(driver
, port
->index
);
1914 * fwserial_lookup - finds first fw_serial associated with card
1915 * @card: fw_card to match
1917 * NB: caller must be holding fwserial_list_mutex
1919 static struct fw_serial
*fwserial_lookup(struct fw_card
*card
)
1921 struct fw_serial
*serial
;
1923 list_for_each_entry(serial
, &fwserial_list
, list
) {
1924 if (card
== serial
->card
)
1932 * __fwserial_lookup_rcu - finds first fw_serial associated with card
1933 * @card: fw_card to match
1935 * NB: caller must be inside rcu_read_lock() section
1937 static struct fw_serial
*__fwserial_lookup_rcu(struct fw_card
*card
)
1939 struct fw_serial
*serial
;
1941 list_for_each_entry_rcu(serial
, &fwserial_list
, list
) {
1942 if (card
== serial
->card
)
1950 * __fwserial_peer_by_node_id - finds a peer matching the given generation + id
1952 * If a matching peer could not be found for the specified generation/node id,
1953 * this could be because:
1954 * a) the generation has changed and one of the nodes hasn't updated yet
1955 * b) the remote node has created its remote unit device before this
1956 * local node has created its corresponding remote unit device
1957 * In either case, the remote node should retry
1959 * Note: caller must be in rcu_read_lock() section
1961 static struct fwtty_peer
*__fwserial_peer_by_node_id(struct fw_card
*card
,
1962 int generation
, int id
)
1964 struct fw_serial
*serial
;
1965 struct fwtty_peer
*peer
;
1967 serial
= __fwserial_lookup_rcu(card
);
1970 * Something is very wrong - there should be a matching
1971 * fw_serial structure for every fw_card. Maybe the remote node
1972 * has created its remote unit device before this driver has
1973 * been probed for any unit devices...
1975 fwtty_err(card
, "unknown card (guid %016llx)\n",
1976 (unsigned long long)card
->guid
);
1980 list_for_each_entry_rcu(peer
, &serial
->peer_list
, list
) {
1981 int g
= peer
->generation
;
1984 if (generation
== g
&& id
== peer
->node_id
)
1992 static void __dump_peer_list(struct fw_card
*card
)
1994 struct fw_serial
*serial
;
1995 struct fwtty_peer
*peer
;
1997 serial
= __fwserial_lookup_rcu(card
);
2001 list_for_each_entry_rcu(peer
, &serial
->peer_list
, list
) {
2002 int g
= peer
->generation
;
2005 fwtty_dbg(card
, "peer(%d:%x) guid: %016llx\n",
2006 g
, peer
->node_id
, (unsigned long long)peer
->guid
);
2010 #define __dump_peer_list(s)
2013 static void fwserial_auto_connect(struct work_struct
*work
)
2015 struct fwtty_peer
*peer
= to_peer(to_delayed_work(work
), connect
);
2018 err
= fwserial_connect_peer(peer
);
2019 if (err
== -EAGAIN
&& ++peer
->connect_retries
< MAX_CONNECT_RETRIES
)
2020 schedule_delayed_work(&peer
->connect
, CONNECT_RETRY_DELAY
);
2023 static void fwserial_peer_workfn(struct work_struct
*work
)
2025 struct fwtty_peer
*peer
= to_peer(work
, work
);
2031 * fwserial_add_peer - add a newly probed 'serial' unit device as a 'peer'
2032 * @serial: aggregate representing the specific fw_card to add the peer to
2033 * @unit: 'peer' to create and add to peer_list of serial
2035 * Adds a 'peer' (ie, a local or remote 'serial' unit device) to the list of
2036 * peers for a specific fw_card. Optionally, auto-attach this peer to an
2037 * available tty port. This function is called either directly or indirectly
2038 * as a result of a 'serial' unit device being created & probed.
2040 * Note: this function is serialized with fwserial_remove_peer() by the
2041 * fwserial_list_mutex held in fwserial_probe().
2043 * A 1:1 correspondence between an fw_unit and an fwtty_peer is maintained
2044 * via the dev_set_drvdata() for the device of the fw_unit.
2046 static int fwserial_add_peer(struct fw_serial
*serial
, struct fw_unit
*unit
)
2048 struct device
*dev
= &unit
->device
;
2049 struct fw_device
*parent
= fw_parent_device(unit
);
2050 struct fwtty_peer
*peer
;
2051 struct fw_csr_iterator ci
;
2055 peer
= kzalloc(sizeof(*peer
), GFP_KERNEL
);
2059 peer_set_state(peer
, FWPS_NOT_ATTACHED
);
2061 dev_set_drvdata(dev
, peer
);
2063 peer
->guid
= (u64
)parent
->config_rom
[3] << 32 | parent
->config_rom
[4];
2064 peer
->speed
= parent
->max_speed
;
2065 peer
->max_payload
= min(device_max_receive(parent
),
2066 link_speed_to_max_payload(peer
->speed
));
2068 generation
= parent
->generation
;
2070 peer
->node_id
= parent
->node_id
;
2072 peer
->generation
= generation
;
2074 /* retrieve the mgmt bus addr from the unit directory */
2075 fw_csr_iterator_init(&ci
, unit
->directory
);
2076 while (fw_csr_iterator_next(&ci
, &key
, &val
)) {
2077 if (key
== (CSR_OFFSET
| CSR_DEPENDENT_INFO
)) {
2078 peer
->mgmt_addr
= CSR_REGISTER_BASE
+ 4 * val
;
2082 if (peer
->mgmt_addr
== 0ULL) {
2084 * No mgmt address effectively disables VIRT_CABLE_PLUG -
2085 * this peer will not be able to attach to a remote
2087 peer_set_state(peer
, FWPS_NO_MGMT_ADDR
);
2090 spin_lock_init(&peer
->lock
);
2093 timer_setup(&peer
->timer
, fwserial_plug_timeout
, 0);
2094 INIT_WORK(&peer
->work
, fwserial_peer_workfn
);
2095 INIT_DELAYED_WORK(&peer
->connect
, fwserial_auto_connect
);
2097 /* associate peer with specific fw_card */
2098 peer
->serial
= serial
;
2099 list_add_rcu(&peer
->list
, &serial
->peer_list
);
2101 fwtty_info(&peer
->unit
, "peer added (guid:%016llx)\n",
2102 (unsigned long long)peer
->guid
);
2104 /* identify the local unit & virt cable to loopback port */
2105 if (parent
->is_local
) {
2106 serial
->self
= peer
;
2107 if (create_loop_dev
) {
2108 struct fwtty_port
*port
;
2110 port
= fwserial_claim_port(peer
, num_ttys
);
2111 if (!IS_ERR(port
)) {
2112 struct virt_plug_params params
;
2114 spin_lock_bh(&peer
->lock
);
2116 fill_plug_params(¶ms
, port
);
2117 fwserial_virt_plug_complete(peer
, ¶ms
);
2118 spin_unlock_bh(&peer
->lock
);
2120 fwtty_write_port_status(port
);
2124 } else if (auto_connect
) {
2125 /* auto-attach to remote units only (if policy allows) */
2126 schedule_delayed_work(&peer
->connect
, 1);
2133 * fwserial_remove_peer - remove a 'serial' unit device as a 'peer'
2135 * Remove a 'peer' from its list of peers. This function is only
2136 * called by fwserial_remove() on bus removal of the unit device.
2138 * Note: this function is serialized with fwserial_add_peer() by the
2139 * fwserial_list_mutex held in fwserial_remove().
2141 static void fwserial_remove_peer(struct fwtty_peer
*peer
)
2143 struct fwtty_port
*port
;
2145 spin_lock_bh(&peer
->lock
);
2146 peer_set_state(peer
, FWPS_GONE
);
2147 spin_unlock_bh(&peer
->lock
);
2149 cancel_delayed_work_sync(&peer
->connect
);
2150 cancel_work_sync(&peer
->work
);
2152 spin_lock_bh(&peer
->lock
);
2153 /* if this unit is the local unit, clear link */
2154 if (peer
== peer
->serial
->self
)
2155 peer
->serial
->self
= NULL
;
2157 /* cancel the request timeout timer (if running) */
2158 del_timer(&peer
->timer
);
2163 list_del_rcu(&peer
->list
);
2165 fwtty_info(&peer
->unit
, "peer removed (guid:%016llx)\n",
2166 (unsigned long long)peer
->guid
);
2168 spin_unlock_bh(&peer
->lock
);
2171 fwserial_release_port(port
, true);
2178 * fwserial_create - init everything to create TTYs for a specific fw_card
2179 * @unit: fw_unit for first 'serial' unit device probed for this fw_card
2181 * This function inits the aggregate structure (an fw_serial instance)
2182 * used to manage the TTY ports registered by a specific fw_card. Also, the
2183 * unit device is added as the first 'peer'.
2185 * This unit device may represent a local unit device (as specified by the
2186 * config ROM unit directory) or it may represent a remote unit device
2187 * (as specified by the reading of the remote node's config ROM).
2189 * Returns 0 to indicate "ownership" of the unit device, or a negative errno
2190 * value to indicate which error.
2192 static int fwserial_create(struct fw_unit
*unit
)
2194 struct fw_device
*parent
= fw_parent_device(unit
);
2195 struct fw_card
*card
= parent
->card
;
2196 struct fw_serial
*serial
;
2197 struct fwtty_port
*port
;
2198 struct device
*tty_dev
;
2202 serial
= kzalloc(sizeof(*serial
), GFP_KERNEL
);
2206 kref_init(&serial
->kref
);
2207 serial
->card
= card
;
2208 INIT_LIST_HEAD(&serial
->peer_list
);
2210 for (i
= 0; i
< num_ports
; ++i
) {
2211 port
= kzalloc(sizeof(*port
), GFP_KERNEL
);
2216 tty_port_init(&port
->port
);
2217 port
->index
= FWTTY_INVALID_INDEX
;
2218 port
->port
.ops
= &fwtty_port_ops
;
2219 port
->serial
= serial
;
2220 tty_buffer_set_limit(&port
->port
, 128 * 1024);
2222 spin_lock_init(&port
->lock
);
2223 INIT_DELAYED_WORK(&port
->drain
, fwtty_drain_tx
);
2224 INIT_DELAYED_WORK(&port
->emit_breaks
, fwtty_emit_breaks
);
2225 INIT_WORK(&port
->hangup
, fwtty_do_hangup
);
2226 init_waitqueue_head(&port
->wait_tx
);
2227 port
->max_payload
= link_speed_to_max_payload(SCODE_100
);
2228 dma_fifo_init(&port
->tx_fifo
);
2230 RCU_INIT_POINTER(port
->peer
, NULL
);
2231 serial
->ports
[i
] = port
;
2233 /* get unique bus addr region for port's status & recv fifo */
2234 port
->rx_handler
.length
= FWTTY_PORT_RXFIFO_LEN
+ 4;
2235 port
->rx_handler
.address_callback
= fwtty_port_handler
;
2236 port
->rx_handler
.callback_data
= port
;
2238 * XXX: use custom memory region above cpu physical memory addrs
2239 * this will ease porting to 64-bit firewire adapters
2241 err
= fw_core_add_address_handler(&port
->rx_handler
,
2242 &fw_high_memory_region
);
2248 /* preserve i for error cleanup */
2250 err
= fwtty_ports_add(serial
);
2252 fwtty_err(&unit
, "no space in port table\n");
2256 for (j
= 0; j
< num_ttys
; ++j
) {
2257 tty_dev
= tty_port_register_device(&serial
->ports
[j
]->port
,
2259 serial
->ports
[j
]->index
,
2261 if (IS_ERR(tty_dev
)) {
2262 err
= PTR_ERR(tty_dev
);
2263 fwtty_err(&unit
, "register tty device error (%d)\n",
2265 goto unregister_ttys
;
2268 serial
->ports
[j
]->device
= tty_dev
;
2270 /* preserve j for error cleanup */
2272 if (create_loop_dev
) {
2273 struct device
*loop_dev
;
2275 loop_dev
= tty_port_register_device(&serial
->ports
[j
]->port
,
2277 loop_idx(serial
->ports
[j
]),
2279 if (IS_ERR(loop_dev
)) {
2280 err
= PTR_ERR(loop_dev
);
2281 fwtty_err(&unit
, "create loop device failed (%d)\n",
2283 goto unregister_ttys
;
2285 serial
->ports
[j
]->device
= loop_dev
;
2286 serial
->ports
[j
]->loopback
= true;
2289 if (!IS_ERR_OR_NULL(fwserial_debugfs
)) {
2290 serial
->debugfs
= debugfs_create_dir(dev_name(&unit
->device
),
2292 if (!IS_ERR_OR_NULL(serial
->debugfs
)) {
2293 debugfs_create_file("peers", 0444, serial
->debugfs
,
2294 serial
, &fwtty_peers_fops
);
2295 debugfs_create_file("stats", 0444, serial
->debugfs
,
2296 serial
, &fwtty_stats_fops
);
2300 list_add_rcu(&serial
->list
, &fwserial_list
);
2302 fwtty_notice(&unit
, "TTY over FireWire on device %s (guid %016llx)\n",
2303 dev_name(card
->device
), (unsigned long long)card
->guid
);
2305 err
= fwserial_add_peer(serial
, unit
);
2309 fwtty_err(&unit
, "unable to add peer unit device (%d)\n", err
);
2311 /* fall-through to error processing */
2312 debugfs_remove_recursive(serial
->debugfs
);
2314 list_del_rcu(&serial
->list
);
2315 if (create_loop_dev
)
2316 tty_unregister_device(fwloop_driver
,
2317 loop_idx(serial
->ports
[j
]));
2319 for (--j
; j
>= 0; --j
)
2320 tty_unregister_device(fwtty_driver
, serial
->ports
[j
]->index
);
2321 kref_put(&serial
->kref
, fwserial_destroy
);
2325 for (--i
; i
>= 0; --i
) {
2326 tty_port_destroy(&serial
->ports
[i
]->port
);
2327 kfree(serial
->ports
[i
]);
2334 * fwserial_probe: bus probe function for firewire 'serial' unit devices
2336 * A 'serial' unit device is created and probed as a result of:
2337 * - declaring a ieee1394 bus id table for 'devices' matching a fabricated
2338 * 'serial' unit specifier id
2339 * - adding a unit directory to the config ROM(s) for a 'serial' unit
2341 * The firewire core registers unit devices by enumerating unit directories
2342 * of a node's config ROM after reading the config ROM when a new node is
2343 * added to the bus topology after a bus reset.
2345 * The practical implications of this are:
2346 * - this probe is called for both local and remote nodes that have a 'serial'
2347 * unit directory in their config ROM (that matches the specifiers in
2348 * fwserial_id_table).
2349 * - no specific order is enforced for local vs. remote unit devices
2351 * This unit driver copes with the lack of specific order in the same way the
2352 * firewire net driver does -- each probe, for either a local or remote unit
2353 * device, is treated as a 'peer' (has a struct fwtty_peer instance) and the
2354 * first peer created for a given fw_card (tracked by the global fwserial_list)
2355 * creates the underlying TTYs (aggregated in a fw_serial instance).
2357 * NB: an early attempt to differentiate local & remote unit devices by creating
2358 * peers only for remote units and fw_serial instances (with their
2359 * associated TTY devices) only for local units was discarded. Managing
2360 * the peer lifetimes on device removal proved too complicated.
2362 * fwserial_probe/fwserial_remove are effectively serialized by the
2363 * fwserial_list_mutex. This is necessary because the addition of the first peer
2364 * for a given fw_card will trigger the creation of the fw_serial for that
2365 * fw_card, which must not simultaneously contend with the removal of the
2366 * last peer for a given fw_card triggering the destruction of the same
2367 * fw_serial for the same fw_card.
2369 static int fwserial_probe(struct fw_unit
*unit
,
2370 const struct ieee1394_device_id
*id
)
2372 struct fw_serial
*serial
;
2375 mutex_lock(&fwserial_list_mutex
);
2376 serial
= fwserial_lookup(fw_parent_device(unit
)->card
);
2378 err
= fwserial_create(unit
);
2380 err
= fwserial_add_peer(serial
, unit
);
2381 mutex_unlock(&fwserial_list_mutex
);
2386 * fwserial_remove: bus removal function for firewire 'serial' unit devices
2388 * The corresponding 'peer' for this unit device is removed from the list of
2389 * peers for the associated fw_serial (which has a 1:1 correspondence with a
2390 * specific fw_card). If this is the last peer being removed, then trigger
2391 * the destruction of the underlying TTYs.
2393 static void fwserial_remove(struct fw_unit
*unit
)
2395 struct fwtty_peer
*peer
= dev_get_drvdata(&unit
->device
);
2396 struct fw_serial
*serial
= peer
->serial
;
2399 mutex_lock(&fwserial_list_mutex
);
2400 fwserial_remove_peer(peer
);
2402 if (list_empty(&serial
->peer_list
)) {
2403 /* unlink from the fwserial_list here */
2404 list_del_rcu(&serial
->list
);
2406 debugfs_remove_recursive(serial
->debugfs
);
2408 for (i
= 0; i
< num_ttys
; ++i
)
2409 fwserial_close_port(fwtty_driver
, serial
->ports
[i
]);
2410 if (create_loop_dev
)
2411 fwserial_close_port(fwloop_driver
, serial
->ports
[i
]);
2412 kref_put(&serial
->kref
, fwserial_destroy
);
2414 mutex_unlock(&fwserial_list_mutex
);
2418 * fwserial_update: bus update function for 'firewire' serial unit devices
2420 * Updates the new node_id and bus generation for this peer. Note that locking
2421 * is unnecessary; but careful memory barrier usage is important to enforce the
2422 * load and store order of generation & node_id.
2424 * The fw-core orders the write of node_id before generation in the parent
2425 * fw_device to ensure that a stale node_id cannot be used with a current
2426 * bus generation. So the generation value must be read before the node_id.
2428 * In turn, this orders the write of node_id before generation in the peer to
2429 * also ensure a stale node_id cannot be used with a current bus generation.
2431 static void fwserial_update(struct fw_unit
*unit
)
2433 struct fw_device
*parent
= fw_parent_device(unit
);
2434 struct fwtty_peer
*peer
= dev_get_drvdata(&unit
->device
);
2437 generation
= parent
->generation
;
2439 peer
->node_id
= parent
->node_id
;
2441 peer
->generation
= generation
;
2444 static const struct ieee1394_device_id fwserial_id_table
[] = {
2446 .match_flags
= IEEE1394_MATCH_SPECIFIER_ID
|
2447 IEEE1394_MATCH_VERSION
,
2448 .specifier_id
= LINUX_VENDOR_ID
,
2449 .version
= FWSERIAL_VERSION
,
2454 static struct fw_driver fwserial_driver
= {
2456 .owner
= THIS_MODULE
,
2457 .name
= KBUILD_MODNAME
,
2458 .bus
= &fw_bus_type
,
2460 .probe
= fwserial_probe
,
2461 .update
= fwserial_update
,
2462 .remove
= fwserial_remove
,
2463 .id_table
= fwserial_id_table
,
2466 #define FW_UNIT_SPECIFIER(id) ((CSR_SPECIFIER_ID << 24) | (id))
2467 #define FW_UNIT_VERSION(ver) ((CSR_VERSION << 24) | (ver))
2468 #define FW_UNIT_ADDRESS(ofs) (((CSR_OFFSET | CSR_DEPENDENT_INFO) << 24) \
2469 | (((ofs) - CSR_REGISTER_BASE) >> 2))
2470 /* XXX: config ROM definitons could be improved with semi-automated offset
2471 * and length calculation
2473 #define FW_ROM_LEN(quads) ((quads) << 16)
2474 #define FW_ROM_DESCRIPTOR(ofs) (((CSR_LEAF | CSR_DESCRIPTOR) << 24) | (ofs))
2476 struct fwserial_unit_directory_data
{
2479 u32 unit_sw_version
;
2480 u32 unit_addr_offset
;
2486 static struct fwserial_unit_directory_data fwserial_unit_directory_data
= {
2487 .len_crc
= FW_ROM_LEN(4),
2488 .unit_specifier
= FW_UNIT_SPECIFIER(LINUX_VENDOR_ID
),
2489 .unit_sw_version
= FW_UNIT_VERSION(FWSERIAL_VERSION
),
2490 .desc1_ofs
= FW_ROM_DESCRIPTOR(1),
2491 .desc1_len_crc
= FW_ROM_LEN(5),
2493 0x00000000, /* type = text */
2494 0x00000000, /* enc = ASCII, lang EN */
2495 0x4c696e75, /* 'Linux TTY' */
2501 static struct fw_descriptor fwserial_unit_directory
= {
2502 .length
= sizeof(fwserial_unit_directory_data
) / sizeof(u32
),
2503 .key
= (CSR_DIRECTORY
| CSR_UNIT
) << 24,
2504 .data
= (u32
*)&fwserial_unit_directory_data
,
2508 * The management address is in the unit space region but above other known
2509 * address users (to keep wild writes from causing havoc)
2511 static const struct fw_address_region fwserial_mgmt_addr_region
= {
2512 .start
= CSR_REGISTER_BASE
+ 0x1e0000ULL
,
2513 .end
= 0x1000000000000ULL
,
2516 static struct fw_address_handler fwserial_mgmt_addr_handler
;
2519 * fwserial_handle_plug_req - handle VIRT_CABLE_PLUG request work
2520 * @work: ptr to peer->work
2522 * Attempts to complete the VIRT_CABLE_PLUG handshake sequence for this peer.
2524 * This checks for a collided request-- ie, that a VIRT_CABLE_PLUG request was
2525 * already sent to this peer. If so, the collision is resolved by comparing
2526 * guid values; the loser sends the plug response.
2528 * Note: if an error prevents a response, don't do anything -- the
2529 * remote will timeout its request.
2531 static void fwserial_handle_plug_req(struct work_struct
*work
)
2533 struct fwtty_peer
*peer
= to_peer(work
, work
);
2534 struct virt_plug_params
*plug_req
= &peer
->work_params
.plug_req
;
2535 struct fwtty_port
*port
;
2536 struct fwserial_mgmt_pkt
*pkt
;
2539 pkt
= kmalloc(sizeof(*pkt
), GFP_KERNEL
);
2543 port
= fwserial_find_port(peer
);
2545 spin_lock_bh(&peer
->lock
);
2547 switch (peer
->state
) {
2548 case FWPS_NOT_ATTACHED
:
2550 fwtty_err(&peer
->unit
, "no more ports avail\n");
2551 fill_plug_rsp_nack(pkt
);
2554 fill_plug_rsp_ok(pkt
, peer
->port
);
2555 peer_set_state(peer
, FWPS_PLUG_RESPONDING
);
2556 /* don't release claimed port */
2561 case FWPS_PLUG_PENDING
:
2562 if (peer
->serial
->card
->guid
> peer
->guid
)
2565 /* We lost - hijack the already-claimed port and send ok */
2566 del_timer(&peer
->timer
);
2567 fill_plug_rsp_ok(pkt
, peer
->port
);
2568 peer_set_state(peer
, FWPS_PLUG_RESPONDING
);
2572 fill_plug_rsp_nack(pkt
);
2575 spin_unlock_bh(&peer
->lock
);
2577 fwserial_release_port(port
, false);
2579 rcode
= fwserial_send_mgmt_sync(peer
, pkt
);
2581 spin_lock_bh(&peer
->lock
);
2582 if (peer
->state
== FWPS_PLUG_RESPONDING
) {
2583 if (rcode
== RCODE_COMPLETE
) {
2584 struct fwtty_port
*tmp
= peer
->port
;
2586 fwserial_virt_plug_complete(peer
, plug_req
);
2587 spin_unlock_bh(&peer
->lock
);
2589 fwtty_write_port_status(tmp
);
2590 spin_lock_bh(&peer
->lock
);
2592 fwtty_err(&peer
->unit
, "PLUG_RSP error (%d)\n", rcode
);
2593 port
= peer_revert_state(peer
);
2597 spin_unlock_bh(&peer
->lock
);
2599 fwserial_release_port(port
, false);
2603 static void fwserial_handle_unplug_req(struct work_struct
*work
)
2605 struct fwtty_peer
*peer
= to_peer(work
, work
);
2606 struct fwtty_port
*port
= NULL
;
2607 struct fwserial_mgmt_pkt
*pkt
;
2610 pkt
= kmalloc(sizeof(*pkt
), GFP_KERNEL
);
2614 spin_lock_bh(&peer
->lock
);
2616 switch (peer
->state
) {
2618 fill_unplug_rsp_ok(pkt
);
2619 peer_set_state(peer
, FWPS_UNPLUG_RESPONDING
);
2622 case FWPS_UNPLUG_PENDING
:
2623 if (peer
->serial
->card
->guid
> peer
->guid
)
2626 /* We lost - send unplug rsp */
2627 del_timer(&peer
->timer
);
2628 fill_unplug_rsp_ok(pkt
);
2629 peer_set_state(peer
, FWPS_UNPLUG_RESPONDING
);
2633 fill_unplug_rsp_nack(pkt
);
2636 spin_unlock_bh(&peer
->lock
);
2638 rcode
= fwserial_send_mgmt_sync(peer
, pkt
);
2640 spin_lock_bh(&peer
->lock
);
2641 if (peer
->state
== FWPS_UNPLUG_RESPONDING
) {
2642 if (rcode
!= RCODE_COMPLETE
)
2643 fwtty_err(&peer
->unit
, "UNPLUG_RSP error (%d)\n",
2645 port
= peer_revert_state(peer
);
2648 spin_unlock_bh(&peer
->lock
);
2650 fwserial_release_port(port
, true);
2654 static int fwserial_parse_mgmt_write(struct fwtty_peer
*peer
,
2655 struct fwserial_mgmt_pkt
*pkt
,
2656 unsigned long long addr
,
2659 struct fwtty_port
*port
= NULL
;
2663 if (addr
!= fwserial_mgmt_addr_handler
.offset
|| len
< sizeof(pkt
->hdr
))
2664 return RCODE_ADDRESS_ERROR
;
2666 if (len
!= be16_to_cpu(pkt
->hdr
.len
) ||
2667 len
!= mgmt_pkt_expected_len(pkt
->hdr
.code
))
2668 return RCODE_DATA_ERROR
;
2670 spin_lock_bh(&peer
->lock
);
2671 if (peer
->state
== FWPS_GONE
) {
2673 * This should never happen - it would mean that the
2674 * remote unit that just wrote this transaction was
2675 * already removed from the bus -- and the removal was
2676 * processed before we rec'd this transaction
2678 fwtty_err(&peer
->unit
, "peer already removed\n");
2679 spin_unlock_bh(&peer
->lock
);
2680 return RCODE_ADDRESS_ERROR
;
2683 rcode
= RCODE_COMPLETE
;
2685 fwtty_dbg(&peer
->unit
, "mgmt: hdr.code: %04hx\n", pkt
->hdr
.code
);
2687 switch (be16_to_cpu(pkt
->hdr
.code
) & FWSC_CODE_MASK
) {
2688 case FWSC_VIRT_CABLE_PLUG
:
2689 if (work_pending(&peer
->work
)) {
2690 fwtty_err(&peer
->unit
, "plug req: busy\n");
2691 rcode
= RCODE_CONFLICT_ERROR
;
2694 peer
->work_params
.plug_req
= pkt
->plug_req
;
2695 peer
->workfn
= fwserial_handle_plug_req
;
2696 queue_work(system_unbound_wq
, &peer
->work
);
2700 case FWSC_VIRT_CABLE_PLUG_RSP
:
2701 if (peer
->state
!= FWPS_PLUG_PENDING
) {
2702 rcode
= RCODE_CONFLICT_ERROR
;
2704 } else if (be16_to_cpu(pkt
->hdr
.code
) & FWSC_RSP_NACK
) {
2705 fwtty_notice(&peer
->unit
, "NACK plug rsp\n");
2706 port
= peer_revert_state(peer
);
2709 struct fwtty_port
*tmp
= peer
->port
;
2711 fwserial_virt_plug_complete(peer
, &pkt
->plug_rsp
);
2712 spin_unlock_bh(&peer
->lock
);
2714 fwtty_write_port_status(tmp
);
2715 spin_lock_bh(&peer
->lock
);
2719 case FWSC_VIRT_CABLE_UNPLUG
:
2720 if (work_pending(&peer
->work
)) {
2721 fwtty_err(&peer
->unit
, "unplug req: busy\n");
2722 rcode
= RCODE_CONFLICT_ERROR
;
2724 peer
->workfn
= fwserial_handle_unplug_req
;
2725 queue_work(system_unbound_wq
, &peer
->work
);
2729 case FWSC_VIRT_CABLE_UNPLUG_RSP
:
2730 if (peer
->state
!= FWPS_UNPLUG_PENDING
) {
2731 rcode
= RCODE_CONFLICT_ERROR
;
2733 if (be16_to_cpu(pkt
->hdr
.code
) & FWSC_RSP_NACK
)
2734 fwtty_notice(&peer
->unit
, "NACK unplug?\n");
2735 port
= peer_revert_state(peer
);
2741 fwtty_err(&peer
->unit
, "unknown mgmt code %d\n",
2742 be16_to_cpu(pkt
->hdr
.code
));
2743 rcode
= RCODE_DATA_ERROR
;
2745 spin_unlock_bh(&peer
->lock
);
2748 fwserial_release_port(port
, reset
);
2754 * fwserial_mgmt_handler: bus address handler for mgmt requests
2755 * @parameters: fw_address_callback_t as specified by firewire core interface
2757 * This handler is responsible for handling virtual cable requests from remotes
2760 static void fwserial_mgmt_handler(struct fw_card
*card
,
2761 struct fw_request
*request
,
2762 int tcode
, int destination
, int source
,
2764 unsigned long long addr
,
2765 void *data
, size_t len
,
2766 void *callback_data
)
2768 struct fwserial_mgmt_pkt
*pkt
= data
;
2769 struct fwtty_peer
*peer
;
2773 peer
= __fwserial_peer_by_node_id(card
, generation
, source
);
2775 fwtty_dbg(card
, "peer(%d:%x) not found\n", generation
, source
);
2776 __dump_peer_list(card
);
2777 rcode
= RCODE_CONFLICT_ERROR
;
2781 case TCODE_WRITE_BLOCK_REQUEST
:
2782 rcode
= fwserial_parse_mgmt_write(peer
, pkt
, addr
, len
);
2786 rcode
= RCODE_TYPE_ERROR
;
2791 fw_send_response(card
, request
, rcode
);
2794 static int __init
fwserial_init(void)
2796 int err
, num_loops
= !!(create_loop_dev
);
2798 /* XXX: placeholder for a "firewire" debugfs node */
2799 fwserial_debugfs
= debugfs_create_dir(KBUILD_MODNAME
, NULL
);
2801 /* num_ttys/num_ports must not be set above the static alloc avail */
2802 if (num_ttys
+ num_loops
> MAX_CARD_PORTS
)
2803 num_ttys
= MAX_CARD_PORTS
- num_loops
;
2805 num_ports
= num_ttys
+ num_loops
;
2807 fwtty_driver
= tty_alloc_driver(MAX_TOTAL_PORTS
, TTY_DRIVER_REAL_RAW
2808 | TTY_DRIVER_DYNAMIC_DEV
);
2809 if (IS_ERR(fwtty_driver
)) {
2810 err
= PTR_ERR(fwtty_driver
);
2811 goto remove_debugfs
;
2814 fwtty_driver
->driver_name
= KBUILD_MODNAME
;
2815 fwtty_driver
->name
= tty_dev_name
;
2816 fwtty_driver
->major
= 0;
2817 fwtty_driver
->minor_start
= 0;
2818 fwtty_driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
2819 fwtty_driver
->subtype
= SERIAL_TYPE_NORMAL
;
2820 fwtty_driver
->init_termios
= tty_std_termios
;
2821 fwtty_driver
->init_termios
.c_cflag
|= CLOCAL
;
2822 tty_set_operations(fwtty_driver
, &fwtty_ops
);
2824 err
= tty_register_driver(fwtty_driver
);
2826 pr_err("register tty driver failed (%d)\n", err
);
2830 if (create_loop_dev
) {
2831 fwloop_driver
= tty_alloc_driver(MAX_TOTAL_PORTS
/ num_ports
,
2833 | TTY_DRIVER_DYNAMIC_DEV
);
2834 if (IS_ERR(fwloop_driver
)) {
2835 err
= PTR_ERR(fwloop_driver
);
2836 goto unregister_driver
;
2839 fwloop_driver
->driver_name
= KBUILD_MODNAME
"_loop";
2840 fwloop_driver
->name
= loop_dev_name
;
2841 fwloop_driver
->major
= 0;
2842 fwloop_driver
->minor_start
= 0;
2843 fwloop_driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
2844 fwloop_driver
->subtype
= SERIAL_TYPE_NORMAL
;
2845 fwloop_driver
->init_termios
= tty_std_termios
;
2846 fwloop_driver
->init_termios
.c_cflag
|= CLOCAL
;
2847 tty_set_operations(fwloop_driver
, &fwloop_ops
);
2849 err
= tty_register_driver(fwloop_driver
);
2851 pr_err("register loop driver failed (%d)\n", err
);
2856 fwtty_txn_cache
= kmem_cache_create("fwtty_txn_cache",
2857 sizeof(struct fwtty_transaction
),
2859 if (!fwtty_txn_cache
) {
2861 goto unregister_loop
;
2865 * Ideally, this address handler would be registered per local node
2866 * (rather than the same handler for all local nodes). However,
2867 * since the firewire core requires the config rom descriptor *before*
2868 * the local unit device(s) are created, a single management handler
2869 * must suffice for all local serial units.
2871 fwserial_mgmt_addr_handler
.length
= sizeof(struct fwserial_mgmt_pkt
);
2872 fwserial_mgmt_addr_handler
.address_callback
= fwserial_mgmt_handler
;
2874 err
= fw_core_add_address_handler(&fwserial_mgmt_addr_handler
,
2875 &fwserial_mgmt_addr_region
);
2877 pr_err("add management handler failed (%d)\n", err
);
2881 fwserial_unit_directory_data
.unit_addr_offset
=
2882 FW_UNIT_ADDRESS(fwserial_mgmt_addr_handler
.offset
);
2883 err
= fw_core_add_descriptor(&fwserial_unit_directory
);
2885 pr_err("add unit descriptor failed (%d)\n", err
);
2886 goto remove_handler
;
2889 err
= driver_register(&fwserial_driver
.driver
);
2891 pr_err("register fwserial driver failed (%d)\n", err
);
2892 goto remove_descriptor
;
2898 fw_core_remove_descriptor(&fwserial_unit_directory
);
2900 fw_core_remove_address_handler(&fwserial_mgmt_addr_handler
);
2902 kmem_cache_destroy(fwtty_txn_cache
);
2904 if (create_loop_dev
)
2905 tty_unregister_driver(fwloop_driver
);
2907 if (create_loop_dev
)
2908 put_tty_driver(fwloop_driver
);
2910 tty_unregister_driver(fwtty_driver
);
2912 put_tty_driver(fwtty_driver
);
2914 debugfs_remove_recursive(fwserial_debugfs
);
2919 static void __exit
fwserial_exit(void)
2921 driver_unregister(&fwserial_driver
.driver
);
2922 fw_core_remove_descriptor(&fwserial_unit_directory
);
2923 fw_core_remove_address_handler(&fwserial_mgmt_addr_handler
);
2924 kmem_cache_destroy(fwtty_txn_cache
);
2925 if (create_loop_dev
) {
2926 tty_unregister_driver(fwloop_driver
);
2927 put_tty_driver(fwloop_driver
);
2929 tty_unregister_driver(fwtty_driver
);
2930 put_tty_driver(fwtty_driver
);
2931 debugfs_remove_recursive(fwserial_debugfs
);
2934 module_init(fwserial_init
);
2935 module_exit(fwserial_exit
);
2937 MODULE_AUTHOR("Peter Hurley (peter@hurleysoftware.com)");
2938 MODULE_DESCRIPTION("FireWire Serial TTY Driver");
2939 MODULE_LICENSE("GPL");
2940 MODULE_DEVICE_TABLE(ieee1394
, fwserial_id_table
);
2941 MODULE_PARM_DESC(ttys
, "Number of ttys to create for each local firewire node");
2942 MODULE_PARM_DESC(auto, "Auto-connect a tty to each firewire node discovered");
2943 MODULE_PARM_DESC(loop
, "Create a loopback device, fwloop<n>, with ttys");