]>
Commit | Line | Data |
---|---|---|
1c79356b A |
1 | /* |
2 | * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. | |
3 | * | |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
6 | * The contents of this file constitute Original Code as defined in and | |
7 | * are subject to the Apple Public Source License Version 1.1 (the | |
8 | * "License"). You may not use this file except in compliance with the | |
9 | * License. Please obtain a copy of the License at | |
10 | * http://www.apple.com/publicsource and read it before using this file. | |
11 | * | |
12 | * This Original Code and all software distributed under the License are | |
13 | * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
14 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
15 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
16 | * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the | |
17 | * License for the specific language governing rights and limitations | |
18 | * under the License. | |
19 | * | |
20 | * @APPLE_LICENSE_HEADER_END@ | |
21 | */ | |
22 | /* | |
23 | * file: pe_kprintf.c | |
24 | * PPC platform expert debugging output initialization. | |
25 | */ | |
26 | #include <stdarg.h> | |
27 | #include <machine/machine_routines.h> | |
28 | #include <pexpert/protos.h> | |
29 | #include <pexpert/pexpert.h> | |
30 | #include <pexpert/ppc/powermac.h> | |
31 | #include <kern/debug.h> | |
32 | #include <kern/simple_lock.h> | |
33 | ||
34 | /* extern references */ | |
35 | extern void init_display_putc(unsigned char*, int, int); | |
36 | extern void display_putc(char c); | |
37 | extern int scc_putc(int unit, int line, int c); | |
38 | extern void cnputc(char c); | |
39 | ||
40 | /* Internal routines -- eventually put this in serial driver */ | |
41 | void serial_putc(char c); | |
42 | ||
43 | /* Globals */ | |
44 | void (*PE_kputc)(char c) = 0; | |
45 | ||
46 | unsigned int disableSerialOuput = TRUE; | |
47 | ||
48 | ||
49 | static struct slock kprintf_lock; | |
50 | ||
51 | void PE_init_kprintf(boolean_t vm_initialized) | |
52 | { | |
53 | static vm_offset_t scc; | |
54 | unsigned int boot_arg; | |
55 | ||
56 | if (PE_state.initialized == FALSE) | |
57 | panic("Platform Expert not initialized"); | |
58 | ||
59 | if (!vm_initialized) | |
60 | { | |
61 | if (PE_parse_boot_arg("debug", &boot_arg)) | |
62 | if(boot_arg & DB_KPRT) disableSerialOuput = FALSE; | |
63 | ||
64 | if( (scc = PE_find_scc())) | |
65 | { | |
66 | initialize_serial( (void *) scc ); | |
67 | PE_kputc = serial_putc; | |
68 | ||
69 | simple_lock_init(&kprintf_lock, 0); | |
70 | } else | |
71 | PE_kputc = cnputc; | |
72 | ||
73 | } else if( scc){ | |
74 | initialize_serial( (void *) io_map( scc, 0x1000) ); | |
75 | } | |
76 | ||
77 | #if 0 | |
78 | /* | |
79 | * FUTURE: eventually let the boot command determine where | |
80 | * the debug output will be, serial, video, etc. | |
81 | */ | |
82 | switch (PE_state.debug_video.v_display) { | |
83 | case kDebugTypeSerial: | |
84 | PE_kputc = serial_putc; | |
85 | break; | |
86 | ||
87 | case kDebugTypeDisplay: | |
88 | init_display_putc( (unsigned char*)PE_state.debug_video.v_baseAddr, | |
89 | PE_state.debug_video.v_rowBytes, | |
90 | PE_state.debug_video.v_height); | |
91 | PE_kputc = display_putc; | |
92 | break; | |
93 | ||
94 | default: | |
95 | PE_state.debug_video.v_baseAddr = 0; | |
96 | } | |
97 | #endif | |
98 | } | |
99 | ||
100 | void serial_putc(char c) | |
101 | { | |
102 | (void) scc_putc(0, 1, c); | |
103 | if (c == '\n') (void) scc_putc(0, 1, '\r'); | |
104 | ||
105 | #if 0 | |
106 | (void) scc_putc(0, (int)PE_state.debug_video.v_baseAddr, c); | |
107 | if (c == '\n') (void) scc_putc(0, (int)PE_state.debug_video.v_baseAddr, '\r'); | |
108 | #endif | |
109 | } | |
110 | ||
111 | void kprintf(const char *fmt, ...) | |
112 | { | |
113 | va_list listp; | |
114 | boolean_t state; | |
115 | ||
116 | state = ml_set_interrupts_enabled(FALSE); | |
117 | simple_lock(&kprintf_lock); | |
118 | ||
119 | if (!disableSerialOuput) { | |
120 | va_start(listp, fmt); | |
121 | _doprnt(fmt, &listp, PE_kputc, 16); | |
122 | va_end(listp); | |
123 | } | |
124 | ||
125 | simple_unlock(&kprintf_lock); | |
126 | ml_set_interrupts_enabled(state); | |
127 | } | |
128 |