aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/power/smb347_charger.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/power/smb347_charger.h')
-rwxr-xr-xinclude/linux/power/smb347_charger.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/include/linux/power/smb347_charger.h b/include/linux/power/smb347_charger.h
new file mode 100755
index 0000000..b8a1974
--- /dev/null
+++ b/include/linux/power/smb347_charger.h
@@ -0,0 +1,40 @@
+/*
+ * smb347_charger.c
+ *
+ * Copyright (C) 2011 Samsung Electronics
+ * SangYoung Son <hello.son@samsung.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 and
+ * only version 2 as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ */
+
+#ifndef __SMB347_CHARGER_H_
+#define __SMB347_CHARGER_H_
+
+struct smb_charger_callbacks {
+ void (*set_charging_state) (int, int);
+ int (*get_charging_state) (void);
+ void (*set_charging_current) (int);
+ int (*get_charging_current) (void);
+ int (*get_charger_is_full) (void);
+ int (*get_aicl_current)(void);
+ int (*get_input_current)(void);
+ void (*set_aicl_state)(int);
+};
+
+struct smb_charger_data {
+ void (*register_callbacks)(struct smb_charger_callbacks *);
+ void (*unregister_callbacks)(void);
+ int enable;
+ int stat;
+ int ta_nconnected;
+};
+
+#endif