blob: f95edcc54fd5cb33591798657daf7e716ba77211 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/string.h>
14
David S. Miller595a2512010-11-30 20:15:58 -080015static int __prom_console_write_buf(const char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070016{
David S. Miller25edd692010-08-23 23:10:57 -070017 unsigned long args[7];
David S. Miller595a2512010-11-30 20:15:58 -080018 int ret;
David S. Miller25edd692010-08-23 23:10:57 -070019
20 args[0] = (unsigned long) "write";
21 args[1] = 3;
22 args[2] = 1;
23 args[3] = (unsigned int) prom_stdout;
David S. Millere62cac12010-11-30 14:33:29 -080024 args[4] = (unsigned long) buf;
David S. Miller595a2512010-11-30 20:15:58 -080025 args[5] = (unsigned int) len;
David S. Miller25edd692010-08-23 23:10:57 -070026 args[6] = (unsigned long) -1;
27
28 p1275_cmd_direct(args);
29
David S. Miller595a2512010-11-30 20:15:58 -080030 ret = (int) args[6];
31 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 return -1;
David S. Miller595a2512010-11-30 20:15:58 -080033 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034}
35
David S. Miller595a2512010-11-30 20:15:58 -080036void prom_console_write_buf(const char *buf, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
David S. Miller595a2512010-11-30 20:15:58 -080038 while (len) {
39 int n = __prom_console_write_buf(buf, len);
40 if (n < 0)
41 continue;
42 len -= n;
43 buf += len;
David S. Millere62cac12010-11-30 14:33:29 -080044 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070045}