Go to the source code of this file.
|
#define | MAX8907_II2RR_VERSION_MASK 0xF0 |
|
#define | MAX8907_II2RR_VERSION_REV_A 0x00 |
|
#define | MAX8907_II2RR_VERSION_REV_B 0x10 |
|
#define | MAX8907_II2RR_VERSION_REV_C 0x30 |
|
#define | REG_MBATT() |
|
#define | REG_LDO(ids, supply, base, min, max, step) |
|
#define | REG_FIXED(ids, supply, voltage) |
|
#define | REG_OUT5V(ids, supply, base, voltage) |
|
#define | REG_BBAT(ids, supply, base, min, max, step) |
|
#define | LDO_750_50(id, supply, base) |
|
#define | LDO_650_25(id, supply, base) |
|
#define LDO_650_25 |
( |
|
id, |
|
|
|
supply, |
|
|
|
base |
|
) |
| |
#define LDO_750_50 |
( |
|
id, |
|
|
|
supply, |
|
|
|
base |
|
) |
| |
#define MAX8907_II2RR_VERSION_MASK 0xF0 |
#define MAX8907_II2RR_VERSION_REV_A 0x00 |
#define MAX8907_II2RR_VERSION_REV_B 0x10 |
#define MAX8907_II2RR_VERSION_REV_C 0x30 |
Value:[MAX8907_##ids] = { \
.name = #ids, \
.supply_name = supply, \
.id = MAX8907_##ids, \
.ops = &max8907_bbat_ops, \
}
Definition at line 93 of file max8907-regulator.c.
#define REG_FIXED |
( |
|
ids, |
|
|
|
supply, |
|
|
|
voltage |
|
) |
| |
Value:[MAX8907_##ids] = { \
.name = #ids, \
.supply_name = supply, \
.id = MAX8907_##ids, \
.n_voltages = 1, \
.ops = &max8907_fixed_ops, \
.min_uV = (voltage), \
}
Definition at line 67 of file max8907-regulator.c.
Value:[MAX8907_##ids] = { \
.name = #ids, \
.supply_name = supply, \
.id = MAX8907_##ids, \
.ops = &max8907_ldo_ops, \
.vsel_mask = 0x3f, \
}
Definition at line 50 of file max8907-regulator.c.
Value:
.name = "MBATT", \
.supply_name = "mbatt", \
.ops = &max8907_mbatt_ops, \
}
Definition at line 40 of file max8907-regulator.c.
#define REG_OUT5V |
( |
|
ids, |
|
|
|
supply, |
|
|
|
base, |
|
|
|
voltage |
|
) |
| |
Value:[MAX8907_##ids] = { \
.name = #ids, \
.supply_name = supply, \
.id = MAX8907_##ids, \
.n_voltages = 1, \
.ops = &max8907_out5v_ops, \
.min_uV = (voltage), \
.enable_reg = (base), \
}
Definition at line 79 of file max8907-regulator.c.
MODULE_ALIAS |
( |
"platform:max8907-regulator" |
| ) |
|
module_exit |
( |
max8907_reg_exit |
| ) |
|
MODULE_LICENSE |
( |
"GPL v2" |
| ) |
|
subsys_initcall |
( |
max8907_regulator_init |
| ) |
|