mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
46 lines
1.2 KiB
C
46 lines
1.2 KiB
C
|
/*
|
||
|
* Register map access API internal header
|
||
|
*
|
||
|
* Copyright 2011 Wolfson Microelectronics plc
|
||
|
*
|
||
|
* Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
|
||
|
*
|
||
|
* 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.
|
||
|
*/
|
||
|
|
||
|
#ifndef _REGMAP_INTERNAL_H
|
||
|
#define _REGMAP_INTERNAL_H
|
||
|
|
||
|
#include <linux/regmap.h>
|
||
|
|
||
|
struct regmap;
|
||
|
|
||
|
struct regmap_format {
|
||
|
size_t buf_size;
|
||
|
size_t reg_bytes;
|
||
|
size_t val_bytes;
|
||
|
void (*format_write)(struct regmap *map,
|
||
|
unsigned int reg, unsigned int val);
|
||
|
void (*format_reg)(void *buf, unsigned int reg);
|
||
|
void (*format_val)(void *buf, unsigned int val);
|
||
|
unsigned int (*parse_val)(void *buf);
|
||
|
};
|
||
|
|
||
|
struct regmap {
|
||
|
struct mutex lock;
|
||
|
|
||
|
struct device *dev; /* Device we do I/O on */
|
||
|
void *work_buf; /* Scratch buffer used to format I/O */
|
||
|
struct regmap_format format; /* Buffer format */
|
||
|
const struct regmap_bus *bus;
|
||
|
|
||
|
unsigned int max_register;
|
||
|
bool (*writeable_reg)(struct device *dev, unsigned int reg);
|
||
|
bool (*readable_reg)(struct device *dev, unsigned int reg);
|
||
|
bool (*volatile_reg)(struct device *dev, unsigned int reg);
|
||
|
};
|
||
|
|
||
|
#endif
|