1 /* -*-C++-*- $NetBSD: sh_console.cpp,v 1.11 2005/12/11 12:17:28 christos Exp $ */
4 * Copyright (c) 2001, 2002 The NetBSD Foundation, Inc.
7 * This code is derived from software contributed to The NetBSD Foundation
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
33 #include <sh3/sh_console.h>
34 #include <sh3/dev/sh.h>
35 #include <sh3/dev/hd64461.h>
36 #include <sh3/dev/hd64465.h>
39 #include "../../../../hpcsh/include/console.h"
41 const struct SHConsole::console_info
42 SHConsole::_console_info
[] = {
43 { PLATID_CPU_SH_3
, PLATID_MACH_HP
, SCIFPrint
, BI_CNUSE_SCIF
, BI_CNUSE_HD64461VIDEO
},
44 { PLATID_CPU_SH_3_7709
, PLATID_MACH_HITACHI
, HD64461COMPrint
, BI_CNUSE_HD64461COM
, BI_CNUSE_HD64461VIDEO
},
45 { PLATID_CPU_SH_3_7709
, PLATID_MACH_CASIO_CASSIOPEIAA_A55V
, 0 , BI_CNUSE_BUILTIN
, BI_CNUSE_BUILTIN
},
46 { PLATID_CPU_SH_4_7750
, PLATID_MACH_HITACHI_PERSONA_HPW650PA
, HD64465COMPrint
, BI_CNUSE_HD64465COM
, BI_CNUSE_BUILTIN
},
47 { 0, 0, 0 } // terminator.
50 const struct SHConsole::console_info
*
51 SHConsole::selectBootConsole(Console
&cons
, enum consoleSelect select
)
53 const struct console_info
*tab
= _console_info
;
54 platid_mask_t target
, entry
;
56 target
.dw
.dw0
= HPC_PREFERENCE
.platid_hi
;
57 target
.dw
.dw1
= HPC_PREFERENCE
.platid_lo
;
59 // search apriori setting if any.
60 for (; tab
->cpu
; tab
++) {
61 entry
.dw
.dw0
= tab
->cpu
;
62 entry
.dw
.dw1
= tab
->machine
;
63 if (platid_match(&target
, &entry
)) {
66 cons
.setBootConsole(tab
->serial_console
);
69 cons
.setBootConsole(tab
->video_console
);
78 SHConsole::SHConsole()
84 SHConsole::~SHConsole()
96 const struct console_info
*tab
= selectBootConsole(*this, SERIAL
);
98 SetKMode(1); // Native method access P4.
102 // override default instance.
103 Console::_instance
= this;
109 SHConsole::print(const TCHAR
*fmt
, ...)
112 SETUP_WIDECHAR_BUFFER();
114 if (!setupMultibyteBuffer())
118 super::genericPrint(_bufm
);
124 SHConsole::SCIPrint(const char *buf
)
131 SHConsole::SCIFPrint(const char *buf
)
138 SHConsole::HD64461COMPrint(const char *buf
)
141 HD64461COM_PRINT(buf
);
145 SHConsole::HD64465COMPrint(const char *buf
)
148 HD64465COM_PRINT(buf
);