| David S. Miller | d979f17 | 2007-10-27 00:13:04 -0700 | [diff] [blame] | 1 | /* console.c: Routines that deal with sending and receiving IO | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | *            to/from the current console device using the PROM. | 
|  | 3 | * | 
| David S. Miller | d979f17 | 2007-10-27 00:13:04 -0700 | [diff] [blame] | 4 | * Copyright (C) 1995 David S. Miller (davem@davemloft.net) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * 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. Miller | 595a251 | 2010-11-30 20:15:58 -0800 | [diff] [blame] | 16 | static int __prom_console_write_buf(const char *buf, int len) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | { | 
| David S. Miller | 25edd69 | 2010-08-23 23:10:57 -0700 | [diff] [blame] | 18 | unsigned long args[7]; | 
| David S. Miller | 595a251 | 2010-11-30 20:15:58 -0800 | [diff] [blame] | 19 | int ret; | 
| David S. Miller | 25edd69 | 2010-08-23 23:10:57 -0700 | [diff] [blame] | 20 |  | 
|  | 21 | args[0] = (unsigned long) "write"; | 
|  | 22 | args[1] = 3; | 
|  | 23 | args[2] = 1; | 
|  | 24 | args[3] = (unsigned int) prom_stdout; | 
| David S. Miller | e62cac1 | 2010-11-30 14:33:29 -0800 | [diff] [blame] | 25 | args[4] = (unsigned long) buf; | 
| David S. Miller | 595a251 | 2010-11-30 20:15:58 -0800 | [diff] [blame] | 26 | args[5] = (unsigned int) len; | 
| David S. Miller | 25edd69 | 2010-08-23 23:10:57 -0700 | [diff] [blame] | 27 | args[6] = (unsigned long) -1; | 
|  | 28 |  | 
|  | 29 | p1275_cmd_direct(args); | 
|  | 30 |  | 
| David S. Miller | 595a251 | 2010-11-30 20:15:58 -0800 | [diff] [blame] | 31 | ret = (int) args[6]; | 
|  | 32 | if (ret < 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | return -1; | 
| David S. Miller | 595a251 | 2010-11-30 20:15:58 -0800 | [diff] [blame] | 34 | return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | } | 
|  | 36 |  | 
| David S. Miller | 595a251 | 2010-11-30 20:15:58 -0800 | [diff] [blame] | 37 | void prom_console_write_buf(const char *buf, int len) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | { | 
| David S. Miller | 595a251 | 2010-11-30 20:15:58 -0800 | [diff] [blame] | 39 | 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. Miller | e62cac1 | 2010-11-30 14:33:29 -0800 | [diff] [blame] | 45 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | } |