1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright (c) 2012 Gary Mills
*
* Copyright 2010 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* isa-specific console configuration routines
*/
#include <sys/types.h>
#include <sys/param.h>
#include <sys/cmn_err.h>
#include <sys/systm.h>
#include <sys/conf.h>
#include <sys/debug.h>
#include <sys/ddi.h>
#include <sys/sunddi.h>
#include <sys/sunndi.h>
#include <sys/esunddi.h>
#include <sys/ddi_impldefs.h>
#include <sys/promif.h>
#include <sys/modctl.h>
#include <sys/termios.h>
#include <sys/pci.h>
#include <sys/framebuffer.h>
#include <sys/boot_console.h>
#if defined(__xpv)
#include <sys/hypervisor.h>
#endif
extern int pseudo_isa;
int
plat_use_polled_debug()
{
return (0);
}
int
plat_support_serial_kbd_and_ms()
{
return (0);
}
#define A_CNT(arr) (sizeof (arr) / sizeof (arr[0]))
#ifndef CONS_INVALID
#define CONS_INVALID -1
#define CONS_SCREEN_TEXT 0
#define CONS_TTY 1
#define CONS_XXX 2 /* Unused */
#define CONS_USBSER 3
#define CONS_HYPERVISOR 4
#define CONS_SCREEN_GRAPHICS 5
#endif /* CONS_INVALID */
char *plat_fbpath(void);
static int
console_type(int *tnum)
{
static int boot_console = CONS_INVALID;
static int tty_num = 0;
char *cons;
dev_info_t *root;
/* If we already have determined the console, just return it. */
if (boot_console != CONS_INVALID) {
if (tnum != NULL)
*tnum = tty_num;
return (boot_console);
}
#if defined(__xpv)
if (!DOMAIN_IS_INITDOMAIN(xen_info) || bcons_hypervisor_redirect()) {
boot_console = CONS_HYPERVISOR;
if (tnum != NULL)
*tnum = tty_num;
return (boot_console);
}
#endif /* __xpv */
/*
* console is defined by "console" property, with
* fallback on the old "input-device" property.
* If "input-device" is not defined either, also check "output-device".
*/
boot_console = CONS_SCREEN_TEXT; /* default is screen/kb */
root = ddi_root_node();
if ((ddi_prop_lookup_string(DDI_DEV_T_ANY, root,
DDI_PROP_DONTPASS, "console", &cons) == DDI_SUCCESS) ||
(ddi_prop_lookup_string(DDI_DEV_T_ANY, root,
DDI_PROP_DONTPASS, "input-device", &cons) == DDI_SUCCESS) ||
(ddi_prop_lookup_string(DDI_DEV_T_ANY, root,
DDI_PROP_DONTPASS, "output-device", &cons) == DDI_SUCCESS)) {
if (strlen(cons) == 4 && strncmp(cons, "tty", 3) == 0 &&
cons[3] >= 'a' && cons[3] <= 'd') {
boot_console = CONS_TTY;
tty_num = cons[3] - 'a';
} else if (strcmp(cons, "usb-serial") == 0) {
(void) i_ddi_attach_hw_nodes("xhci");
(void) i_ddi_attach_hw_nodes("ehci");
(void) i_ddi_attach_hw_nodes("uhci");
(void) i_ddi_attach_hw_nodes("ohci");
/*
* USB device enumerate asynchronously.
* Wait 2 seconds for USB serial devices to attach.
*/
delay(drv_usectohz(2000000));
boot_console = CONS_USBSER;
#if defined(__xpv)
} else if (strcmp(cons, "hypervisor") == 0) {
boot_console = CONS_HYPERVISOR;
#endif /* __xpv */
}
ddi_prop_free(cons);
}
/*
* If the console is configured to use a framebuffer but none
* could be found, fallback to "ttya" since it's likely to exist
* and it matches longstanding behavior on SPARC.
*/
if (boot_console == CONS_SCREEN_TEXT && plat_fbpath() == NULL) {
boot_console = CONS_TTY;
tty_num = 0;
}
if (tnum != NULL)
*tnum = tty_num;
return (boot_console);
}
int
plat_stdin_is_keyboard(void)
{
return (console_type(NULL) == CONS_SCREEN_TEXT);
}
int
plat_stdout_is_framebuffer(void)
{
return (console_type(NULL) == CONS_SCREEN_TEXT);
}
static char *
plat_devpath(char *name, char *path)
{
major_t major;
dev_info_t *dip, *pdip;
if ((major = ddi_name_to_major(name)) == (major_t)-1)
return (NULL);
if ((dip = devnamesp[major].dn_head) == NULL)
return (NULL);
pdip = ddi_get_parent(dip);
if (i_ddi_attach_node_hierarchy(pdip) != DDI_SUCCESS)
return (NULL);
if (ddi_initchild(pdip, dip) != DDI_SUCCESS)
return (NULL);
(void) ddi_pathname(dip, path);
return (path);
}
/*
* Return generic path to keyboard device from the alias.
*/
char *
plat_kbdpath(void)
{
static char kbpath[MAXPATHLEN];
/*
* Hardcode to isa keyboard path
* XXX make it settable via bootprop?
*/
if (pseudo_isa)
return ("/isa/i8042@1,60/keyboard@0");
if (plat_devpath("kb8042", kbpath) == NULL)
return (NULL);
return (kbpath);
}
/*
* NOTE: this function is duplicated here and in gfx_private/vgatext while
* we work on a set of commitable interfaces to sunpci.c.
*
* Use the class code to determine if the device is a PCI-to-PCI bridge.
* Returns: B_TRUE if the device is a bridge.
* B_FALSE if the device is not a bridge or the property cannot be
* retrieved.
*/
static boolean_t
is_pci_bridge(dev_info_t *dip)
{
uint32_t class_code;
class_code = (uint32_t)ddi_prop_get_int(DDI_DEV_T_ANY, dip,
DDI_PROP_DONTPASS, "class-code", 0xffffffff);
if (class_code == 0xffffffff || class_code == DDI_PROP_NOT_FOUND)
return (B_FALSE);
class_code &= 0x00ffff00;
if (class_code == ((PCI_CLASS_BRIDGE << 16) | (PCI_BRIDGE_PCI << 8)))
return (B_TRUE);
return (B_FALSE);
}
/*
* Type for the parameter of find_fb_dev()
*/
struct find_fb_dev_param
{
dev_info_t *found_dip; /* dip found for VGA console */
int vga_enable; /* check PCI_BCNF_BCNTRL_VGA_ENABLE or not */
};
/*
* The VGA device could be under a subtractive PCI bridge on some systems.
* Though the PCI_BCNF_BCNTRL_VGA_ENABLE bit is not set on such subtractive
* PCI bridge, the subtractive PCI bridge can forward VGA access if no other
* agent claims the access.
* The vga_enable element in param acts as a flag, if not set, ignore the
* checking for the PCI_BCNF_BCNTRL_VGA_ENABLE bit of the PCI bridge during
* the search.
*/
static int
find_fb_dev(dev_info_t *dip, void *param)
{
struct find_fb_dev_param *p = param;
char *dev_type;
dev_info_t *pdip;
char *parent_type;
if (dip == ddi_root_node())
return (DDI_WALK_CONTINUE);
if (ddi_prop_lookup_string(DDI_DEV_T_ANY, dip, DDI_PROP_DONTPASS,
"device_type", &dev_type) != DDI_SUCCESS)
return (DDI_WALK_PRUNECHILD);
if ((strcmp(dev_type, "isa") == 0) || (strcmp(dev_type, "eisa") == 0)) {
ddi_prop_free(dev_type);
return (DDI_WALK_CONTINUE);
}
if ((strcmp(dev_type, "pci") == 0) ||
(strcmp(dev_type, "pciex") == 0)) {
ddi_acc_handle_t pci_conf;
uint16_t data16;
char *nodename;
ddi_prop_free(dev_type);
if (!p->vga_enable)
return (DDI_WALK_CONTINUE);
nodename = ddi_node_name(dip);
/*
* If the node is not a PCI-to-PCI bridge, continue traversing
* (it could be the root node), otherwise, check for the
* VGAEnable bit to be set in the Bridge Control Register.
*/
if (strcmp(nodename, "pci") == 0) {
if (is_pci_bridge(dip) == B_FALSE)
return (DDI_WALK_CONTINUE);
}
if (i_ddi_attach_node_hierarchy(dip) != DDI_SUCCESS)
return (DDI_WALK_PRUNECHILD);
if (pci_config_setup(dip, &pci_conf) != DDI_SUCCESS)
return (DDI_WALK_PRUNECHILD);
data16 = pci_config_get16(pci_conf, PCI_BCNF_BCNTRL);
pci_config_teardown(&pci_conf);
if (data16 & PCI_BCNF_BCNTRL_VGA_ENABLE)
return (DDI_WALK_CONTINUE);
return (DDI_WALK_PRUNECHILD);
}
if (strcmp(dev_type, "display") != 0) {
ddi_prop_free(dev_type);
return (DDI_WALK_CONTINUE);
}
ddi_prop_free(dev_type);
if ((pdip = ddi_get_parent(dip)) == NULL)
return (DDI_WALK_PRUNECHILD);
if (ddi_prop_lookup_string(DDI_DEV_T_ANY, pdip, DDI_PROP_DONTPASS,
"device_type", &parent_type) != DDI_SUCCESS)
return (DDI_WALK_PRUNECHILD);
if ((strcmp(parent_type, "isa") == 0) ||
(strcmp(parent_type, "eisa") == 0)) {
p->found_dip = dip;
ddi_prop_free(parent_type);
return (DDI_WALK_TERMINATE);
}
if ((strcmp(parent_type, "pci") == 0) ||
(strcmp(parent_type, "pciex") == 0)) {
ddi_acc_handle_t pci_conf;
uint16_t data16;
ddi_prop_free(parent_type);
if (i_ddi_attach_node_hierarchy(dip) != DDI_SUCCESS)
return (DDI_WALK_PRUNECHILD);
if (pci_config_setup(dip, &pci_conf) != DDI_SUCCESS)
return (DDI_WALK_PRUNECHILD);
data16 = pci_config_get16(pci_conf, PCI_CONF_COMM);
pci_config_teardown(&pci_conf);
if (!(data16 & PCI_COMM_IO))
return (DDI_WALK_PRUNECHILD);
p->found_dip = dip;
return (DDI_WALK_TERMINATE);
}
ddi_prop_free(parent_type);
return (DDI_WALK_PRUNECHILD);
}
/*
* The first round search is to find:
* 1) a VGA device.
* 2) a PCI VGA compatible device whose IO space is enabled
* and the VGA Enable bit of any PCI-PCI bridge above it is set.
* If the first round search succeeds, prune the second round search.
*
* The second round seach does not check the VGA Enable bit.
*
* Return the device path as the console fb path.
*/
char *
plat_fbpath(void)
{
struct find_fb_dev_param param;
static char *fbpath = NULL;
static char fbpath_buf[MAXPATHLEN];
/* first round search */
param.found_dip = NULL;
param.vga_enable = 1;
ddi_walk_devs(ddi_root_node(), find_fb_dev, ¶m);
if (param.found_dip != NULL) {
(void) ddi_pathname(param.found_dip, fbpath_buf);
fbpath = fbpath_buf;
return (fbpath);
}
/*
* second round search, do not check the
* PCI_BCNF_BCNTRL_VGA_ENABLE bit
*/
param.found_dip = NULL;
param.vga_enable = 0;
ddi_walk_devs(ddi_root_node(), find_fb_dev, ¶m);
if (param.found_dip == NULL)
return (NULL);
(void) ddi_pathname(param.found_dip, fbpath_buf);
fbpath = fbpath_buf;
return (fbpath);
}
char *
plat_mousepath(void)
{
static char mpath[MAXPATHLEN];
/*
* Hardcode to isa mouse path
* XXX make it settable via bootprop?
*/
if (pseudo_isa)
return ("/isa/i8042@1,60/mouse@1");
if (plat_devpath("mouse8042", mpath) == NULL)
return (NULL);
return (mpath);
}
/* return path of first usb serial device */
static char *
plat_usbser_path(void)
{
extern dev_info_t *usbser_first_device(void);
dev_info_t *us_dip;
static char *us_path = NULL;
if (us_path)
return (us_path);
us_dip = usbser_first_device();
if (us_dip == NULL)
return (NULL);
us_path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
(void) ddi_pathname(us_dip, us_path);
ndi_rele_devi(us_dip); /* held from usbser_first_device */
return (us_path);
}
static char *
plat_ttypath(int inum)
{
static char *defaultpath[] = {
"/isa/asy@1,3f8:a",
"/isa/asy@1,2f8:b",
"/isa/asy@1,3e8:c",
"/isa/asy@1,2e8:d"
};
static char path[MAXPATHLEN];
char *bp;
major_t major;
dev_info_t *dip;
if (pseudo_isa)
return (defaultpath[inum]);
if ((major = ddi_name_to_major("asy")) == (major_t)-1)
return (NULL);
if ((dip = devnamesp[major].dn_head) == NULL)
return (NULL);
for (; dip != NULL; dip = ddi_get_next(dip)) {
if (i_ddi_attach_node_hierarchy(dip) != DDI_SUCCESS)
return (NULL);
if (DEVI(dip)->devi_minor->ddm_name[0] == ('a' + (char)inum))
break;
}
if (dip == NULL)
return (NULL);
(void) ddi_pathname(dip, path);
bp = path + strlen(path);
(void) snprintf(bp, 3, ":%s", DEVI(dip)->devi_minor->ddm_name);
return (path);
}
/*
* Another possible enhancement could be to use properties
* for the port mapping rather than simply hard-code them.
*/
char *
plat_stdinpath(void)
{
int tty_num = 0;
switch (console_type(&tty_num)) {
#if defined(__xpv)
case CONS_HYPERVISOR:
return ("/xpvd/xencons@0");
#endif /* __xpv */
case CONS_TTY:
return (plat_ttypath(tty_num));
case CONS_USBSER:
return (plat_usbser_path());
case CONS_SCREEN_TEXT:
default:
break;
};
return (plat_kbdpath());
}
char *
plat_stdoutpath(void)
{
int tty_num = 0;
switch (console_type(&tty_num)) {
#if defined(__xpv)
case CONS_HYPERVISOR:
return ("/xpvd/xencons@0");
#endif /* __xpv */
case CONS_TTY:
return (plat_ttypath(tty_num));
case CONS_USBSER:
return (plat_usbser_path());
case CONS_SCREEN_TEXT:
default:
break;
};
return (plat_fbpath());
}
char *
plat_diagpath(void)
{
dev_info_t *root;
char *diag;
int tty_num = -1;
root = ddi_root_node();
if (ddi_prop_lookup_string(DDI_DEV_T_ANY, root, DDI_PROP_DONTPASS,
"diag-device", &diag) == DDI_SUCCESS) {
if (strlen(diag) == 4 && strncmp(diag, "tty", 3) == 0 &&
diag[3] >= 'a' && diag[3] <= 'd') {
tty_num = diag[3] - 'a';
}
ddi_prop_free(diag);
}
if (tty_num != -1)
return (plat_ttypath(tty_num));
return (NULL);
}
/*
* If VIS_PIXEL mode will be implemented on x86, these following
* functions should be re-considered. Now these functions are
* unused on x86.
*/
void
plat_tem_get_colors(uint8_t *fg, uint8_t *bg)
{
*fg = fb_info.fg_color;
*bg = fb_info.bg_color;
}
void
plat_tem_get_inverses(int *inverse, int *inverse_screen)
{
*inverse = fb_info.inverse == B_TRUE? 1 : 0;
*inverse_screen = fb_info.inverse_screen == B_TRUE? 1 : 0;
}
void
plat_tem_get_prom_font_size(int *charheight, int *windowtop)
{
*charheight = fb_info.font_height;
*windowtop = fb_info.terminal_origin.y;
}
/*ARGSUSED*/
void
plat_tem_get_prom_size(size_t *height, size_t *width)
{
*height = fb_info.terminal.y;
*width = fb_info.terminal.x;
}
/* this gets called once at boot time and only in case of VIS_PIXEL */
void
plat_tem_hide_prom_cursor(void)
{
if (boot_console_type(NULL) == CONS_FRAMEBUFFER)
boot_fb_cursor(B_FALSE);
}
/*ARGSUSED*/
void
plat_tem_get_prom_pos(uint32_t *row, uint32_t *col)
{
*row = fb_info.cursor.pos.y;
*col = fb_info.cursor.pos.x;
}
|