1 | /*
|
---|
2 | * Copyright (c) 2010 Jiri Svoboda
|
---|
3 | * All rights reserved.
|
---|
4 | *
|
---|
5 | * Redistribution and use in source and binary forms, with or without
|
---|
6 | * modification, are permitted provided that the following conditions
|
---|
7 | * are met:
|
---|
8 | *
|
---|
9 | * - Redistributions of source code must retain the above copyright
|
---|
10 | * notice, this list of conditions and the following disclaimer.
|
---|
11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
12 | * notice, this list of conditions and the following disclaimer in the
|
---|
13 | * documentation and/or other materials provided with the distribution.
|
---|
14 | * - The name of the author may not be used to endorse or promote products
|
---|
15 | * derived from this software without specific prior written permission.
|
---|
16 | *
|
---|
17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
27 | */
|
---|
28 |
|
---|
29 | /** @addtogroup driver_serial
|
---|
30 | * @{
|
---|
31 | */
|
---|
32 | /**
|
---|
33 | * @file
|
---|
34 | * @brief Samsung S3C24xx on-chip UART driver.
|
---|
35 | *
|
---|
36 | * This UART is present on the Samsung S3C24xx CPU (on the gta02 platform).
|
---|
37 | */
|
---|
38 |
|
---|
39 | #include <ddi.h>
|
---|
40 | #include <libarch/ddi.h>
|
---|
41 | #include <devmap.h>
|
---|
42 | #include <ipc/ipc.h>
|
---|
43 | #include <ipc/char.h>
|
---|
44 | #include <async.h>
|
---|
45 | #include <unistd.h>
|
---|
46 | #include <stdio.h>
|
---|
47 | #include <stdlib.h>
|
---|
48 | #include <sysinfo.h>
|
---|
49 | #include <errno.h>
|
---|
50 | #include <inttypes.h>
|
---|
51 |
|
---|
52 | #include "s3c24xx_uart.h"
|
---|
53 |
|
---|
54 | #define NAME "s3c24ser"
|
---|
55 | #define NAMESPACE "char"
|
---|
56 |
|
---|
57 | static irq_cmd_t uart_irq_cmds[] = {
|
---|
58 | {
|
---|
59 | .cmd = CMD_ACCEPT
|
---|
60 | }
|
---|
61 | };
|
---|
62 |
|
---|
63 | static irq_code_t uart_irq_code = {
|
---|
64 | sizeof(uart_irq_cmds) / sizeof(irq_cmd_t),
|
---|
65 | uart_irq_cmds
|
---|
66 | };
|
---|
67 |
|
---|
68 | /** S3C24xx UART instance structure */
|
---|
69 | static s3c24xx_uart_t *uart;
|
---|
70 |
|
---|
71 | static void s3c24xx_uart_connection(ipc_callid_t iid, ipc_call_t *icall);
|
---|
72 | static void s3c24xx_uart_irq_handler(ipc_callid_t iid, ipc_call_t *call);
|
---|
73 | static int s3c24xx_uart_init(s3c24xx_uart_t *uart);
|
---|
74 | static void s3c24xx_uart_sendb(s3c24xx_uart_t *uart, uint8_t byte);
|
---|
75 |
|
---|
76 | int main(int argc, char *argv[])
|
---|
77 | {
|
---|
78 | int rc;
|
---|
79 |
|
---|
80 | printf(NAME ": S3C24xx on-chip UART driver\n");
|
---|
81 |
|
---|
82 | rc = devmap_driver_register(NAME, s3c24xx_uart_connection);
|
---|
83 | if (rc < 0) {
|
---|
84 | printf(NAME ": Unable to register driver.\n");
|
---|
85 | return -1;
|
---|
86 | }
|
---|
87 |
|
---|
88 | uart = malloc(sizeof(s3c24xx_uart_t));
|
---|
89 | if (uart == NULL)
|
---|
90 | return -1;
|
---|
91 |
|
---|
92 | if (s3c24xx_uart_init(uart) != EOK)
|
---|
93 | return -1;
|
---|
94 |
|
---|
95 | rc = devmap_device_register(NAMESPACE "/" NAME, &uart->devmap_handle);
|
---|
96 | if (rc != EOK) {
|
---|
97 | printf(NAME ": Unable to register device %s.\n",
|
---|
98 | NAMESPACE "/" NAME);
|
---|
99 | return -1;
|
---|
100 | }
|
---|
101 |
|
---|
102 | printf(NAME ": Registered device %s.\n", NAMESPACE "/" NAME);
|
---|
103 |
|
---|
104 | printf(NAME ": Accepting connections\n");
|
---|
105 | task_retval(0);
|
---|
106 | async_manager();
|
---|
107 |
|
---|
108 | /* Not reached */
|
---|
109 | return 0;
|
---|
110 | }
|
---|
111 |
|
---|
112 | /** Character device connection handler. */
|
---|
113 | static void s3c24xx_uart_connection(ipc_callid_t iid, ipc_call_t *icall)
|
---|
114 | {
|
---|
115 | ipc_callid_t callid;
|
---|
116 | ipc_call_t call;
|
---|
117 | sysarg_t method;
|
---|
118 | int retval;
|
---|
119 |
|
---|
120 | /* Answer the IPC_M_CONNECT_ME_TO call. */
|
---|
121 | ipc_answer_0(iid, EOK);
|
---|
122 |
|
---|
123 | while (1) {
|
---|
124 | callid = async_get_call(&call);
|
---|
125 | method = IPC_GET_IMETHOD(call);
|
---|
126 | switch (method) {
|
---|
127 | case IPC_M_PHONE_HUNGUP:
|
---|
128 | /* The other side has hung up. */
|
---|
129 | ipc_answer_0(callid, EOK);
|
---|
130 | return;
|
---|
131 | case IPC_M_CONNECT_TO_ME:
|
---|
132 | printf(NAME ": creating callback connection\n");
|
---|
133 | uart->client_phone = IPC_GET_ARG5(call);
|
---|
134 | retval = 0;
|
---|
135 | break;
|
---|
136 | case CHAR_WRITE_BYTE:
|
---|
137 | printf(NAME ": write %" PRIun " to device\n",
|
---|
138 | IPC_GET_ARG1(call));
|
---|
139 | s3c24xx_uart_sendb(uart, (uint8_t) IPC_GET_ARG1(call));
|
---|
140 | retval = 0;
|
---|
141 | break;
|
---|
142 | default:
|
---|
143 | retval = EINVAL;
|
---|
144 | break;
|
---|
145 | }
|
---|
146 | ipc_answer_0(callid, retval);
|
---|
147 | }
|
---|
148 | }
|
---|
149 |
|
---|
150 | static void s3c24xx_uart_irq_handler(ipc_callid_t iid, ipc_call_t *call)
|
---|
151 | {
|
---|
152 | (void) iid; (void) call;
|
---|
153 |
|
---|
154 | while ((pio_read_32(&uart->io->ufstat) & S3C24XX_UFSTAT_RX_COUNT) != 0) {
|
---|
155 | uint32_t data = pio_read_32(&uart->io->urxh) & 0xff;
|
---|
156 | uint32_t status = pio_read_32(&uart->io->uerstat);
|
---|
157 |
|
---|
158 | if (uart->client_phone != -1) {
|
---|
159 | async_msg_1(uart->client_phone, CHAR_NOTIF_BYTE,
|
---|
160 | data);
|
---|
161 | }
|
---|
162 |
|
---|
163 | if (status != 0)
|
---|
164 | printf(NAME ": Error status 0x%x\n", status);
|
---|
165 | }
|
---|
166 | }
|
---|
167 |
|
---|
168 | /** Initialize S3C24xx on-chip UART. */
|
---|
169 | static int s3c24xx_uart_init(s3c24xx_uart_t *uart)
|
---|
170 | {
|
---|
171 | void *vaddr;
|
---|
172 | sysarg_t inr;
|
---|
173 |
|
---|
174 | if (sysinfo_get_value("s3c24xx_uart.address.physical",
|
---|
175 | &uart->paddr) != EOK)
|
---|
176 | return -1;
|
---|
177 |
|
---|
178 | if (pio_enable((void *) uart->paddr, sizeof(s3c24xx_uart_io_t),
|
---|
179 | &vaddr) != 0)
|
---|
180 | return -1;
|
---|
181 |
|
---|
182 | if (sysinfo_get_value("s3c24xx_uart.inr", &inr) != EOK)
|
---|
183 | return -1;
|
---|
184 |
|
---|
185 | uart->io = vaddr;
|
---|
186 | uart->client_phone = -1;
|
---|
187 |
|
---|
188 | printf(NAME ": device at physical address %p, inr %" PRIun ".\n",
|
---|
189 | (void *) uart->paddr, inr);
|
---|
190 |
|
---|
191 | async_set_interrupt_received(s3c24xx_uart_irq_handler);
|
---|
192 |
|
---|
193 | ipc_register_irq(inr, device_assign_devno(), 0, &uart_irq_code);
|
---|
194 |
|
---|
195 | /* Enable FIFO, Tx trigger level: empty, Rx trigger level: 1 byte. */
|
---|
196 | pio_write_32(&uart->io->ufcon, UFCON_FIFO_ENABLE |
|
---|
197 | UFCON_TX_FIFO_TLEVEL_EMPTY | UFCON_RX_FIFO_TLEVEL_1B);
|
---|
198 |
|
---|
199 | /* Set RX interrupt to pulse mode */
|
---|
200 | pio_write_32(&uart->io->ucon,
|
---|
201 | pio_read_32(&uart->io->ucon) & ~UCON_RX_INT_LEVEL);
|
---|
202 |
|
---|
203 | return EOK;
|
---|
204 | }
|
---|
205 |
|
---|
206 | /** Send a byte to the UART. */
|
---|
207 | static void s3c24xx_uart_sendb(s3c24xx_uart_t *uart, uint8_t byte)
|
---|
208 | {
|
---|
209 | /* Wait for space becoming available in Tx FIFO. */
|
---|
210 | while ((pio_read_32(&uart->io->ufstat) & S3C24XX_UFSTAT_TX_FULL) != 0)
|
---|
211 | ;
|
---|
212 |
|
---|
213 | pio_write_32(&uart->io->utxh, byte);
|
---|
214 | }
|
---|
215 |
|
---|
216 | /** @}
|
---|
217 | */
|
---|