blob: f1c96aec8c7b2549212b1b8a3db35bdaf5395829 [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);
Mauro Carvalho Chehab9d605e62015-06-10 12:06:34 -030073
Jan Klötzkea96762d2015-06-06 16:58:13 -030074 dprintk(MANTIS_DEBUG, 0, " <%02x>", data);
Manu Abrahamadd20632009-12-04 05:39:57 -030075
Jan Klötzkea96762d2015-06-06 16:58:13 -030076 scancode = (scancode << 8) | (data & 0x3f);
77 err |= data;
Manu Abraham0bdc7992009-12-15 06:17:54 -030078
Jan Klötzkea96762d2015-06-06 16:58:13 -030079 if (data & (1 << 7))
Manu Abrahamb3b96142009-12-04 05:41:11 -030080 dprintk(MANTIS_ERROR, 1, "UART framing error");
Manu Abrahamadd20632009-12-04 05:39:57 -030081
Jan Klötzkea96762d2015-06-06 16:58:13 -030082 if (data & (1 << 6))
83 dprintk(MANTIS_ERROR, 1, "UART parity error");
84 }
85 dprintk(MANTIS_DEBUG, 0, "\n");
86
87 if ((err & 0xC0) == 0)
88 mantis_input_process(mantis, scancode);
Manu Abrahamadd20632009-12-04 05:39:57 -030089}
90
91static void mantis_uart_work(struct work_struct *work)
92{
93 struct mantis_pci *mantis = container_of(work, struct mantis_pci, uart_work);
Jan Klötzkea96762d2015-06-06 16:58:13 -030094 u32 stat;
Manu Abrahamadd20632009-12-04 05:39:57 -030095
Jan Klötzkea96762d2015-06-06 16:58:13 -030096 stat = mmread(MANTIS_UART_STAT);
Manu Abrahamadd20632009-12-04 05:39:57 -030097
Jan Klötzkea96762d2015-06-06 16:58:13 -030098 if (stat & MANTIS_UART_RXFIFO_FULL)
99 dprintk(MANTIS_ERROR, 1, "RX Fifo FULL");
Manu Abrahamadd20632009-12-04 05:39:57 -0300100
Jan Klötzkea96762d2015-06-06 16:58:13 -0300101 /*
Mauro Carvalho Chehab9d605e62015-06-10 12:06:34 -0300102 * MANTIS_UART_RXFIFO_DATA is only set if at least
103 * config->bytes + 1 bytes are in the FIFO.
Jan Klötzkea96762d2015-06-06 16:58:13 -0300104 */
105 while (stat & MANTIS_UART_RXFIFO_DATA) {
106 mantis_uart_read(mantis);
107 stat = mmread(MANTIS_UART_STAT);
108 }
109
110 /* re-enable UART (RX) interrupt */
111 mantis_unmask_ints(mantis, MANTIS_INT_IRQ1);
Manu Abrahamadd20632009-12-04 05:39:57 -0300112}
113
114static int mantis_uart_setup(struct mantis_pci *mantis,
115 struct mantis_uart_params *params)
116{
Manu Abrahamadd20632009-12-04 05:39:57 -0300117 u32 reg;
118
Manu Abrahamadd20632009-12-04 05:39:57 -0300119 mmwrite((mmread(MANTIS_UART_CTL) | (params->parity & 0x3)), MANTIS_UART_CTL);
120
121 reg = mmread(MANTIS_UART_BAUD);
122
123 switch (params->baud_rate) {
124 case MANTIS_BAUD_9600:
125 reg |= 0xd8;
126 break;
127 case MANTIS_BAUD_19200:
128 reg |= 0x6c;
129 break;
130 case MANTIS_BAUD_38400:
131 reg |= 0x36;
132 break;
133 case MANTIS_BAUD_57600:
134 reg |= 0x23;
135 break;
136 case MANTIS_BAUD_115200:
137 reg |= 0x11;
138 break;
139 default:
140 return -EINVAL;
141 }
142
143 mmwrite(reg, MANTIS_UART_BAUD);
144
145 return 0;
146}
147
148int mantis_uart_init(struct mantis_pci *mantis)
149{
150 struct mantis_hwconfig *config = mantis->hwconfig;
151 struct mantis_uart_params params;
152
Manu Abrahamadd20632009-12-04 05:39:57 -0300153 /* default parity: */
154 params.baud_rate = config->baud_rate;
155 params.parity = config->parity;
Manu Abrahama1497352009-12-11 20:41:07 -0300156 dprintk(MANTIS_INFO, 1, "Initializing UART @ %sbps parity:%s",
157 rates[params.baud_rate].string,
158 parity[params.parity].string);
Manu Abrahamadd20632009-12-04 05:39:57 -0300159
Manu Abrahamadd20632009-12-04 05:39:57 -0300160 INIT_WORK(&mantis->uart_work, mantis_uart_work);
161
162 /* disable interrupt */
163 mmwrite(mmread(MANTIS_UART_CTL) & 0xffef, MANTIS_UART_CTL);
164
165 mantis_uart_setup(mantis, &params);
166
167 /* default 1 byte */
168 mmwrite((mmread(MANTIS_UART_BAUD) | (config->bytes << 8)), MANTIS_UART_BAUD);
169
170 /* flush buffer */
171 mmwrite((mmread(MANTIS_UART_CTL) | MANTIS_UART_RXFLUSH), MANTIS_UART_CTL);
172
173 /* enable interrupt */
Manu Abrahamadd20632009-12-04 05:39:57 -0300174 mmwrite(mmread(MANTIS_UART_CTL) | MANTIS_UART_RXINT, MANTIS_UART_CTL);
Jan Klötzkea96762d2015-06-06 16:58:13 -0300175 mantis_unmask_ints(mantis, MANTIS_INT_IRQ1);
Manu Abrahamadd20632009-12-04 05:39:57 -0300176
177 schedule_work(&mantis->uart_work);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300178 dprintk(MANTIS_DEBUG, 1, "UART successfully initialized");
Manu Abrahamadd20632009-12-04 05:39:57 -0300179
180 return 0;
181}
Manu Abrahamb3b96142009-12-04 05:41:11 -0300182EXPORT_SYMBOL_GPL(mantis_uart_init);
Manu Abrahamadd20632009-12-04 05:39:57 -0300183
184void mantis_uart_exit(struct mantis_pci *mantis)
185{
186 /* disable interrupt */
Jan Klötzkea96762d2015-06-06 16:58:13 -0300187 mantis_mask_ints(mantis, MANTIS_INT_IRQ1);
Manu Abrahamadd20632009-12-04 05:39:57 -0300188 mmwrite(mmread(MANTIS_UART_CTL) & 0xffef, MANTIS_UART_CTL);
Tejun Heo43829732012-08-20 14:51:24 -0700189 flush_work(&mantis->uart_work);
Manu Abrahamadd20632009-12-04 05:39:57 -0300190}
Manu Abrahamb3b96142009-12-04 05:41:11 -0300191EXPORT_SYMBOL_GPL(mantis_uart_exit);