guowenxue
2024-12-23 b8e5f60912c77d52214c21e67fa91ec5f522c54c
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
/*
 * Copyright (C) 2024 LingYun IoT System Studio
 * Author: Guo Wenxue <guowenxue@gmail.com>
 *
 * A character skeleton driver test code in user space.
 */
 
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <fcntl.h>
 
#define CHR_MAGIC       'c'
#define CMD_READ        _IOR(CHR_MAGIC, 0, int)
#define CMD_WRITE       _IOW(CHR_MAGIC, 1, int)
 
int main (int argc, char **argv)
{
    char      *devname = "/dev/chrdev0";
    int        value;
    int        fd;
 
    fd = open(devname, O_RDWR);
    if( fd < 0 )
    {
        printf("Open device %s failed: %s\n", devname, strerror(errno));
        return 1;
    }
 
    if( ioctl(fd, CMD_READ, &value) < 0 )
    {
        printf("ioctl() failed: %s\n", strerror(errno));
        goto cleanup;
    }
    printf("Default value in driver: 0x%0x\n", value);
 
    value = 0x12345678;
    if( ioctl(fd, CMD_WRITE, &value) < 0 )
    {
        printf("ioctl() failed: %s\n", strerror(errno));
        goto cleanup;
    }
    printf("Wriee value into driver: 0x%0x\n", value);
 
    value = 0;
    if( ioctl(fd, CMD_READ, &value) < 0 )
    {
        printf("ioctl() failed: %s\n", strerror(errno));
        goto cleanup;
    }
    printf("Read value from driver : 0x%0x\n", value);
 
cleanup:
    close(fd);
    return 0;
}