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/spinlock.h>
43 #include <linux/sysrq.h>
44 #include <linux/tty.h>
45 #include <linux/tty_flip.h>
46 #include <asm/hvcall.h>
47 #include <asm/hvconsole.h>
49 #include <asm/uaccess.h>
51 #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))))
73 struct delayed_work writer;
74 struct work_struct handshaker;
75 wait_queue_head_t emptyq; /* woken when outbuf is emptied */
76 wait_queue_head_t stateq; /* woken when HVSI state changes */
79 uint8_t throttle_buf[128];
80 uint8_t outbuf[N_OUTBUF]; /* to implement write_room and chars_in_buffer */
81 /* inbuf is for packet reassembly. leave a little room for leftovers. */
82 uint8_t inbuf[HVSI_MAX_PACKET + HVSI_MAX_READ];
88 atomic_t seqno; /* HVSI packet sequence number */
90 uint8_t state; /* HVSI protocol state */
92 #ifdef CONFIG_MAGIC_SYSRQ
94 #endif /* CONFIG_MAGIC_SYSRQ */
96 static struct hvsi_struct hvsi_ports[MAX_NR_HVSI_CONSOLES];
98 static struct tty_driver *hvsi_driver;
99 static int hvsi_count;
100 static int (*hvsi_wait)(struct hvsi_struct *hp, int state);
102 enum HVSI_PROTOCOL_STATE {
104 HVSI_WAIT_FOR_VER_RESPONSE,
105 HVSI_WAIT_FOR_VER_QUERY,
107 HVSI_WAIT_FOR_MCTRL_RESPONSE,
110 #define HVSI_CONSOLE 0x1
112 static inline int is_console(struct hvsi_struct *hp)
114 return hp->flags & HVSI_CONSOLE;
117 static inline int is_open(struct hvsi_struct *hp)
119 /* if we're waiting for an mctrl then we're already open */
120 return (hp->state == HVSI_OPEN)
121 || (hp->state == HVSI_WAIT_FOR_MCTRL_RESPONSE);
124 static inline void print_state(struct hvsi_struct *hp)
127 static const char *state_names[] = {
129 "HVSI_WAIT_FOR_VER_RESPONSE",
130 "HVSI_WAIT_FOR_VER_QUERY",
132 "HVSI_WAIT_FOR_MCTRL_RESPONSE",
135 const char *name = (hp->state < ARRAY_SIZE(state_names))
136 ? state_names[hp->state] : "UNKNOWN";
138 pr_debug("hvsi%i: state = %s\n", hp->index, name);
142 static inline void __set_state(struct hvsi_struct *hp, int state)
146 wake_up_all(&hp->stateq);
149 static inline void set_state(struct hvsi_struct *hp, int state)
153 spin_lock_irqsave(&hp->lock, flags);
154 __set_state(hp, state);
155 spin_unlock_irqrestore(&hp->lock, flags);
158 static inline int len_packet(const uint8_t *packet)
160 return (int)((struct hvsi_header *)packet)->len;
163 static inline int is_header(const uint8_t *packet)
165 struct hvsi_header *header = (struct hvsi_header *)packet;
166 return header->type >= VS_QUERY_RESPONSE_PACKET_HEADER;
169 static inline int got_packet(const struct hvsi_struct *hp, uint8_t *packet)
171 if (hp->inbuf_end < packet + sizeof(struct hvsi_header))
172 return 0; /* don't even have the packet header */
174 if (hp->inbuf_end < (packet + len_packet(packet)))
175 return 0; /* don't have the rest of the packet */
180 /* shift remaining bytes in packetbuf down */
181 static void compact_inbuf(struct hvsi_struct *hp, uint8_t *read_to)
183 int remaining = (int)(hp->inbuf_end - read_to);
185 pr_debug("%s: %i chars remain\n", __func__, remaining);
187 if (read_to != hp->inbuf)
188 memmove(hp->inbuf, read_to, remaining);
190 hp->inbuf_end = hp->inbuf + remaining;
194 #define dbg_dump_packet(packet) dump_packet(packet)
195 #define dbg_dump_hex(data, len) dump_hex(data, len)
197 #define dbg_dump_packet(packet) do { } while (0)
198 #define dbg_dump_hex(data, len) do { } while (0)
201 static void dump_hex(const uint8_t *data, int len)
206 for (i=0; i < len; i++)
207 printk("%.2x", data[i]);
210 for (i=0; i < len; i++) {
211 if (isprint(data[i]))
212 printk("%c", data[i]);
219 static void dump_packet(uint8_t *packet)
221 struct hvsi_header *header = (struct hvsi_header *)packet;
223 printk("type 0x%x, len %i, seqno %i:\n", header->type, header->len,
226 dump_hex(packet, header->len);
229 static int hvsi_read(struct hvsi_struct *hp, char *buf, int count)
233 got = hvc_get_chars(hp->vtermno, buf, count);
238 static void hvsi_recv_control(struct hvsi_struct *hp, uint8_t *packet,
239 struct tty_struct *tty, struct hvsi_struct **to_handshake)
241 struct hvsi_control *header = (struct hvsi_control *)packet;
243 switch (be16_to_cpu(header->verb)) {
244 case VSV_MODEM_CTL_UPDATE:
245 if ((be32_to_cpu(header->word) & HVSI_TSCD) == 0) {
246 /* CD went away; no more connection */
247 pr_debug("hvsi%i: CD dropped\n", hp->index);
248 hp->mctrl &= TIOCM_CD;
249 if (tty && !C_CLOCAL(tty))
253 case VSV_CLOSE_PROTOCOL:
254 pr_debug("hvsi%i: service processor came back\n", hp->index);
255 if (hp->state != HVSI_CLOSED) {
260 printk(KERN_WARNING "hvsi%i: unknown HVSI control packet: ",
267 static void hvsi_recv_response(struct hvsi_struct *hp, uint8_t *packet)
269 struct hvsi_query_response *resp = (struct hvsi_query_response *)packet;
273 case HVSI_WAIT_FOR_VER_RESPONSE:
274 __set_state(hp, HVSI_WAIT_FOR_VER_QUERY);
276 case HVSI_WAIT_FOR_MCTRL_RESPONSE:
278 mctrl_word = be32_to_cpu(resp->u.mctrl_word);
279 if (mctrl_word & HVSI_TSDTR)
280 hp->mctrl |= TIOCM_DTR;
281 if (mctrl_word & HVSI_TSCD)
282 hp->mctrl |= TIOCM_CD;
283 __set_state(hp, HVSI_OPEN);
286 printk(KERN_ERR "hvsi%i: unexpected query response: ", hp->index);
292 /* respond to service processor's version query */
293 static int hvsi_version_respond(struct hvsi_struct *hp, uint16_t query_seqno)
295 struct hvsi_query_response packet __ALIGNED__;
298 packet.hdr.type = VS_QUERY_RESPONSE_PACKET_HEADER;
299 packet.hdr.len = sizeof(struct hvsi_query_response);
300 packet.hdr.seqno = cpu_to_be16(atomic_inc_return(&hp->seqno));
301 packet.verb = cpu_to_be16(VSV_SEND_VERSION_NUMBER);
302 packet.u.version = HVSI_VERSION;
303 packet.query_seqno = cpu_to_be16(query_seqno+1);
305 pr_debug("%s: sending %i bytes\n", __func__, packet.hdr.len);
306 dbg_dump_hex((uint8_t*)&packet, packet.hdr.len);
308 wrote = hvc_put_chars(hp->vtermno, (char *)&packet, packet.hdr.len);
309 if (wrote != packet.hdr.len) {
310 printk(KERN_ERR "hvsi%i: couldn't send query response!\n",
318 static void hvsi_recv_query(struct hvsi_struct *hp, uint8_t *packet)
320 struct hvsi_query *query = (struct hvsi_query *)packet;
323 case HVSI_WAIT_FOR_VER_QUERY:
324 hvsi_version_respond(hp, be16_to_cpu(query->hdr.seqno));
325 __set_state(hp, HVSI_OPEN);
328 printk(KERN_ERR "hvsi%i: unexpected query: ", hp->index);
334 static void hvsi_insert_chars(struct hvsi_struct *hp, const char *buf, int len)
338 for (i=0; i < len; i++) {
340 #ifdef CONFIG_MAGIC_SYSRQ
344 } else if (hp->sysrq) {
349 #endif /* CONFIG_MAGIC_SYSRQ */
350 tty_insert_flip_char(&hp->port, c, 0);
355 * We could get 252 bytes of data at once here. But the tty layer only
356 * throttles us at TTY_THRESHOLD_THROTTLE (128) bytes, so we could overflow
357 * it. Accordingly we won't send more than 128 bytes at a time to the flip
358 * buffer, which will give the tty buffer a chance to throttle us. Should the
359 * value of TTY_THRESHOLD_THROTTLE change in n_tty.c, this code should be
362 #define TTY_THRESHOLD_THROTTLE 128
363 static bool hvsi_recv_data(struct hvsi_struct *hp, const uint8_t *packet)
365 const struct hvsi_header *header = (const struct hvsi_header *)packet;
366 const uint8_t *data = packet + sizeof(struct hvsi_header);
367 int datalen = header->len - sizeof(struct hvsi_header);
368 int overflow = datalen - TTY_THRESHOLD_THROTTLE;
370 pr_debug("queueing %i chars '%.*s'\n", datalen, datalen, data);
376 pr_debug("%s: got >TTY_THRESHOLD_THROTTLE bytes\n", __func__);
377 datalen = TTY_THRESHOLD_THROTTLE;
380 hvsi_insert_chars(hp, data, datalen);
384 * we still have more data to deliver, so we need to save off the
385 * overflow and send it later
387 pr_debug("%s: deferring overflow\n", __func__);
388 memcpy(hp->throttle_buf, data + TTY_THRESHOLD_THROTTLE, overflow);
389 hp->n_throttle = overflow;
396 * Returns true/false indicating data successfully read from hypervisor.
397 * Used both to get packets for tty connections and to advance the state
398 * machine during console handshaking (in which case tty = NULL and we ignore
401 static int hvsi_load_chunk(struct hvsi_struct *hp, struct tty_struct *tty,
402 struct hvsi_struct **handshake)
404 uint8_t *packet = hp->inbuf;
410 chunklen = hvsi_read(hp, hp->inbuf_end, HVSI_MAX_READ);
412 pr_debug("%s: 0-length read\n", __func__);
416 pr_debug("%s: got %i bytes\n", __func__, chunklen);
417 dbg_dump_hex(hp->inbuf_end, chunklen);
419 hp->inbuf_end += chunklen;
421 /* handle all completed packets */
422 while ((packet < hp->inbuf_end) && got_packet(hp, packet)) {
423 struct hvsi_header *header = (struct hvsi_header *)packet;
425 if (!is_header(packet)) {
426 printk(KERN_ERR "hvsi%i: got malformed packet\n", hp->index);
427 /* skip bytes until we find a header or run out of data */
428 while ((packet < hp->inbuf_end) && (!is_header(packet)))
433 pr_debug("%s: handling %i-byte packet\n", __func__,
435 dbg_dump_packet(packet);
437 switch (header->type) {
438 case VS_DATA_PACKET_HEADER:
441 flip = hvsi_recv_data(hp, packet);
443 case VS_CONTROL_PACKET_HEADER:
444 hvsi_recv_control(hp, packet, tty, handshake);
446 case VS_QUERY_RESPONSE_PACKET_HEADER:
447 hvsi_recv_response(hp, packet);
449 case VS_QUERY_PACKET_HEADER:
450 hvsi_recv_query(hp, packet);
453 printk(KERN_ERR "hvsi%i: unknown HVSI packet type 0x%x\n",
454 hp->index, header->type);
459 packet += len_packet(packet);
462 pr_debug("%s: handshake\n", __func__);
467 compact_inbuf(hp, packet);
470 tty_flip_buffer_push(&hp->port);
475 static void hvsi_send_overflow(struct hvsi_struct *hp)
477 pr_debug("%s: delivering %i bytes overflow\n", __func__,
480 hvsi_insert_chars(hp, hp->throttle_buf, hp->n_throttle);
485 * must get all pending data because we only get an irq on empty->non-empty
488 static irqreturn_t hvsi_interrupt(int irq, void *arg)
490 struct hvsi_struct *hp = (struct hvsi_struct *)arg;
491 struct hvsi_struct *handshake;
492 struct tty_struct *tty;
496 pr_debug("%s\n", __func__);
498 tty = tty_port_tty_get(&hp->port);
501 spin_lock_irqsave(&hp->lock, flags);
502 again = hvsi_load_chunk(hp, tty, &handshake);
503 spin_unlock_irqrestore(&hp->lock, flags);
506 pr_debug("hvsi%i: attempting re-handshake\n", handshake->index);
507 schedule_work(&handshake->handshaker);
511 spin_lock_irqsave(&hp->lock, flags);
512 if (tty && hp->n_throttle && !tty_throttled(tty)) {
513 /* we weren't hung up and we weren't throttled, so we can
514 * deliver the rest now */
515 hvsi_send_overflow(hp);
516 tty_flip_buffer_push(&hp->port);
518 spin_unlock_irqrestore(&hp->lock, flags);
525 /* for boot console, before the irq handler is running */
526 static int __init poll_for_state(struct hvsi_struct *hp, int state)
528 unsigned long end_jiffies = jiffies + HVSI_TIMEOUT;
531 hvsi_interrupt(hp->virq, (void *)hp); /* get pending data */
533 if (hp->state == state)
537 if (time_after(jiffies, end_jiffies))
542 /* wait for irq handler to change our state */
543 static int wait_for_state(struct hvsi_struct *hp, int state)
547 if (!wait_event_timeout(hp->stateq, (hp->state == state), HVSI_TIMEOUT))
553 static int hvsi_query(struct hvsi_struct *hp, uint16_t verb)
555 struct hvsi_query packet __ALIGNED__;
558 packet.hdr.type = VS_QUERY_PACKET_HEADER;
559 packet.hdr.len = sizeof(struct hvsi_query);
560 packet.hdr.seqno = cpu_to_be16(atomic_inc_return(&hp->seqno));
561 packet.verb = cpu_to_be16(verb);
563 pr_debug("%s: sending %i bytes\n", __func__, packet.hdr.len);
564 dbg_dump_hex((uint8_t*)&packet, packet.hdr.len);
566 wrote = hvc_put_chars(hp->vtermno, (char *)&packet, packet.hdr.len);
567 if (wrote != packet.hdr.len) {
568 printk(KERN_ERR "hvsi%i: couldn't send query (%i)!\n", hp->index,
576 static int hvsi_get_mctrl(struct hvsi_struct *hp)
580 set_state(hp, HVSI_WAIT_FOR_MCTRL_RESPONSE);
581 hvsi_query(hp, VSV_SEND_MODEM_CTL_STATUS);
583 ret = hvsi_wait(hp, HVSI_OPEN);
585 printk(KERN_ERR "hvsi%i: didn't get modem flags\n", hp->index);
586 set_state(hp, HVSI_OPEN);
590 pr_debug("%s: mctrl 0x%x\n", __func__, hp->mctrl);
595 /* note that we can only set DTR */
596 static int hvsi_set_mctrl(struct hvsi_struct *hp, uint16_t mctrl)
598 struct hvsi_control packet __ALIGNED__;
601 packet.hdr.type = VS_CONTROL_PACKET_HEADER;
602 packet.hdr.seqno = cpu_to_be16(atomic_inc_return(&hp->seqno));
603 packet.hdr.len = sizeof(struct hvsi_control);
604 packet.verb = cpu_to_be16(VSV_SET_MODEM_CTL);
605 packet.mask = cpu_to_be32(HVSI_TSDTR);
607 if (mctrl & TIOCM_DTR)
608 packet.word = cpu_to_be32(HVSI_TSDTR);
610 pr_debug("%s: sending %i bytes\n", __func__, packet.hdr.len);
611 dbg_dump_hex((uint8_t*)&packet, packet.hdr.len);
613 wrote = hvc_put_chars(hp->vtermno, (char *)&packet, packet.hdr.len);
614 if (wrote != packet.hdr.len) {
615 printk(KERN_ERR "hvsi%i: couldn't set DTR!\n", hp->index);
622 static void hvsi_drain_input(struct hvsi_struct *hp)
624 uint8_t buf[HVSI_MAX_READ] __ALIGNED__;
625 unsigned long end_jiffies = jiffies + HVSI_TIMEOUT;
627 while (time_before(end_jiffies, jiffies))
628 if (0 == hvsi_read(hp, buf, HVSI_MAX_READ))
632 static int hvsi_handshake(struct hvsi_struct *hp)
637 * We could have a CLOSE or other data waiting for us before we even try
638 * to open; try to throw it all away so we don't get confused. (CLOSE
639 * is the first message sent up the pipe when the FSP comes online. We
640 * need to distinguish between "it came up a while ago and we're the first
641 * user" and "it was just reset before it saw our handshake packet".)
643 hvsi_drain_input(hp);
645 set_state(hp, HVSI_WAIT_FOR_VER_RESPONSE);
646 ret = hvsi_query(hp, VSV_SEND_VERSION_NUMBER);
648 printk(KERN_ERR "hvsi%i: couldn't send version query\n", hp->index);
652 ret = hvsi_wait(hp, HVSI_OPEN);
659 static void hvsi_handshaker(struct work_struct *work)
661 struct hvsi_struct *hp =
662 container_of(work, struct hvsi_struct, handshaker);
664 if (hvsi_handshake(hp) >= 0)
667 printk(KERN_ERR "hvsi%i: re-handshaking failed\n", hp->index);
668 if (is_console(hp)) {
670 * ttys will re-attempt the handshake via hvsi_open, but
671 * the console will not.
673 printk(KERN_ERR "hvsi%i: lost console!\n", hp->index);
677 static int hvsi_put_chars(struct hvsi_struct *hp, const char *buf, int count)
679 struct hvsi_data packet __ALIGNED__;
682 BUG_ON(count > HVSI_MAX_OUTGOING_DATA);
684 packet.hdr.type = VS_DATA_PACKET_HEADER;
685 packet.hdr.seqno = cpu_to_be16(atomic_inc_return(&hp->seqno));
686 packet.hdr.len = count + sizeof(struct hvsi_header);
687 memcpy(&packet.data, buf, count);
689 ret = hvc_put_chars(hp->vtermno, (char *)&packet, packet.hdr.len);
690 if (ret == packet.hdr.len) {
691 /* return the number of chars written, not the packet length */
694 return ret; /* return any errors */
697 static void hvsi_close_protocol(struct hvsi_struct *hp)
699 struct hvsi_control packet __ALIGNED__;
701 packet.hdr.type = VS_CONTROL_PACKET_HEADER;
702 packet.hdr.seqno = cpu_to_be16(atomic_inc_return(&hp->seqno));
704 packet.verb = cpu_to_be16(VSV_CLOSE_PROTOCOL);
706 pr_debug("%s: sending %i bytes\n", __func__, packet.hdr.len);
707 dbg_dump_hex((uint8_t*)&packet, packet.hdr.len);
709 hvc_put_chars(hp->vtermno, (char *)&packet, packet.hdr.len);
712 static int hvsi_open(struct tty_struct *tty, struct file *filp)
714 struct hvsi_struct *hp;
718 pr_debug("%s\n", __func__);
720 hp = &hvsi_ports[tty->index];
722 tty->driver_data = hp;
725 if (hp->state == HVSI_FSP_DIED)
728 tty_port_tty_set(&hp->port, tty);
729 spin_lock_irqsave(&hp->lock, flags);
731 atomic_set(&hp->seqno, 0);
732 h_vio_signal(hp->vtermno, VIO_IRQ_ENABLE);
733 spin_unlock_irqrestore(&hp->lock, flags);
736 return 0; /* this has already been handshaked as the console */
738 ret = hvsi_handshake(hp);
740 printk(KERN_ERR "%s: HVSI handshaking failed\n", tty->name);
744 ret = hvsi_get_mctrl(hp);
746 printk(KERN_ERR "%s: couldn't get initial modem flags\n", tty->name);
750 ret = hvsi_set_mctrl(hp, hp->mctrl | TIOCM_DTR);
752 printk(KERN_ERR "%s: couldn't set DTR\n", tty->name);
759 /* wait for hvsi_write_worker to empty hp->outbuf */
760 static void hvsi_flush_output(struct hvsi_struct *hp)
762 wait_event_timeout(hp->emptyq, (hp->n_outbuf <= 0), HVSI_TIMEOUT);
764 /* 'writer' could still be pending if it didn't see n_outbuf = 0 yet */
765 cancel_delayed_work_sync(&hp->writer);
766 flush_work(&hp->handshaker);
769 * it's also possible that our timeout expired and hvsi_write_worker
770 * didn't manage to push outbuf. poof.
775 static void hvsi_close(struct tty_struct *tty, struct file *filp)
777 struct hvsi_struct *hp = tty->driver_data;
780 pr_debug("%s\n", __func__);
782 if (tty_hung_up_p(filp))
785 spin_lock_irqsave(&hp->lock, flags);
787 if (--hp->port.count == 0) {
788 tty_port_tty_set(&hp->port, NULL);
789 hp->inbuf_end = hp->inbuf; /* discard remaining partial packets */
791 /* only close down connection if it is not the console */
792 if (!is_console(hp)) {
793 h_vio_signal(hp->vtermno, VIO_IRQ_DISABLE); /* no more irqs */
794 __set_state(hp, HVSI_CLOSED);
796 * any data delivered to the tty layer after this will be
797 * discarded (except for XON/XOFF)
801 spin_unlock_irqrestore(&hp->lock, flags);
803 /* let any existing irq handlers finish. no more will start. */
804 synchronize_irq(hp->virq);
806 /* hvsi_write_worker will re-schedule until outbuf is empty. */
807 hvsi_flush_output(hp);
809 /* tell FSP to stop sending data */
810 hvsi_close_protocol(hp);
813 * drain anything FSP is still in the middle of sending, and let
814 * hvsi_handshake drain the rest on the next open.
816 hvsi_drain_input(hp);
818 spin_lock_irqsave(&hp->lock, flags);
820 } else if (hp->port.count < 0)
821 printk(KERN_ERR "hvsi_close %lu: oops, count is %d\n",
822 hp - hvsi_ports, hp->port.count);
824 spin_unlock_irqrestore(&hp->lock, flags);
827 static void hvsi_hangup(struct tty_struct *tty)
829 struct hvsi_struct *hp = tty->driver_data;
832 pr_debug("%s\n", __func__);
834 tty_port_tty_set(&hp->port, NULL);
836 spin_lock_irqsave(&hp->lock, flags);
839 spin_unlock_irqrestore(&hp->lock, flags);
842 /* called with hp->lock held */
843 static void hvsi_push(struct hvsi_struct *hp)
847 if (hp->n_outbuf <= 0)
850 n = hvsi_put_chars(hp, hp->outbuf, hp->n_outbuf);
853 pr_debug("%s: wrote %i chars\n", __func__, n);
855 } else if (n == -EIO) {
856 __set_state(hp, HVSI_FSP_DIED);
857 printk(KERN_ERR "hvsi%i: service processor died\n", hp->index);
861 /* hvsi_write_worker will keep rescheduling itself until outbuf is empty */
862 static void hvsi_write_worker(struct work_struct *work)
864 struct hvsi_struct *hp =
865 container_of(work, struct hvsi_struct, writer.work);
868 static long start_j = 0;
874 spin_lock_irqsave(&hp->lock, flags);
876 pr_debug("%s: %i chars in buffer\n", __func__, hp->n_outbuf);
880 * We could have a non-open connection if the service processor died
881 * while we were busily scheduling ourselves. In that case, it could
882 * be minutes before the service processor comes back, so only try
883 * again once a second.
885 schedule_delayed_work(&hp->writer, HZ);
890 if (hp->n_outbuf > 0)
891 schedule_delayed_work(&hp->writer, 10);
894 pr_debug("%s: outbuf emptied after %li jiffies\n", __func__,
898 wake_up_all(&hp->emptyq);
899 tty_port_tty_wakeup(&hp->port);
903 spin_unlock_irqrestore(&hp->lock, flags);
906 static int hvsi_write_room(struct tty_struct *tty)
908 struct hvsi_struct *hp = tty->driver_data;
910 return N_OUTBUF - hp->n_outbuf;
913 static int hvsi_chars_in_buffer(struct tty_struct *tty)
915 struct hvsi_struct *hp = tty->driver_data;
920 static int hvsi_write(struct tty_struct *tty,
921 const unsigned char *buf, int count)
923 struct hvsi_struct *hp = tty->driver_data;
924 const char *source = buf;
927 int origcount = count;
929 spin_lock_irqsave(&hp->lock, flags);
931 pr_debug("%s: %i chars in buffer\n", __func__, hp->n_outbuf);
934 /* we're either closing or not yet open; don't accept data */
935 pr_debug("%s: not open\n", __func__);
940 * when the hypervisor buffer (16K) fills, data will stay in hp->outbuf
941 * and hvsi_write_worker will be scheduled. subsequent hvsi_write() calls
942 * will see there is no room in outbuf and return.
944 while ((count > 0) && (hvsi_write_room(tty) > 0)) {
945 int chunksize = min(count, hvsi_write_room(tty));
947 BUG_ON(hp->n_outbuf < 0);
948 memcpy(hp->outbuf + hp->n_outbuf, source, chunksize);
949 hp->n_outbuf += chunksize;
957 if (hp->n_outbuf > 0) {
959 * we weren't able to write it all to the hypervisor.
960 * schedule another push attempt.
962 schedule_delayed_work(&hp->writer, 10);
966 spin_unlock_irqrestore(&hp->lock, flags);
968 if (total != origcount)
969 pr_debug("%s: wanted %i, only wrote %i\n", __func__, origcount,
976 * I have never seen throttle or unthrottle called, so this little throttle
977 * buffering scheme may or may not work.
979 static void hvsi_throttle(struct tty_struct *tty)
981 struct hvsi_struct *hp = tty->driver_data;
983 pr_debug("%s\n", __func__);
985 h_vio_signal(hp->vtermno, VIO_IRQ_DISABLE);
988 static void hvsi_unthrottle(struct tty_struct *tty)
990 struct hvsi_struct *hp = tty->driver_data;
993 pr_debug("%s\n", __func__);
995 spin_lock_irqsave(&hp->lock, flags);
996 if (hp->n_throttle) {
997 hvsi_send_overflow(hp);
998 tty_flip_buffer_push(&hp->port);
1000 spin_unlock_irqrestore(&hp->lock, flags);
1003 h_vio_signal(hp->vtermno, VIO_IRQ_ENABLE);
1006 static int hvsi_tiocmget(struct tty_struct *tty)
1008 struct hvsi_struct *hp = tty->driver_data;
1014 static int hvsi_tiocmset(struct tty_struct *tty,
1015 unsigned int set, unsigned int clear)
1017 struct hvsi_struct *hp = tty->driver_data;
1018 unsigned long flags;
1021 /* we can only alter DTR */
1025 spin_lock_irqsave(&hp->lock, flags);
1027 new_mctrl = (hp->mctrl & ~clear) | set;
1029 if (hp->mctrl != new_mctrl) {
1030 hvsi_set_mctrl(hp, new_mctrl);
1031 hp->mctrl = new_mctrl;
1033 spin_unlock_irqrestore(&hp->lock, flags);
1039 static const struct tty_operations hvsi_ops = {
1041 .close = hvsi_close,
1042 .write = hvsi_write,
1043 .hangup = hvsi_hangup,
1044 .write_room = hvsi_write_room,
1045 .chars_in_buffer = hvsi_chars_in_buffer,
1046 .throttle = hvsi_throttle,
1047 .unthrottle = hvsi_unthrottle,
1048 .tiocmget = hvsi_tiocmget,
1049 .tiocmset = hvsi_tiocmset,
1052 static int __init hvsi_init(void)
1056 hvsi_driver = alloc_tty_driver(hvsi_count);
1060 hvsi_driver->driver_name = "hvsi";
1061 hvsi_driver->name = "hvsi";
1062 hvsi_driver->major = HVSI_MAJOR;
1063 hvsi_driver->minor_start = HVSI_MINOR;
1064 hvsi_driver->type = TTY_DRIVER_TYPE_SYSTEM;
1065 hvsi_driver->init_termios = tty_std_termios;
1066 hvsi_driver->init_termios.c_cflag = B9600 | CS8 | CREAD | HUPCL;
1067 hvsi_driver->init_termios.c_ispeed = 9600;
1068 hvsi_driver->init_termios.c_ospeed = 9600;
1069 hvsi_driver->flags = TTY_DRIVER_REAL_RAW;
1070 tty_set_operations(hvsi_driver, &hvsi_ops);
1072 for (i=0; i < hvsi_count; i++) {
1073 struct hvsi_struct *hp = &hvsi_ports[i];
1076 tty_port_link_device(&hp->port, hvsi_driver, i);
1078 ret = request_irq(hp->virq, hvsi_interrupt, 0, "hvsi", hp);
1080 printk(KERN_ERR "HVSI: couldn't reserve irq 0x%x (error %i)\n",
1083 hvsi_wait = wait_for_state; /* irqs active now */
1085 ret = tty_register_driver(hvsi_driver);
1087 pr_err("Couldn't register hvsi console driver\n");
1091 printk(KERN_DEBUG "HVSI: registered %i devices\n", hvsi_count);
1095 hvsi_wait = poll_for_state;
1096 for (i = 0; i < hvsi_count; i++) {
1097 struct hvsi_struct *hp = &hvsi_ports[i];
1099 free_irq(hp->virq, hp);
1101 tty_driver_kref_put(hvsi_driver);
1105 device_initcall(hvsi_init);
1107 /***** console (not tty) code: *****/
1109 static void hvsi_console_print(struct console *console, const char *buf,
1112 struct hvsi_struct *hp = &hvsi_ports[console->index];
1113 char c[HVSI_MAX_OUTGOING_DATA] __ALIGNED__;
1114 unsigned int i = 0, n = 0;
1115 int ret, donecr = 0;
1122 * ugh, we have to translate LF -> CRLF ourselves, in place.
1123 * copied from hvc_console.c:
1125 while (count > 0 || i > 0) {
1126 if (count > 0 && i < sizeof(c)) {
1127 if (buf[n] == '\n' && !donecr) {
1136 ret = hvsi_put_chars(hp, c, i);
1144 static struct tty_driver *hvsi_console_device(struct console *console,
1147 *index = console->index;
1151 static int __init hvsi_console_setup(struct console *console, char *options)
1153 struct hvsi_struct *hp;
1156 if (console->index < 0 || console->index >= hvsi_count)
1158 hp = &hvsi_ports[console->index];
1160 /* give the FSP a chance to change the baud rate when we re-open */
1161 hvsi_close_protocol(hp);
1163 ret = hvsi_handshake(hp);
1167 ret = hvsi_get_mctrl(hp);
1171 ret = hvsi_set_mctrl(hp, hp->mctrl | TIOCM_DTR);
1175 hp->flags |= HVSI_CONSOLE;
1180 static struct console hvsi_console = {
1182 .write = hvsi_console_print,
1183 .device = hvsi_console_device,
1184 .setup = hvsi_console_setup,
1185 .flags = CON_PRINTBUFFER,
1189 static int __init hvsi_console_init(void)
1191 struct device_node *vty;
1193 hvsi_wait = poll_for_state; /* no irqs yet; must poll */
1195 /* search device tree for vty nodes */
1196 for_each_compatible_node(vty, "serial", "hvterm-protocol") {
1197 struct hvsi_struct *hp;
1198 const __be32 *vtermno, *irq;
1200 vtermno = of_get_property(vty, "reg", NULL);
1201 irq = of_get_property(vty, "interrupts", NULL);
1202 if (!vtermno || !irq)
1205 if (hvsi_count >= MAX_NR_HVSI_CONSOLES) {
1210 hp = &hvsi_ports[hvsi_count];
1211 INIT_DELAYED_WORK(&hp->writer, hvsi_write_worker);
1212 INIT_WORK(&hp->handshaker, hvsi_handshaker);
1213 init_waitqueue_head(&hp->emptyq);
1214 init_waitqueue_head(&hp->stateq);
1215 spin_lock_init(&hp->lock);
1216 tty_port_init(&hp->port);
1217 hp->index = hvsi_count;
1218 hp->inbuf_end = hp->inbuf;
1219 hp->state = HVSI_CLOSED;
1220 hp->vtermno = be32_to_cpup(vtermno);
1221 hp->virq = irq_create_mapping(NULL, be32_to_cpup(irq));
1222 if (hp->virq == 0) {
1223 printk(KERN_ERR "%s: couldn't create irq mapping for 0x%x\n",
1224 __func__, be32_to_cpup(irq));
1225 tty_port_destroy(&hp->port);
1233 register_console(&hvsi_console);
1236 console_initcall(hvsi_console_init);