-
Notifications
You must be signed in to change notification settings - Fork 197
/
ldt.c
622 lines (551 loc) · 15 KB
/
ldt.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
/*
* LDT - Linux Driver Template
*
* Copyright (C) 2012 Constantine Shulyupin http://www.makelinux.net/
*
* Licensed under the GPLv2.
*
*
* The driver demonstrates usage of following Linux facilities:
*
* Linux kernel module
* file_operations
* read and write (UART)
* blocking read and write
* polling
* mmap
* ioctl
* kfifo
* completion
* interrupt
* tasklet
* timer
* work
* simple single misc device file (miscdevice, misc_register)
* debugfs
* platform_driver and platform_device in another module
* simple UART driver on port 0x3f8 with IRQ 4
*
* Use test script ldt-test to see the driver running
*
*/
#include <linux/io.h>
#include <linux/ioport.h>
#include <linux/mm.h>
#include <linux/interrupt.h>
#include <linux/sched.h>
#include <linux/delay.h>
#include <linux/timer.h>
#include <linux/kfifo.h>
#include <linux/fs.h>
#include <linux/poll.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/miscdevice.h>
#include <linux/serial_reg.h>
#include <linux/debugfs.h>
#include <linux/cdev.h>
#include <linux/version.h>
#undef pr_fmt
#define pr_fmt(fmt) "%s:%d: %s " fmt, __FILE__, __LINE__, __func__
static int port = 0x3f8;
module_param(port, int, 0);
MODULE_PARM_DESC(port, "io port number, default 0x3f8 - UART");
static int port_size = 8;
module_param(port_size, int, 0);
MODULE_PARM_DESC(port_size, "number of io ports, default 8");
static int irq = 4;
module_param(irq, int, 0);
MODULE_PARM_DESC(irq, "interrupt request number, default 4 - UART");
static int loopback;
module_param(loopback, int, 0);
MODULE_PARM_DESC(loopback, "loopback mode for testing, default 0");
#define FIFO_SIZE 128 /* must be power of two */
static int bufsize = 8 * PAGE_SIZE;
/**
* struct ldt_data - the driver data
* @in_buf: input buffer for mmap interface
* @out_buf: outoput buffer for mmap interface
* @in_fifo: input queue for write
* @out_fifo: output queue for read
* @fifo_lock: lock for queues
* @readable: waitqueue for blocking read
* @writeable: waitqueue for blocking write
* @port_ptr: mapped io port
* @uart_detected: UART is detected and will be used.
* Otherwise emulation mode will be used.
*
* stored in static global variable drvdata for simplicity.
* Can be also retrieved from platform_device with
* struct ldt_data *drvdata = platform_get_drvdata(pdev);
*/
struct ldt_data {
void *in_buf;
void *out_buf;
DECLARE_KFIFO(in_fifo, char, FIFO_SIZE);
DECLARE_KFIFO(out_fifo, char, FIFO_SIZE);
spinlock_t fifo_lock;
wait_queue_head_t readable, writeable;
struct mutex read_lock;
struct mutex write_lock;
void __iomem *port_ptr;
int uart_detected;
};
static struct ldt_data *drvdata;
/**
* ldt_received - puts data to receive queue
* @data: received data
*/
static void ldt_received(char data)
{
kfifo_in_spinlocked(&drvdata->in_fifo, &data,
sizeof(data), &drvdata->fifo_lock);
wake_up_interruptible(&drvdata->readable);
}
/**
* ldt_send - sends data to HW port or emulates SW loopback
* @data: data to send
*/
static void ldt_send(char data)
{
if (drvdata->uart_detected)
iowrite8(data, drvdata->port_ptr + UART_TX);
else if (loopback)
ldt_received(data);
}
static inline u8 tx_ready(void)
{
return ioread8(drvdata->port_ptr + UART_LSR) & UART_LSR_THRE;
}
static inline u8 rx_ready(void)
{
return ioread8(drvdata->port_ptr + UART_LSR) & UART_LSR_DR;
}
/*
* tasklet section
*
* template function for deferred call in interrupt context
*/
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 9, 0)
static void ldt_tasklet_func(struct tasklet_struct *t)
#else
static void ldt_tasklet_func(unsigned long d)
#endif
{
char data_out;
if (drvdata->uart_detected) {
while (tx_ready() && kfifo_out_spinlocked(&drvdata->out_fifo,
&data_out, sizeof(data_out),
&drvdata->fifo_lock)) {
wake_up_interruptible(&drvdata->writeable);
pr_debug("data_out=%d %c\n", data_out, data_out >= 32 ? data_out : ' ');
ldt_send(data_out);
}
while (rx_ready()) {
char data_in;
data_in = ioread8(drvdata->port_ptr + UART_RX);
pr_debug("data_in=%d %c\n", data_in, data_in >= 32 ? data_in : ' ');
ldt_received(data_in);
}
} else {
while (kfifo_out_spinlocked(&drvdata->out_fifo,
&data_out, sizeof(data_out),
&drvdata->fifo_lock)) {
wake_up_interruptible(&drvdata->writeable);
pr_debug("data_out=%d\n", data_out);
ldt_send(data_out);
}
}
}
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 9, 0)
static DECLARE_TASKLET(ldt_tasklet, ldt_tasklet_func);
#else
static DECLARE_TASKLET(ldt_tasklet, ldt_tasklet_func, 0);
#endif
/*
* interrupt section
*/
static int isr_counter;
static irqreturn_t ldt_isr(int irq, void *dev_id)
{
/*
* UART interrupt is not fired in loopback mode,
* therefore fire ldt_tasklet from timer too
*/
isr_counter++;
pr_debug("UART_FCR=0x%02X\n", ioread8(drvdata->port_ptr + UART_FCR));
pr_debug("UART_IIR=0x%02X\n", ioread8(drvdata->port_ptr + UART_IIR));
tasklet_schedule(&ldt_tasklet);
return IRQ_HANDLED; /* our IRQ */
}
/*
* timer section
*/
#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 14, 0)
static void ldt_timer_func(struct timer_list *ldt_timer)
{
/*
* this timer is used just to fire ldt_tasklet,
* because there is no interrupts in loopback mode
*/
if (loopback)
tasklet_schedule(&ldt_tasklet);
mod_timer(ldt_timer, jiffies + HZ / 100);
}
static DEFINE_TIMER(ldt_timer, ldt_timer_func);
#else
static struct timer_list ldt_timer;
static void ldt_timer_func(unsigned long data)
{
/*
* this timer is used just to fire ldt_tasklet,
* because there is no interrupts in loopback mode
*/
if (loopback)
tasklet_schedule(&ldt_tasklet);
mod_timer(&ldt_timer, jiffies + HZ / 100);
}
static DEFINE_TIMER(ldt_timer, ldt_timer_func, 0, 0);
#endif
/*
* file_operations section
*/
static int ldt_open(struct inode *inode, struct file *file)
{
pr_debug("from %s\n", current->comm);
/* client related data can be allocated here and
stored in file->private_data */
return 0;
}
static int ldt_release(struct inode *inode, struct file *file)
{
pr_debug("from %s\n", current->comm);
/* client related data can be retrived from file->private_data
and released here */
return 0;
}
static ssize_t ldt_read(struct file *file, char __user *buf,
size_t count, loff_t *ppos)
{
int ret = 0;
unsigned int copied;
pr_debug("from %s\n", current->comm);
if (kfifo_is_empty(&drvdata->in_fifo)) {
if (file->f_flags & O_NONBLOCK) {
return -EAGAIN;
} else {
pr_debug("waiting\n");
ret = wait_event_interruptible(drvdata->readable,
!kfifo_is_empty(&drvdata->in_fifo));
if (ret == -ERESTARTSYS) {
pr_err("%s\n", "interrupted");
return -EINTR;
}
}
}
if (mutex_lock_interruptible(&drvdata->read_lock))
return -EINTR;
ret = kfifo_to_user(&drvdata->in_fifo, buf, count, &copied);
mutex_unlock(&drvdata->read_lock);
return ret ? ret : copied;
}
static ssize_t ldt_write(struct file *file, const char __user *buf,
size_t count, loff_t *ppos)
{
int ret;
unsigned int copied;
pr_debug("from %s\n", current->comm);
if (kfifo_is_full(&drvdata->out_fifo)) {
if (file->f_flags & O_NONBLOCK) {
return -EAGAIN;
} else {
ret = wait_event_interruptible(drvdata->writeable,
!kfifo_is_full(&drvdata->out_fifo));
if (ret == -ERESTARTSYS) {
pr_err("%s\n", "interrupted");
return -EINTR;
}
}
}
if (mutex_lock_interruptible(&drvdata->write_lock))
return -EINTR;
ret = kfifo_from_user(&drvdata->out_fifo, buf, count, &copied);
mutex_unlock(&drvdata->write_lock);
tasklet_schedule(&ldt_tasklet);
return ret ? ret : copied;
}
static unsigned int ldt_poll(struct file *file, poll_table *pt)
{
unsigned int mask = 0;
poll_wait(file, &drvdata->readable, pt);
poll_wait(file, &drvdata->writeable, pt);
if (!kfifo_is_empty(&drvdata->in_fifo))
mask |= POLLIN | POLLRDNORM;
mask |= POLLOUT | POLLWRNORM;
/*
if case of output end of file set
mask |= POLLHUP;
in case of output error set
mask |= POLLERR;
*/
return mask;
}
/*
* pages_flag - set or clear a flag for sequence of pages
*
* more generic solution instead SetPageReserved, ClearPageReserved etc
*
* Poposing to move pages_flag to linux/page-flags.h
*/
static void pages_flag(struct page *page, int page_num, int mask, int value)
{
for (; page_num; page_num--, page++)
if (value)
__set_bit(mask, &page->flags);
else
__clear_bit(mask, &page->flags);
}
static int ldt_mmap(struct file *filp, struct vm_area_struct *vma)
{
void *buf = NULL;
if (vma->vm_flags & VM_WRITE)
buf = drvdata->in_buf;
else if (vma->vm_flags & VM_READ)
buf = drvdata->out_buf;
if (!buf)
return -EINVAL;
if (remap_pfn_range(vma, vma->vm_start, virt_to_phys(buf) >> PAGE_SHIFT,
vma->vm_end - vma->vm_start, vma->vm_page_prot)) {
pr_err("%s\n", "remap_pfn_range failed");
return -EAGAIN;
}
return 0;
}
#define trace_ioctl(nr) pr_debug("ioctl=(%c%c %c #%i %i)\n", \
(_IOC_READ & _IOC_DIR(nr)) ? 'r' : ' ', \
(_IOC_WRITE & _IOC_DIR(nr)) ? 'w' : ' ', \
_IOC_TYPE(nr), _IOC_NR(nr), _IOC_SIZE(nr))
static DEFINE_MUTEX(ioctl_lock);
static long ldt_ioctl(struct file *f, unsigned int cmnd, unsigned long arg)
{
int ret = 0;
void __user *user = (void __user *)arg;
if (mutex_lock_interruptible(&ioctl_lock))
return -EINTR;
pr_debug("%s:\n", __func__);
pr_debug("cmnd=0x%X\n", cmnd);
pr_debug("arg=0x%lX\n", arg);
trace_ioctl(cmnd);
switch (_IOC_TYPE(cmnd)) {
case 'A':
switch (_IOC_NR(cmnd)) {
case 0:
if (_IOC_DIR(cmnd) == _IOC_WRITE) {
if (copy_from_user(drvdata->in_buf, user,
_IOC_SIZE(cmnd))) {
ret = -EFAULT;
goto exit;
}
/* copy data from in_buf to out_buf to emulate loopback for testing */
memcpy(drvdata->out_buf, drvdata->in_buf, bufsize);
memset(drvdata->in_buf, 0, bufsize);
}
if (_IOC_DIR(cmnd) == _IOC_READ) {
if (copy_to_user(user, drvdata->out_buf,
_IOC_SIZE(cmnd))) {
ret = -EFAULT;
goto exit;
}
memset(drvdata->out_buf, 0, bufsize);
}
break;
}
break;
}
exit:
mutex_unlock(&ioctl_lock);
return ret;
}
static const struct file_operations ldt_fops = {
.owner = THIS_MODULE,
.open = ldt_open,
.release = ldt_release,
.read = ldt_read,
.write = ldt_write,
.poll = ldt_poll,
.mmap = ldt_mmap,
.unlocked_ioctl = ldt_ioctl,
};
static struct miscdevice ldt_miscdev = {
.minor = MISC_DYNAMIC_MINOR,
.name = KBUILD_MODNAME,
.fops = &ldt_fops,
};
/*
* UART initialization section
*/
static struct resource *port_r;
static int uart_probe(void)
{
int ret = 0;
if (port) {
/*
port_r = request_region(port, port_size, KBUILD_MODNAME);
if (!port_r) {
pr_err("%s\n", "request_region failed");
return -EBUSY;
}
*/
drvdata->port_ptr = ioport_map(port, port_size);
pr_debug("drvdata->port_ptr=%p\n", drvdata->port_ptr);
if (!drvdata->port_ptr) {
pr_err("%s\n", "ioport_map failed");
return -ENODEV;
}
}
if (!irq || !drvdata->port_ptr)
goto exit;
/*
* Minimal configuration of UART for trivial I/O opertaions
* and ISR just to porform basic tests.
* Some configuration of UART is not touched and reused.
*
* This minimal configiration of UART is based on
* full UART driver drivers/tty/serial/8250/8250.c
*/
ret = request_irq(irq, ldt_isr,
IRQF_SHARED, KBUILD_MODNAME, THIS_MODULE);
if (ret < 0) {
pr_err("%s\n", "request_irq failed");
return ret;
}
iowrite8(UART_MCR_RTS | UART_MCR_OUT2 | UART_MCR_LOOP,
drvdata->port_ptr + UART_MCR);
drvdata->uart_detected = (ioread8(drvdata->port_ptr + UART_MSR) & 0xF0)
== (UART_MSR_DCD | UART_MSR_CTS);
if (drvdata->uart_detected) {
iowrite8(UART_IER_RDI | UART_IER_RLSI | UART_IER_THRI,
drvdata->port_ptr + UART_IER);
iowrite8(UART_MCR_DTR | UART_MCR_RTS | UART_MCR_OUT2,
drvdata->port_ptr + UART_MCR);
iowrite8(UART_FCR_ENABLE_FIFO | UART_FCR_CLEAR_RCVR | UART_FCR_CLEAR_XMIT,
drvdata->port_ptr + UART_FCR);
pr_debug("loopback=%d\n", loopback);
if (loopback)
iowrite8(ioread8(drvdata->port_ptr + UART_MCR) | UART_MCR_LOOP,
drvdata->port_ptr + UART_MCR);
}
if (!drvdata->uart_detected && loopback)
pr_warn("Emulating loopback in software\n");
exit:
return ret;
}
/*
* main initialization and cleanup section
*/
static struct dentry *debugfs;
static void ldt_cleanup(void)
{
debugfs_remove(debugfs);
if (ldt_miscdev.this_device)
misc_deregister(&ldt_miscdev);
del_timer(&ldt_timer);
if (irq) {
if (drvdata->uart_detected) {
iowrite8(0, drvdata->port_ptr + UART_IER);
iowrite8(0, drvdata->port_ptr + UART_FCR);
iowrite8(0, drvdata->port_ptr + UART_MCR);
ioread8(drvdata->port_ptr + UART_RX);
}
free_irq(irq, THIS_MODULE);
}
tasklet_kill(&ldt_tasklet);
if (drvdata->in_buf) {
pages_flag(virt_to_page(drvdata->in_buf), PFN_UP(bufsize), PG_reserved, 0);
free_pages_exact(drvdata->in_buf, bufsize);
}
if (drvdata->out_buf) {
pages_flag(virt_to_page(drvdata->out_buf), PFN_UP(bufsize), PG_reserved, 0);
free_pages_exact(drvdata->out_buf, bufsize);
}
pr_debug("isr_counter=%d\n", isr_counter);
if (drvdata->port_ptr)
ioport_unmap(drvdata->port_ptr);
if (port_r)
release_region(port, port_size);
kfree(drvdata);
}
static struct ldt_data *ldt_data_init(void)
{
struct ldt_data *drvdata;
drvdata = kzalloc(sizeof(*drvdata), GFP_KERNEL);
if (!drvdata)
return NULL;
init_waitqueue_head(&drvdata->readable);
init_waitqueue_head(&drvdata->writeable);
INIT_KFIFO(drvdata->in_fifo);
INIT_KFIFO(drvdata->out_fifo);
mutex_init(&drvdata->read_lock);
mutex_init(&drvdata->write_lock);
return drvdata;
}
static int ldt_init(void)
{
int ret = 0;
pr_debug("MODNAME=%s\n", KBUILD_MODNAME);
pr_debug("port = %d irq = %d\n", port, irq);
drvdata = ldt_data_init();
if (!drvdata) {
pr_err("ldt_data_init failed\n");
goto exit;
}
/*
* Allocating buffers and pinning them to RAM
* to be mapped to user space in ldt_mmap
*/
drvdata->in_buf = alloc_pages_exact(bufsize, GFP_KERNEL | __GFP_ZERO);
if (!drvdata->in_buf) {
ret = -ENOMEM;
goto exit;
}
pages_flag(virt_to_page(drvdata->in_buf), PFN_UP(bufsize), PG_reserved, 1);
drvdata->out_buf = alloc_pages_exact(bufsize, GFP_KERNEL | __GFP_ZERO);
if (!drvdata->out_buf) {
ret = -ENOMEM;
goto exit;
}
pages_flag(virt_to_page(drvdata->out_buf), PFN_UP(bufsize), PG_reserved, 1);
isr_counter = 0;
/*
* This drivers without UART can be sill used
* in emulation mode for testing and demonstation of work
*/
ret = uart_probe();
if (ret < 0) {
pr_err("uart_probe failed\n");
goto exit;
}
mod_timer(&ldt_timer, jiffies + HZ / 10);
debugfs = debugfs_create_file(KBUILD_MODNAME, S_IRUGO, NULL, NULL, &ldt_fops);
if (IS_ERR(debugfs)) {
ret = PTR_ERR(debugfs);
pr_err("debugfs_create_file failed\n");
goto exit;
}
ret = misc_register(&ldt_miscdev);
if (ret < 0) {
pr_err("misc_register failed\n");
goto exit;
}
pr_debug("ldt_miscdev.minor=%d\n", ldt_miscdev.minor);
exit:
pr_debug("ret=%d\n", ret);
if (ret < 0)
ldt_cleanup();
return ret;
}
module_init(ldt_init);
module_exit(ldt_cleanup);
MODULE_DESCRIPTION("LDT - Linux Driver Template");
MODULE_AUTHOR("Constantine Shulyupin <[email protected]>");
MODULE_LICENSE("GPL");