]> Git Repo - J-u-boot.git/blame - drivers/serial/arm_dcc.c
serial: arm_dcc: Remove stdio structure support
[J-u-boot.git] / drivers / serial / arm_dcc.c
CommitLineData
4f572898
JCPV
1/*
2 * Copyright (C) 2004-2007 ARM Limited.
3 * Copyright (C) 2008 Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License version 2
7 * as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * As a special exception, if other files instantiate templates or use macros
19 * or inline functions from this file, or you compile this file and link it
20 * with other works to produce a work based on this file, this file does not
21 * by itself cause the resulting work to be covered by the GNU General Public
22 * License. However the source code for this file must still be made available
23 * in accordance with section (3) of the GNU General Public License.
24
25 * This exception does not invalidate any other reasons why a work based on
26 * this file might be covered by the GNU General Public License.
27 */
28
29#include <common.h>
4f572898 30
66e8f9da 31#if defined(CONFIG_CPU_V6)
4f572898 32/*
66e8f9da 33 * ARMV6
4f572898 34 */
66e8f9da
JCPV
35#define DCC_RBIT (1 << 30)
36#define DCC_WBIT (1 << 29)
4f572898 37
66e8f9da
JCPV
38#define write_dcc(x) \
39 __asm__ volatile ("mcr p14, 0, %0, c0, c5, 0\n" : : "r" (x))
4f572898 40
66e8f9da
JCPV
41#define read_dcc(x) \
42 __asm__ volatile ("mrc p14, 0, %0, c0, c5, 0\n" : "=r" (x))
4f572898 43
66e8f9da
JCPV
44#define status_dcc(x) \
45 __asm__ volatile ("mrc p14, 0, %0, c0, c1, 0\n" : "=r" (x))
4f572898 46
65a76d4f
JCPV
47#elif defined(CONFIG_CPU_XSCALE)
48/*
49 * XSCALE
50 */
51#define DCC_RBIT (1 << 31)
52#define DCC_WBIT (1 << 28)
53
54#define write_dcc(x) \
55 __asm__ volatile ("mcr p14, 0, %0, c8, c0, 0\n" : : "r" (x))
56
57#define read_dcc(x) \
58 __asm__ volatile ("mrc p14, 0, %0, c9, c0, 0\n" : "=r" (x))
59
60#define status_dcc(x) \
61 __asm__ volatile ("mrc p14, 0, %0, c14, c0, 0\n" : "=r" (x))
62
66e8f9da
JCPV
63#else
64#define DCC_RBIT (1 << 0)
65#define DCC_WBIT (1 << 1)
4f572898 66
66e8f9da
JCPV
67#define write_dcc(x) \
68 __asm__ volatile ("mcr p14, 0, %0, c1, c0, 0\n" : : "r" (x))
4f572898 69
66e8f9da
JCPV
70#define read_dcc(x) \
71 __asm__ volatile ("mrc p14, 0, %0, c1, c0, 0\n" : "=r" (x))
4f572898 72
66e8f9da
JCPV
73#define status_dcc(x) \
74 __asm__ volatile ("mrc p14, 0, %0, c0, c0, 0\n" : "=r" (x))
75
76#endif
4f572898 77
66e8f9da
JCPV
78#define can_read_dcc(x) do { \
79 status_dcc(x); \
80 x &= DCC_RBIT; \
4f572898
JCPV
81 } while (0);
82
66e8f9da
JCPV
83#define can_write_dcc(x) do { \
84 status_dcc(x); \
85 x &= DCC_WBIT; \
86 x = (x == 0); \
4f572898
JCPV
87 } while (0);
88
89#define TIMEOUT_COUNT 0x4000000
90
4f572898
JCPV
91int arm_dcc_init(void)
92{
4f572898
JCPV
93 return 0;
94}
95
96int arm_dcc_getc(void)
97{
98 int ch;
99 register unsigned int reg;
100
66e8f9da
JCPV
101 do {
102 can_read_dcc(reg);
103 } while (!reg);
104 read_dcc(ch);
4f572898
JCPV
105
106 return ch;
107}
108
109void arm_dcc_putc(char ch)
110{
111 register unsigned int reg;
112 unsigned int timeout_count = TIMEOUT_COUNT;
113
66e8f9da
JCPV
114 while (--timeout_count) {
115 can_write_dcc(reg);
116 if (reg)
117 break;
4f572898 118 }
66e8f9da
JCPV
119 if (timeout_count == 0)
120 return;
121 else
122 write_dcc(ch);
4f572898
JCPV
123}
124
125void arm_dcc_puts(const char *s)
126{
127 while (*s)
128 arm_dcc_putc(*s++);
129}
130
131int arm_dcc_tstc(void)
132{
133 register unsigned int reg;
134
66e8f9da 135 can_read_dcc(reg);
4f572898
JCPV
136
137 return reg;
138}
139
e70fb539
MS
140__weak struct serial_device *default_serial_console(void)
141{
142 return NULL;
143}
This page took 0.184024 seconds and 4 git commands to generate.