cregit-Linux how code gets into the kernel

Release 4.15 include/linux/nvmem-consumer.h

Directory: include/linux
/*
 * nvmem framework consumer.
 *
 * Copyright (C) 2015 Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
 * Copyright (C) 2013 Maxime Ripard <maxime.ripard@free-electrons.com>
 *
 * This file is licensed under the terms of the GNU General Public
 * License version 2.  This program is licensed "as is" without any
 * warranty of any kind, whether express or implied.
 */

#ifndef _LINUX_NVMEM_CONSUMER_H

#define _LINUX_NVMEM_CONSUMER_H

#include <linux/err.h>
#include <linux/errno.h>

struct device;
struct device_node;
/* consumer cookie */
struct nvmem_cell;
struct nvmem_device;


struct nvmem_cell_info {
	
const char		*name;
	
unsigned int		offset;
	
unsigned int		bytes;
	
unsigned int		bit_offset;
	
unsigned int		nbits;
};

#if IS_ENABLED(CONFIG_NVMEM)

/* Cell based interface */
struct nvmem_cell *nvmem_cell_get(struct device *dev, const char *name);
struct nvmem_cell *devm_nvmem_cell_get(struct device *dev, const char *name);
void nvmem_cell_put(struct nvmem_cell *cell);
void devm_nvmem_cell_put(struct device *dev, struct nvmem_cell *cell);
void *nvmem_cell_read(struct nvmem_cell *cell, size_t *len);
int nvmem_cell_write(struct nvmem_cell *cell, void *buf, size_t len);
int nvmem_cell_read_u32(struct device *dev, const char *cell_id, u32 *val);

/* direct nvmem device read/write interface */
struct nvmem_device *nvmem_device_get(struct device *dev, const char *name);
struct nvmem_device *devm_nvmem_device_get(struct device *dev,
					   const char *name);
void nvmem_device_put(struct nvmem_device *nvmem);
void devm_nvmem_device_put(struct device *dev, struct nvmem_device *nvmem);
int nvmem_device_read(struct nvmem_device *nvmem, unsigned int offset,
		      size_t bytes, void *buf);
int nvmem_device_write(struct nvmem_device *nvmem, unsigned int offset,
		       size_t bytes, void *buf);
ssize_t nvmem_device_cell_read(struct nvmem_device *nvmem,
			   struct nvmem_cell_info *info, void *buf);
int nvmem_device_cell_write(struct nvmem_device *nvmem,
			    struct nvmem_cell_info *info, void *buf);

#else


static inline struct nvmem_cell *nvmem_cell_get(struct device *dev, const char *name) { return ERR_PTR(-ENOSYS); }

Contributors

PersonTokensPropCommitsCommitProp
Srinivas Kandagatla26100.00%1100.00%
Total26100.00%1100.00%


static inline struct nvmem_cell *devm_nvmem_cell_get(struct device *dev, const char *name) { return ERR_PTR(-ENOSYS); }

Contributors

PersonTokensPropCommitsCommitProp
Srinivas Kandagatla26100.00%1100.00%
Total26100.00%1100.00%


static inline void devm_nvmem_cell_put(struct device *dev, struct nvmem_cell *cell) { }

Contributors

PersonTokensPropCommitsCommitProp
Srinivas Kandagatla16100.00%1100.00%
Total16100.00%1100.00%


static inline void nvmem_cell_put(struct nvmem_cell *cell) { }

Contributors

PersonTokensPropCommitsCommitProp
Srinivas Kandagatla11100.00%1100.00%
Total11100.00%1100.00%


static inline void *nvmem_cell_read(struct nvmem_cell *cell, size_t *len) { return ERR_PTR(-ENOSYS); }

Contributors

PersonTokensPropCommitsCommitProp
Srinivas Kandagatla2395.83%150.00%
Guenter Roeck14.17%150.00%
Total24100.00%2100.00%


