blob: 483410948995a7183e6553e2aba61a960d809113 [file] [log] [blame]
Manu Abrahama1497352009-12-11 20:41:07 -03001/*
2 Mantis PCI bridge driver
3
4 Copyright (C) Manu Abraham (abraham.manu@gmail.com)
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19*/
20
Manu Abrahamb3b96142009-12-04 05:41:11 -030021#include <linux/kernel.h>
Manu Abrahamadd20632009-12-04 05:39:57 -030022#include <linux/spinlock.h>
Alexey Dobriyanb7f080c2011-06-16 11:01:34 +000023#include <asm/io.h>
Manu Abrahamb3b96142009-12-04 05:41:11 -030024
Manu Abrahamb3b96142009-12-04 05:41:11 -030025#include <linux/signal.h>
26#include <linux/sched.h>
27#include <linux/interrupt.h>
Jan Klötzkea96762d2015-06-06 16:58:13 -030028#include <linux/pci.h>
Manu Abrahamb3b96142009-12-04 05:41:11 -030029
30#include "dmxdev.h"
31#include "dvbdev.h"
32#include "dvb_demux.h"
33#include "dvb_frontend.h"
34#include "dvb_net.h"
35
Manu Abrahamadd20632009-12-04 05:39:57 -030036#include "mantis_common.h"
Manu Abrahamb3b96142009-12-04 05:41:11 -030037#include "mantis_reg.h"
38#include "mantis_uart.h"
Jan Klötzkea96762d2015-06-06 16:58:13 -030039#include "mantis_input.h"
Manu Abrahamadd20632009-12-04 05:39:57 -030040
41struct mantis_uart_params {
42 enum mantis_baud baud_rate;
43 enum mantis_parity parity;
44};
45
Manu Abrahama1497352009-12-11 20:41:07 -030046static struct {
47 char string[7];
48} rates[5] = {
49 { "9600" },
50 { "19200" },
51 { "38400" },
52 { "57600" },
53 { "115200" }
54};
55
56static struct {
57 char string[5];
58} parity[3] = {
59 { "NONE" },
60 { "ODD" },
61 { "EVEN" }
62};
63
Jan Klötzkea96762d2015-06-06 16:58:13 -030064static void mantis_uart_read(struct mantis_pci *mantis)
Manu Abrahamadd20632009-12-04 05:39:57 -030065{
66 struct mantis_hwconfig *config = mantis->hwconfig;
Jan Klötzkea96762d2015-06-06 16:58:13 -030067 int i, scancode = 0, err = 0;
Manu Abrahamadd20632009-12-04 05:39:57 -030068
69 /* get data */
Jan Klötzkea96762d2015-06-06 16:58:13 -030070 dprintk(MANTIS_DEBUG, 1, "UART Reading ...");
Manu Abrahamadd20632009-12-04 05:39:57 -030071 for (i = 0; i < (config->bytes + 1); i++) {
Jan Klötzkea96762d2015-06-06 16:58:13 -030072 int data = mmread(MANTIS_UART_RXD);
73 dprintk(MANTIS_DEBUG, 0, " <%02x>", data);
Manu Abrahamadd20632009-12-04 05:39:57 -030074
Jan Klötzkea96762d2015-06-06 16:58:13 -030075 scancode = (scancode << 8) | (data & 0x3f);
76 err |= data;
Manu Abraham0bdc7992009-12-15 06:17:54 -030077
Jan Klötzkea96762d2015-06-06 16:58:13 -030078 if (data & (1 << 7))
Manu Abrahamb3b96142009-12-04 05:41:11 -030079 dprintk(MANTIS_ERROR, 1, "UART framing error");
Manu Abrahamadd20632009-12-04 05:39:57 -030080
Jan Klötzkea96762d2015-06-06 16:58:13 -030081 if (data & (1 << 6))
82 dprintk(MANTIS_ERROR, 1, "UART parity error");
83 }
84 dprintk(MANTIS_DEBUG, 0, "\n");
85
86 if ((err & 0xC0) == 0)
87 mantis_input_process(mantis, scancode);
Manu Abrahamadd20632009-12-04 05:39:57 -030088}
89
90static void mantis_uart_work(struct work_struct *work)
91{
92 struct mantis_pci *mantis = container_of(work, struct mantis_pci, uart_work);
Jan Klötzkea96762d2015-06-06 16:58:13 -030093 u32 stat;
Manu Abrahamadd20632009-12-04 05:39:57 -030094
Jan Klötzkea96762d2015-06-06 16:58:13 -030095 stat = mmread(MANTIS_UART_STAT);
Manu Abrahamadd20632009-12-04 05:39:57 -030096
Jan Klötzkea96762d2015-06-06 16:58:13 -030097 if (stat & MANTIS_UART_RXFIFO_FULL)
98 dprintk(MANTIS_ERROR, 1, "RX Fifo FULL");
Manu Abrahamadd20632009-12-04 05:39:57 -030099
Jan Klötzkea96762d2015-06-06 16:58:13 -0300100 /*
101 * MANTIS_UART_RXFIFO_DATA is only set if at least config->bytes + 1 bytes
102 * are in the FIFO.
103 */
104 while (stat & MANTIS_UART_RXFIFO_DATA) {
105 mantis_uart_read(mantis);
106 stat = mmread(MANTIS_UART_STAT);
107 }
108
109 /* re-enable UART (RX) interrupt */
110 mantis_unmask_ints(mantis, MANTIS_INT_IRQ1);
Manu Abrahamadd20632009-12-04 05:39:57 -0300111}
112
113static int mantis_uart_setup(struct mantis_pci *mantis,
114 struct mantis_uart_params *params)
115{
Manu Abrahamadd20632009-12-04 05:39:57 -0300116 u32 reg;
117
Manu Abrahamadd20632009-12-04 05:39:57 -0300118 mmwrite((mmread(MANTIS_UART_CTL) | (params->parity & 0x3)), MANTIS_UART_CTL);
119
120 reg = mmread(MANTIS_UART_BAUD);
121
122 switch (params->baud_rate) {
123 case MANTIS_BAUD_9600:
124 reg |= 0xd8;
125 break;
126 case MANTIS_BAUD_19200:
127 reg |= 0x6c;
128 break;
129 case MANTIS_BAUD_38400:
130 reg |= 0x36;
131 break;
132 case MANTIS_BAUD_57600:
133 reg |= 0x23;
134 break;
135 case MANTIS_BAUD_115200:
136 reg |= 0x11;
137 break;
138 default:
139 return -EINVAL;
140 }
141
142 mmwrite(reg, MANTIS_UART_BAUD);
143
144 return 0;
145}
146
147int mantis_uart_init(struct mantis_pci *mantis)
148{
149 struct mantis_hwconfig *config = mantis->hwconfig;
150 struct mantis_uart_params params;
151
Manu Abrahamadd20632009-12-04 05:39:57 -0300152 /* default parity: */
153 params.baud_rate = config->baud_rate;
154 params.parity = config->parity;
Manu Abrahama1497352009-12-11 20:41:07 -0300155 dprintk(MANTIS_INFO, 1, "Initializing UART @ %sbps parity:%s",
156 rates[params.baud_rate].string,
157 parity[params.parity].string);
Manu Abrahamadd20632009-12-04 05:39:57 -0300158
Manu Abrahamadd20632009-12-04 05:39:57 -0300159 INIT_WORK(&mantis->uart_work, mantis_uart_work);
160
161 /* disable interrupt */
162 mmwrite(mmread(MANTIS_UART_CTL) & 0xffef, MANTIS_UART_CTL);
163
164 mantis_uart_setup(mantis, &params);
165
166 /* default 1 byte */
167 mmwrite((mmread(MANTIS_UART_BAUD) | (config->bytes << 8)), MANTIS_UART_BAUD);
168
169 /* flush buffer */
170 mmwrite((mmread(MANTIS_UART_CTL) | MANTIS_UART_RXFLUSH), MANTIS_UART_CTL);
171
172 /* enable interrupt */
Manu Abrahamadd20632009-12-04 05:39:57 -0300173 mmwrite(mmread(MANTIS_UART_CTL) | MANTIS_UART_RXINT, MANTIS_UART_CTL);
Jan Klötzkea96762d2015-06-06 16:58:13 -0300174 mantis_unmask_ints(mantis, MANTIS_INT_IRQ1);
Manu Abrahamadd20632009-12-04 05:39:57 -0300175
176 schedule_work(&mantis->uart_work);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300177 dprintk(MANTIS_DEBUG, 1, "UART successfully initialized");
Manu Abrahamadd20632009-12-04 05:39:57 -0300178
179 return 0;
180}
Manu Abrahamb3b96142009-12-04 05:41:11 -0300181EXPORT_SYMBOL_GPL(mantis_uart_init);
Manu Abrahamadd20632009-12-04 05:39:57 -0300182
183void mantis_uart_exit(struct mantis_pci *mantis)
184{
185 /* disable interrupt */
Jan Klötzkea96762d2015-06-06 16:58:13 -0300186 mantis_mask_ints(mantis, MANTIS_INT_IRQ1);
Manu Abrahamadd20632009-12-04 05:39:57 -0300187 mmwrite(mmread(MANTIS_UART_CTL) & 0xffef, MANTIS_UART_CTL);
Tejun Heo43829732012-08-20 14:51:24 -0700188 flush_work(&mantis->uart_work);
Manu Abrahamadd20632009-12-04 05:39:57 -0300189}
Manu Abrahamb3b96142009-12-04 05:41:11 -0300190EXPORT_SYMBOL_GPL(mantis_uart_exit);