Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Peng Fan | 1c1f607 | 2015-08-14 11:36:16 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2015 Freescale Semiconductor, Inc |
| 4 | * Peng Fan <Peng.Fan@freescale.com> |
Peng Fan | 1c1f607 | 2015-08-14 11:36:16 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <fdtdec.h> |
| 9 | #include <errno.h> |
| 10 | #include <dm.h> |
| 11 | #include <i2c.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame^] | 12 | #include <log.h> |
Peng Fan | 1c1f607 | 2015-08-14 11:36:16 +0200 | [diff] [blame] | 13 | #include <power/pmic.h> |
| 14 | #include <power/regulator.h> |
| 15 | #include <power/pfuze100_pmic.h> |
Trent Piepho | 7da7ff5 | 2018-04-25 10:06:00 -0700 | [diff] [blame] | 16 | #include <power/pfuze3000_pmic.h> |
Peng Fan | 1c1f607 | 2015-08-14 11:36:16 +0200 | [diff] [blame] | 17 | |
Peng Fan | 1c1f607 | 2015-08-14 11:36:16 +0200 | [diff] [blame] | 18 | static const struct pmic_child_info pmic_children_info[] = { |
| 19 | /* sw[x], swbst */ |
| 20 | { .prefix = "s", .driver = PFUZE100_REGULATOR_DRIVER }, |
| 21 | /* vgen[x], vsnvs, vcc, v33, vcc_sd */ |
| 22 | { .prefix = "v", .driver = PFUZE100_REGULATOR_DRIVER }, |
| 23 | { }, |
| 24 | }; |
| 25 | |
| 26 | static int pfuze100_reg_count(struct udevice *dev) |
| 27 | { |
Trent Piepho | 7da7ff5 | 2018-04-25 10:06:00 -0700 | [diff] [blame] | 28 | return dev->driver_data == PFUZE3000 ? PFUZE3000_NUM_OF_REGS : PFUZE100_NUM_OF_REGS; |
Peng Fan | 1c1f607 | 2015-08-14 11:36:16 +0200 | [diff] [blame] | 29 | } |
| 30 | |
| 31 | static int pfuze100_write(struct udevice *dev, uint reg, const uint8_t *buff, |
| 32 | int len) |
| 33 | { |
| 34 | if (dm_i2c_write(dev, reg, buff, len)) { |
Simon Glass | c83c436 | 2018-11-18 08:14:28 -0700 | [diff] [blame] | 35 | pr_err("write error to device: %p register: %#x!\n", dev, reg); |
Peng Fan | 1c1f607 | 2015-08-14 11:36:16 +0200 | [diff] [blame] | 36 | return -EIO; |
| 37 | } |
| 38 | |
| 39 | return 0; |
| 40 | } |
| 41 | |
| 42 | static int pfuze100_read(struct udevice *dev, uint reg, uint8_t *buff, int len) |
| 43 | { |
| 44 | if (dm_i2c_read(dev, reg, buff, len)) { |
Fabio Estevam | 417ea63 | 2020-04-17 09:27:10 -0300 | [diff] [blame] | 45 | debug("read error from device: %p register: %#x!\n", dev, reg); |
Peng Fan | 1c1f607 | 2015-08-14 11:36:16 +0200 | [diff] [blame] | 46 | return -EIO; |
| 47 | } |
| 48 | |
| 49 | return 0; |
| 50 | } |
| 51 | |
| 52 | static int pfuze100_bind(struct udevice *dev) |
| 53 | { |
Simon Glass | 7a869e6 | 2017-05-18 20:09:32 -0600 | [diff] [blame] | 54 | ofnode regulators_node; |
Peng Fan | 1c1f607 | 2015-08-14 11:36:16 +0200 | [diff] [blame] | 55 | int children; |
Peng Fan | 1c1f607 | 2015-08-14 11:36:16 +0200 | [diff] [blame] | 56 | |
Simon Glass | 7a869e6 | 2017-05-18 20:09:32 -0600 | [diff] [blame] | 57 | regulators_node = dev_read_subnode(dev, "regulators"); |
| 58 | if (!ofnode_valid(regulators_node)) { |
Simon Glass | c83c436 | 2018-11-18 08:14:28 -0700 | [diff] [blame] | 59 | debug("%s: %s regulators subnode not found!\n", __func__, |
Peng Fan | 1c1f607 | 2015-08-14 11:36:16 +0200 | [diff] [blame] | 60 | dev->name); |
| 61 | return -ENXIO; |
| 62 | } |
| 63 | |
| 64 | debug("%s: '%s' - found regulators subnode\n", __func__, dev->name); |
| 65 | |
| 66 | children = pmic_bind_children(dev, regulators_node, pmic_children_info); |
| 67 | if (!children) |
| 68 | debug("%s: %s - no child found\n", __func__, dev->name); |
| 69 | |
| 70 | /* Always return success for this device */ |
| 71 | return 0; |
| 72 | } |
| 73 | |
| 74 | static struct dm_pmic_ops pfuze100_ops = { |
| 75 | .reg_count = pfuze100_reg_count, |
| 76 | .read = pfuze100_read, |
| 77 | .write = pfuze100_write, |
| 78 | }; |
| 79 | |
| 80 | static const struct udevice_id pfuze100_ids[] = { |
| 81 | { .compatible = "fsl,pfuze100", .data = PFUZE100, }, |
| 82 | { .compatible = "fsl,pfuze200", .data = PFUZE200, }, |
| 83 | { .compatible = "fsl,pfuze3000", .data = PFUZE3000, }, |
| 84 | { } |
| 85 | }; |
| 86 | |
| 87 | U_BOOT_DRIVER(pmic_pfuze100) = { |
| 88 | .name = "pfuze100 pmic", |
| 89 | .id = UCLASS_PMIC, |
| 90 | .of_match = pfuze100_ids, |
| 91 | .bind = pfuze100_bind, |
| 92 | .ops = &pfuze100_ops, |
| 93 | }; |