summaryrefslogtreecommitdiffstats
path: root/arch/m68k/cpu/cw_console_io.c
blob: b0575e4c8af4d66b0a3b34d1370287270e90c511 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
 * Copyright (c) 2008 Carsten Schlote <c.schlote@konzeptpark.de>
 * See file CREDITS for list of people who contributed to this project.
 *
 * This file is part of U-Boot V2.
 *
 * U-Boot V2 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 3 of the License, or
 * (at your option) any later version.
 *
 * U-Boot V2 is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with U-Boot V2.  If not, see <http://www.gnu.org/licenses/>.
 */

/** @file
 *  Debug output stubs over BDM for Codewarrior
 */
#include <common.h>
#include <command.h>
#include <console.h>
#include <reloc.h>
#include <init.h>

#ifdef CONFIG_HAS_EARLY_INIT


#if 0 // FIXME - make a CW debug port serial driver for u-boot

/*
 * The result of an I/O command can be any one of the following.
 */
typedef enum DSIOResult
{
	kDSIONoError	= 0x00,
	kDSIOError	= 0x01,
	kDSIOEOF	= 0x02
} DSIOResult;

/*
 *	MessageCommandID
 */
typedef enum MessageCommandID
{
	/*
	 * target->host support commands
	 */

	kDSWriteFile	= 0xD0,		/*		L2	L3		*/
	kDSReadFile	= 0xD1 		/*		L2	L3		*/

} MessageCommandID;


enum DSIOResult TransferData(
	MessageCommandID msg,
	unsigned char *buffer, int size,
	int * txsize
)
{
	enum DSIOResult iores = kDSIOError;
	unsigned long sized2=0;

	/* -- Call codewarrior stub -- */
	__asm__ __volatile__ (
"       move.l 	%[cmd],%%d0    \n"
"       move.l 	#0,%%d1         \n"
"       move.l 	%[size],%%d2    \n"
"       move.l 	%[buffer],%%d3  \n"
"	trap	#14            \n"
"	move.l	%%d1,%[txsize]  \n"
"	move.l  %%d0,%[res]     \n"
	: [res] "=r" (iores), [txsize] "=g" (sized2)
	: [cmd] "g" (msg), [size] "g" (size), [buffer] "g" (buffer)
	: "d2","d3" );

	if (txsize!=NULL) *txsize=sized2;
	return iores;
}

void *get_early_console_base(const char *name)
{
	return (void*)0xdeadbeef;
}

static unsigned char early_iobuffer[80];
static int early_iobuffer_cnt;

void early_console_putc(void *base, char c)
{
	early_iobuffer[early_iobuffer_cnt++] = c;
	if ( ( early_iobuffer_cnt >= sizeof(early_iobuffer)) ||
	     (c == '\n') )
	{
		TransferData(kDSWriteFile,early_iobuffer,early_iobuffer_cnt, NULL);
		early_iobuffer_cnt = 0;
	}
}

void early_console_init(void *base, int baudrate)
{
	early_iobuffer_cnt = 0;
}

//void early_console_start(const char *name, int baudrate)
//{
//}

#endif

#endif