123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424 |
- /*
- * AXP221 and AXP223 driver
- *
- * IMPORTANT when making changes to this file check that the registers
- * used are the same for the axp221 and axp223.
- *
- * (C) Copyright 2014 Hans de Goede <hdegoede@redhat.com>
- * (C) Copyright 2013 Oliver Schinagl <oliver@schinagl.nl>
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
- #include <common.h>
- #include <errno.h>
- #include <asm/arch/p2wi.h>
- #include <asm/arch/rsb.h>
- #include <axp221.h>
- /*
- * The axp221 uses the p2wi bus, the axp223 is identical (for all registers
- * used sofar) but uses the rsb bus. These functions abstract this.
- */
- static int pmic_bus_init(void)
- {
- #ifdef CONFIG_MACH_SUN6I
- p2wi_init();
- return p2wi_change_to_p2wi_mode(AXP221_CHIP_ADDR, AXP221_CTRL_ADDR,
- AXP221_INIT_DATA);
- #else
- int ret;
- rsb_init();
- ret = rsb_set_device_mode(AXP223_DEVICE_MODE_DATA);
- if (ret)
- return ret;
- return rsb_set_device_address(AXP223_DEVICE_ADDR, AXP223_RUNTIME_ADDR);
- #endif
- }
- static int pmic_bus_read(const u8 addr, u8 *data)
- {
- #ifdef CONFIG_MACH_SUN6I
- return p2wi_read(addr, data);
- #else
- return rsb_read(AXP223_RUNTIME_ADDR, addr, data);
- #endif
- }
- static int pmic_bus_write(const u8 addr, u8 data)
- {
- #ifdef CONFIG_MACH_SUN6I
- return p2wi_write(addr, data);
- #else
- return rsb_write(AXP223_RUNTIME_ADDR, addr, data);
- #endif
- }
- static u8 axp221_mvolt_to_cfg(int mvolt, int min, int max, int div)
- {
- if (mvolt < min)
- mvolt = min;
- else if (mvolt > max)
- mvolt = max;
- return (mvolt - min) / div;
- }
- static int axp221_setbits(u8 reg, u8 bits)
- {
- int ret;
- u8 val;
- ret = pmic_bus_read(reg, &val);
- if (ret)
- return ret;
- val |= bits;
- return pmic_bus_write(reg, val);
- }
- static int axp221_clrbits(u8 reg, u8 bits)
- {
- int ret;
- u8 val;
- ret = pmic_bus_read(reg, &val);
- if (ret)
- return ret;
- val &= ~bits;
- return pmic_bus_write(reg, val);
- }
- int axp221_set_dcdc1(unsigned int mvolt)
- {
- int ret;
- u8 cfg = axp221_mvolt_to_cfg(mvolt, 1600, 3400, 100);
- if (mvolt == 0)
- return axp221_clrbits(AXP221_OUTPUT_CTRL1,
- AXP221_OUTPUT_CTRL1_DCDC1_EN);
- ret = pmic_bus_write(AXP221_DCDC1_CTRL, cfg);
- if (ret)
- return ret;
- ret = axp221_setbits(AXP221_OUTPUT_CTRL2,
- AXP221_OUTPUT_CTRL2_DCDC1SW_EN);
- if (ret)
- return ret;
- return axp221_setbits(AXP221_OUTPUT_CTRL1,
- AXP221_OUTPUT_CTRL1_DCDC1_EN);
- }
- int axp221_set_dcdc2(unsigned int mvolt)
- {
- int ret;
- u8 cfg = axp221_mvolt_to_cfg(mvolt, 600, 1540, 20);
- if (mvolt == 0)
- return axp221_clrbits(AXP221_OUTPUT_CTRL1,
- AXP221_OUTPUT_CTRL1_DCDC2_EN);
- ret = pmic_bus_write(AXP221_DCDC2_CTRL, cfg);
- if (ret)
- return ret;
- return axp221_setbits(AXP221_OUTPUT_CTRL1,
- AXP221_OUTPUT_CTRL1_DCDC2_EN);
- }
- int axp221_set_dcdc3(unsigned int mvolt)
- {
- int ret;
- u8 cfg = axp221_mvolt_to_cfg(mvolt, 600, 1860, 20);
- if (mvolt == 0)
- return axp221_clrbits(AXP221_OUTPUT_CTRL1,
- AXP221_OUTPUT_CTRL1_DCDC3_EN);
- ret = pmic_bus_write(AXP221_DCDC3_CTRL, cfg);
- if (ret)
- return ret;
- return axp221_setbits(AXP221_OUTPUT_CTRL1,
- AXP221_OUTPUT_CTRL1_DCDC3_EN);
- }
- int axp221_set_dcdc4(unsigned int mvolt)
- {
- int ret;
- u8 cfg = axp221_mvolt_to_cfg(mvolt, 600, 1540, 20);
- if (mvolt == 0)
- return axp221_clrbits(AXP221_OUTPUT_CTRL1,
- AXP221_OUTPUT_CTRL1_DCDC4_EN);
- ret = pmic_bus_write(AXP221_DCDC4_CTRL, cfg);
- if (ret)
- return ret;
- return axp221_setbits(AXP221_OUTPUT_CTRL1,
- AXP221_OUTPUT_CTRL1_DCDC4_EN);
- }
- int axp221_set_dcdc5(unsigned int mvolt)
- {
- int ret;
- u8 cfg = axp221_mvolt_to_cfg(mvolt, 1000, 2550, 50);
- if (mvolt == 0)
- return axp221_clrbits(AXP221_OUTPUT_CTRL1,
- AXP221_OUTPUT_CTRL1_DCDC5_EN);
- ret = pmic_bus_write(AXP221_DCDC5_CTRL, cfg);
- if (ret)
- return ret;
- return axp221_setbits(AXP221_OUTPUT_CTRL1,
- AXP221_OUTPUT_CTRL1_DCDC5_EN);
- }
- int axp221_set_dldo1(unsigned int mvolt)
- {
- int ret;
- u8 cfg = axp221_mvolt_to_cfg(mvolt, 700, 3300, 100);
- if (mvolt == 0)
- return axp221_clrbits(AXP221_OUTPUT_CTRL2,
- AXP221_OUTPUT_CTRL2_DLDO1_EN);
- ret = pmic_bus_write(AXP221_DLDO1_CTRL, cfg);
- if (ret)
- return ret;
- return axp221_setbits(AXP221_OUTPUT_CTRL2,
- AXP221_OUTPUT_CTRL2_DLDO1_EN);
- }
- int axp221_set_dldo2(unsigned int mvolt)
- {
- int ret;
- u8 cfg = axp221_mvolt_to_cfg(mvolt, 700, 3300, 100);
- if (mvolt == 0)
- return axp221_clrbits(AXP221_OUTPUT_CTRL2,
- AXP221_OUTPUT_CTRL2_DLDO2_EN);
- ret = pmic_bus_write(AXP221_DLDO2_CTRL, cfg);
- if (ret)
- return ret;
- return axp221_setbits(AXP221_OUTPUT_CTRL2,
- AXP221_OUTPUT_CTRL2_DLDO2_EN);
- }
- int axp221_set_dldo3(unsigned int mvolt)
- {
- int ret;
- u8 cfg = axp221_mvolt_to_cfg(mvolt, 700, 3300, 100);
- if (mvolt == 0)
- return axp221_clrbits(AXP221_OUTPUT_CTRL2,
- AXP221_OUTPUT_CTRL2_DLDO3_EN);
- ret = pmic_bus_write(AXP221_DLDO3_CTRL, cfg);
- if (ret)
- return ret;
- return axp221_setbits(AXP221_OUTPUT_CTRL2,
- AXP221_OUTPUT_CTRL2_DLDO3_EN);
- }
- int axp221_set_dldo4(unsigned int mvolt)
- {
- int ret;
- u8 cfg = axp221_mvolt_to_cfg(mvolt, 700, 3300, 100);
- if (mvolt == 0)
- return axp221_clrbits(AXP221_OUTPUT_CTRL2,
- AXP221_OUTPUT_CTRL2_DLDO4_EN);
- ret = pmic_bus_write(AXP221_DLDO4_CTRL, cfg);
- if (ret)
- return ret;
- return axp221_setbits(AXP221_OUTPUT_CTRL2,
- AXP221_OUTPUT_CTRL2_DLDO4_EN);
- }
- int axp221_set_aldo1(unsigned int mvolt)
- {
- int ret;
- u8 cfg = axp221_mvolt_to_cfg(mvolt, 700, 3300, 100);
- if (mvolt == 0)
- return axp221_clrbits(AXP221_OUTPUT_CTRL1,
- AXP221_OUTPUT_CTRL1_ALDO1_EN);
- ret = pmic_bus_write(AXP221_ALDO1_CTRL, cfg);
- if (ret)
- return ret;
- return axp221_setbits(AXP221_OUTPUT_CTRL1,
- AXP221_OUTPUT_CTRL1_ALDO1_EN);
- }
- int axp221_set_aldo2(unsigned int mvolt)
- {
- int ret;
- u8 cfg = axp221_mvolt_to_cfg(mvolt, 700, 3300, 100);
- if (mvolt == 0)
- return axp221_clrbits(AXP221_OUTPUT_CTRL1,
- AXP221_OUTPUT_CTRL1_ALDO2_EN);
- ret = pmic_bus_write(AXP221_ALDO2_CTRL, cfg);
- if (ret)
- return ret;
- return axp221_setbits(AXP221_OUTPUT_CTRL1,
- AXP221_OUTPUT_CTRL1_ALDO2_EN);
- }
- int axp221_set_aldo3(unsigned int mvolt)
- {
- int ret;
- u8 cfg = axp221_mvolt_to_cfg(mvolt, 700, 3300, 100);
- if (mvolt == 0)
- return axp221_clrbits(AXP221_OUTPUT_CTRL3,
- AXP221_OUTPUT_CTRL3_ALDO3_EN);
- ret = pmic_bus_write(AXP221_ALDO3_CTRL, cfg);
- if (ret)
- return ret;
- return axp221_setbits(AXP221_OUTPUT_CTRL3,
- AXP221_OUTPUT_CTRL3_ALDO3_EN);
- }
- int axp221_set_eldo(int eldo_num, unsigned int mvolt)
- {
- int ret;
- u8 cfg = axp221_mvolt_to_cfg(mvolt, 700, 3300, 100);
- u8 addr, bits;
- switch (eldo_num) {
- case 3:
- addr = AXP221_ELDO3_CTRL;
- bits = AXP221_OUTPUT_CTRL2_ELDO3_EN;
- break;
- case 2:
- addr = AXP221_ELDO2_CTRL;
- bits = AXP221_OUTPUT_CTRL2_ELDO2_EN;
- break;
- case 1:
- addr = AXP221_ELDO1_CTRL;
- bits = AXP221_OUTPUT_CTRL2_ELDO1_EN;
- break;
- default:
- return -EINVAL;
- }
- if (mvolt == 0)
- return axp221_clrbits(AXP221_OUTPUT_CTRL2, bits);
- ret = pmic_bus_write(addr, cfg);
- if (ret)
- return ret;
- return axp221_setbits(AXP221_OUTPUT_CTRL2, bits);
- }
- int axp221_init(void)
- {
- /* This cannot be 0 because it is used in SPL before BSS is ready */
- static int needs_init = 1;
- u8 axp_chip_id;
- int ret;
- if (!needs_init)
- return 0;
- ret = pmic_bus_init();
- if (ret)
- return ret;
- ret = pmic_bus_read(AXP221_CHIP_ID, &axp_chip_id);
- if (ret)
- return ret;
- if (!(axp_chip_id == 0x6 || axp_chip_id == 0x7 || axp_chip_id == 0x17))
- return -ENODEV;
- needs_init = 0;
- return 0;
- }
- int axp221_get_sid(unsigned int *sid)
- {
- u8 *dest = (u8 *)sid;
- int i, ret;
- ret = axp221_init();
- if (ret)
- return ret;
- ret = pmic_bus_write(AXP221_PAGE, 1);
- if (ret)
- return ret;
- for (i = 0; i < 16; i++) {
- ret = pmic_bus_read(AXP221_SID + i, &dest[i]);
- if (ret)
- return ret;
- }
- pmic_bus_write(AXP221_PAGE, 0);
- for (i = 0; i < 4; i++)
- sid[i] = be32_to_cpu(sid[i]);
- return 0;
- }
- static int axp_drivebus_setup(void)
- {
- int ret;
- ret = axp221_init();
- if (ret)
- return ret;
- /* Set N_VBUSEN pin to output / DRIVEBUS function */
- return axp221_clrbits(AXP221_MISC_CTRL, AXP221_MISC_CTRL_N_VBUSEN_FUNC);
- }
- int axp_drivebus_enable(void)
- {
- int ret;
- ret = axp_drivebus_setup();
- if (ret)
- return ret;
- /* Set DRIVEBUS high */
- return axp221_setbits(AXP221_VBUS_IPSOUT, AXP221_VBUS_IPSOUT_DRIVEBUS);
- }
- int axp_drivebus_disable(void)
- {
- int ret;
- ret = axp_drivebus_setup();
- if (ret)
- return ret;
- /* Set DRIVEBUS low */
- return axp221_clrbits(AXP221_VBUS_IPSOUT, AXP221_VBUS_IPSOUT_DRIVEBUS);
- }
|