mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 19:41:54 +00:00
c73fcc846c
The current scheme works on static interpretation of text names, which is wrong. The output-device setting, for example, must be resolved via an alias or similar to a full path name to the console device. Paths also contain an optional set of 'options', which starts with a colon at the end of the path. The option area is used to specify which of two serial ports ('a' or 'b') the path refers to when a device node drives multiple ports. 'a' is assumed if the option specification is missing. This was caught by the UltraSPARC-T1 simulator. The 'output-device' property was set to 'ttya' and we didn't pick upon the fact that this is an OBP alias set to '/virtual-devices/console'. Instead we saw it as the first serial console device, instead of the hypervisor console. The infrastructure is now there to take advantage of this to resolve the console correctly even in multi-head situations in fbcon too. Thanks to Greg Onufer for the bug report. Signed-off-by: David S. Miller <davem@davemloft.net>
105 lines
2.2 KiB
C
105 lines
2.2 KiB
C
/* $Id: console.c,v 1.25 2001/10/30 04:54:22 davem Exp $
|
|
* console.c: Routines that deal with sending and receiving IO
|
|
* to/from the current console device using the PROM.
|
|
*
|
|
* Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
|
|
* Copyright (C) 1998 Pete Zaitcev <zaitcev@yahoo.com>
|
|
*/
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/sched.h>
|
|
#include <asm/openprom.h>
|
|
#include <asm/sun4prom.h>
|
|
#include <asm/oplib.h>
|
|
#include <asm/system.h>
|
|
#include <linux/string.h>
|
|
|
|
extern void restore_current(void);
|
|
|
|
static char con_name_jmc[] = "/obio/su@"; /* "/obio/su@0,3002f8"; */
|
|
#define CON_SIZE_JMC (sizeof(con_name_jmc))
|
|
|
|
/* Non blocking get character from console input device, returns -1
|
|
* if no input was taken. This can be used for polling.
|
|
*/
|
|
int
|
|
prom_nbgetchar(void)
|
|
{
|
|
static char inc;
|
|
int i = -1;
|
|
unsigned long flags;
|
|
|
|
spin_lock_irqsave(&prom_lock, flags);
|
|
switch(prom_vers) {
|
|
case PROM_V0:
|
|
case PROM_SUN4:
|
|
i = (*(romvec->pv_nbgetchar))();
|
|
break;
|
|
case PROM_V2:
|
|
case PROM_V3:
|
|
if( (*(romvec->pv_v2devops).v2_dev_read)(*romvec->pv_v2bootargs.fd_stdin , &inc, 0x1) == 1) {
|
|
i = inc;
|
|
} else {
|
|
i = -1;
|
|
}
|
|
break;
|
|
default:
|
|
i = -1;
|
|
break;
|
|
};
|
|
restore_current();
|
|
spin_unlock_irqrestore(&prom_lock, flags);
|
|
return i; /* Ugh, we could spin forever on unsupported proms ;( */
|
|
}
|
|
|
|
/* Non blocking put character to console device, returns -1 if
|
|
* unsuccessful.
|
|
*/
|
|
int
|
|
prom_nbputchar(char c)
|
|
{
|
|
static char outc;
|
|
unsigned long flags;
|
|
int i = -1;
|
|
|
|
spin_lock_irqsave(&prom_lock, flags);
|
|
switch(prom_vers) {
|
|
case PROM_V0:
|
|
case PROM_SUN4:
|
|
i = (*(romvec->pv_nbputchar))(c);
|
|
break;
|
|
case PROM_V2:
|
|
case PROM_V3:
|
|
outc = c;
|
|
if( (*(romvec->pv_v2devops).v2_dev_write)(*romvec->pv_v2bootargs.fd_stdout, &outc, 0x1) == 1)
|
|
i = 0;
|
|
else
|
|
i = -1;
|
|
break;
|
|
default:
|
|
i = -1;
|
|
break;
|
|
};
|
|
restore_current();
|
|
spin_unlock_irqrestore(&prom_lock, flags);
|
|
return i; /* Ugh, we could spin forever on unsupported proms ;( */
|
|
}
|
|
|
|
/* Blocking version of get character routine above. */
|
|
char
|
|
prom_getchar(void)
|
|
{
|
|
int character;
|
|
while((character = prom_nbgetchar()) == -1) ;
|
|
return (char) character;
|
|
}
|
|
|
|
/* Blocking version of put character routine above. */
|
|
void
|
|
prom_putchar(char c)
|
|
{
|
|
while(prom_nbputchar(c) == -1) ;
|
|
return;
|
|
}
|