2 Mantis PCI bridge driver
4 Copyright (C) Manu Abraham (abraham.manu@gmail.com)
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.
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.
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.
21 #include <linux/kernel.h>
22 #include <linux/spinlock.h>
25 #include <linux/signal.h>
26 #include <linux/sched.h>
27 #include <linux/interrupt.h>
28 #include <linux/pci.h>
32 #include "dvb_demux.h"
33 #include "dvb_frontend.h"
36 #include "mantis_common.h"
37 #include "mantis_reg.h"
38 #include "mantis_uart.h"
39 #include "mantis_input.h"
41 struct mantis_uart_params
{
42 enum mantis_baud baud_rate
;
43 enum mantis_parity parity
;
64 static void mantis_uart_read(struct mantis_pci
*mantis
)
66 struct mantis_hwconfig
*config
= mantis
->hwconfig
;
67 int i
, scancode
= 0, err
= 0;
70 dprintk(MANTIS_DEBUG
, 1, "UART Reading ...");
71 for (i
= 0; i
< (config
->bytes
+ 1); i
++) {
72 int data
= mmread(MANTIS_UART_RXD
);
74 dprintk(MANTIS_DEBUG
, 0, " <%02x>", data
);
76 scancode
= (scancode
<< 8) | (data
& 0x3f);
80 dprintk(MANTIS_ERROR
, 1, "UART framing error");
83 dprintk(MANTIS_ERROR
, 1, "UART parity error");
85 dprintk(MANTIS_DEBUG
, 0, "\n");
87 if ((err
& 0xC0) == 0)
88 mantis_input_process(mantis
, scancode
);
91 static void mantis_uart_work(struct work_struct
*work
)
93 struct mantis_pci
*mantis
= container_of(work
, struct mantis_pci
, uart_work
);
96 stat
= mmread(MANTIS_UART_STAT
);
98 if (stat
& MANTIS_UART_RXFIFO_FULL
)
99 dprintk(MANTIS_ERROR
, 1, "RX Fifo FULL");
102 * MANTIS_UART_RXFIFO_DATA is only set if at least
103 * config->bytes + 1 bytes are in the FIFO.
105 while (stat
& MANTIS_UART_RXFIFO_DATA
) {
106 mantis_uart_read(mantis
);
107 stat
= mmread(MANTIS_UART_STAT
);
110 /* re-enable UART (RX) interrupt */
111 mantis_unmask_ints(mantis
, MANTIS_INT_IRQ1
);
114 static int mantis_uart_setup(struct mantis_pci
*mantis
,
115 struct mantis_uart_params
*params
)
119 mmwrite((mmread(MANTIS_UART_CTL
) | (params
->parity
& 0x3)), MANTIS_UART_CTL
);
121 reg
= mmread(MANTIS_UART_BAUD
);
123 switch (params
->baud_rate
) {
124 case MANTIS_BAUD_9600
:
127 case MANTIS_BAUD_19200
:
130 case MANTIS_BAUD_38400
:
133 case MANTIS_BAUD_57600
:
136 case MANTIS_BAUD_115200
:
143 mmwrite(reg
, MANTIS_UART_BAUD
);
148 int mantis_uart_init(struct mantis_pci
*mantis
)
150 struct mantis_hwconfig
*config
= mantis
->hwconfig
;
151 struct mantis_uart_params params
;
153 /* default parity: */
154 params
.baud_rate
= config
->baud_rate
;
155 params
.parity
= config
->parity
;
156 dprintk(MANTIS_INFO
, 1, "Initializing UART @ %sbps parity:%s",
157 rates
[params
.baud_rate
].string
,
158 parity
[params
.parity
].string
);
160 INIT_WORK(&mantis
->uart_work
, mantis_uart_work
);
162 /* disable interrupt */
163 mmwrite(mmread(MANTIS_UART_CTL
) & 0xffef, MANTIS_UART_CTL
);
165 mantis_uart_setup(mantis
, ¶ms
);
168 mmwrite((mmread(MANTIS_UART_BAUD
) | (config
->bytes
<< 8)), MANTIS_UART_BAUD
);
171 mmwrite((mmread(MANTIS_UART_CTL
) | MANTIS_UART_RXFLUSH
), MANTIS_UART_CTL
);
173 /* enable interrupt */
174 mmwrite(mmread(MANTIS_UART_CTL
) | MANTIS_UART_RXINT
, MANTIS_UART_CTL
);
175 mantis_unmask_ints(mantis
, MANTIS_INT_IRQ1
);
177 schedule_work(&mantis
->uart_work
);
178 dprintk(MANTIS_DEBUG
, 1, "UART successfully initialized");
182 EXPORT_SYMBOL_GPL(mantis_uart_init
);
184 void mantis_uart_exit(struct mantis_pci
*mantis
)
186 /* disable interrupt */
187 mantis_mask_ints(mantis
, MANTIS_INT_IRQ1
);
188 mmwrite(mmread(MANTIS_UART_CTL
) & 0xffef, MANTIS_UART_CTL
);
189 flush_work(&mantis
->uart_work
);
191 EXPORT_SYMBOL_GPL(mantis_uart_exit
);