blob: 9de6c8cfe04a555b26d347b05a414944076592e0 [file] [log] [blame]
David S. Millerd979f172007-10-27 00:13:04 -07001/* console.c: Routines that deal with sending and receiving IO
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * to/from the current console device using the PROM.
3 *
David S. Millerd979f172007-10-27 00:13:04 -07004 * Copyright (C) 1995 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Copyright (C) 1996,1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
6 */
7
8#include <linux/types.h>
9#include <linux/kernel.h>
10#include <linux/sched.h>
11#include <asm/openprom.h>
12#include <asm/oplib.h>
13#include <asm/system.h>
14#include <linux/string.h>
15
David S. Miller595a2512010-11-30 20:15:58 -080016static int __prom_console_write_buf(const char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017{
David S. Miller25edd692010-08-23 23:10:57 -070018 unsigned long args[7];
David S. Miller595a2512010-11-30 20:15:58 -080019 int ret;
David S. Miller25edd692010-08-23 23:10:57 -070020
21 args[0] = (unsigned long) "write";
22 args[1] = 3;
23 args[2] = 1;
24 args[3] = (unsigned int) prom_stdout;
David S. Millere62cac12010-11-30 14:33:29 -080025 args[4] = (unsigned long) buf;
David S. Miller595a2512010-11-30 20:15:58 -080026 args[5] = (unsigned int) len;
David S. Miller25edd692010-08-23 23:10:57 -070027 args[6] = (unsigned long) -1;
28
29 p1275_cmd_direct(args);
30
David S. Miller595a2512010-11-30 20:15:58 -080031 ret = (int) args[6];
32 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 return -1;
David S. Miller595a2512010-11-30 20:15:58 -080034 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035}
36
David S. Miller595a2512010-11-30 20:15:58 -080037void prom_console_write_buf(const char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
David S. Miller595a2512010-11-30 20:15:58 -080039 while (len) {
40 int n = __prom_console_write_buf(buf, len);
41 if (n < 0)
42 continue;
43 len -= n;
44 buf += len;
David S. Millere62cac12010-11-30 14:33:29 -080045 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070046}