Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Stefano Babic | b2e5add | 2011-10-05 12:38:27 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2011 Samsung Electronics |
| 4 | * Lukasz Majewski <l.majewski@samsung.com> |
Stefano Babic | b2e5add | 2011-10-05 12:38:27 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <spi.h> |
Łukasz Majewski | c733681 | 2012-11-13 03:21:55 +0000 | [diff] [blame] | 9 | #include <power/pmic.h> |
Stefano Babic | b2e5add | 2011-10-05 12:38:27 +0200 | [diff] [blame] | 10 | #include <fsl_pmic.h> |
Łukasz Majewski | c733681 | 2012-11-13 03:21:55 +0000 | [diff] [blame] | 11 | #include <errno.h> |
Stefano Babic | b2e5add | 2011-10-05 12:38:27 +0200 | [diff] [blame] | 12 | |
Simon Glass | 913702c | 2014-05-20 06:01:34 -0600 | [diff] [blame] | 13 | #if defined(CONFIG_POWER_FSL_MC13892) |
Fabio Estevam | 4cfc6c4 | 2012-10-23 06:34:50 +0000 | [diff] [blame] | 14 | #define FSL_PMIC_I2C_LENGTH 3 |
Simon Glass | 913702c | 2014-05-20 06:01:34 -0600 | [diff] [blame] | 15 | #elif defined(CONFIG_POWER_FSL_MC34704) |
Fabio Estevam | 787f4f3 | 2012-10-23 06:36:18 +0000 | [diff] [blame] | 16 | #define FSL_PMIC_I2C_LENGTH 1 |
Fabio Estevam | 4cfc6c4 | 2012-10-23 06:34:50 +0000 | [diff] [blame] | 17 | #endif |
| 18 | |
Łukasz Majewski | be3b51a | 2012-11-13 03:22:14 +0000 | [diff] [blame] | 19 | #if defined(CONFIG_POWER_SPI) |
Stefano Babic | b2e5add | 2011-10-05 12:38:27 +0200 | [diff] [blame] | 20 | static u32 pmic_spi_prepare_tx(u32 reg, u32 *val, u32 write) |
| 21 | { |
Helmut Raiger | 435a728 | 2011-10-19 20:34:43 +0000 | [diff] [blame] | 22 | return (write << 31) | (reg << 25) | (*val & 0x00FFFFFF); |
Stefano Babic | b2e5add | 2011-10-05 12:38:27 +0200 | [diff] [blame] | 23 | } |
Stefano Babic | b7b7d3c | 2011-10-06 21:06:39 +0200 | [diff] [blame] | 24 | #endif |
Stefano Babic | b2e5add | 2011-10-05 12:38:27 +0200 | [diff] [blame] | 25 | |
Łukasz Majewski | c733681 | 2012-11-13 03:21:55 +0000 | [diff] [blame] | 26 | int pmic_init(unsigned char bus) |
Stefano Babic | b2e5add | 2011-10-05 12:38:27 +0200 | [diff] [blame] | 27 | { |
Stefano Babic | b2e5add | 2011-10-05 12:38:27 +0200 | [diff] [blame] | 28 | static const char name[] = "FSL_PMIC"; |
Łukasz Majewski | c733681 | 2012-11-13 03:21:55 +0000 | [diff] [blame] | 29 | struct pmic *p = pmic_alloc(); |
| 30 | |
| 31 | if (!p) { |
| 32 | printf("%s: POWER allocation error!\n", __func__); |
| 33 | return -ENOMEM; |
| 34 | } |
Stefano Babic | b2e5add | 2011-10-05 12:38:27 +0200 | [diff] [blame] | 35 | |
Stefano Babic | b2e5add | 2011-10-05 12:38:27 +0200 | [diff] [blame] | 36 | p->name = name; |
Stefano Babic | b2e5add | 2011-10-05 12:38:27 +0200 | [diff] [blame] | 37 | p->number_of_regs = PMIC_NUM_OF_REGS; |
Fabio Estevam | 839f4d4 | 2013-11-20 20:26:06 -0200 | [diff] [blame] | 38 | p->bus = bus; |
Stefano Babic | b2e5add | 2011-10-05 12:38:27 +0200 | [diff] [blame] | 39 | |
Łukasz Majewski | be3b51a | 2012-11-13 03:22:14 +0000 | [diff] [blame] | 40 | #if defined(CONFIG_POWER_SPI) |
Stefano Babic | b7b7d3c | 2011-10-06 21:06:39 +0200 | [diff] [blame] | 41 | p->interface = PMIC_SPI; |
Stefano Babic | b2e5add | 2011-10-05 12:38:27 +0200 | [diff] [blame] | 42 | p->hw.spi.cs = CONFIG_FSL_PMIC_CS; |
| 43 | p->hw.spi.clk = CONFIG_FSL_PMIC_CLK; |
| 44 | p->hw.spi.mode = CONFIG_FSL_PMIC_MODE; |
| 45 | p->hw.spi.bitlen = CONFIG_FSL_PMIC_BITLEN; |
| 46 | p->hw.spi.flags = SPI_XFER_BEGIN | SPI_XFER_END; |
| 47 | p->hw.spi.prepare_tx = pmic_spi_prepare_tx; |
Łukasz Majewski | be3b51a | 2012-11-13 03:22:14 +0000 | [diff] [blame] | 48 | #elif defined(CONFIG_POWER_I2C) |
Stefano Babic | b7b7d3c | 2011-10-06 21:06:39 +0200 | [diff] [blame] | 49 | p->interface = PMIC_I2C; |
| 50 | p->hw.i2c.addr = CONFIG_SYS_FSL_PMIC_I2C_ADDR; |
Fabio Estevam | 4cfc6c4 | 2012-10-23 06:34:50 +0000 | [diff] [blame] | 51 | p->hw.i2c.tx_num = FSL_PMIC_I2C_LENGTH; |
Stefano Babic | b7b7d3c | 2011-10-06 21:06:39 +0200 | [diff] [blame] | 52 | #else |
Simon Glass | 913702c | 2014-05-20 06:01:34 -0600 | [diff] [blame] | 53 | #error "You must select CONFIG_POWER_SPI or CONFIG_POWER_I2C" |
Stefano Babic | b7b7d3c | 2011-10-06 21:06:39 +0200 | [diff] [blame] | 54 | #endif |
Stefano Babic | b2e5add | 2011-10-05 12:38:27 +0200 | [diff] [blame] | 55 | |
| 56 | return 0; |
| 57 | } |