]> git.sur5r.net Git - u-boot/blob - arch/powerpc/cpu/mpc512x/serial.c
serial: mpc512x: Move serial registration from serial_initialize()
[u-boot] / arch / powerpc / cpu / mpc512x / serial.c
1 /*
2  * (C) Copyright 2000 - 2010
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * See file CREDITS for list of people who contributed to this
6  * project.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of
11  * the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21  * MA 02111-1307 USA
22  *
23  * Based ont the MPC5200 PSC driver.
24  * Adapted for MPC512x by Jan Wrobel <wrr@semihalf.com>
25  */
26
27 /*
28  * Minimal serial functions needed to use one of the PSC ports
29  * as serial console interface.
30  */
31
32 #include <common.h>
33 #include <linux/compiler.h>
34 #include <asm/io.h>
35 #include <asm/processor.h>
36 #include <serial.h>
37
38 DECLARE_GLOBAL_DATA_PTR;
39
40 #if defined(CONFIG_PSC_CONSOLE) || defined(CONFIG_SERIAL_MULTI)
41
42 static void fifo_init (volatile psc512x_t *psc)
43 {
44         volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
45         u32 tfsize, rfsize;
46
47         /* reset Rx & Tx fifo slice */
48         out_be32(&psc->rfcmd, PSC_FIFO_RESET_SLICE);
49         out_be32(&psc->tfcmd, PSC_FIFO_RESET_SLICE);
50
51         /* disable Tx & Rx FIFO interrupts */
52         out_be32(&psc->rfintmask, 0);
53         out_be32(&psc->tfintmask, 0);
54
55 #if defined(CONFIG_SERIAL_MULTI)
56         switch (((u32)psc & 0xf00) >> 8) {
57         case 0:
58                 tfsize = FIFOC_PSC0_TX_SIZE | (FIFOC_PSC0_TX_ADDR << 16);
59                 rfsize = FIFOC_PSC0_RX_SIZE | (FIFOC_PSC0_RX_ADDR << 16);
60                 break;
61         case 1:
62                 tfsize = FIFOC_PSC1_TX_SIZE | (FIFOC_PSC1_TX_ADDR << 16);
63                 rfsize = FIFOC_PSC1_RX_SIZE | (FIFOC_PSC1_RX_ADDR << 16);
64                 break;
65         case 2:
66                 tfsize = FIFOC_PSC2_TX_SIZE | (FIFOC_PSC2_TX_ADDR << 16);
67                 rfsize = FIFOC_PSC2_RX_SIZE | (FIFOC_PSC2_RX_ADDR << 16);
68                 break;
69         case 3:
70                 tfsize = FIFOC_PSC3_TX_SIZE | (FIFOC_PSC3_TX_ADDR << 16);
71                 rfsize = FIFOC_PSC3_RX_SIZE | (FIFOC_PSC3_RX_ADDR << 16);
72                 break;
73         case 4:
74                 tfsize = FIFOC_PSC4_TX_SIZE | (FIFOC_PSC4_TX_ADDR << 16);
75                 rfsize = FIFOC_PSC4_RX_SIZE | (FIFOC_PSC4_RX_ADDR << 16);
76                 break;
77         case 5:
78                 tfsize = FIFOC_PSC5_TX_SIZE | (FIFOC_PSC5_TX_ADDR << 16);
79                 rfsize = FIFOC_PSC5_RX_SIZE | (FIFOC_PSC5_RX_ADDR << 16);
80                 break;
81         case 6:
82                 tfsize = FIFOC_PSC6_TX_SIZE | (FIFOC_PSC6_TX_ADDR << 16);
83                 rfsize = FIFOC_PSC6_RX_SIZE | (FIFOC_PSC6_RX_ADDR << 16);
84                 break;
85         case 7:
86                 tfsize = FIFOC_PSC7_TX_SIZE | (FIFOC_PSC7_TX_ADDR << 16);
87                 rfsize = FIFOC_PSC7_RX_SIZE | (FIFOC_PSC7_RX_ADDR << 16);
88                 break;
89         case 8:
90                 tfsize = FIFOC_PSC8_TX_SIZE | (FIFOC_PSC8_TX_ADDR << 16);
91                 rfsize = FIFOC_PSC8_RX_SIZE | (FIFOC_PSC8_RX_ADDR << 16);
92                 break;
93         case 9:
94                 tfsize = FIFOC_PSC9_TX_SIZE | (FIFOC_PSC9_TX_ADDR << 16);
95                 rfsize = FIFOC_PSC9_RX_SIZE | (FIFOC_PSC9_RX_ADDR << 16);
96                 break;
97         case 10:
98                 tfsize = FIFOC_PSC10_TX_SIZE | (FIFOC_PSC10_TX_ADDR << 16);
99                 rfsize = FIFOC_PSC10_RX_SIZE | (FIFOC_PSC10_RX_ADDR << 16);
100                 break;
101         case 11:
102                 tfsize = FIFOC_PSC11_TX_SIZE | (FIFOC_PSC11_TX_ADDR << 16);
103                 rfsize = FIFOC_PSC11_RX_SIZE | (FIFOC_PSC11_RX_ADDR << 16);
104                 break;
105         default:
106                 return;
107         }
108 #else
109         tfsize = CONSOLE_FIFO_TX_SIZE | (CONSOLE_FIFO_TX_ADDR << 16);
110         rfsize = CONSOLE_FIFO_RX_SIZE | (CONSOLE_FIFO_RX_ADDR << 16);
111 #endif
112         out_be32(&psc->tfsize, tfsize);
113         out_be32(&psc->rfsize, rfsize);
114
115         /* enable Tx & Rx FIFO slice */
116         out_be32(&psc->rfcmd, PSC_FIFO_ENABLE_SLICE);
117         out_be32(&psc->tfcmd, PSC_FIFO_ENABLE_SLICE);
118
119         out_be32(&im->fifoc.fifoc_cmd, FIFOC_DISABLE_CLOCK_GATE);
120         __asm__ volatile ("sync");
121 }
122
123 void serial_setbrg_dev(unsigned int idx)
124 {
125         volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
126         volatile psc512x_t *psc = (psc512x_t *) &im->psc[idx];
127         unsigned long baseclk, div;
128         unsigned long baudrate;
129         char buf[16];
130         char *br_env;
131
132         baudrate = gd->baudrate;
133         if (idx != CONFIG_PSC_CONSOLE) {
134                 /* Allows setting baudrate for other serial devices
135                  * on PSCx using environment. If not specified, use
136                  * the same baudrate as for console.
137                  */
138                 sprintf(buf, "psc%d_baudrate", idx);
139                 br_env = getenv(buf);
140                 if (br_env)
141                         baudrate = simple_strtoul(br_env, NULL, 10);
142
143                 debug("%s: idx %d, baudrate %ld\n", __func__, idx, baudrate);
144         }
145
146         /* calculate divisor for setting PSC CTUR and CTLR registers */
147         baseclk = (gd->ips_clk + 8) / 16;
148         div = (baseclk + (baudrate / 2)) / baudrate;
149
150         out_8(&psc->ctur, (div >> 8) & 0xff);
151         out_8(&psc->ctlr,  div & 0xff); /* set baudrate */
152 }
153
154 int serial_init_dev(unsigned int idx)
155 {
156         volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
157         volatile psc512x_t *psc = (psc512x_t *) &im->psc[idx];
158 #if defined(CONFIG_SERIAL_MULTI)
159         u32 reg;
160
161         reg = in_be32(&im->clk.sccr[0]);
162         out_be32(&im->clk.sccr[0], reg | CLOCK_SCCR1_PSC_EN(idx));
163 #endif
164
165         fifo_init (psc);
166
167         /* set MR register to point to MR1 */
168         out_8(&psc->command, PSC_SEL_MODE_REG_1);
169
170         /* disable Tx/Rx */
171         out_8(&psc->command, PSC_TX_DISABLE | PSC_RX_DISABLE);
172
173         /* choose the prescaler by 16 for the Tx/Rx clock generation */
174         out_be16(&psc->psc_clock_select, 0xdd00);
175
176         /* switch to UART mode */
177         out_be32(&psc->sicr, 0);
178
179         /* mode register points to mr1 */
180         /* configure parity, bit length and so on in mode register 1*/
181         out_8(&psc->mode, PSC_MODE_8_BITS | PSC_MODE_PARNONE);
182         /* now, mode register points to mr2 */
183         out_8(&psc->mode, PSC_MODE_1_STOPBIT);
184
185         /* set baudrate */
186         serial_setbrg_dev(idx);
187
188         /* disable all interrupts */
189         out_be16(&psc->psc_imr, 0);
190
191         /* reset and enable Rx/Tx */
192         out_8(&psc->command, PSC_RST_RX);
193         out_8(&psc->command, PSC_RST_TX);
194         out_8(&psc->command, PSC_RX_ENABLE | PSC_TX_ENABLE);
195
196         return 0;
197 }
198
199 int serial_uninit_dev(unsigned int idx)
200 {
201         volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
202         volatile psc512x_t *psc = (psc512x_t *) &im->psc[idx];
203         u32 reg;
204
205         out_8(&psc->command, PSC_RX_DISABLE | PSC_TX_DISABLE);
206         reg = in_be32(&im->clk.sccr[0]);
207         reg &= ~CLOCK_SCCR1_PSC_EN(idx);
208         out_be32(&im->clk.sccr[0], reg);
209
210         return 0;
211 }
212
213 void serial_putc_dev(unsigned int idx, const char c)
214 {
215         volatile immap_t *im = (immap_t *)CONFIG_SYS_IMMR;
216         volatile psc512x_t *psc = (psc512x_t *) &im->psc[idx];
217
218         if (c == '\n')
219                 serial_putc_dev(idx, '\r');
220
221         /* Wait for last character to go. */
222         while (!(in_be16(&psc->psc_status) & PSC_SR_TXEMP))
223                 ;
224
225         out_8(&psc->tfdata_8, c);
226 }
227
228 void serial_putc_raw_dev(unsigned int idx, const char c)
229 {
230         volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
231         volatile psc512x_t *psc = (psc512x_t *) &im->psc[idx];
232
233         /* Wait for last character to go. */
234         while (!(in_be16(&psc->psc_status) & PSC_SR_TXEMP))
235                 ;
236
237         out_8(&psc->tfdata_8, c);
238 }
239
240 void serial_puts_dev(unsigned int idx, const char *s)
241 {
242         while (*s)
243                 serial_putc_dev(idx, *s++);
244 }
245
246 int serial_getc_dev(unsigned int idx)
247 {
248         volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
249         volatile psc512x_t *psc = (psc512x_t *) &im->psc[idx];
250
251         /* Wait for a character to arrive. */
252         while (in_be32(&psc->rfstat) & PSC_FIFO_EMPTY)
253                 ;
254
255         return in_8(&psc->rfdata_8);
256 }
257
258 int serial_tstc_dev(unsigned int idx)
259 {
260         volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
261         volatile psc512x_t *psc = (psc512x_t *) &im->psc[idx];
262
263         return !(in_be32(&psc->rfstat) & PSC_FIFO_EMPTY);
264 }
265
266 void serial_setrts_dev(unsigned int idx, int s)
267 {
268         volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
269         volatile psc512x_t *psc = (psc512x_t *) &im->psc[idx];
270
271         if (s) {
272                 /* Assert RTS (become LOW) */
273                 out_8(&psc->op1, 0x1);
274         }
275         else {
276                 /* Negate RTS (become HIGH) */
277                 out_8(&psc->op0, 0x1);
278         }
279 }
280
281 int serial_getcts_dev(unsigned int idx)
282 {
283         volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR;
284         volatile psc512x_t *psc = (psc512x_t *) &im->psc[idx];
285
286         return (in_8(&psc->ip) & 0x1) ? 0 : 1;
287 }
288 #endif /* CONFIG_PSC_CONSOLE || CONFIG_SERIAL_MULTI */
289
290 #if defined(CONFIG_SERIAL_MULTI)
291
292 #define DECLARE_PSC_SERIAL_FUNCTIONS(port) \
293         int serial##port##_init(void) \
294         { \
295                 return serial_init_dev(port); \
296         } \
297         int serial##port##_uninit(void) \
298         { \
299                 return serial_uninit_dev(port); \
300         } \
301         void serial##port##_setbrg(void) \
302         { \
303                 serial_setbrg_dev(port); \
304         } \
305         int serial##port##_getc(void) \
306         { \
307                 return serial_getc_dev(port); \
308         } \
309         int serial##port##_tstc(void) \
310         { \
311                 return serial_tstc_dev(port); \
312         } \
313         void serial##port##_putc(const char c) \
314         { \
315                 serial_putc_dev(port, c); \
316         } \
317         void serial##port##_puts(const char *s) \
318         { \
319                 serial_puts_dev(port, s); \
320         }
321
322 #define INIT_PSC_SERIAL_STRUCTURE(port, __name) {       \
323         .name   = __name,                               \
324         .start  = serial##port##_init,                  \
325         .stop   = serial##port##_uninit,                \
326         .setbrg = serial##port##_setbrg,                \
327         .getc   = serial##port##_getc,                  \
328         .tstc   = serial##port##_tstc,                  \
329         .putc   = serial##port##_putc,                  \
330         .puts   = serial##port##_puts,                  \
331 }
332
333 #if defined(CONFIG_SYS_PSC1)
334 DECLARE_PSC_SERIAL_FUNCTIONS(1);
335 struct serial_device serial1_device =
336 INIT_PSC_SERIAL_STRUCTURE(1, "psc1");
337 #endif
338
339 #if defined(CONFIG_SYS_PSC3)
340 DECLARE_PSC_SERIAL_FUNCTIONS(3);
341 struct serial_device serial3_device =
342 INIT_PSC_SERIAL_STRUCTURE(3, "psc3");
343 #endif
344
345 #if defined(CONFIG_SYS_PSC4)
346 DECLARE_PSC_SERIAL_FUNCTIONS(4);
347 struct serial_device serial4_device =
348 INIT_PSC_SERIAL_STRUCTURE(4, "psc4");
349 #endif
350
351 #if defined(CONFIG_SYS_PSC6)
352 DECLARE_PSC_SERIAL_FUNCTIONS(6);
353 struct serial_device serial6_device =
354 INIT_PSC_SERIAL_STRUCTURE(6, "psc6");
355 #endif
356
357 __weak struct serial_device *default_serial_console(void)
358 {
359 #if (CONFIG_PSC_CONSOLE == 3)
360         return &serial3_device;
361 #elif (CONFIG_PSC_CONSOLE == 6)
362         return &serial6_device;
363 #else
364 #error "invalid CONFIG_PSC_CONSOLE"
365 #endif
366 }
367
368 void mpc512x_serial_initialize(void)
369 {
370 #if defined(CONFIG_SYS_PSC1)
371         serial_register(&serial1_device);
372 #endif
373 #if defined(CONFIG_SYS_PSC3)
374         serial_register(&serial3_device);
375 #endif
376 #if defined(CONFIG_SYS_PSC4)
377         serial_register(&serial4_device);
378 #endif
379 #if defined(CONFIG_SYS_PSC6)
380         serial_register(&serial6_device);
381 #endif
382 }
383
384 #else
385
386 void serial_setbrg(void)
387 {
388         serial_setbrg_dev(CONFIG_PSC_CONSOLE);
389 }
390
391 int serial_init(void)
392 {
393         return serial_init_dev(CONFIG_PSC_CONSOLE);
394 }
395
396 void serial_putc(const char c)
397 {
398         serial_putc_dev(CONFIG_PSC_CONSOLE, c);
399 }
400
401 void serial_putc_raw(const char c)
402 {
403         serial_putc_raw_dev(CONFIG_PSC_CONSOLE, c);
404 }
405
406 void serial_puts(const char *s)
407 {
408         serial_puts_dev(CONFIG_PSC_CONSOLE, s);
409 }
410
411 int serial_getc(void)
412 {
413         return serial_getc_dev(CONFIG_PSC_CONSOLE);
414 }
415
416 int serial_tstc(void)
417 {
418         return serial_tstc_dev(CONFIG_PSC_CONSOLE);
419 }
420
421 void serial_setrts(int s)
422 {
423         return serial_setrts_dev(CONFIG_PSC_CONSOLE, s);
424 }
425
426 int serial_getcts(void)
427 {
428         return serial_getcts_dev(CONFIG_PSC_CONSOLE);
429 }
430 #endif /* CONFIG_PSC_CONSOLE */
431
432 #if defined(CONFIG_SERIAL_MULTI)
433 #include <stdio_dev.h>
434 /*
435  * Routines for communication with serial devices over PSC
436  */
437 /* Bitfield for initialized PSCs */
438 static unsigned int initialized;
439
440 struct stdio_dev *open_port(int num, int baudrate)
441 {
442         struct stdio_dev *port;
443         char env_var[16];
444         char env_val[10];
445         char name[7];
446
447         if (num < 0 || num > 11)
448                 return NULL;
449
450         sprintf(name, "psc%d", num);
451         port = stdio_get_by_name(name);
452         if (!port)
453                 return NULL;
454
455         if (!test_bit(num, &initialized)) {
456                 sprintf(env_var, "psc%d_baudrate", num);
457                 sprintf(env_val, "%d", baudrate);
458                 setenv(env_var, env_val);
459
460                 if (port->start())
461                         return NULL;
462
463                 set_bit(num, &initialized);
464         }
465
466         return port;
467 }
468
469 int close_port(int num)
470 {
471         struct stdio_dev *port;
472         int ret;
473         char name[7];
474
475         if (num < 0 || num > 11)
476                 return -1;
477
478         sprintf(name, "psc%d", num);
479         port = stdio_get_by_name(name);
480         if (!port)
481                 return -1;
482
483         ret = port->stop();
484         clear_bit(num, &initialized);
485
486         return ret;
487 }
488
489 int write_port(struct stdio_dev *port, char *buf)
490 {
491         if (!port || !buf)
492                 return -1;
493
494         port->puts(buf);
495
496         return 0;
497 }
498
499 int read_port(struct stdio_dev *port, char *buf, int size)
500 {
501         int cnt = 0;
502
503         if (!port || !buf)
504                 return -1;
505
506         if (!size)
507                 return 0;
508
509         while (port->tstc()) {
510                 buf[cnt++] = port->getc();
511                 if (cnt > size)
512                         break;
513         }
514
515         return cnt;
516 }
517 #endif /* CONFIG_SERIAL_MULTI */