1 // SPDX-License-Identifier: GPL-2.0+
4 * Copyright (C) 2005 IBM Corporation
7 * Ryan S. Arnold <rsa@us.ibm.com>
9 * hvc_console header information:
10 * moved here from arch/powerpc/include/asm/hvconsole.h
11 * and drivers/char/hvc_console.c
16 #include <linux/kref.h>
17 #include <linux/tty.h>
18 #include <linux/spinlock.h>
21 * This is the max number of console adapters that can/will be found as
22 * console devices on first stage console init. Any number beyond this range
23 * can't be used as a console device but is still a valid tty device.
25 #define MAX_NR_HVC_CONSOLES 16
28 * The Linux TTY code does not support dynamic addition of tty derived devices
29 * so we need to know how many tty devices we might need when space is allocated
30 * for the tty device. Since this driver supports hotplug of vty adapters we
31 * need to make sure we have enough allocated.
33 #define HVC_ALLOC_TTY_ADAPTERS 8
44 const struct hv_ops
*ops
;
48 struct work_struct tty_resize
;
49 struct list_head next
;
53 /* implemented by a low level driver */
55 int (*get_chars
)(uint32_t vtermno
, char *buf
, int count
);
56 int (*put_chars
)(uint32_t vtermno
, const char *buf
, int count
);
58 /* Callbacks for notification. Called in open, close and hangup */
59 int (*notifier_add
)(struct hvc_struct
*hp
, int irq
);
60 void (*notifier_del
)(struct hvc_struct
*hp
, int irq
);
61 void (*notifier_hangup
)(struct hvc_struct
*hp
, int irq
);
63 /* tiocmget/set implementation */
64 int (*tiocmget
)(struct hvc_struct
*hp
);
65 int (*tiocmset
)(struct hvc_struct
*hp
, unsigned int set
, unsigned int clear
);
67 /* Callbacks to handle tty ports */
68 void (*dtr_rts
)(struct hvc_struct
*hp
, int raise
);
71 /* Register a vterm and a slot index for use as a console (console_init) */
72 extern int hvc_instantiate(uint32_t vtermno
, int index
,
73 const struct hv_ops
*ops
);
75 /* register a vterm for hvc tty operation (module_init or hotplug add) */
76 extern struct hvc_struct
* hvc_alloc(uint32_t vtermno
, int data
,
77 const struct hv_ops
*ops
, int outbuf_size
);
78 /* remove a vterm from hvc tty operation (module_exit or hotplug remove) */
79 extern int hvc_remove(struct hvc_struct
*hp
);
82 int hvc_poll(struct hvc_struct
*hp
);
85 /* Resize hvc tty terminal window */
86 extern void __hvc_resize(struct hvc_struct
*hp
, struct winsize ws
);
88 static inline void hvc_resize(struct hvc_struct
*hp
, struct winsize ws
)
92 spin_lock_irqsave(&hp
->lock
, flags
);
94 spin_unlock_irqrestore(&hp
->lock
, flags
);
97 /* default notifier for irq based notification */
98 extern int notifier_add_irq(struct hvc_struct
*hp
, int data
);
99 extern void notifier_del_irq(struct hvc_struct
*hp
, int data
);
100 extern void notifier_hangup_irq(struct hvc_struct
*hp
, int data
);
103 #if defined(CONFIG_XMON) && defined(CONFIG_SMP)
104 #include <asm/xmon.h>
106 static inline int cpus_are_in_xmon(void)
112 #endif // HVC_CONSOLE_H