blob: 4bee8e72dab4acb6fee20dea46c0502be319b5ad [file] [log] [blame]
Christopher Ferris25981132017-11-14 16:53:49 -08001/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
Ben Cheng30692c62013-10-15 18:26:18 -07002#ifndef _UAPI_LINUX_NVRAM_H
3#define _UAPI_LINUX_NVRAM_H
4
5#include <linux/ioctl.h>
6
7/* /dev/nvram ioctls */
8#define NVRAM_INIT _IO('p', 0x40) /* initialize NVRAM and set checksum */
9#define NVRAM_SETCKS _IO('p', 0x41) /* recalculate checksum */
10
11/* for all current systems, this is where NVRAM starts */
12#define NVRAM_FIRST_BYTE 14
13/* all these functions expect an NVRAM offset, not an absolute */
14#define NVRAM_OFFSET(x) ((x)-NVRAM_FIRST_BYTE)
15
16
17#endif /* _UAPI_LINUX_NVRAM_H */