2 * Copyright (C) 2011 Samsung Electronics
8 * (C) Copyright 2008-2009 Freescale Semiconductor, Inc.
10 * See file CREDITS for list of people who contributed to this
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License as
15 * published by the Free Software Foundation; either version 2 of
16 * the License, or (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
30 #include <linux/types.h>
31 #include <power/pmic.h>
35 int pmic_reg_write(struct pmic *p, u32 reg, u32 val)
37 unsigned char buf[4] = { 0 };
39 if (check_reg(p, reg))
42 switch (pmic_i2c_tx_num) {
44 if (p->sensor_byte_order == PMIC_SENSOR_BYTE_ORDER_BIG) {
45 buf[2] = (cpu_to_le32(val) >> 16) & 0xff;
46 buf[1] = (cpu_to_le32(val) >> 8) & 0xff;
47 buf[0] = cpu_to_le32(val) & 0xff;
49 buf[0] = (cpu_to_le32(val) >> 16) & 0xff;
50 buf[1] = (cpu_to_le32(val) >> 8) & 0xff;
51 buf[2] = cpu_to_le32(val) & 0xff;
55 if (p->sensor_byte_order == PMIC_SENSOR_BYTE_ORDER_BIG) {
56 buf[1] = (cpu_to_le32(val) >> 8) & 0xff;
57 buf[0] = cpu_to_le32(val) & 0xff;
59 buf[0] = (cpu_to_le32(val) >> 8) & 0xff;
60 buf[1] = cpu_to_le32(val) & 0xff;
64 buf[0] = cpu_to_le32(val) & 0xff;
67 printf("%s: invalid tx_num: %d", __func__, pmic_i2c_tx_num);
71 if (i2c_write(pmic_i2c_addr, reg, 1, buf, pmic_i2c_tx_num))
77 int pmic_reg_read(struct pmic *p, u32 reg, u32 *val)
79 unsigned char buf[4] = { 0 };
82 if (check_reg(p, reg))
85 if (i2c_read(pmic_i2c_addr, reg, 1, buf, pmic_i2c_tx_num))
88 switch (pmic_i2c_tx_num) {
90 if (p->sensor_byte_order == PMIC_SENSOR_BYTE_ORDER_BIG)
91 ret_val = le32_to_cpu(buf[2] << 16
92 | buf[1] << 8 | buf[0]);
94 ret_val = le32_to_cpu(buf[0] << 16 |
95 buf[1] << 8 | buf[2]);
98 if (p->sensor_byte_order == PMIC_SENSOR_BYTE_ORDER_BIG)
99 ret_val = le32_to_cpu(buf[1] << 8 | buf[0]);
101 ret_val = le32_to_cpu(buf[0] << 8 | buf[1]);
104 ret_val = le32_to_cpu(buf[0]);
107 printf("%s: invalid tx_num: %d", __func__, pmic_i2c_tx_num);
110 memcpy(val, &ret_val, sizeof(ret_val));
115 int pmic_probe(struct pmic *p)
118 debug("Bus: %d PMIC:%s probed!\n", p->bus, p->name);
119 if (i2c_probe(pmic_i2c_addr)) {
120 printf("Can't find PMIC:%s\n", p->name);