Merge branch 'topic/fixes' into for-linus
[linux-2.6-block.git] / scripts / gdb / linux / constants.py.in
CommitLineData
f197d75f
KB
1/*
2 * gdb helper commands and functions for Linux kernel debugging
3 *
4 * Kernel constants derived from include files.
5 *
6 * Copyright (c) 2016 Linaro Ltd
7 *
8 * Authors:
9 * Kieran Bingham <kieran.bingham@linaro.org>
10 *
11 * This work is licensed under the terms of the GNU GPL version 2.
12 *
13 */
14
c1a15399
KB
15#include <linux/fs.h>
16#include <linux/mount.h>
821f7440 17#include <linux/of_fdt.h>
c1a15399 18
f197d75f 19/* We need to stringify expanded macros so that they can be parsed */
c1a15399 20
f197d75f
KB
21#define STRING(x) #x
22#define XSTRING(x) STRING(x)
23
24#define LX_VALUE(x) LX_##x = x
25#define LX_GDBPARSED(x) LX_##x = gdb.parse_and_eval(XSTRING(x))
26
27/*
28 * IS_ENABLED generates (a || b) which is not compatible with python
29 * We can only switch on configuration items we know are available
30 * Therefore - IS_BUILTIN() is more appropriate
31 */
32#define LX_CONFIG(x) LX_##x = IS_BUILTIN(x)
33
34/* The build system will take care of deleting everything above this marker */
35<!-- end-c-headers -->
36
37import gdb
c1a15399
KB
38
39/* linux/fs.h */
40LX_VALUE(MS_RDONLY)
41LX_VALUE(MS_SYNCHRONOUS)
42LX_VALUE(MS_MANDLOCK)
43LX_VALUE(MS_DIRSYNC)
44LX_VALUE(MS_NOATIME)
45LX_VALUE(MS_NODIRATIME)
46
47/* linux/mount.h */
48LX_VALUE(MNT_NOSUID)
49LX_VALUE(MNT_NODEV)
50LX_VALUE(MNT_NOEXEC)
51LX_VALUE(MNT_NOATIME)
52LX_VALUE(MNT_NODIRATIME)
53LX_VALUE(MNT_RELATIME)
821f7440
PG
54
55/* linux/of_fdt.h> */
56LX_VALUE(OF_DT_HEADER)
57
58/* Kernel Configs */
59LX_CONFIG(CONFIG_OF)