1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
// SPDX-License-Identifier: GPL-2.0
/*
* Apple SoC SPMI device driver
*
* Copyright The Asahi Linux Contributors
*
* Inspired by:
* OpenBSD support Copyright (c) 2021 Mark Kettenis <kettenis@openbsd.org>
* Correllium support Copyright (C) 2021 Corellium LLC
* hisi-spmi-controller.c
* spmi-pmic-arb.c Copyright (c) 2021, The Linux Foundation.
*/
#include <linux/io.h>
#include <linux/iopoll.h>
#include <linux/module.h>
#include <linux/mod_devicetable.h>
#include <linux/platform_device.h>
#include <linux/spmi.h>
/* SPMI Controller Registers */
#define SPMI_STATUS_REG 0
#define SPMI_CMD_REG 0x4
#define SPMI_RSP_REG 0x8
#define SPMI_RX_FIFO_EMPTY BIT(24)
#define REG_POLL_INTERVAL_US 10000
#define REG_POLL_TIMEOUT_US (REG_POLL_INTERVAL_US * 5)
struct apple_spmi {
void __iomem *regs;
};
#define poll_reg(spmi, reg, val, cond) \
readl_poll_timeout((spmi)->regs + (reg), (val), (cond), \
REG_POLL_INTERVAL_US, REG_POLL_TIMEOUT_US)
static inline u32 apple_spmi_pack_cmd(u8 opc, u8 sid, u16 saddr, size_t len)
{
return opc | sid << 8 | saddr << 16 | (len - 1) | (1 << 15);
}
/* Wait for Rx FIFO to have something */
static int apple_spmi_wait_rx_not_empty(struct spmi_controller *ctrl)
{
struct apple_spmi *spmi = spmi_controller_get_drvdata(ctrl);
int ret;
u32 status;
ret = poll_reg(spmi, SPMI_STATUS_REG, status, !(status & SPMI_RX_FIFO_EMPTY));
if (ret) {
dev_err(&ctrl->dev,
"failed to wait for RX FIFO not empty\n");
return ret;
}
return 0;
}
static int spmi_read_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid,
u16 saddr, u8 *buf, size_t len)
{
struct apple_spmi *spmi = spmi_controller_get_drvdata(ctrl);
u32 spmi_cmd = apple_spmi_pack_cmd(opc, sid, saddr, len);
u32 rsp;
size_t len_read = 0;
u8 i;
int ret;
writel(spmi_cmd, spmi->regs + SPMI_CMD_REG);
ret = apple_spmi_wait_rx_not_empty(ctrl);
if (ret)
return ret;
/* Discard SPMI reply status */
readl(spmi->regs + SPMI_RSP_REG);
/* Read SPMI data reply */
while (len_read < len) {
rsp = readl(spmi->regs + SPMI_RSP_REG);
i = 0;
while ((len_read < len) && (i < 4)) {
buf[len_read++] = ((0xff << (8 * i)) & rsp) >> (8 * i);
i += 1;
}
}
return 0;
}
static int spmi_write_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid,
u16 saddr, const u8 *buf, size_t len)
{
struct apple_spmi *spmi = spmi_controller_get_drvdata(ctrl);
u32 spmi_cmd = apple_spmi_pack_cmd(opc, sid, saddr, len);
size_t i = 0, j;
int ret;
writel(spmi_cmd, spmi->regs + SPMI_CMD_REG);
while (i < len) {
j = 0;
spmi_cmd = 0;
while ((j < 4) & (i < len))
spmi_cmd |= buf[i++] << (j++ * 8);
writel(spmi_cmd, spmi->regs + SPMI_CMD_REG);
}
ret = apple_spmi_wait_rx_not_empty(ctrl);
if (ret)
return ret;
/* Discard */
readl(spmi->regs + SPMI_RSP_REG);
return 0;
}
static int apple_spmi_probe(struct platform_device *pdev)
{
struct apple_spmi *spmi;
struct spmi_controller *ctrl;
int ret;
ctrl = devm_spmi_controller_alloc(&pdev->dev, sizeof(*spmi));
if (IS_ERR(ctrl))
return -ENOMEM;
spmi = spmi_controller_get_drvdata(ctrl);
spmi->regs = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(spmi->regs))
return PTR_ERR(spmi->regs);
ctrl->dev.of_node = pdev->dev.of_node;
ctrl->read_cmd = spmi_read_cmd;
ctrl->write_cmd = spmi_write_cmd;
ret = devm_spmi_controller_add(&pdev->dev, ctrl);
if (ret)
return dev_err_probe(&pdev->dev, ret,
"spmi_controller_add failed\n");
return 0;
}
static const struct of_device_id apple_spmi_match_table[] = {
{ .compatible = "apple,spmi", },
{}
};
MODULE_DEVICE_TABLE(of, apple_spmi_match_table);
static struct platform_driver apple_spmi_driver = {
.probe = apple_spmi_probe,
.driver = {
.name = "apple-spmi",
.of_match_table = apple_spmi_match_table,
},
};
module_platform_driver(apple_spmi_driver);
MODULE_AUTHOR("Jean-Francois Bortolotti <jeff@borto.fr>");
MODULE_DESCRIPTION("Apple SoC SPMI driver");
MODULE_LICENSE("GPL");
|