blob: fcab20280ec0b428ffe3ef8cbb393151681c79f7 [file] [log] [blame]
Jean-Christophe PLAGNIOL-VILLARD6790c552009-03-29 23:01:42 +02001/*
2 * (C) Copyright 2002-2004
3 * Wolfgang Denk, DENX Software Engineering, <wd@denx.de>
4 *
5 * (C) Copyright 2002
6 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7 * Marius Groeger <mgroeger@sysgo.de>
8 *
9 * (C) Copyright 2002
10 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
11 * Alex Zuepke <azu@sysgo.de>
12 *
13 * Copyright (C) 1999 2000 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
14 *
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 *
29 */
30
31#include <common.h>
32#include <asm/arch/hardware.h>
33
34DECLARE_GLOBAL_DATA_PTR;
35
Marek Vasut21310b52012-09-14 22:36:50 +020036static void lpc2292_serial_setbrg(void)
Jean-Christophe PLAGNIOL-VILLARD6790c552009-03-29 23:01:42 +020037{
38 unsigned short divisor = 0;
39
40 switch (gd->baudrate) {
41 case 1200: divisor = 3072; break;
42 case 9600: divisor = 384; break;
43 case 19200: divisor = 192; break;
44 case 38400: divisor = 96; break;
45 case 57600: divisor = 64; break;
46 case 115200: divisor = 32; break;
47 default: hang (); break;
48 }
49
50 /* init serial UART0 */
51 PUT8(U0LCR, 0);
52 PUT8(U0IER, 0);
53 PUT8(U0LCR, 0x80); /* DLAB=1 */
54 PUT8(U0DLL, (unsigned char)(divisor & 0x00FF));
55 PUT8(U0DLM, (unsigned char)(divisor >> 8));
56 PUT8(U0LCR, 0x03); /* 8N1, DLAB=0 */
57 PUT8(U0FCR, 1); /* Enable RX and TX FIFOs */
58}
59
Marek Vasut21310b52012-09-14 22:36:50 +020060static int lpc2292_serial_init(void)
Jean-Christophe PLAGNIOL-VILLARD6790c552009-03-29 23:01:42 +020061{
62 unsigned long pinsel0;
63
64 serial_setbrg ();
65
66 pinsel0 = GET32(PINSEL0);
67 pinsel0 &= ~(0x00000003);
68 pinsel0 |= 5;
69 PUT32(PINSEL0, pinsel0);
70
71 return (0);
72}
73
Marek Vasut21310b52012-09-14 22:36:50 +020074static void lpc2292_serial_putc(const char c)
Jean-Christophe PLAGNIOL-VILLARD6790c552009-03-29 23:01:42 +020075{
76 if (c == '\n')
77 {
78 while((GET8(U0LSR) & (1<<5)) == 0); /* Wait for empty U0THR */
79 PUT8(U0THR, '\r');
80 }
81
82 while((GET8(U0LSR) & (1<<5)) == 0); /* Wait for empty U0THR */
83 PUT8(U0THR, c);
84}
85
Marek Vasut21310b52012-09-14 22:36:50 +020086static int lpc2292_serial_getc(void)
Jean-Christophe PLAGNIOL-VILLARD6790c552009-03-29 23:01:42 +020087{
88 while((GET8(U0LSR) & 1) == 0);
89 return GET8(U0RBR);
90}
91
Marek Vasut21310b52012-09-14 22:36:50 +020092static void lpc2292_serial_puts(const char *s)
Jean-Christophe PLAGNIOL-VILLARD6790c552009-03-29 23:01:42 +020093{
94 while (*s) {
95 serial_putc (*s++);
96 }
97}
98
99/* Test if there is a byte to read */
Marek Vasut21310b52012-09-14 22:36:50 +0200100static int lpc2292_serial_tstc(void)
Jean-Christophe PLAGNIOL-VILLARD6790c552009-03-29 23:01:42 +0200101{
102 return (GET8(U0LSR) & 1);
103}
Marek Vasut21310b52012-09-14 22:36:50 +0200104
Marek Vasut21310b52012-09-14 22:36:50 +0200105static struct serial_device lpc2292_serial_drv = {
106 .name = "lpc2292_serial",
107 .start = lpc2292_serial_init,
108 .stop = NULL,
109 .setbrg = lpc2292_serial_setbrg,
110 .putc = lpc2292_serial_putc,
111 .puts = lpc2292_serial_puts,
112 .getc = lpc2292_serial_getc,
113 .tstc = lpc2292_serial_tstc,
114};
115
116void lpc2292_serial_initialize(void)
117{
118 serial_register(&lpc2292_serial_drv);
119}
120
121__weak struct serial_device *default_serial_console(void)
122{
123 return &lpc2292_serial_drv;
124}