2 * Copyright (C) 2004 Hollis Blanchard <hollisb@us.ibm.com>, IBM
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 /* Host Virtual Serial Interface (HVSI) is a protocol between the hosted OS
20 * and the service processor on IBM pSeries servers. On these servers, there
21 * are no serial ports under the OS's control, and sometimes there is no other
22 * console available either. However, the service processor has two standard
23 * serial ports, so this over-complicated protocol allows the OS to control
24 * those ports by proxy.
26 * Besides data, the procotol supports the reading/writing of the serial
27 * port's DTR line, and the reading of the CD line. This is to allow the OS to
28 * control a modem attached to the service processor's serial port. Note that
29 * the OS cannot change the speed of the port through this protocol.
34 #include <linux/console.h>
35 #include <linux/ctype.h>
36 #include <linux/delay.h>
37 #include <linux/init.h>
38 #include <linux/interrupt.h>
39 #include <linux/module.h>
40 #include <linux/major.h>
41 #include <linux/kernel.h>
42 #include <linux/sched.h>
43 #include <linux/spinlock.h>
44 #include <linux/sysrq.h>
45 #include <linux/tty.h>
46 #include <linux/tty_flip.h>
47 #include <asm/hvcall.h>
48 #include <asm/hvconsole.h>
50 #include <asm/uaccess.h>
52 #include <asm/param.h>
54 #define HVSI_MAJOR 229
55 #define HVSI_MINOR 128
56 #define MAX_NR_HVSI_CONSOLES 4
58 #define HVSI_TIMEOUT (5*HZ)
59 #define HVSI_VERSION 1
60 #define HVSI_MAX_PACKET 256
61 #define HVSI_MAX_READ 16
62 #define HVSI_MAX_OUTGOING_DATA 12
66 * we pass data via two 8-byte registers, so we would like our char arrays
67 * properly aligned for those loads.
69 #define __ALIGNED__ __attribute__((__aligned__(sizeof(long))))
72 struct work_struct writer
;
73 struct work_struct handshaker
;
74 wait_queue_head_t emptyq
; /* woken when outbuf is emptied */
75 wait_queue_head_t stateq
; /* woken when HVSI state changes */
78 struct tty_struct
*tty
;
80 uint8_t throttle_buf
[128];
81 uint8_t outbuf
[N_OUTBUF
]; /* to implement write_room and chars_in_buffer */
82 /* inbuf is for packet reassembly. leave a little room for leftovers. */
83 uint8_t inbuf
[HVSI_MAX_PACKET
+ HVSI_MAX_READ
];
89 atomic_t seqno
; /* HVSI packet sequence number */
91 uint8_t state
; /* HVSI protocol state */
93 #ifdef CONFIG_MAGIC_SYSRQ
95 #endif /* CONFIG_MAGIC_SYSRQ */
97 static struct hvsi_struct hvsi_ports
[MAX_NR_HVSI_CONSOLES
];
99 static struct tty_driver
*hvsi_driver
;
100 static int hvsi_count
;
101 static int (*hvsi_wait
)(struct hvsi_struct
*hp
, int state
);
103 enum HVSI_PROTOCOL_STATE
{
105 HVSI_WAIT_FOR_VER_RESPONSE
,
106 HVSI_WAIT_FOR_VER_QUERY
,
108 HVSI_WAIT_FOR_MCTRL_RESPONSE
,
111 #define HVSI_CONSOLE 0x1
113 #define VS_DATA_PACKET_HEADER 0xff
114 #define VS_CONTROL_PACKET_HEADER 0xfe
115 #define VS_QUERY_PACKET_HEADER 0xfd
116 #define VS_QUERY_RESPONSE_PACKET_HEADER 0xfc
119 #define VSV_SET_MODEM_CTL 1 /* to service processor only */
120 #define VSV_MODEM_CTL_UPDATE 2 /* from service processor only */
121 #define VSV_CLOSE_PROTOCOL 3
124 #define VSV_SEND_VERSION_NUMBER 1
125 #define VSV_SEND_MODEM_CTL_STATUS 2
127 /* yes, these masks are not consecutive. */
128 #define HVSI_TSDTR 0x01
129 #define HVSI_TSCD 0x20
135 } __attribute__((packed
));
141 uint8_t data
[HVSI_MAX_OUTGOING_DATA
];
142 } __attribute__((packed
));
144 struct hvsi_control
{
149 /* optional depending on verb: */
152 } __attribute__((packed
));
159 } __attribute__((packed
));
161 struct hvsi_query_response
{
166 uint16_t query_seqno
;
171 } __attribute__((packed
));
175 static inline int is_console(struct hvsi_struct
*hp
)
177 return hp
->flags
& HVSI_CONSOLE
;
180 static inline int is_open(struct hvsi_struct
*hp
)
182 /* if we're waiting for an mctrl then we're already open */
183 return (hp
->state
== HVSI_OPEN
)
184 || (hp
->state
== HVSI_WAIT_FOR_MCTRL_RESPONSE
);
187 static inline void print_state(struct hvsi_struct
*hp
)
190 static const char *state_names
[] = {
192 "HVSI_WAIT_FOR_VER_RESPONSE",
193 "HVSI_WAIT_FOR_VER_QUERY",
195 "HVSI_WAIT_FOR_MCTRL_RESPONSE",
198 const char *name
= state_names
[hp
->state
];
200 if (hp
->state
> (sizeof(state_names
)/sizeof(char*)))
203 pr_debug("hvsi%i: state = %s\n", hp
->index
, name
);
207 static inline void __set_state(struct hvsi_struct
*hp
, int state
)
211 wake_up_all(&hp
->stateq
);
214 static inline void set_state(struct hvsi_struct
*hp
, int state
)
218 spin_lock_irqsave(&hp
->lock
, flags
);
219 __set_state(hp
, state
);
220 spin_unlock_irqrestore(&hp
->lock
, flags
);
223 static inline int len_packet(const uint8_t *packet
)
225 return (int)((struct hvsi_header
*)packet
)->len
;
228 static inline int is_header(const uint8_t *packet
)
230 struct hvsi_header
*header
= (struct hvsi_header
*)packet
;
231 return header
->type
>= VS_QUERY_RESPONSE_PACKET_HEADER
;
234 static inline int got_packet(const struct hvsi_struct
*hp
, uint8_t *packet
)
236 if (hp
->inbuf_end
< packet
+ sizeof(struct hvsi_header
))
237 return 0; /* don't even have the packet header */
239 if (hp
->inbuf_end
< (packet
+ len_packet(packet
)))
240 return 0; /* don't have the rest of the packet */
245 /* shift remaining bytes in packetbuf down */
246 static void compact_inbuf(struct hvsi_struct
*hp
, uint8_t *read_to
)
248 int remaining
= (int)(hp
->inbuf_end
- read_to
);
250 pr_debug("%s: %i chars remain\n", __FUNCTION__
, remaining
);
252 if (read_to
!= hp
->inbuf
)
253 memmove(hp
->inbuf
, read_to
, remaining
);
255 hp
->inbuf_end
= hp
->inbuf
+ remaining
;
259 #define dbg_dump_packet(packet) dump_packet(packet)
260 #define dbg_dump_hex(data, len) dump_hex(data, len)
262 #define dbg_dump_packet(packet) do { } while (0)
263 #define dbg_dump_hex(data, len) do { } while (0)
266 static void dump_hex(const uint8_t *data
, int len
)
271 for (i
=0; i
< len
; i
++)
272 printk("%.2x", data
[i
]);
275 for (i
=0; i
< len
; i
++) {
276 if (isprint(data
[i
]))
277 printk("%c", data
[i
]);
284 static void dump_packet(uint8_t *packet
)
286 struct hvsi_header
*header
= (struct hvsi_header
*)packet
;
288 printk("type 0x%x, len %i, seqno %i:\n", header
->type
, header
->len
,
291 dump_hex(packet
, header
->len
);
294 /* can't use hvc_get_chars because that strips CRs */
295 static int hvsi_read(struct hvsi_struct
*hp
, char *buf
, int count
)
299 if (plpar_hcall(H_GET_TERM_CHAR
, hp
->vtermno
, 0, 0, 0, &got
,
300 (unsigned long *)buf
, (unsigned long *)buf
+1) == H_Success
)
305 static void hvsi_recv_control(struct hvsi_struct
*hp
, uint8_t *packet
,
306 struct tty_struct
**to_hangup
, struct hvsi_struct
**to_handshake
)
308 struct hvsi_control
*header
= (struct hvsi_control
*)packet
;
310 switch (header
->verb
) {
311 case VSV_MODEM_CTL_UPDATE
:
312 if ((header
->word
& HVSI_TSCD
) == 0) {
313 /* CD went away; no more connection */
314 pr_debug("hvsi%i: CD dropped\n", hp
->index
);
315 hp
->mctrl
&= TIOCM_CD
;
316 if (!(hp
->tty
->flags
& CLOCAL
))
317 *to_hangup
= hp
->tty
;
320 case VSV_CLOSE_PROTOCOL
:
321 pr_debug("hvsi%i: service processor came back\n", hp
->index
);
322 if (hp
->state
!= HVSI_CLOSED
) {
327 printk(KERN_WARNING
"hvsi%i: unknown HVSI control packet: ",
334 static void hvsi_recv_response(struct hvsi_struct
*hp
, uint8_t *packet
)
336 struct hvsi_query_response
*resp
= (struct hvsi_query_response
*)packet
;
339 case HVSI_WAIT_FOR_VER_RESPONSE
:
340 __set_state(hp
, HVSI_WAIT_FOR_VER_QUERY
);
342 case HVSI_WAIT_FOR_MCTRL_RESPONSE
:
344 if (resp
->u
.mctrl_word
& HVSI_TSDTR
)
345 hp
->mctrl
|= TIOCM_DTR
;
346 if (resp
->u
.mctrl_word
& HVSI_TSCD
)
347 hp
->mctrl
|= TIOCM_CD
;
348 __set_state(hp
, HVSI_OPEN
);
351 printk(KERN_ERR
"hvsi%i: unexpected query response: ", hp
->index
);
357 /* respond to service processor's version query */
358 static int hvsi_version_respond(struct hvsi_struct
*hp
, uint16_t query_seqno
)
360 struct hvsi_query_response packet __ALIGNED__
;
363 packet
.type
= VS_QUERY_RESPONSE_PACKET_HEADER
;
364 packet
.len
= sizeof(struct hvsi_query_response
);
365 packet
.seqno
= atomic_inc_return(&hp
->seqno
);
366 packet
.verb
= VSV_SEND_VERSION_NUMBER
;
367 packet
.u
.version
= HVSI_VERSION
;
368 packet
.query_seqno
= query_seqno
+1;
370 pr_debug("%s: sending %i bytes\n", __FUNCTION__
, packet
.len
);
371 dbg_dump_hex((uint8_t*)&packet
, packet
.len
);
373 wrote
= hvc_put_chars(hp
->vtermno
, (char *)&packet
, packet
.len
);
374 if (wrote
!= packet
.len
) {
375 printk(KERN_ERR
"hvsi%i: couldn't send query response!\n",
383 static void hvsi_recv_query(struct hvsi_struct
*hp
, uint8_t *packet
)
385 struct hvsi_query
*query
= (struct hvsi_query
*)packet
;
388 case HVSI_WAIT_FOR_VER_QUERY
:
389 hvsi_version_respond(hp
, query
->seqno
);
390 __set_state(hp
, HVSI_OPEN
);
393 printk(KERN_ERR
"hvsi%i: unexpected query: ", hp
->index
);
399 static void hvsi_insert_chars(struct hvsi_struct
*hp
, const char *buf
, int len
)
403 for (i
=0; i
< len
; i
++) {
405 #ifdef CONFIG_MAGIC_SYSRQ
409 } else if (hp
->sysrq
) {
410 handle_sysrq(c
, NULL
, hp
->tty
);
414 #endif /* CONFIG_MAGIC_SYSRQ */
415 tty_insert_flip_char(hp
->tty
, c
, 0);
420 * We could get 252 bytes of data at once here. But the tty layer only
421 * throttles us at TTY_THRESHOLD_THROTTLE (128) bytes, so we could overflow
422 * it. Accordingly we won't send more than 128 bytes at a time to the flip
423 * buffer, which will give the tty buffer a chance to throttle us. Should the
424 * value of TTY_THRESHOLD_THROTTLE change in n_tty.c, this code should be
427 #define TTY_THRESHOLD_THROTTLE 128
428 static struct tty_struct
*hvsi_recv_data(struct hvsi_struct
*hp
,
429 const uint8_t *packet
)
431 const struct hvsi_header
*header
= (const struct hvsi_header
*)packet
;
432 const uint8_t *data
= packet
+ sizeof(struct hvsi_header
);
433 int datalen
= header
->len
- sizeof(struct hvsi_header
);
434 int overflow
= datalen
- TTY_THRESHOLD_THROTTLE
;
436 pr_debug("queueing %i chars '%.*s'\n", datalen
, datalen
, data
);
442 pr_debug("%s: got >TTY_THRESHOLD_THROTTLE bytes\n", __FUNCTION__
);
443 datalen
= TTY_THRESHOLD_THROTTLE
;
446 hvsi_insert_chars(hp
, data
, datalen
);
450 * we still have more data to deliver, so we need to save off the
451 * overflow and send it later
453 pr_debug("%s: deferring overflow\n", __FUNCTION__
);
454 memcpy(hp
->throttle_buf
, data
+ TTY_THRESHOLD_THROTTLE
, overflow
);
455 hp
->n_throttle
= overflow
;
462 * Returns true/false indicating data successfully read from hypervisor.
463 * Used both to get packets for tty connections and to advance the state
464 * machine during console handshaking (in which case tty = NULL and we ignore
467 static int hvsi_load_chunk(struct hvsi_struct
*hp
, struct tty_struct
**flip
,
468 struct tty_struct
**hangup
, struct hvsi_struct
**handshake
)
470 uint8_t *packet
= hp
->inbuf
;
477 chunklen
= hvsi_read(hp
, hp
->inbuf_end
, HVSI_MAX_READ
);
479 pr_debug("%s: 0-length read\n", __FUNCTION__
);
483 pr_debug("%s: got %i bytes\n", __FUNCTION__
, chunklen
);
484 dbg_dump_hex(hp
->inbuf_end
, chunklen
);
486 hp
->inbuf_end
+= chunklen
;
488 /* handle all completed packets */
489 while ((packet
< hp
->inbuf_end
) && got_packet(hp
, packet
)) {
490 struct hvsi_header
*header
= (struct hvsi_header
*)packet
;
492 if (!is_header(packet
)) {
493 printk(KERN_ERR
"hvsi%i: got malformed packet\n", hp
->index
);
494 /* skip bytes until we find a header or run out of data */
495 while ((packet
< hp
->inbuf_end
) && (!is_header(packet
)))
500 pr_debug("%s: handling %i-byte packet\n", __FUNCTION__
,
502 dbg_dump_packet(packet
);
504 switch (header
->type
) {
505 case VS_DATA_PACKET_HEADER
:
509 break; /* no tty buffer to put data in */
510 *flip
= hvsi_recv_data(hp
, packet
);
512 case VS_CONTROL_PACKET_HEADER
:
513 hvsi_recv_control(hp
, packet
, hangup
, handshake
);
515 case VS_QUERY_RESPONSE_PACKET_HEADER
:
516 hvsi_recv_response(hp
, packet
);
518 case VS_QUERY_PACKET_HEADER
:
519 hvsi_recv_query(hp
, packet
);
522 printk(KERN_ERR
"hvsi%i: unknown HVSI packet type 0x%x\n",
523 hp
->index
, header
->type
);
528 packet
+= len_packet(packet
);
530 if (*hangup
|| *handshake
) {
531 pr_debug("%s: hangup or handshake\n", __FUNCTION__
);
533 * we need to send the hangup now before receiving any more data.
534 * If we get "data, hangup, data", we can't deliver the second
535 * data before the hangup.
541 compact_inbuf(hp
, packet
);
546 static void hvsi_send_overflow(struct hvsi_struct
*hp
)
548 pr_debug("%s: delivering %i bytes overflow\n", __FUNCTION__
,
551 hvsi_insert_chars(hp
, hp
->throttle_buf
, hp
->n_throttle
);
556 * must get all pending data because we only get an irq on empty->non-empty
559 static irqreturn_t
hvsi_interrupt(int irq
, void *arg
, struct pt_regs
*regs
)
561 struct hvsi_struct
*hp
= (struct hvsi_struct
*)arg
;
562 struct tty_struct
*flip
;
563 struct tty_struct
*hangup
;
564 struct hvsi_struct
*handshake
;
568 pr_debug("%s\n", __FUNCTION__
);
571 spin_lock_irqsave(&hp
->lock
, flags
);
572 again
= hvsi_load_chunk(hp
, &flip
, &hangup
, &handshake
);
573 spin_unlock_irqrestore(&hp
->lock
, flags
);
576 * we have to call tty_flip_buffer_push() and tty_hangup() outside our
577 * spinlock. But we also have to keep going until we've read all the
582 /* there was data put in the tty flip buffer */
583 tty_flip_buffer_push(flip
);
592 pr_debug("hvsi%i: attempting re-handshake\n", handshake
->index
);
593 schedule_work(&handshake
->handshaker
);
597 spin_lock_irqsave(&hp
->lock
, flags
);
598 if (hp
->tty
&& hp
->n_throttle
599 && (!test_bit(TTY_THROTTLED
, &hp
->tty
->flags
))) {
600 /* we weren't hung up and we weren't throttled, so we can deliver the
603 hvsi_send_overflow(hp
);
605 spin_unlock_irqrestore(&hp
->lock
, flags
);
608 tty_flip_buffer_push(flip
);
614 /* for boot console, before the irq handler is running */
615 static int __init
poll_for_state(struct hvsi_struct
*hp
, int state
)
617 unsigned long end_jiffies
= jiffies
+ HVSI_TIMEOUT
;
620 hvsi_interrupt(hp
->virq
, (void *)hp
, NULL
); /* get pending data */
622 if (hp
->state
== state
)
626 if (time_after(jiffies
, end_jiffies
))
631 /* wait for irq handler to change our state */
632 static int wait_for_state(struct hvsi_struct
*hp
, int state
)
636 if (!wait_event_timeout(hp
->stateq
, (hp
->state
== state
), HVSI_TIMEOUT
))
642 static int hvsi_query(struct hvsi_struct
*hp
, uint16_t verb
)
644 struct hvsi_query packet __ALIGNED__
;
647 packet
.type
= VS_QUERY_PACKET_HEADER
;
648 packet
.len
= sizeof(struct hvsi_query
);
649 packet
.seqno
= atomic_inc_return(&hp
->seqno
);
652 pr_debug("%s: sending %i bytes\n", __FUNCTION__
, packet
.len
);
653 dbg_dump_hex((uint8_t*)&packet
, packet
.len
);
655 wrote
= hvc_put_chars(hp
->vtermno
, (char *)&packet
, packet
.len
);
656 if (wrote
!= packet
.len
) {
657 printk(KERN_ERR
"hvsi%i: couldn't send query (%i)!\n", hp
->index
,
665 static int hvsi_get_mctrl(struct hvsi_struct
*hp
)
669 set_state(hp
, HVSI_WAIT_FOR_MCTRL_RESPONSE
);
670 hvsi_query(hp
, VSV_SEND_MODEM_CTL_STATUS
);
672 ret
= hvsi_wait(hp
, HVSI_OPEN
);
674 printk(KERN_ERR
"hvsi%i: didn't get modem flags\n", hp
->index
);
675 set_state(hp
, HVSI_OPEN
);
679 pr_debug("%s: mctrl 0x%x\n", __FUNCTION__
, hp
->mctrl
);
684 /* note that we can only set DTR */
685 static int hvsi_set_mctrl(struct hvsi_struct
*hp
, uint16_t mctrl
)
687 struct hvsi_control packet __ALIGNED__
;
690 packet
.type
= VS_CONTROL_PACKET_HEADER
,
691 packet
.seqno
= atomic_inc_return(&hp
->seqno
);
692 packet
.len
= sizeof(struct hvsi_control
);
693 packet
.verb
= VSV_SET_MODEM_CTL
;
694 packet
.mask
= HVSI_TSDTR
;
696 if (mctrl
& TIOCM_DTR
)
697 packet
.word
= HVSI_TSDTR
;
699 pr_debug("%s: sending %i bytes\n", __FUNCTION__
, packet
.len
);
700 dbg_dump_hex((uint8_t*)&packet
, packet
.len
);
702 wrote
= hvc_put_chars(hp
->vtermno
, (char *)&packet
, packet
.len
);
703 if (wrote
!= packet
.len
) {
704 printk(KERN_ERR
"hvsi%i: couldn't set DTR!\n", hp
->index
);
711 static void hvsi_drain_input(struct hvsi_struct
*hp
)
713 uint8_t buf
[HVSI_MAX_READ
] __ALIGNED__
;
714 unsigned long end_jiffies
= jiffies
+ HVSI_TIMEOUT
;
716 while (time_before(end_jiffies
, jiffies
))
717 if (0 == hvsi_read(hp
, buf
, HVSI_MAX_READ
))
721 static int hvsi_handshake(struct hvsi_struct
*hp
)
726 * We could have a CLOSE or other data waiting for us before we even try
727 * to open; try to throw it all away so we don't get confused. (CLOSE
728 * is the first message sent up the pipe when the FSP comes online. We
729 * need to distinguish between "it came up a while ago and we're the first
730 * user" and "it was just reset before it saw our handshake packet".)
732 hvsi_drain_input(hp
);
734 set_state(hp
, HVSI_WAIT_FOR_VER_RESPONSE
);
735 ret
= hvsi_query(hp
, VSV_SEND_VERSION_NUMBER
);
737 printk(KERN_ERR
"hvsi%i: couldn't send version query\n", hp
->index
);
741 ret
= hvsi_wait(hp
, HVSI_OPEN
);
748 static void hvsi_handshaker(void *arg
)
750 struct hvsi_struct
*hp
= (struct hvsi_struct
*)arg
;
752 if (hvsi_handshake(hp
) >= 0)
755 printk(KERN_ERR
"hvsi%i: re-handshaking failed\n", hp
->index
);
756 if (is_console(hp
)) {
758 * ttys will re-attempt the handshake via hvsi_open, but
759 * the console will not.
761 printk(KERN_ERR
"hvsi%i: lost console!\n", hp
->index
);
765 static int hvsi_put_chars(struct hvsi_struct
*hp
, const char *buf
, int count
)
767 struct hvsi_data packet __ALIGNED__
;
770 BUG_ON(count
> HVSI_MAX_OUTGOING_DATA
);
772 packet
.type
= VS_DATA_PACKET_HEADER
;
773 packet
.seqno
= atomic_inc_return(&hp
->seqno
);
774 packet
.len
= count
+ sizeof(struct hvsi_header
);
775 memcpy(&packet
.data
, buf
, count
);
777 ret
= hvc_put_chars(hp
->vtermno
, (char *)&packet
, packet
.len
);
778 if (ret
== packet
.len
) {
779 /* return the number of chars written, not the packet length */
782 return ret
; /* return any errors */
785 static void hvsi_close_protocol(struct hvsi_struct
*hp
)
787 struct hvsi_control packet __ALIGNED__
;
789 packet
.type
= VS_CONTROL_PACKET_HEADER
;
790 packet
.seqno
= atomic_inc_return(&hp
->seqno
);
792 packet
.verb
= VSV_CLOSE_PROTOCOL
;
794 pr_debug("%s: sending %i bytes\n", __FUNCTION__
, packet
.len
);
795 dbg_dump_hex((uint8_t*)&packet
, packet
.len
);
797 hvc_put_chars(hp
->vtermno
, (char *)&packet
, packet
.len
);
800 static int hvsi_open(struct tty_struct
*tty
, struct file
*filp
)
802 struct hvsi_struct
*hp
;
804 int line
= tty
->index
;
807 pr_debug("%s\n", __FUNCTION__
);
809 if (line
< 0 || line
>= hvsi_count
)
811 hp
= &hvsi_ports
[line
];
813 tty
->driver_data
= hp
;
814 tty
->low_latency
= 1; /* avoid throttle/tty_flip_buffer_push race */
817 if (hp
->state
== HVSI_FSP_DIED
)
820 spin_lock_irqsave(&hp
->lock
, flags
);
823 atomic_set(&hp
->seqno
, 0);
824 h_vio_signal(hp
->vtermno
, VIO_IRQ_ENABLE
);
825 spin_unlock_irqrestore(&hp
->lock
, flags
);
828 return 0; /* this has already been handshaked as the console */
830 ret
= hvsi_handshake(hp
);
832 printk(KERN_ERR
"%s: HVSI handshaking failed\n", tty
->name
);
836 ret
= hvsi_get_mctrl(hp
);
838 printk(KERN_ERR
"%s: couldn't get initial modem flags\n", tty
->name
);
842 ret
= hvsi_set_mctrl(hp
, hp
->mctrl
| TIOCM_DTR
);
844 printk(KERN_ERR
"%s: couldn't set DTR\n", tty
->name
);
851 /* wait for hvsi_write_worker to empty hp->outbuf */
852 static void hvsi_flush_output(struct hvsi_struct
*hp
)
854 wait_event_timeout(hp
->emptyq
, (hp
->n_outbuf
<= 0), HVSI_TIMEOUT
);
856 /* 'writer' could still be pending if it didn't see n_outbuf = 0 yet */
857 cancel_delayed_work(&hp
->writer
);
858 flush_scheduled_work();
861 * it's also possible that our timeout expired and hvsi_write_worker
862 * didn't manage to push outbuf. poof.
867 static void hvsi_close(struct tty_struct
*tty
, struct file
*filp
)
869 struct hvsi_struct
*hp
= tty
->driver_data
;
872 pr_debug("%s\n", __FUNCTION__
);
874 if (tty_hung_up_p(filp
))
877 spin_lock_irqsave(&hp
->lock
, flags
);
879 if (--hp
->count
== 0) {
881 hp
->inbuf_end
= hp
->inbuf
; /* discard remaining partial packets */
883 /* only close down connection if it is not the console */
884 if (!is_console(hp
)) {
885 h_vio_signal(hp
->vtermno
, VIO_IRQ_DISABLE
); /* no more irqs */
886 __set_state(hp
, HVSI_CLOSED
);
888 * any data delivered to the tty layer after this will be
889 * discarded (except for XON/XOFF)
893 spin_unlock_irqrestore(&hp
->lock
, flags
);
895 /* let any existing irq handlers finish. no more will start. */
896 synchronize_irq(hp
->virq
);
898 /* hvsi_write_worker will re-schedule until outbuf is empty. */
899 hvsi_flush_output(hp
);
901 /* tell FSP to stop sending data */
902 hvsi_close_protocol(hp
);
905 * drain anything FSP is still in the middle of sending, and let
906 * hvsi_handshake drain the rest on the next open.
908 hvsi_drain_input(hp
);
910 spin_lock_irqsave(&hp
->lock
, flags
);
912 } else if (hp
->count
< 0)
913 printk(KERN_ERR
"hvsi_close %lu: oops, count is %d\n",
914 hp
- hvsi_ports
, hp
->count
);
916 spin_unlock_irqrestore(&hp
->lock
, flags
);
919 static void hvsi_hangup(struct tty_struct
*tty
)
921 struct hvsi_struct
*hp
= tty
->driver_data
;
924 pr_debug("%s\n", __FUNCTION__
);
926 spin_lock_irqsave(&hp
->lock
, flags
);
932 spin_unlock_irqrestore(&hp
->lock
, flags
);
935 /* called with hp->lock held */
936 static void hvsi_push(struct hvsi_struct
*hp
)
940 if (hp
->n_outbuf
<= 0)
943 n
= hvsi_put_chars(hp
, hp
->outbuf
, hp
->n_outbuf
);
946 pr_debug("%s: wrote %i chars\n", __FUNCTION__
, n
);
948 } else if (n
== -EIO
) {
949 __set_state(hp
, HVSI_FSP_DIED
);
950 printk(KERN_ERR
"hvsi%i: service processor died\n", hp
->index
);
954 /* hvsi_write_worker will keep rescheduling itself until outbuf is empty */
955 static void hvsi_write_worker(void *arg
)
957 struct hvsi_struct
*hp
= (struct hvsi_struct
*)arg
;
960 static long start_j
= 0;
966 spin_lock_irqsave(&hp
->lock
, flags
);
968 pr_debug("%s: %i chars in buffer\n", __FUNCTION__
, hp
->n_outbuf
);
972 * We could have a non-open connection if the service processor died
973 * while we were busily scheduling ourselves. In that case, it could
974 * be minutes before the service processor comes back, so only try
975 * again once a second.
977 schedule_delayed_work(&hp
->writer
, HZ
);
982 if (hp
->n_outbuf
> 0)
983 schedule_delayed_work(&hp
->writer
, 10);
986 pr_debug("%s: outbuf emptied after %li jiffies\n", __FUNCTION__
,
990 wake_up_all(&hp
->emptyq
);
991 if (test_bit(TTY_DO_WRITE_WAKEUP
, &hp
->tty
->flags
)
992 && hp
->tty
->ldisc
.write_wakeup
)
993 hp
->tty
->ldisc
.write_wakeup(hp
->tty
);
994 wake_up_interruptible(&hp
->tty
->write_wait
);
998 spin_unlock_irqrestore(&hp
->lock
, flags
);
1001 static int hvsi_write_room(struct tty_struct
*tty
)
1003 struct hvsi_struct
*hp
= (struct hvsi_struct
*)tty
->driver_data
;
1005 return N_OUTBUF
- hp
->n_outbuf
;
1008 static int hvsi_chars_in_buffer(struct tty_struct
*tty
)
1010 struct hvsi_struct
*hp
= (struct hvsi_struct
*)tty
->driver_data
;
1012 return hp
->n_outbuf
;
1015 static int hvsi_write(struct tty_struct
*tty
,
1016 const unsigned char *buf
, int count
)
1018 struct hvsi_struct
*hp
= tty
->driver_data
;
1019 const char *source
= buf
;
1020 unsigned long flags
;
1022 int origcount
= count
;
1024 spin_lock_irqsave(&hp
->lock
, flags
);
1026 pr_debug("%s: %i chars in buffer\n", __FUNCTION__
, hp
->n_outbuf
);
1029 /* we're either closing or not yet open; don't accept data */
1030 pr_debug("%s: not open\n", __FUNCTION__
);
1035 * when the hypervisor buffer (16K) fills, data will stay in hp->outbuf
1036 * and hvsi_write_worker will be scheduled. subsequent hvsi_write() calls
1037 * will see there is no room in outbuf and return.
1039 while ((count
> 0) && (hvsi_write_room(hp
->tty
) > 0)) {
1040 int chunksize
= min(count
, hvsi_write_room(hp
->tty
));
1042 BUG_ON(hp
->n_outbuf
< 0);
1043 memcpy(hp
->outbuf
+ hp
->n_outbuf
, source
, chunksize
);
1044 hp
->n_outbuf
+= chunksize
;
1047 source
+= chunksize
;
1052 if (hp
->n_outbuf
> 0) {
1054 * we weren't able to write it all to the hypervisor.
1055 * schedule another push attempt.
1057 schedule_delayed_work(&hp
->writer
, 10);
1061 spin_unlock_irqrestore(&hp
->lock
, flags
);
1063 if (total
!= origcount
)
1064 pr_debug("%s: wanted %i, only wrote %i\n", __FUNCTION__
, origcount
,
1071 * I have never seen throttle or unthrottle called, so this little throttle
1072 * buffering scheme may or may not work.
1074 static void hvsi_throttle(struct tty_struct
*tty
)
1076 struct hvsi_struct
*hp
= (struct hvsi_struct
*)tty
->driver_data
;
1078 pr_debug("%s\n", __FUNCTION__
);
1080 h_vio_signal(hp
->vtermno
, VIO_IRQ_DISABLE
);
1083 static void hvsi_unthrottle(struct tty_struct
*tty
)
1085 struct hvsi_struct
*hp
= (struct hvsi_struct
*)tty
->driver_data
;
1086 unsigned long flags
;
1089 pr_debug("%s\n", __FUNCTION__
);
1091 spin_lock_irqsave(&hp
->lock
, flags
);
1092 if (hp
->n_throttle
) {
1093 hvsi_send_overflow(hp
);
1096 spin_unlock_irqrestore(&hp
->lock
, flags
);
1099 tty_flip_buffer_push(hp
->tty
);
1101 h_vio_signal(hp
->vtermno
, VIO_IRQ_ENABLE
);
1104 static int hvsi_tiocmget(struct tty_struct
*tty
, struct file
*file
)
1106 struct hvsi_struct
*hp
= (struct hvsi_struct
*)tty
->driver_data
;
1112 static int hvsi_tiocmset(struct tty_struct
*tty
, struct file
*file
,
1113 unsigned int set
, unsigned int clear
)
1115 struct hvsi_struct
*hp
= (struct hvsi_struct
*)tty
->driver_data
;
1116 unsigned long flags
;
1119 /* we can only alter DTR */
1123 spin_lock_irqsave(&hp
->lock
, flags
);
1125 new_mctrl
= (hp
->mctrl
& ~clear
) | set
;
1127 if (hp
->mctrl
!= new_mctrl
) {
1128 hvsi_set_mctrl(hp
, new_mctrl
);
1129 hp
->mctrl
= new_mctrl
;
1131 spin_unlock_irqrestore(&hp
->lock
, flags
);
1137 static struct tty_operations hvsi_ops
= {
1139 .close
= hvsi_close
,
1140 .write
= hvsi_write
,
1141 .hangup
= hvsi_hangup
,
1142 .write_room
= hvsi_write_room
,
1143 .chars_in_buffer
= hvsi_chars_in_buffer
,
1144 .throttle
= hvsi_throttle
,
1145 .unthrottle
= hvsi_unthrottle
,
1146 .tiocmget
= hvsi_tiocmget
,
1147 .tiocmset
= hvsi_tiocmset
,
1150 static int __init
hvsi_init(void)
1154 hvsi_driver
= alloc_tty_driver(hvsi_count
);
1158 hvsi_driver
->owner
= THIS_MODULE
;
1159 hvsi_driver
->devfs_name
= "hvsi/";
1160 hvsi_driver
->driver_name
= "hvsi";
1161 hvsi_driver
->name
= "hvsi";
1162 hvsi_driver
->major
= HVSI_MAJOR
;
1163 hvsi_driver
->minor_start
= HVSI_MINOR
;
1164 hvsi_driver
->type
= TTY_DRIVER_TYPE_SYSTEM
;
1165 hvsi_driver
->init_termios
= tty_std_termios
;
1166 hvsi_driver
->init_termios
.c_cflag
= B9600
| CS8
| CREAD
| HUPCL
;
1167 hvsi_driver
->flags
= TTY_DRIVER_REAL_RAW
;
1168 tty_set_operations(hvsi_driver
, &hvsi_ops
);
1170 for (i
=0; i
< hvsi_count
; i
++) {
1171 struct hvsi_struct
*hp
= &hvsi_ports
[i
];
1174 ret
= request_irq(hp
->virq
, hvsi_interrupt
, SA_INTERRUPT
, "hvsi", hp
);
1176 printk(KERN_ERR
"HVSI: couldn't reserve irq 0x%x (error %i)\n",
1179 hvsi_wait
= wait_for_state
; /* irqs active now */
1181 if (tty_register_driver(hvsi_driver
))
1182 panic("Couldn't register hvsi console driver\n");
1184 printk(KERN_INFO
"HVSI: registered %i devices\n", hvsi_count
);
1188 device_initcall(hvsi_init
);
1190 /***** console (not tty) code: *****/
1192 static void hvsi_console_print(struct console
*console
, const char *buf
,
1195 struct hvsi_struct
*hp
= &hvsi_ports
[console
->index
];
1196 char c
[HVSI_MAX_OUTGOING_DATA
] __ALIGNED__
;
1197 unsigned int i
= 0, n
= 0;
1198 int ret
, donecr
= 0;
1205 * ugh, we have to translate LF -> CRLF ourselves, in place.
1206 * copied from hvc_console.c:
1208 while (count
> 0 || i
> 0) {
1209 if (count
> 0 && i
< sizeof(c
)) {
1210 if (buf
[n
] == '\n' && !donecr
) {
1219 ret
= hvsi_put_chars(hp
, c
, i
);
1227 static struct tty_driver
*hvsi_console_device(struct console
*console
,
1230 *index
= console
->index
;
1234 static int __init
hvsi_console_setup(struct console
*console
, char *options
)
1236 struct hvsi_struct
*hp
= &hvsi_ports
[console
->index
];
1239 if (console
->index
< 0 || console
->index
>= hvsi_count
)
1242 /* give the FSP a chance to change the baud rate when we re-open */
1243 hvsi_close_protocol(hp
);
1245 ret
= hvsi_handshake(hp
);
1249 ret
= hvsi_get_mctrl(hp
);
1253 ret
= hvsi_set_mctrl(hp
, hp
->mctrl
| TIOCM_DTR
);
1257 hp
->flags
|= HVSI_CONSOLE
;
1262 static struct console hvsi_con_driver
= {
1264 .write
= hvsi_console_print
,
1265 .device
= hvsi_console_device
,
1266 .setup
= hvsi_console_setup
,
1267 .flags
= CON_PRINTBUFFER
,
1271 static int __init
hvsi_console_init(void)
1273 struct device_node
*vty
;
1275 hvsi_wait
= poll_for_state
; /* no irqs yet; must poll */
1277 /* search device tree for vty nodes */
1278 for (vty
= of_find_compatible_node(NULL
, "serial", "hvterm-protocol");
1280 vty
= of_find_compatible_node(vty
, "serial", "hvterm-protocol")) {
1281 struct hvsi_struct
*hp
;
1285 vtermno
= (uint32_t *)get_property(vty
, "reg", NULL
);
1286 irq
= (uint32_t *)get_property(vty
, "interrupts", NULL
);
1287 if (!vtermno
|| !irq
)
1290 if (hvsi_count
>= MAX_NR_HVSI_CONSOLES
) {
1295 hp
= &hvsi_ports
[hvsi_count
];
1296 INIT_WORK(&hp
->writer
, hvsi_write_worker
, hp
);
1297 INIT_WORK(&hp
->handshaker
, hvsi_handshaker
, hp
);
1298 init_waitqueue_head(&hp
->emptyq
);
1299 init_waitqueue_head(&hp
->stateq
);
1300 spin_lock_init(&hp
->lock
);
1301 hp
->index
= hvsi_count
;
1302 hp
->inbuf_end
= hp
->inbuf
;
1303 hp
->state
= HVSI_CLOSED
;
1304 hp
->vtermno
= *vtermno
;
1305 hp
->virq
= virt_irq_create_mapping(irq
[0]);
1306 if (hp
->virq
== NO_IRQ
) {
1307 printk(KERN_ERR
"%s: couldn't create irq mapping for 0x%x\n",
1308 __FUNCTION__
, hp
->virq
);
1311 hp
->virq
= irq_offset_up(hp
->virq
);
1317 register_console(&hvsi_con_driver
);
1320 console_initcall(hvsi_console_init
);