2 * vio driver interface to hvc_console.c
4 * This code was moved here to allow the remaing code to be reused as a
5 * generic polling mode with semi-reliable transport driver core to the
6 * console and tty subsystems.
9 * Copyright (C) 2001 Anton Blanchard <anton@au.ibm.com>, IBM
10 * Copyright (C) 2001 Paul Mackerras <paulus@au.ibm.com>, IBM
11 * Copyright (C) 2004 Benjamin Herrenschmidt <benh@kernel.crashing.org>, IBM Corp.
12 * Copyright (C) 2004 IBM Corporation
14 * Additional Author(s):
15 * Ryan S. Arnold <rsa@us.ibm.com>
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
27 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
32 #include <linux/types.h>
33 #include <linux/init.h>
35 #include <asm/hvconsole.h>
38 #include <asm/firmware.h>
40 #include "hvc_console.h"
42 char hvc_driver_name
[] = "hvc_console";
44 static struct vio_device_id hvc_driver_table
[] __devinitdata
= {
45 {"serial", "hvterm1"},
48 MODULE_DEVICE_TABLE(vio
, hvc_driver_table
);
50 static int filtered_get_chars(uint32_t vtermno
, char *buf
, int count
)
56 * Vio firmware will read up to SIZE_VIO_GET_CHARS at its own discretion
57 * so we play safe and avoid the situation where got > count which could
58 * overload the flip buffer.
60 if (count
< SIZE_VIO_GET_CHARS
)
63 got
= hvc_get_chars(vtermno
, buf
, count
);
66 * Work around a HV bug where it gives us a null
67 * after every \r. -- paulus
69 for (i
= 1; i
< got
; ++i
) {
70 if (buf
[i
] == 0 && buf
[i
-1] == '\r') {
73 memmove(&buf
[i
], &buf
[i
+1],
80 static struct hv_ops hvc_get_put_ops
= {
81 .get_chars
= filtered_get_chars
,
82 .put_chars
= hvc_put_chars
,
85 static int __devinit
hvc_vio_probe(struct vio_dev
*vdev
,
86 const struct vio_device_id
*id
)
88 struct hvc_struct
*hp
;
90 /* probed with invalid parameters. */
94 hp
= hvc_alloc(vdev
->unit_address
, vdev
->irq
, &hvc_get_put_ops
,
98 dev_set_drvdata(&vdev
->dev
, hp
);
103 static int __devexit
hvc_vio_remove(struct vio_dev
*vdev
)
105 struct hvc_struct
*hp
= dev_get_drvdata(&vdev
->dev
);
107 return hvc_remove(hp
);
110 static struct vio_driver hvc_vio_driver
= {
111 .id_table
= hvc_driver_table
,
112 .probe
= hvc_vio_probe
,
113 .remove
= hvc_vio_remove
,
115 .name
= hvc_driver_name
,
116 .owner
= THIS_MODULE
,
120 static int hvc_vio_init(void)
124 if (firmware_has_feature(FW_FEATURE_ISERIES
))
127 /* Register as a vio device to receive callbacks */
128 rc
= vio_register_driver(&hvc_vio_driver
);
132 module_init(hvc_vio_init
); /* after drivers/char/hvc_console.c */
134 static void hvc_vio_exit(void)
136 vio_unregister_driver(&hvc_vio_driver
);
138 module_exit(hvc_vio_exit
);
140 /* the device tree order defines our numbering */
141 static int hvc_find_vtys(void)
143 struct device_node
*vty
;
146 for (vty
= of_find_node_by_name(NULL
, "vty"); vty
!= NULL
;
147 vty
= of_find_node_by_name(vty
, "vty")) {
148 const uint32_t *vtermno
;
150 /* We have statically defined space for only a certain number
151 * of console adapters.
153 if (num_found
>= MAX_NR_HVC_CONSOLES
)
156 vtermno
= of_get_property(vty
, "reg", NULL
);
160 if (of_device_is_compatible(vty
, "hvterm1")) {
161 hvc_instantiate(*vtermno
, num_found
, &hvc_get_put_ops
);
168 console_initcall(hvc_find_vtys
);