blob: d83135a9830ead5f677b5af278fc183949d6df30 [file] [log] [blame]
Milton Miller7f853352005-09-06 11:56:02 +10001/*
Anand Gadiyar411c9402009-07-07 15:24:23 +05302 * udbg for zilog scc ports as found on Apple PowerMacs
Milton Miller7f853352005-09-06 11:56:02 +10003 *
4 * Copyright (C) 2001-2005 PPC 64 Team, IBM Corp
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
Milton Miller7f853352005-09-06 11:56:02 +100011#include <linux/types.h>
Milton Miller188d2ce2005-09-06 11:57:00 +100012#include <asm/udbg.h>
Milton Miller7f853352005-09-06 11:56:02 +100013#include <asm/processor.h>
Milton Miller7f853352005-09-06 11:56:02 +100014#include <asm/io.h>
15#include <asm/prom.h>
16#include <asm/pmac_feature.h>
17
18extern u8 real_readb(volatile u8 __iomem *addr);
19extern void real_writeb(u8 data, volatile u8 __iomem *addr);
20
21#define SCC_TXRDY 4
22#define SCC_RXRDY 1
23
24static volatile u8 __iomem *sccc;
25static volatile u8 __iomem *sccd;
26
Benjamin Herrenschmidt51d30822005-11-23 17:57:25 +110027static void udbg_scc_putc(char c)
Milton Miller7f853352005-09-06 11:56:02 +100028{
29 if (sccc) {
30 while ((in_8(sccc) & SCC_TXRDY) == 0)
31 ;
32 out_8(sccd, c);
33 if (c == '\n')
34 udbg_scc_putc('\r');
35 }
36}
37
38static int udbg_scc_getc_poll(void)
39{
40 if (sccc) {
41 if ((in_8(sccc) & SCC_RXRDY) != 0)
42 return in_8(sccd);
43 else
44 return -1;
45 }
46 return -1;
47}
48
Benjamin Herrenschmidtbb6b9b22005-11-30 16:54:12 +110049static int udbg_scc_getc(void)
Milton Miller7f853352005-09-06 11:56:02 +100050{
51 if (sccc) {
52 while ((in_8(sccc) & SCC_RXRDY) == 0)
53 ;
54 return in_8(sccd);
55 }
Benjamin Herrenschmidtbb6b9b22005-11-30 16:54:12 +110056 return -1;
Milton Miller7f853352005-09-06 11:56:02 +100057}
58
59static unsigned char scc_inittab[] = {
60 13, 0, /* set baud rate divisor */
61 12, 0,
62 14, 1, /* baud rate gen enable, src=rtxc */
63 11, 0x50, /* clocks = br gen */
64 5, 0xea, /* tx 8 bits, assert DTR & RTS */
65 4, 0x46, /* x16 clock, 1 stop */
66 3, 0xc1, /* rx enable, 8 bits */
67};
68
Benjamin Herrenschmidt51d30822005-11-23 17:57:25 +110069void udbg_scc_init(int force_scc)
Milton Miller7f853352005-09-06 11:56:02 +100070{
Jeremy Kerr018a3d12006-07-12 15:40:29 +100071 const u32 *reg;
Milton Miller7f853352005-09-06 11:56:02 +100072 unsigned long addr;
Benjamin Herrenschmidt51d30822005-11-23 17:57:25 +110073 struct device_node *stdout = NULL, *escc = NULL, *macio = NULL;
74 struct device_node *ch, *ch_def = NULL, *ch_a = NULL;
Jeremy Kerr018a3d12006-07-12 15:40:29 +100075 const char *path;
Milton Miller7f853352005-09-06 11:56:02 +100076 int i, x;
77
Benjamin Herrenschmidt51d30822005-11-23 17:57:25 +110078 escc = of_find_node_by_name(NULL, "escc");
79 if (escc == NULL)
80 goto bail;
81 macio = of_get_parent(escc);
82 if (macio == NULL)
83 goto bail;
Stephen Rothwelle2eb6392007-04-03 22:26:41 +100084 path = of_get_property(of_chosen, "linux,stdout-path", NULL);
Benjamin Herrenschmidt51d30822005-11-23 17:57:25 +110085 if (path != NULL)
86 stdout = of_find_node_by_path(path);
87 for (ch = NULL; (ch = of_get_next_child(escc, ch)) != NULL;) {
88 if (ch == stdout)
89 ch_def = of_node_get(ch);
90 if (strcmp(ch->name, "ch-a") == 0)
91 ch_a = of_node_get(ch);
92 }
93 if (ch_def == NULL && !force_scc)
94 goto bail;
Milton Miller7f853352005-09-06 11:56:02 +100095
Benjamin Herrenschmidt51d30822005-11-23 17:57:25 +110096 ch = ch_def ? ch_def : ch_a;
97
Milton Miller7f853352005-09-06 11:56:02 +100098 /* Get address within mac-io ASIC */
Stephen Rothwelle2eb6392007-04-03 22:26:41 +100099 reg = of_get_property(escc, "reg", NULL);
Milton Miller7f853352005-09-06 11:56:02 +1000100 if (reg == NULL)
Benjamin Herrenschmidt51d30822005-11-23 17:57:25 +1100101 goto bail;
Milton Miller7f853352005-09-06 11:56:02 +1000102 addr = reg[0];
Benjamin Herrenschmidt51d30822005-11-23 17:57:25 +1100103
Milton Miller7f853352005-09-06 11:56:02 +1000104 /* Get address of mac-io PCI itself */
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000105 reg = of_get_property(macio, "assigned-addresses", NULL);
Milton Miller7f853352005-09-06 11:56:02 +1000106 if (reg == NULL)
Benjamin Herrenschmidt51d30822005-11-23 17:57:25 +1100107 goto bail;
Milton Miller7f853352005-09-06 11:56:02 +1000108 addr += reg[2];
Benjamin Herrenschmidt51d30822005-11-23 17:57:25 +1100109
110 /* Lock the serial port */
111 pmac_call_feature(PMAC_FTR_SCC_ENABLE, ch,
112 PMAC_SCC_ASYNC | PMAC_SCC_FLAG_XMON, 1);
113
Benjamin Herrenschmidt51d30822005-11-23 17:57:25 +1100114 if (ch == ch_a)
115 addr += 0x20;
Stephen Rothwellaf308372006-03-23 17:38:10 +1100116 sccc = ioremap(addr & PAGE_MASK, PAGE_SIZE) ;
Milton Miller7f853352005-09-06 11:56:02 +1000117 sccc += addr & ~PAGE_MASK;
118 sccd = sccc + 0x10;
119
Milton Miller7f853352005-09-06 11:56:02 +1000120 mb();
121
122 for (i = 20000; i != 0; --i)
123 x = in_8(sccc);
124 out_8(sccc, 0x09); /* reset A or B side */
125 out_8(sccc, 0xc0);
Benjamin Herrenschmidt2ec6ef12006-10-03 14:47:58 +1000126
127 /* If SCC was the OF output port, read the BRG value, else
Benjamin Herrenschmidtf023bf02008-07-28 12:06:19 +1000128 * Setup for 38400 or 57600 8N1 depending on the machine
Benjamin Herrenschmidt2ec6ef12006-10-03 14:47:58 +1000129 */
130 if (ch_def != NULL) {
131 out_8(sccc, 13);
132 scc_inittab[1] = in_8(sccc);
133 out_8(sccc, 12);
134 scc_inittab[3] = in_8(sccc);
Grant Likely71a157e2010-02-01 21:34:14 -0700135 } else if (of_machine_is_compatible("RackMac1,1")
136 || of_machine_is_compatible("RackMac1,2")
137 || of_machine_is_compatible("MacRISC4")) {
Benjamin Herrenschmidtf023bf02008-07-28 12:06:19 +1000138 /* Xserves and G5s default to 57600 */
139 scc_inittab[1] = 0;
140 scc_inittab[3] = 0;
141 } else {
142 /* Others default to 38400 */
143 scc_inittab[1] = 0;
144 scc_inittab[3] = 1;
Benjamin Herrenschmidt2ec6ef12006-10-03 14:47:58 +1000145 }
146
Milton Miller7f853352005-09-06 11:56:02 +1000147 for (i = 0; i < sizeof(scc_inittab); ++i)
148 out_8(sccc, scc_inittab[i]);
149
Benjamin Herrenschmidt2ec6ef12006-10-03 14:47:58 +1000150
Milton Millerc8f1c8b2005-09-06 11:56:42 +1000151 udbg_putc = udbg_scc_putc;
152 udbg_getc = udbg_scc_getc;
153 udbg_getc_poll = udbg_scc_getc_poll;
Milton Miller7f853352005-09-06 11:56:02 +1000154
155 udbg_puts("Hello World !\n");
Benjamin Herrenschmidt51d30822005-11-23 17:57:25 +1100156
157 bail:
158 of_node_put(macio);
159 of_node_put(escc);
160 of_node_put(stdout);
161 of_node_put(ch_def);
162 of_node_put(ch_a);
Milton Miller7f853352005-09-06 11:56:02 +1000163}
164
Benjamin Herrenschmidt51d30822005-11-23 17:57:25 +1100165#ifdef CONFIG_PPC64
166static void udbg_real_scc_putc(char c)
Milton Miller7f853352005-09-06 11:56:02 +1000167{
168 while ((real_readb(sccc) & SCC_TXRDY) == 0)
169 ;
170 real_writeb(c, sccd);
171 if (c == '\n')
172 udbg_real_scc_putc('\r');
173}
174
Michael Ellerman296167a2006-01-11 11:54:09 +1100175void __init udbg_init_pmac_realmode(void)
Milton Miller7f853352005-09-06 11:56:02 +1000176{
177 sccc = (volatile u8 __iomem *)0x80013020ul;
178 sccd = (volatile u8 __iomem *)0x80013030ul;
179
Milton Millerc8f1c8b2005-09-06 11:56:42 +1000180 udbg_putc = udbg_real_scc_putc;
181 udbg_getc = NULL;
182 udbg_getc_poll = NULL;
Milton Miller7f853352005-09-06 11:56:02 +1000183}
Benjamin Herrenschmidt51d30822005-11-23 17:57:25 +1100184#endif /* CONFIG_PPC64 */