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
|
#include <linux/io.h>
#include "fopdrv.h"
#include "config.h"
// driver/char/mem.c read_null (/dev/null)
ssize_t fop_read(struct file *file, char __user *buf, size_t count, loff_t *ppos) {
printk("%s(<file>, <buf>, %u, <ppos>)\n", __PRETTY_FUNCTION__, count);
return 0;
}
ssize_t fop_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos) {
printk("%s(<file>, <buf>, %u, <ppos>)\n", __PRETTY_FUNCTION__, count);
// only allow single character as input
if (count != 1) return count;
// copy buffer for reading (see [kernel-labs-chrdev] in ../readme.md)
char input_buf[10];
if (copy_from_user(input_buf + *ppos, buf, count))
return -EFAULT;
ti_am335x_word_t* gpio1 = ioremap(TI_AM335X_GPIO1_ADDR, GPIO_REG_SIZE);
barrier();
if (input_buf[0] == '0') {
printk("TODO: TURN OFF OUTPUT\n");
iowrite32((1<<PIN), gpio1 + GPIO_CLEARDATAOUT); wmb();
}
if (input_buf[0] == '1') {
printk("TODO: TURN ON OUTPUT\n");
iowrite32((1<<PIN), gpio1 + GPIO_SETDATAOUT); wmb();
}
iounmap(gpio1);
return count;
}
int fop_open(struct inode * inode, struct file * file) {
printk("%s(<inode>, <file>)\n", __PRETTY_FUNCTION__);
return 0;
// 0 seems to be a safe return value as it's used in driver/char/mem.c. The
// manual page for open(2) says that the system call returns a nonnegative
// integer representing the file descriptor on success, but it does not
// appears to be required.
}
int fop_release(struct inode * inode, struct file * file) {
printk("%s(<inode>, <file>)\n", __PRETTY_FUNCTION__);
return 0;
// same as above, but found in driver/char/lp.c
}
|