1 /* SPDX-License-Identifier: GPL-2.0 */
5 #include <linux/errno.h>
6 #include <uapi/linux/nvram.h>
9 #include <asm/machdep.h>
13 * struct nvram_ops - NVRAM functionality made available to drivers
14 * @read: validate checksum (if any) then load a range of bytes from NVRAM
15 * @write: store a range of bytes to NVRAM then update checksum (if any)
16 * @read_byte: load a single byte from NVRAM
17 * @write_byte: store a single byte to NVRAM
18 * @get_size: return the fixed number of bytes in the NVRAM
20 * Architectures which provide an nvram ops struct need not implement all
21 * of these methods. If the NVRAM hardware can be accessed only one byte
22 * at a time then it may be sufficient to provide .read_byte and .write_byte.
23 * If the NVRAM has a checksum (and it is to be checked) the .read and
24 * .write methods can be used to implement that efficiently.
26 * Portable drivers may use the wrapper functions defined here.
27 * The nvram_read() and nvram_write() functions call the .read and .write
28 * methods when available and fall back on the .read_byte and .write_byte
33 ssize_t (*get_size
)(void);
34 unsigned char (*read_byte
)(int);
35 void (*write_byte
)(unsigned char, int);
36 ssize_t (*read
)(char *, size_t, loff_t
*);
37 ssize_t (*write
)(char *, size_t, loff_t
*);
38 #if defined(CONFIG_X86) || defined(CONFIG_M68K)
39 long (*initialize
)(void);
40 long (*set_checksum
)(void);
44 extern const struct nvram_ops arch_nvram_ops
;
46 static inline ssize_t
nvram_get_size(void)
49 if (ppc_md
.nvram_size
)
50 return ppc_md
.nvram_size();
52 if (arch_nvram_ops
.get_size
)
53 return arch_nvram_ops
.get_size();
58 static inline unsigned char nvram_read_byte(int addr
)
61 if (ppc_md
.nvram_read_val
)
62 return ppc_md
.nvram_read_val(addr
);
64 if (arch_nvram_ops
.read_byte
)
65 return arch_nvram_ops
.read_byte(addr
);
70 static inline void nvram_write_byte(unsigned char val
, int addr
)
73 if (ppc_md
.nvram_write_val
)
74 ppc_md
.nvram_write_val(addr
, val
);
76 if (arch_nvram_ops
.write_byte
)
77 arch_nvram_ops
.write_byte(val
, addr
);
81 static inline ssize_t
nvram_read_bytes(char *buf
, size_t count
, loff_t
*ppos
)
83 ssize_t nvram_size
= nvram_get_size();
89 for (i
= *ppos
; count
> 0 && i
< nvram_size
; ++i
, ++p
, --count
)
90 *p
= nvram_read_byte(i
);
95 static inline ssize_t
nvram_write_bytes(char *buf
, size_t count
, loff_t
*ppos
)
97 ssize_t nvram_size
= nvram_get_size();
103 for (i
= *ppos
; count
> 0 && i
< nvram_size
; ++i
, ++p
, --count
)
104 nvram_write_byte(*p
, i
);
109 static inline ssize_t
nvram_read(char *buf
, size_t count
, loff_t
*ppos
)
112 if (ppc_md
.nvram_read
)
113 return ppc_md
.nvram_read(buf
, count
, ppos
);
115 if (arch_nvram_ops
.read
)
116 return arch_nvram_ops
.read(buf
, count
, ppos
);
118 return nvram_read_bytes(buf
, count
, ppos
);
121 static inline ssize_t
nvram_write(char *buf
, size_t count
, loff_t
*ppos
)
124 if (ppc_md
.nvram_write
)
125 return ppc_md
.nvram_write(buf
, count
, ppos
);
127 if (arch_nvram_ops
.write
)
128 return arch_nvram_ops
.write(buf
, count
, ppos
);
130 return nvram_write_bytes(buf
, count
, ppos
);
133 #endif /* _LINUX_NVRAM_H */