| 
									
										
										
										
											2009-07-02 23:20:20 +08:00
										 |  |  | /*  early printk support
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  Copyright (c) 2009 Philippe Vachon <philippe@cowpig.ca> | 
					
						
							| 
									
										
										
										
											2009-10-16 14:17:16 +08:00
										 |  |  |  *  Copyright (c) 2009 Lemote Inc. | 
					
						
							| 
									
										
										
										
											2010-01-04 17:16:51 +08:00
										 |  |  |  *  Author: Wu Zhangjin, wuzhangjin@gmail.com | 
					
						
							| 
									
										
										
										
											2009-07-02 23:20:20 +08:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2013-01-22 12:59:30 +01:00
										 |  |  |  *  This program is free software; you can redistribute	 it and/or modify it | 
					
						
							|  |  |  |  *  under  the terms of	 the GNU General  Public License as published by the | 
					
						
							|  |  |  |  *  Free Software Foundation;  either version 2 of the	License, or (at your | 
					
						
							| 
									
										
										
										
											2009-07-02 23:20:20 +08:00
										 |  |  |  *  option) any later version. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #include <linux/serial_reg.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-02 23:23:03 +08:00
										 |  |  | #include <loongson.h>
 | 
					
						
							| 
									
										
										
										
											2009-07-02 23:20:20 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define PORT(base, offset) (u8 *)(base + offset)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-16 14:17:16 +08:00
										 |  |  | static inline unsigned int serial_in(unsigned char *base, int offset) | 
					
						
							| 
									
										
										
										
											2009-07-02 23:20:20 +08:00
										 |  |  | { | 
					
						
							|  |  |  | 	return readb(PORT(base, offset)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-16 14:17:16 +08:00
										 |  |  | static inline void serial_out(unsigned char *base, int offset, int value) | 
					
						
							| 
									
										
										
										
											2009-07-02 23:20:20 +08:00
										 |  |  | { | 
					
						
							|  |  |  | 	writeb(value, PORT(base, offset)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void prom_putchar(char c) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-11-06 18:35:34 +08:00
										 |  |  | 	int timeout; | 
					
						
							|  |  |  | 	unsigned char *uart_base; | 
					
						
							| 
									
										
										
										
											2009-07-02 23:20:20 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-11-06 18:35:34 +08:00
										 |  |  | 	uart_base = (unsigned char *)_loongson_uart_base; | 
					
						
							|  |  |  | 	timeout = 1024; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while (((serial_in(uart_base, UART_LSR) & UART_LSR_THRE) == 0) && | 
					
						
							|  |  |  | 			(timeout-- > 0)) | 
					
						
							| 
									
										
										
										
											2009-07-02 23:20:20 +08:00
										 |  |  | 		; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	serial_out(uart_base, UART_TX, c); | 
					
						
							|  |  |  | } |