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
);
57 int (*flush
)(uint32_t vtermno
, bool wait
);
59 /* Callbacks for notification. Called in open, close and hangup */
60 int (*notifier_add
)(struct hvc_struct
*hp
, int irq
);
61 void (*notifier_del
)(struct hvc_struct
*hp
, int irq
);
62 void (*notifier_hangup
)(struct hvc_struct
*hp
, int irq
);
64 /* tiocmget/set implementation */
65 int (*tiocmget
)(struct hvc_struct
*hp
);
66 int (*tiocmset
)(struct hvc_struct
*hp
, unsigned int set
, unsigned int clear
);
68 /* Callbacks to handle tty ports */
69 void (*dtr_rts
)(struct hvc_struct
*hp
, int raise
);
72 /* Register a vterm and a slot index for use as a console (console_init) */
73 extern int hvc_instantiate(uint32_t vtermno
, int index
,
74 const struct hv_ops
*ops
);
76 /* register a vterm for hvc tty operation (module_init or hotplug add) */
77 extern struct hvc_struct
* hvc_alloc(uint32_t vtermno
, int data
,
78 const struct hv_ops
*ops
, int outbuf_size
);
79 /* remove a vterm from hvc tty operation (module_exit or hotplug remove) */
80 extern int hvc_remove(struct hvc_struct
*hp
);
83 int hvc_poll(struct hvc_struct
*hp
);
86 /* Resize hvc tty terminal window */
87 extern void __hvc_resize(struct hvc_struct
*hp
, struct winsize ws
);
89 static inline void hvc_resize(struct hvc_struct
*hp
, struct winsize ws
)
93 spin_lock_irqsave(&hp
->lock
, flags
);
95 spin_unlock_irqrestore(&hp
->lock
, flags
);
98 /* default notifier for irq based notification */
99 extern int notifier_add_irq(struct hvc_struct
*hp
, int data
);
100 extern void notifier_del_irq(struct hvc_struct
*hp
, int data
);
101 extern void notifier_hangup_irq(struct hvc_struct
*hp
, int data
);
104 #if defined(CONFIG_XMON) && defined(CONFIG_SMP)
105 #include <asm/xmon.h>
107 static inline int cpus_are_in_xmon(void)
113 #endif // HVC_CONSOLE_H