blob: 6c2cf215acfa92970179f10f1e1c4c2f463783b5 [file] [log] [blame]
stroese771e05b2004-12-16 18:21:17 +00001/*
2 * (C) Copyright 2001
3 * Josh Huber <huber@mclx.com>, Mission Critical Linux, Inc.
4 *
5 * modified for marvell db64360 eval board by
6 * Ingo Assmus <ingo.assmus@keymile.com>
wdenkefe2a4d2004-12-16 21:44:03 +00007 *
stroese771e05b2004-12-16 18:21:17 +00008 * modified for cpci750 board by
9 * Reinhard Arlt <reinhard.arlt@esd-electronics.com>
10 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020011 * SPDX-License-Identifier: GPL-2.0+
stroese771e05b2004-12-16 18:21:17 +000012 */
13
14/*
15 * serial.c - serial support for esd cpci750 board
16 */
17
18/* supports the MPSC */
19
20#include <common.h>
21#include <command.h>
Marek Vasut619c90b2012-09-13 12:32:56 +020022#include <serial.h>
23#include <linux/compiler.h>
24
stroese771e05b2004-12-16 18:21:17 +000025#include "../../Marvell/include/memory.h"
stroese771e05b2004-12-16 18:21:17 +000026
stroese771e05b2004-12-16 18:21:17 +000027#include "mpsc.h"
28
Wolfgang Denkd87080b2006-03-31 18:32:53 +020029DECLARE_GLOBAL_DATA_PTR;
30
Marek Vasut619c90b2012-09-13 12:32:56 +020031static int cpci750_serial_init(void)
stroese771e05b2004-12-16 18:21:17 +000032{
stroese771e05b2004-12-16 18:21:17 +000033 mpsc_init (gd->baudrate);
34
35 return (0);
36}
37
Marek Vasut619c90b2012-09-13 12:32:56 +020038static void cpci750_serial_putc(const char c)
stroese771e05b2004-12-16 18:21:17 +000039{
40 if (c == '\n')
41 mpsc_putchar ('\r');
42
43 mpsc_putchar (c);
44}
45
Marek Vasut619c90b2012-09-13 12:32:56 +020046static int cpci750_serial_getc(void)
stroese771e05b2004-12-16 18:21:17 +000047{
48 return mpsc_getchar ();
49}
50
Marek Vasut619c90b2012-09-13 12:32:56 +020051static int cpci750_serial_tstc(void)
stroese771e05b2004-12-16 18:21:17 +000052{
53 return mpsc_test_char ();
54}
55
Marek Vasut619c90b2012-09-13 12:32:56 +020056static void cpci750_serial_setbrg(void)
stroese771e05b2004-12-16 18:21:17 +000057{
stroese771e05b2004-12-16 18:21:17 +000058 galbrg_set_baudrate (CONFIG_MPSC_PORT, gd->baudrate);
59}
60
Marek Vasut619c90b2012-09-13 12:32:56 +020061static struct serial_device cpci750_serial_drv = {
62 .name = "cpci750_serial",
63 .start = cpci750_serial_init,
64 .stop = NULL,
65 .setbrg = cpci750_serial_setbrg,
66 .putc = cpci750_serial_putc,
Marek Vasutec3fd682012-10-06 14:07:02 +000067 .puts = default_serial_puts,
Marek Vasut619c90b2012-09-13 12:32:56 +020068 .getc = cpci750_serial_getc,
69 .tstc = cpci750_serial_tstc,
70};
71
72void cpci750_serial_initialize(void)
73{
74 serial_register(&cpci750_serial_drv);
75}
76
77__weak struct serial_device *default_serial_console(void)
78{
79 return &cpci750_serial_drv;
80}
Marek Vasut619c90b2012-09-13 12:32:56 +020081
Jon Loeligerb9307262007-07-09 18:24:55 -050082#if defined(CONFIG_CMD_KGDB)
stroese771e05b2004-12-16 18:21:17 +000083void kgdb_serial_init (void)
84{
85}
86
87void putDebugChar (int c)
88{
89 serial_putc (c);
90}
91
92void putDebugStr (const char *str)
93{
94 serial_puts (str);
95}
96
97int getDebugChar (void)
98{
99 return serial_getc ();
100}
101
102void kgdb_interruptible (int yes)
103{
104 return;
105}
Jon Loeliger77a31852007-07-10 10:39:10 -0500106#endif