2 * iSeries vio driver interface to hvc_console.c
4 * This code is based heavily on hvc_vio.c and viocons.c
6 * Copyright (C) 2006 Stephen Rothwell, IBM Corporation
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <linux/types.h>
24 #include <linux/init.h>
25 #include <linux/kernel.h>
26 #include <linux/spinlock.h>
27 #include <linux/console.h>
29 #include <asm/hvconsole.h>
32 #include <asm/iseries/vio.h>
33 #include <asm/iseries/hv_call.h>
34 #include <asm/iseries/hv_lp_config.h>
35 #include <asm/iseries/hv_lp_event.h>
37 #include "hvc_console.h"
41 static DEFINE_SPINLOCK(consolelock
);
42 static DEFINE_SPINLOCK(consoleloglock
);
44 static const char hvc_driver_name
[] = "hvc_console";
46 #define IN_BUF_SIZE 200
49 * Our port information.
51 static struct port_info
{
53 u64 seq
; /* sequence number of last HV send */
54 u64 ack
; /* last ack from HV */
55 struct hvc_struct
*hp
;
58 unsigned char in_buf
[IN_BUF_SIZE
];
59 } port_info
[VTTY_PORTS
] = {
60 [ 0 ... VTTY_PORTS
- 1 ] = {
61 .lp
= HvLpIndexInvalid
65 #define viochar_is_console(pi) ((pi) == &port_info[0])
67 static struct vio_device_id hvc_driver_table
[] __devinitdata
= {
68 {"serial", "IBM,iSeries-vty"},
71 MODULE_DEVICE_TABLE(vio
, hvc_driver_table
);
73 static void hvlog(char *fmt
, ...)
80 spin_lock_irqsave(&consoleloglock
, flags
);
82 i
= vscnprintf(buf
, sizeof(buf
) - 1, fmt
, args
);
85 HvCall_writeLogBuffer(buf
, i
);
86 spin_unlock_irqrestore(&consoleloglock
, flags
);
90 * Initialize the common fields in a charLpEvent
92 static void init_data_event(struct viocharlpevent
*viochar
, HvLpIndex lp
)
94 struct HvLpEvent
*hev
= &viochar
->event
;
96 memset(viochar
, 0, sizeof(struct viocharlpevent
));
98 hev
->flags
= HV_LP_EVENT_VALID
| HV_LP_EVENT_DEFERRED_ACK
|
100 hev
->xType
= HvLpEvent_Type_VirtualIo
;
101 hev
->xSubtype
= viomajorsubtype_chario
| viochardata
;
102 hev
->xSourceLp
= HvLpConfig_getLpIndex();
104 hev
->xSizeMinus1
= sizeof(struct viocharlpevent
);
105 hev
->xSourceInstanceId
= viopath_sourceinst(lp
);
106 hev
->xTargetInstanceId
= viopath_targetinst(lp
);
109 static int get_chars(uint32_t vtermno
, char *buf
, int count
)
111 struct port_info
*pi
;
115 if (vtermno
>= VTTY_PORTS
)
120 pi
= &port_info
[vtermno
];
121 spin_lock_irqsave(&consolelock
, flags
);
126 n
= pi
->in_end
- pi
->in_start
;
129 memcpy(buf
, &pi
->in_buf
[pi
->in_start
], n
);
131 if (pi
->in_start
== pi
->in_end
) {
136 spin_unlock_irqrestore(&consolelock
, flags
);
140 static int put_chars(uint32_t vtermno
, const char *buf
, int count
)
142 struct viocharlpevent
*viochar
;
143 struct port_info
*pi
;
148 if (vtermno
>= VTTY_PORTS
)
151 pi
= &port_info
[vtermno
];
153 spin_lock_irqsave(&consolelock
, flags
);
155 if (viochar_is_console(pi
) && !viopath_isactive(pi
->lp
)) {
156 spin_lock_irqsave(&consoleloglock
, flags
);
157 HvCall_writeLogBuffer(buf
, count
);
158 spin_unlock_irqrestore(&consoleloglock
, flags
);
163 viochar
= vio_get_event_buffer(viomajorsubtype_chario
);
164 if (viochar
== NULL
) {
165 hvlog("\n\rviocons: Can't get viochar buffer.");
169 while ((count
> 0) && ((pi
->seq
- pi
->ack
) < VIOCHAR_WINDOW
)) {
172 len
= (count
> VIOCHAR_MAX_DATA
) ? VIOCHAR_MAX_DATA
: count
;
174 if (viochar_is_console(pi
)) {
175 spin_lock_irqsave(&consoleloglock
, flags
);
176 HvCall_writeLogBuffer(buf
, len
);
177 spin_unlock_irqrestore(&consoleloglock
, flags
);
180 init_data_event(viochar
, pi
->lp
);
183 viochar
->event
.xCorrelationToken
= pi
->seq
++;
184 viochar
->event
.xSizeMinus1
=
185 offsetof(struct viocharlpevent
, data
) + len
;
187 memcpy(viochar
->data
, buf
, len
);
189 hvrc
= HvCallEvent_signalLpEvent(&viochar
->event
);
191 hvlog("\n\rerror sending event! return code %d\n\r",
198 vio_free_event_buffer(viomajorsubtype_chario
, viochar
);
200 spin_unlock_irqrestore(&consolelock
, flags
);
204 static struct hv_ops hvc_get_put_ops
= {
205 .get_chars
= get_chars
,
206 .put_chars
= put_chars
,
209 static int __devinit
hvc_vio_probe(struct vio_dev
*vdev
,
210 const struct vio_device_id
*id
)
212 struct hvc_struct
*hp
;
213 struct port_info
*pi
;
215 /* probed with invalid parameters. */
219 if (vdev
->unit_address
>= VTTY_PORTS
)
222 pi
= &port_info
[vdev
->unit_address
];
224 hp
= hvc_alloc(vdev
->unit_address
, vdev
->irq
, &hvc_get_put_ops
,
229 dev_set_drvdata(&vdev
->dev
, pi
);
234 static int __devexit
hvc_vio_remove(struct vio_dev
*vdev
)
236 struct port_info
*pi
= dev_get_drvdata(&vdev
->dev
);
237 struct hvc_struct
*hp
= pi
->hp
;
239 return hvc_remove(hp
);
242 static struct vio_driver hvc_vio_driver
= {
243 .id_table
= hvc_driver_table
,
244 .probe
= hvc_vio_probe
,
245 .remove
= hvc_vio_remove
,
247 .name
= hvc_driver_name
,
248 .owner
= THIS_MODULE
,
252 static void hvc_open_event(struct HvLpEvent
*event
)
255 struct viocharlpevent
*cevent
= (struct viocharlpevent
*)event
;
256 u8 port
= cevent
->virtual_device
;
257 struct port_info
*pi
;
260 if (hvlpevent_is_ack(event
)) {
261 if (port
>= VTTY_PORTS
)
264 spin_lock_irqsave(&consolelock
, flags
);
266 pi
= &port_info
[port
];
267 if (event
->xRc
== HvLpEvent_Rc_Good
) {
268 pi
->seq
= pi
->ack
= 0;
270 * This line allows connections from the primary
271 * partition but once one is connected from the
272 * primary partition nothing short of a reboot
273 * of linux will allow access from the hosting
274 * partition again without a required iSeries fix.
276 pi
->lp
= event
->xTargetLp
;
279 spin_unlock_irqrestore(&consolelock
, flags
);
280 if (event
->xRc
!= HvLpEvent_Rc_Good
)
282 "hvc: handle_open_event: event->xRc == (%d).\n",
285 if (event
->xCorrelationToken
!= 0) {
286 atomic_t
*aptr
= (atomic_t
*)event
->xCorrelationToken
;
290 "hvc: weird...got open ack without atomic\n");
294 /* This had better require an ack, otherwise complain */
295 if (!hvlpevent_need_ack(event
)) {
296 printk(KERN_WARNING
"hvc: viocharopen without ack bit!\n");
300 spin_lock_irqsave(&consolelock
, flags
);
302 /* Make sure this is a good virtual tty */
303 if (port
>= VTTY_PORTS
) {
304 event
->xRc
= HvLpEvent_Rc_SubtypeError
;
305 cevent
->subtype_result_code
= viorc_openRejected
;
307 * Flag state here since we can't printk while holding
308 * the consolelock spinlock.
312 pi
= &port_info
[port
];
313 if ((pi
->lp
!= HvLpIndexInvalid
) &&
314 (pi
->lp
!= event
->xSourceLp
)) {
316 * If this is tty is already connected to a different
319 event
->xRc
= HvLpEvent_Rc_SubtypeError
;
320 cevent
->subtype_result_code
= viorc_openRejected
;
323 pi
->lp
= event
->xSourceLp
;
324 event
->xRc
= HvLpEvent_Rc_Good
;
325 cevent
->subtype_result_code
= viorc_good
;
326 pi
->seq
= pi
->ack
= 0;
330 spin_unlock_irqrestore(&consolelock
, flags
);
333 printk(KERN_WARNING
"hvc: open rejected: bad virtual tty.\n");
334 else if (reject
== 2)
335 printk(KERN_WARNING
"hvc: open rejected: console in exclusive "
336 "use by another partition.\n");
338 /* Return the acknowledgement */
339 HvCallEvent_ackLpEvent(event
);
343 * Handle a close charLpEvent. This should ONLY be an Interrupt because the
344 * virtual console should never actually issue a close event to the hypervisor
345 * because the virtual console never goes away. A close event coming from the
346 * hypervisor simply means that there are no client consoles connected to the
349 static void hvc_close_event(struct HvLpEvent
*event
)
352 struct viocharlpevent
*cevent
= (struct viocharlpevent
*)event
;
353 u8 port
= cevent
->virtual_device
;
355 if (!hvlpevent_is_int(event
)) {
357 "hvc: got unexpected close acknowlegement\n");
361 if (port
>= VTTY_PORTS
) {
363 "hvc: close message from invalid virtual device.\n");
367 /* For closes, just mark the console partition invalid */
368 spin_lock_irqsave(&consolelock
, flags
);
370 if (port_info
[port
].lp
== event
->xSourceLp
)
371 port_info
[port
].lp
= HvLpIndexInvalid
;
373 spin_unlock_irqrestore(&consolelock
, flags
);
376 static void hvc_data_event(struct HvLpEvent
*event
)
379 struct viocharlpevent
*cevent
= (struct viocharlpevent
*)event
;
380 struct port_info
*pi
;
382 u8 port
= cevent
->virtual_device
;
384 if (port
>= VTTY_PORTS
) {
385 printk(KERN_WARNING
"hvc: data on invalid virtual device %d\n",
389 if (cevent
->len
== 0)
393 * Change 05/01/2003 - Ryan Arnold: If a partition other than
394 * the current exclusive partition tries to send us data
395 * events then just drop them on the floor because we don't
396 * want his stinking data. He isn't authorized to receive
397 * data because he wasn't the first one to get the console,
398 * therefore he shouldn't be allowed to send data either.
399 * This will work without an iSeries fix.
401 pi
= &port_info
[port
];
402 if (pi
->lp
!= event
->xSourceLp
)
405 spin_lock_irqsave(&consolelock
, flags
);
407 n
= IN_BUF_SIZE
- pi
->in_end
;
411 memcpy(&pi
->in_buf
[pi
->in_end
], cevent
->data
, n
);
414 spin_unlock_irqrestore(&consolelock
, flags
);
416 printk(KERN_WARNING
"hvc: input buffer overflow\n");
419 static void hvc_ack_event(struct HvLpEvent
*event
)
421 struct viocharlpevent
*cevent
= (struct viocharlpevent
*)event
;
423 u8 port
= cevent
->virtual_device
;
425 if (port
>= VTTY_PORTS
) {
426 printk(KERN_WARNING
"hvc: data on invalid virtual device\n");
430 spin_lock_irqsave(&consolelock
, flags
);
431 port_info
[port
].ack
= event
->xCorrelationToken
;
432 spin_unlock_irqrestore(&consolelock
, flags
);
435 static void hvc_config_event(struct HvLpEvent
*event
)
437 struct viocharlpevent
*cevent
= (struct viocharlpevent
*)event
;
439 if (cevent
->data
[0] == 0x01)
440 printk(KERN_INFO
"hvc: window resized to %d: %d: %d: %d\n",
441 cevent
->data
[1], cevent
->data
[2],
442 cevent
->data
[3], cevent
->data
[4]);
444 printk(KERN_WARNING
"hvc: unknown config event\n");
447 static void hvc_handle_event(struct HvLpEvent
*event
)
454 charminor
= event
->xSubtype
& VIOMINOR_SUBTYPE_MASK
;
457 hvc_open_event(event
);
460 hvc_close_event(event
);
463 hvc_data_event(event
);
466 hvc_ack_event(event
);
469 hvc_config_event(event
);
472 if (hvlpevent_is_int(event
) && hvlpevent_need_ack(event
)) {
473 event
->xRc
= HvLpEvent_Rc_InvalidSubtype
;
474 HvCallEvent_ackLpEvent(event
);
479 static int send_open(HvLpIndex remoteLp
, void *sem
)
481 return HvCallEvent_signalLpEventFast(remoteLp
,
482 HvLpEvent_Type_VirtualIo
,
483 viomajorsubtype_chario
| viocharopen
,
484 HvLpEvent_AckInd_DoAck
, HvLpEvent_AckType_ImmediateAck
,
485 viopath_sourceinst(remoteLp
),
486 viopath_targetinst(remoteLp
),
487 (u64
)(unsigned long)sem
, VIOVERSION
<< 16,
491 static int hvc_vio_init(void)
497 rc
= viopath_open(HvLpConfig_getPrimaryLpIndex(),
498 viomajorsubtype_chario
, VIOCHAR_WINDOW
+ 2);
500 printk(KERN_WARNING
"hvc: error opening to primary %d\n", rc
);
502 if (viopath_hostLp
== HvLpIndexInvalid
)
506 * And if the primary is not the same as the hosting LP, open to the
509 if ((viopath_hostLp
!= HvLpIndexInvalid
) &&
510 (viopath_hostLp
!= HvLpConfig_getPrimaryLpIndex())) {
511 printk(KERN_INFO
"hvc: open path to hosting (%d)\n",
513 rc
= viopath_open(viopath_hostLp
, viomajorsubtype_chario
,
514 VIOCHAR_WINDOW
+ 2); /* +2 for fudge */
517 "error opening to partition %d: %d\n",
521 if (vio_setHandler(viomajorsubtype_chario
, hvc_handle_event
) < 0)
523 "hvc: error seting handler for console events!\n");
526 * First, try to open the console to the hosting lp.
527 * Wait on a semaphore for the response.
529 atomic_set(&wait_flag
, 0);
530 if ((viopath_isactive(viopath_hostLp
)) &&
531 (send_open(viopath_hostLp
, &wait_flag
) == 0)) {
532 printk(KERN_INFO
"hvc: hosting partition %d\n", viopath_hostLp
);
533 while (atomic_read(&wait_flag
) == 0)
535 atomic_set(&wait_flag
, 0);
539 * If we don't have an active console, try the primary
541 if ((!viopath_isactive(port_info
[0].lp
)) &&
542 (viopath_isactive(HvLpConfig_getPrimaryLpIndex())) &&
543 (send_open(HvLpConfig_getPrimaryLpIndex(), &wait_flag
) == 0)) {
544 printk(KERN_INFO
"hvc: opening console to primary partition\n");
545 while (atomic_read(&wait_flag
) == 0)
549 /* Register as a vio device to receive callbacks */
550 rc
= vio_register_driver(&hvc_vio_driver
);
554 module_init(hvc_vio_init
); /* after drivers/char/hvc_console.c */
556 static void hvc_vio_exit(void)
558 vio_unregister_driver(&hvc_vio_driver
);
560 module_exit(hvc_vio_exit
);
562 /* the device tree order defines our numbering */
563 static int hvc_find_vtys(void)
565 struct device_node
*vty
;
568 for (vty
= of_find_node_by_name(NULL
, "vty"); vty
!= NULL
;
569 vty
= of_find_node_by_name(vty
, "vty")) {
572 /* We have statically defined space for only a certain number
573 * of console adapters.
575 if ((num_found
>= MAX_NR_HVC_CONSOLES
) ||
576 (num_found
>= VTTY_PORTS
))
579 vtermno
= (uint32_t *)get_property(vty
, "reg", NULL
);
583 if (!device_is_compatible(vty
, "IBM,iSeries-vty"))
587 add_preferred_console("hvc", 0, NULL
);
588 hvc_instantiate(*vtermno
, num_found
, &hvc_get_put_ops
);
594 console_initcall(hvc_find_vtys
);