static inline int nvmem_cell_write(struct nvmem_cell *cell, const char *buf, size_t len) { return -ENOSYS; }

Contributors

PersonTokensPropCommitsCommitProp
Srinivas Kandagatla24100.00%1100.00%
Total24100.00%1100.00%


static inline int nvmem_cell_read_u32(struct device *dev, const char *cell_id, u32 *val) { return -ENOSYS; }

Contributors

PersonTokensPropCommitsCommitProp
Leonard Crestez25100.00%1100.00%
Total25100.00%1100.00%


static inline struct nvmem_device *nvmem_device_get(struct device *dev, const char *name) { return ERR_PTR(-ENOSYS); }

Contributors

PersonTokensPropCommitsCommitProp
Srinivas Kandagatla26100.00%1100.00%
Total26100.00%1100.00%


static inline struct nvmem_device *devm_nvmem_device_get(struct device *dev, const char *name) { return ERR_PTR(-ENOSYS); }

Contributors

PersonTokensPropCommitsCommitProp
Srinivas Kandagatla26100.00%1100.00%
Total26100.00%1100.00%


static inline void nvmem_device_put(struct nvmem_device *nvmem) { }

Contributors

PersonTokensPropCommitsCommitProp
Srinivas Kandagatla11100.00%1100.00%
Total11100.00%1100.00%


static inline void devm_nvmem_device_put(struct device *dev, struct nvmem_device *nvmem) { }

Contributors

PersonTokensPropCommitsCommitProp
Srinivas Kandagatla16100.00%1100.00%
Total16100.00%1100.00%


static inline ssize_t nvmem_device_cell_read(struct nvmem_device *nvmem, struct nvmem_cell_info *info, void *buf) { return -ENOSYS; }

Contributors

PersonTokensPropCommitsCommitProp
Srinivas Kandagatla25100.00%1100.00%
Total25100.00%1100.00%


static inline int nvmem_device_cell_write(struct nvmem_device *nvmem, struct nvmem_cell_info *info, void *buf) { return -ENOSYS; }

Contributors

PersonTokensPropCommitsCommitProp
Srinivas Kandagatla25100.00%1100.00%
Total25100.00%1100.00%


static inline int nvmem_device_read(struct nvmem_device *nvmem, unsigned int offset, size_t bytes, void *buf) { return -ENOSYS; }

Contributors

PersonTokensPropCommitsCommitProp
Srinivas Kandagatla27100.00%1100.00%
Total27100.00%1100.00%


static inline int nvmem_device_write(struct nvmem_device *nvmem, unsigned int offset, size_t bytes, void *buf) { return -ENOSYS; }

Contributors

PersonTokensPropCommitsCommitProp
Srinivas Kandagatla27100.00%1100.00%
Total27100.00%1100.00%

#endif /* CONFIG_NVMEM */ #if IS_ENABLED(CONFIG_NVMEM) && IS_ENABLED(CONFIG_OF) struct nvmem_cell *of_nvmem_cell_get(struct device_node *np, const char *name); struct nvmem_device *of_nvmem_device_get(struct device_node *np, const char *name); #else
static inline struct nvmem_cell *of_nvmem_cell_get(struct device_node *np, const char *name) { return ERR_PTR(-ENOSYS); }

Contributors

PersonTokensPropCommitsCommitProp
Srinivas Kandagatla26100.00%1100.00%
Total26100.00%1100.00%


static inline struct nvmem_device *of_nvmem_device_get(struct device_node *np, const char *name) { return ERR_PTR(-ENOSYS); }

Contributors

PersonTokensPropCommitsCommitProp
Srinivas Kandagatla26100.00%1100.00%
Total26100.00%1100.00%

#endif /* CONFIG_NVMEM && CONFIG_OF */ #endif /* ifndef _LINUX_NVMEM_CONSUMER_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
Srinivas Kandagatla69394.03%466.67%
Leonard Crestez435.83%116.67%
Guenter Roeck10.14%116.67%
Total737100.00%6100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.