blob: 96c23f929fd462a705cdca402dadb081430e0531 (
plain) (
blame)
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
|
/*
* Copyright (C) 2015 MediaTek Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#ifndef DEVFINO_H
#define DEVFINO_H
/*****************************************************************************
* MODULE DEFINITION
*****************************************************************************/
#define MODULE_NAME "[devinfo]"
#define DEV_NAME "devmap"
#define MAJOR_DEV_NUM 196
/*****************************************************************************
* IOCTL DEFINITION
*****************************************************************************/
#define DEV_IOC_MAGIC 'd'
#define READ_DEV_DATA _IOR(DEV_IOC_MAGIC, 1, unsigned int)
#define DEV_IOC_MAXNR (10)
/* devinfo_lk_atag_tag_header, devinfo_lk_atag_tag_devinfo_data and devinfo_lk_atag_tag_size
* come from LK atag.c.
* tag_header is renamed to devinfo_lk_atag_tag_header to avoid duplicated definition
* tag_devinfo_data is renamed to devinfo_lk_atag_tag_devinfo_data to avoid duplicated definition
* tag_size is renamed to devinfo_lk_atag_tag_size to avoid duplicated definition
*/
struct devinfo_lk_atag_tag_header {
u32 size;
u32 tag;
};
struct devinfo_lk_atag_tag_devinfo_data {
u32 devinfo_data_size;
};
#define devinfo_lk_atag_tag_size(type) ((sizeof(struct devinfo_lk_atag_tag_header) + sizeof(struct type)) >> 2)
#ifdef CONFIG_OF
/*device information data*/
struct devinfo_tag {
u32 size;
u32 tag;
u32 data[0]; /* device information */
};
#endif
#endif /* end of DEVFINO_H */
|