2007-10-27 09:13:04 +02:00
|
|
|
/* console.c: Routines that deal with sending and receiving IO
|
2005-04-17 00:20:36 +02:00
|
|
|
* to/from the current console device using the PROM.
|
|
|
|
*
|
2007-10-27 09:13:04 +02:00
|
|
|
* Copyright (C) 1995 David S. Miller (davem@davemloft.net)
|
2005-04-17 00:20:36 +02:00
|
|
|
* Copyright (C) 1996,1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/sched.h>
|
|
|
|
#include <asm/openprom.h>
|
|
|
|
#include <asm/oplib.h>
|
|
|
|
#include <asm/system.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
|
|
|
|
extern int prom_stdin, prom_stdout;
|
|
|
|
|
|
|
|
/* Non blocking get character from console input device, returns -1
|
|
|
|
* if no input was taken. This can be used for polling.
|
|
|
|
*/
|
2007-10-27 09:13:04 +02:00
|
|
|
inline int
|
2005-04-17 00:20:36 +02:00
|
|
|
prom_nbgetchar(void)
|
|
|
|
{
|
|
|
|
char inc;
|
|
|
|
|
|
|
|
if (p1275_cmd("read", P1275_ARG(1,P1275_ARG_OUT_BUF)|
|
|
|
|
P1275_INOUT(3,1),
|
|
|
|
prom_stdin, &inc, P1275_SIZE(1)) == 1)
|
|
|
|
return inc;
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Non blocking put character to console device, returns -1 if
|
|
|
|
* unsuccessful.
|
|
|
|
*/
|
2007-10-27 09:13:04 +02:00
|
|
|
inline int
|
2005-04-17 00:20:36 +02:00
|
|
|
prom_nbputchar(char c)
|
|
|
|
{
|
|
|
|
char outc;
|
|
|
|
|
|
|
|
outc = c;
|
|
|
|
if (p1275_cmd("write", P1275_ARG(1,P1275_ARG_IN_BUF)|
|
|
|
|
P1275_INOUT(3,1),
|
|
|
|
prom_stdout, &outc, P1275_SIZE(1)) == 1)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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)
|
|
|
|
{
|
|
|
|
prom_nbputchar(c);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
[SPARC64]: Rewrite bootup sequence.
Instead of all of this cpu-specific code to remap the kernel
to the correct location, use portable firmware calls to do
this instead.
What we do now is the following in position independant
assembler:
chosen_node = prom_finddevice("/chosen");
prom_mmu_ihandle_cache = prom_getint(chosen_node, "mmu");
vaddr = 4MB_ALIGN(current_text_addr());
prom_translate(vaddr, &paddr_high, &paddr_low, &mode);
prom_boot_mapping_mode = mode;
prom_boot_mapping_phys_high = paddr_high;
prom_boot_mapping_phys_low = paddr_low;
prom_map(-1, 8 * 1024 * 1024, KERNBASE, paddr_low);
and that replaces the massive amount of by-hand TLB probing and
programming we used to do here.
The new code should also handle properly the case where the kernel
is mapped at the correct address already (think: future kexec
support).
Consequently, the bulk of remap_kernel() dies as does the entirety
of arch/sparc64/prom/map.S
We try to share some strings in the PROM library with the ones used
at bootup, and while we're here mark input strings to oplib.h routines
with "const" when appropriate.
There are many more simplifications now possible. For one thing, we
can consolidate the two copies we now have of a lot of cpu setup code
sitting in head.S and trampoline.S.
This is a significant step towards CONFIG_DEBUG_PAGEALLOC support.
Signed-off-by: David S. Miller <davem@davemloft.net>
2005-09-23 05:11:33 +02:00
|
|
|
prom_puts(const char *s, int len)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
p1275_cmd("write", P1275_ARG(1,P1275_ARG_IN_BUF)|
|
|
|
|
P1275_INOUT(3,1),
|
|
|
|
prom_stdout, s, P1275_SIZE(len));
|
|
|
|
}
|