File: max77693_pmic.h

package info (click to toggle)
u-boot 2016.11%2Bdfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 104,408 kB
  • ctags: 428,706
  • sloc: ansic: 1,260,674; asm: 33,807; python: 10,106; perl: 8,014; makefile: 7,111; sh: 1,975; cpp: 1,829; yacc: 604; lex: 363; tcl: 28; sed: 24; awk: 6
file content (41 lines) | stat: -rw-r--r-- 1,083 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
 * Copyright (C) 2013 Samsung Electronics
 * Piotr Wilczek <p.wilczek@samsung.com>
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#ifndef __MAX77693_PMIC_H_
#define __MAX77693_PMIC_H_

#include <power/power_chrg.h>

#define CHARGER_MIN_CURRENT 200
#define CHARGER_MAX_CURRENT 2000

#define MAX77693_CHG_PREFIX	"max77693-chg:"

/* Registers */

#define MAX77693_CHG_BASE	0xB0
#define MAX77693_CHG_INT_OK	0xB2
#define MAX77693_CHG_CNFG_00	0xB7
#define MAX77693_CHG_CNFG_02	0xB9
#define MAX77693_CHG_CNFG_06	0xBD
#define MAX77693_SAFEOUT	0xC6

#define PMIC_NUM_OF_REGS	0xC7

#define MAX77693_CHG_DETBAT	(0x1 << 7)	/* MAX77693_CHG_INT_OK */
#define MAX77693_CHG_MODE_ON	0x05		/* MAX77693_CHG_CNFG_00 */
#define MAX77693_CHG_CC		0x3F		/* MAX77693_CHG_CNFG_02	*/
#define MAX77693_CHG_LOCK	(0x0 << 2)	/* MAX77693_CHG_CNFG_06	*/
#define MAX77693_CHG_UNLOCK	(0x3 << 2)	/* MAX77693_CHG_CNFG_06	*/

#define MAX77693_ENSAFEOUT1	(1 << 6)
#define MAX77693_ENSAFEOUT2	(1 << 7)

#define MAX77693_PMIC_I2C_ADDR	(0xCC >> 1)

int pmic_init_max77693(unsigned char bus);
#endif /* __MAX77693_PMIC_H_ */