1 // SPDX-License-Identifier: GPL-2.0
3 * Dollar Cove TI PMIC operation region driver
4 * Copyright (C) 2014 Intel Corporation. All rights reserved.
6 * Rewritten and cleaned up
10 #include <linux/acpi.h>
11 #include <linux/bits.h>
12 #include <linux/init.h>
13 #include <linux/mfd/intel_soc_pmic.h>
14 #include <linux/platform_device.h>
15 #include <asm/byteorder.h>
16 #include "intel_pmic.h"
18 /* registers stored in 16bit BE (high:low, total 10bit) */
19 #define PMIC_REG_MASK GENMASK(9, 0)
21 #define CHTDC_TI_VBAT 0x54
22 #define CHTDC_TI_DIETEMP 0x56
23 #define CHTDC_TI_BPTHERM 0x58
24 #define CHTDC_TI_GPADC 0x5a
26 static const struct pmic_table chtdc_ti_power_table[] = {
27 { .address = 0x00, .reg = 0x41 }, /* LDO1 */
28 { .address = 0x04, .reg = 0x42 }, /* LDO2 */
29 { .address = 0x08, .reg = 0x43 }, /* LDO3 */
30 { .address = 0x0c, .reg = 0x45 }, /* LDO5 */
31 { .address = 0x10, .reg = 0x46 }, /* LDO6 */
32 { .address = 0x14, .reg = 0x47 }, /* LDO7 */
33 { .address = 0x18, .reg = 0x48 }, /* LDO8 */
34 { .address = 0x1c, .reg = 0x49 }, /* LDO9 */
35 { .address = 0x20, .reg = 0x4a }, /* LD10 */
36 { .address = 0x24, .reg = 0x4b }, /* LD11 */
37 { .address = 0x28, .reg = 0x4c }, /* LD12 */
38 { .address = 0x2c, .reg = 0x4d }, /* LD13 */
39 { .address = 0x30, .reg = 0x4e }, /* LD14 */
42 static const struct pmic_table chtdc_ti_thermal_table[] = {
59 .reg = CHTDC_TI_BPTHERM
68 .reg = CHTDC_TI_DIETEMP
72 static int chtdc_ti_pmic_get_power(struct regmap *regmap, int reg, int bit,
77 if (regmap_read(regmap, reg, &data))
80 *value = data & BIT(0);
84 static int chtdc_ti_pmic_update_power(struct regmap *regmap, int reg, int bit,
87 return regmap_update_bits(regmap, reg, 1, on);
90 static int chtdc_ti_pmic_get_raw_temp(struct regmap *regmap, int reg)
94 if (regmap_bulk_read(regmap, reg, &buf, sizeof(buf)))
97 return be16_to_cpu(buf) & PMIC_REG_MASK;
100 static const struct intel_pmic_opregion_data chtdc_ti_pmic_opregion_data = {
101 .get_power = chtdc_ti_pmic_get_power,
102 .update_power = chtdc_ti_pmic_update_power,
103 .get_raw_temp = chtdc_ti_pmic_get_raw_temp,
104 .lpat_raw_to_temp = acpi_lpat_raw_to_temp,
105 .power_table = chtdc_ti_power_table,
106 .power_table_count = ARRAY_SIZE(chtdc_ti_power_table),
107 .thermal_table = chtdc_ti_thermal_table,
108 .thermal_table_count = ARRAY_SIZE(chtdc_ti_thermal_table),
109 .pmic_i2c_address = 0x5e,
112 static int chtdc_ti_pmic_opregion_probe(struct platform_device *pdev)
114 struct intel_soc_pmic *pmic = dev_get_drvdata(pdev->dev.parent);
117 err = intel_pmic_install_opregion_handler(&pdev->dev,
118 ACPI_HANDLE(pdev->dev.parent), pmic->regmap,
119 &chtdc_ti_pmic_opregion_data);
123 /* Re-enumerate devices depending on PMIC */
124 acpi_dev_clear_dependencies(ACPI_COMPANION(pdev->dev.parent));
128 static const struct platform_device_id chtdc_ti_pmic_opregion_id_table[] = {
129 { .name = "chtdc_ti_region" },
133 static struct platform_driver chtdc_ti_pmic_opregion_driver = {
134 .probe = chtdc_ti_pmic_opregion_probe,
136 .name = "cht_dollar_cove_ti_pmic",
138 .id_table = chtdc_ti_pmic_opregion_id_table,
140 builtin_platform_driver(chtdc_ti_pmic_opregion_driver);