spmi: pmic-arb: rename pa_xx to pmic_arb_xx and other cleanup
This patch cleans up the following. - Rename the "pa" to "pmic_arb". - Rename the spmi_pmic_arb *dev to spmi_pmic_arb *pmic_arb. - Rename the pa_{read,write}_data() functions to pmic_arb_{read,write}_data(). - Rename channel to APID. - Rename the HWIRQ_*() macros to hwirq_to_*(). Signed-off-by: Kiran Gunda <kgunda@codeaurora.org> Reviewed-by: Stephen Boyd <sboyd@codeaurora.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b319b5922d
commit
02abec3616
1 changed files with 209 additions and 209 deletions
|
@ -39,7 +39,7 @@
|
||||||
#define PMIC_ARB_WDATA1 0x14
|
#define PMIC_ARB_WDATA1 0x14
|
||||||
#define PMIC_ARB_RDATA0 0x18
|
#define PMIC_ARB_RDATA0 0x18
|
||||||
#define PMIC_ARB_RDATA1 0x1C
|
#define PMIC_ARB_RDATA1 0x1C
|
||||||
#define PMIC_ARB_REG_CHNL(N) (0x800 + 0x4 * (N))
|
#define PMIC_ARB_REG_APID(N) (0x800 + 0x4 * (N))
|
||||||
|
|
||||||
/* Mapping Table */
|
/* Mapping Table */
|
||||||
#define SPMI_MAPPING_TABLE_REG(N) (0x0B00 + (4 * (N)))
|
#define SPMI_MAPPING_TABLE_REG(N) (0x0B00 + (4 * (N)))
|
||||||
|
@ -51,7 +51,7 @@
|
||||||
|
|
||||||
#define SPMI_MAPPING_TABLE_TREE_DEPTH 16 /* Maximum of 16-bits */
|
#define SPMI_MAPPING_TABLE_TREE_DEPTH 16 /* Maximum of 16-bits */
|
||||||
#define PMIC_ARB_MAX_PPID BIT(12) /* PPID is 12bit */
|
#define PMIC_ARB_MAX_PPID BIT(12) /* PPID is 12bit */
|
||||||
#define PMIC_ARB_CHAN_VALID BIT(15)
|
#define PMIC_ARB_APID_VALID BIT(15)
|
||||||
|
|
||||||
/* Ownership Table */
|
/* Ownership Table */
|
||||||
#define SPMI_OWNERSHIP_TABLE_REG(N) (0x0700 + (4 * (N)))
|
#define SPMI_OWNERSHIP_TABLE_REG(N) (0x0700 + (4 * (N)))
|
||||||
|
@ -97,16 +97,16 @@ enum pmic_arb_cmd_op_code {
|
||||||
/* interrupt enable bit */
|
/* interrupt enable bit */
|
||||||
#define SPMI_PIC_ACC_ENABLE_BIT BIT(0)
|
#define SPMI_PIC_ACC_ENABLE_BIT BIT(0)
|
||||||
|
|
||||||
#define HWIRQ(slave_id, periph_id, irq_id, apid) \
|
#define spec_to_hwirq(slave_id, periph_id, irq_id, apid) \
|
||||||
((((slave_id) & 0xF) << 28) | \
|
((((slave_id) & 0xF) << 28) | \
|
||||||
(((periph_id) & 0xFF) << 20) | \
|
(((periph_id) & 0xFF) << 20) | \
|
||||||
(((irq_id) & 0x7) << 16) | \
|
(((irq_id) & 0x7) << 16) | \
|
||||||
(((apid) & 0x1FF) << 0))
|
(((apid) & 0x1FF) << 0))
|
||||||
|
|
||||||
#define HWIRQ_SID(hwirq) (((hwirq) >> 28) & 0xF)
|
#define hwirq_to_sid(hwirq) (((hwirq) >> 28) & 0xF)
|
||||||
#define HWIRQ_PER(hwirq) (((hwirq) >> 20) & 0xFF)
|
#define hwirq_to_per(hwirq) (((hwirq) >> 20) & 0xFF)
|
||||||
#define HWIRQ_IRQ(hwirq) (((hwirq) >> 16) & 0x7)
|
#define hwirq_to_irq(hwirq) (((hwirq) >> 16) & 0x7)
|
||||||
#define HWIRQ_APID(hwirq) (((hwirq) >> 0) & 0x1FF)
|
#define hwirq_to_apid(hwirq) (((hwirq) >> 0) & 0x1FF)
|
||||||
|
|
||||||
struct pmic_arb_ver_ops;
|
struct pmic_arb_ver_ops;
|
||||||
|
|
||||||
|
@ -132,7 +132,7 @@ struct apid_data {
|
||||||
* @domain: irq domain object for PMIC IRQ domain
|
* @domain: irq domain object for PMIC IRQ domain
|
||||||
* @spmic: SPMI controller object
|
* @spmic: SPMI controller object
|
||||||
* @ver_ops: version dependent operations.
|
* @ver_ops: version dependent operations.
|
||||||
* @ppid_to_apid in-memory copy of PPID -> channel (APID) mapping table.
|
* @ppid_to_apid in-memory copy of PPID -> APID mapping table.
|
||||||
*/
|
*/
|
||||||
struct spmi_pmic_arb {
|
struct spmi_pmic_arb {
|
||||||
void __iomem *rd_base;
|
void __iomem *rd_base;
|
||||||
|
@ -178,10 +178,10 @@ struct spmi_pmic_arb {
|
||||||
*/
|
*/
|
||||||
struct pmic_arb_ver_ops {
|
struct pmic_arb_ver_ops {
|
||||||
const char *ver_str;
|
const char *ver_str;
|
||||||
int (*ppid_to_apid)(struct spmi_pmic_arb *pa, u8 sid, u16 addr,
|
int (*ppid_to_apid)(struct spmi_pmic_arb *pmic_arb, u8 sid, u16 addr,
|
||||||
u16 *apid);
|
u16 *apid);
|
||||||
/* spmi commands (read_cmd, write_cmd, cmd) functionality */
|
/* spmi commands (read_cmd, write_cmd, cmd) functionality */
|
||||||
int (*offset)(struct spmi_pmic_arb *dev, u8 sid, u16 addr,
|
int (*offset)(struct spmi_pmic_arb *pmic_arb, u8 sid, u16 addr,
|
||||||
u32 *offset);
|
u32 *offset);
|
||||||
u32 (*fmt_cmd)(u8 opc, u8 sid, u16 addr, u8 bc);
|
u32 (*fmt_cmd)(u8 opc, u8 sid, u16 addr, u8 bc);
|
||||||
int (*non_data_cmd)(struct spmi_controller *ctrl, u8 opc, u8 sid);
|
int (*non_data_cmd)(struct spmi_controller *ctrl, u8 opc, u8 sid);
|
||||||
|
@ -192,56 +192,57 @@ struct pmic_arb_ver_ops {
|
||||||
u32 (*irq_clear)(u16 n);
|
u32 (*irq_clear)(u16 n);
|
||||||
};
|
};
|
||||||
|
|
||||||
static inline void pmic_arb_base_write(struct spmi_pmic_arb *pa,
|
static inline void pmic_arb_base_write(struct spmi_pmic_arb *pmic_arb,
|
||||||
u32 offset, u32 val)
|
u32 offset, u32 val)
|
||||||
{
|
{
|
||||||
writel_relaxed(val, pa->wr_base + offset);
|
writel_relaxed(val, pmic_arb->wr_base + offset);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void pmic_arb_set_rd_cmd(struct spmi_pmic_arb *pa,
|
static inline void pmic_arb_set_rd_cmd(struct spmi_pmic_arb *pmic_arb,
|
||||||
u32 offset, u32 val)
|
u32 offset, u32 val)
|
||||||
{
|
{
|
||||||
writel_relaxed(val, pa->rd_base + offset);
|
writel_relaxed(val, pmic_arb->rd_base + offset);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* pa_read_data: reads pmic-arb's register and copy 1..4 bytes to buf
|
* pmic_arb_read_data: reads pmic-arb's register and copy 1..4 bytes to buf
|
||||||
* @bc: byte count -1. range: 0..3
|
* @bc: byte count -1. range: 0..3
|
||||||
* @reg: register's address
|
* @reg: register's address
|
||||||
* @buf: output parameter, length must be bc + 1
|
* @buf: output parameter, length must be bc + 1
|
||||||
*/
|
*/
|
||||||
static void pa_read_data(struct spmi_pmic_arb *pa, u8 *buf, u32 reg, u8 bc)
|
static void
|
||||||
|
pmic_arb_read_data(struct spmi_pmic_arb *pmic_arb, u8 *buf, u32 reg, u8 bc)
|
||||||
{
|
{
|
||||||
u32 data = __raw_readl(pa->rd_base + reg);
|
u32 data = __raw_readl(pmic_arb->rd_base + reg);
|
||||||
|
|
||||||
memcpy(buf, &data, (bc & 3) + 1);
|
memcpy(buf, &data, (bc & 3) + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* pa_write_data: write 1..4 bytes from buf to pmic-arb's register
|
* pmic_arb_write_data: write 1..4 bytes from buf to pmic-arb's register
|
||||||
* @bc: byte-count -1. range: 0..3.
|
* @bc: byte-count -1. range: 0..3.
|
||||||
* @reg: register's address.
|
* @reg: register's address.
|
||||||
* @buf: buffer to write. length must be bc + 1.
|
* @buf: buffer to write. length must be bc + 1.
|
||||||
*/
|
*/
|
||||||
static void
|
static void pmic_arb_write_data(struct spmi_pmic_arb *pmic_arb, const u8 *buf,
|
||||||
pa_write_data(struct spmi_pmic_arb *pa, const u8 *buf, u32 reg, u8 bc)
|
u32 reg, u8 bc)
|
||||||
{
|
{
|
||||||
u32 data = 0;
|
u32 data = 0;
|
||||||
|
|
||||||
memcpy(&data, buf, (bc & 3) + 1);
|
memcpy(&data, buf, (bc & 3) + 1);
|
||||||
pmic_arb_base_write(pa, reg, data);
|
pmic_arb_base_write(pmic_arb, reg, data);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int pmic_arb_wait_for_done(struct spmi_controller *ctrl,
|
static int pmic_arb_wait_for_done(struct spmi_controller *ctrl,
|
||||||
void __iomem *base, u8 sid, u16 addr)
|
void __iomem *base, u8 sid, u16 addr)
|
||||||
{
|
{
|
||||||
struct spmi_pmic_arb *pa = spmi_controller_get_drvdata(ctrl);
|
struct spmi_pmic_arb *pmic_arb = spmi_controller_get_drvdata(ctrl);
|
||||||
u32 status = 0;
|
u32 status = 0;
|
||||||
u32 timeout = PMIC_ARB_TIMEOUT_US;
|
u32 timeout = PMIC_ARB_TIMEOUT_US;
|
||||||
u32 offset;
|
u32 offset;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
rc = pa->ver_ops->offset(pa, sid, addr, &offset);
|
rc = pmic_arb->ver_ops->offset(pmic_arb, sid, addr, &offset);
|
||||||
if (rc)
|
if (rc)
|
||||||
return rc;
|
return rc;
|
||||||
|
|
||||||
|
@ -252,22 +253,19 @@ static int pmic_arb_wait_for_done(struct spmi_controller *ctrl,
|
||||||
|
|
||||||
if (status & PMIC_ARB_STATUS_DONE) {
|
if (status & PMIC_ARB_STATUS_DONE) {
|
||||||
if (status & PMIC_ARB_STATUS_DENIED) {
|
if (status & PMIC_ARB_STATUS_DENIED) {
|
||||||
dev_err(&ctrl->dev,
|
dev_err(&ctrl->dev, "%s: transaction denied (0x%x)\n",
|
||||||
"%s: transaction denied (0x%x)\n",
|
|
||||||
__func__, status);
|
__func__, status);
|
||||||
return -EPERM;
|
return -EPERM;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (status & PMIC_ARB_STATUS_FAILURE) {
|
if (status & PMIC_ARB_STATUS_FAILURE) {
|
||||||
dev_err(&ctrl->dev,
|
dev_err(&ctrl->dev, "%s: transaction failed (0x%x)\n",
|
||||||
"%s: transaction failed (0x%x)\n",
|
|
||||||
__func__, status);
|
__func__, status);
|
||||||
return -EIO;
|
return -EIO;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (status & PMIC_ARB_STATUS_DROPPED) {
|
if (status & PMIC_ARB_STATUS_DROPPED) {
|
||||||
dev_err(&ctrl->dev,
|
dev_err(&ctrl->dev, "%s: transaction dropped (0x%x)\n",
|
||||||
"%s: transaction dropped (0x%x)\n",
|
|
||||||
__func__, status);
|
__func__, status);
|
||||||
return -EIO;
|
return -EIO;
|
||||||
}
|
}
|
||||||
|
@ -277,8 +275,7 @@ static int pmic_arb_wait_for_done(struct spmi_controller *ctrl,
|
||||||
udelay(1);
|
udelay(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
dev_err(&ctrl->dev,
|
dev_err(&ctrl->dev, "%s: timeout, status 0x%x\n",
|
||||||
"%s: timeout, status 0x%x\n",
|
|
||||||
__func__, status);
|
__func__, status);
|
||||||
return -ETIMEDOUT;
|
return -ETIMEDOUT;
|
||||||
}
|
}
|
||||||
|
@ -286,22 +283,22 @@ static int pmic_arb_wait_for_done(struct spmi_controller *ctrl,
|
||||||
static int
|
static int
|
||||||
pmic_arb_non_data_cmd_v1(struct spmi_controller *ctrl, u8 opc, u8 sid)
|
pmic_arb_non_data_cmd_v1(struct spmi_controller *ctrl, u8 opc, u8 sid)
|
||||||
{
|
{
|
||||||
struct spmi_pmic_arb *pa = spmi_controller_get_drvdata(ctrl);
|
struct spmi_pmic_arb *pmic_arb = spmi_controller_get_drvdata(ctrl);
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
u32 cmd;
|
u32 cmd;
|
||||||
int rc;
|
int rc;
|
||||||
u32 offset;
|
u32 offset;
|
||||||
|
|
||||||
rc = pa->ver_ops->offset(pa, sid, 0, &offset);
|
rc = pmic_arb->ver_ops->offset(pmic_arb, sid, 0, &offset);
|
||||||
if (rc)
|
if (rc)
|
||||||
return rc;
|
return rc;
|
||||||
|
|
||||||
cmd = ((opc | 0x40) << 27) | ((sid & 0xf) << 20);
|
cmd = ((opc | 0x40) << 27) | ((sid & 0xf) << 20);
|
||||||
|
|
||||||
raw_spin_lock_irqsave(&pa->lock, flags);
|
raw_spin_lock_irqsave(&pmic_arb->lock, flags);
|
||||||
pmic_arb_base_write(pa, offset + PMIC_ARB_CMD, cmd);
|
pmic_arb_base_write(pmic_arb, offset + PMIC_ARB_CMD, cmd);
|
||||||
rc = pmic_arb_wait_for_done(ctrl, pa->wr_base, sid, 0);
|
rc = pmic_arb_wait_for_done(ctrl, pmic_arb->wr_base, sid, 0);
|
||||||
raw_spin_unlock_irqrestore(&pa->lock, flags);
|
raw_spin_unlock_irqrestore(&pmic_arb->lock, flags);
|
||||||
|
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
@ -315,7 +312,7 @@ pmic_arb_non_data_cmd_v2(struct spmi_controller *ctrl, u8 opc, u8 sid)
|
||||||
/* Non-data command */
|
/* Non-data command */
|
||||||
static int pmic_arb_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid)
|
static int pmic_arb_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid)
|
||||||
{
|
{
|
||||||
struct spmi_pmic_arb *pa = spmi_controller_get_drvdata(ctrl);
|
struct spmi_pmic_arb *pmic_arb = spmi_controller_get_drvdata(ctrl);
|
||||||
|
|
||||||
dev_dbg(&ctrl->dev, "cmd op:0x%x sid:%d\n", opc, sid);
|
dev_dbg(&ctrl->dev, "cmd op:0x%x sid:%d\n", opc, sid);
|
||||||
|
|
||||||
|
@ -323,26 +320,25 @@ static int pmic_arb_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid)
|
||||||
if (opc < SPMI_CMD_RESET || opc > SPMI_CMD_WAKEUP)
|
if (opc < SPMI_CMD_RESET || opc > SPMI_CMD_WAKEUP)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
return pa->ver_ops->non_data_cmd(ctrl, opc, sid);
|
return pmic_arb->ver_ops->non_data_cmd(ctrl, opc, sid);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int pmic_arb_read_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid,
|
static int pmic_arb_read_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid,
|
||||||
u16 addr, u8 *buf, size_t len)
|
u16 addr, u8 *buf, size_t len)
|
||||||
{
|
{
|
||||||
struct spmi_pmic_arb *pa = spmi_controller_get_drvdata(ctrl);
|
struct spmi_pmic_arb *pmic_arb = spmi_controller_get_drvdata(ctrl);
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
u8 bc = len - 1;
|
u8 bc = len - 1;
|
||||||
u32 cmd;
|
u32 cmd;
|
||||||
int rc;
|
int rc;
|
||||||
u32 offset;
|
u32 offset;
|
||||||
|
|
||||||
rc = pa->ver_ops->offset(pa, sid, addr, &offset);
|
rc = pmic_arb->ver_ops->offset(pmic_arb, sid, addr, &offset);
|
||||||
if (rc)
|
if (rc)
|
||||||
return rc;
|
return rc;
|
||||||
|
|
||||||
if (bc >= PMIC_ARB_MAX_TRANS_BYTES) {
|
if (bc >= PMIC_ARB_MAX_TRANS_BYTES) {
|
||||||
dev_err(&ctrl->dev,
|
dev_err(&ctrl->dev, "pmic-arb supports 1..%d bytes per trans, but:%zu requested",
|
||||||
"pmic-arb supports 1..%d bytes per trans, but:%zu requested",
|
|
||||||
PMIC_ARB_MAX_TRANS_BYTES, len);
|
PMIC_ARB_MAX_TRANS_BYTES, len);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
@ -357,42 +353,42 @@ static int pmic_arb_read_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid,
|
||||||
else
|
else
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
cmd = pa->ver_ops->fmt_cmd(opc, sid, addr, bc);
|
cmd = pmic_arb->ver_ops->fmt_cmd(opc, sid, addr, bc);
|
||||||
|
|
||||||
raw_spin_lock_irqsave(&pa->lock, flags);
|
raw_spin_lock_irqsave(&pmic_arb->lock, flags);
|
||||||
pmic_arb_set_rd_cmd(pa, offset + PMIC_ARB_CMD, cmd);
|
pmic_arb_set_rd_cmd(pmic_arb, offset + PMIC_ARB_CMD, cmd);
|
||||||
rc = pmic_arb_wait_for_done(ctrl, pa->rd_base, sid, addr);
|
rc = pmic_arb_wait_for_done(ctrl, pmic_arb->rd_base, sid, addr);
|
||||||
if (rc)
|
if (rc)
|
||||||
goto done;
|
goto done;
|
||||||
|
|
||||||
pa_read_data(pa, buf, offset + PMIC_ARB_RDATA0,
|
pmic_arb_read_data(pmic_arb, buf, offset + PMIC_ARB_RDATA0,
|
||||||
min_t(u8, bc, 3));
|
min_t(u8, bc, 3));
|
||||||
|
|
||||||
if (bc > 3)
|
if (bc > 3)
|
||||||
pa_read_data(pa, buf + 4, offset + PMIC_ARB_RDATA1, bc - 4);
|
pmic_arb_read_data(pmic_arb, buf + 4, offset + PMIC_ARB_RDATA1,
|
||||||
|
bc - 4);
|
||||||
|
|
||||||
done:
|
done:
|
||||||
raw_spin_unlock_irqrestore(&pa->lock, flags);
|
raw_spin_unlock_irqrestore(&pmic_arb->lock, flags);
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int pmic_arb_write_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid,
|
static int pmic_arb_write_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid,
|
||||||
u16 addr, const u8 *buf, size_t len)
|
u16 addr, const u8 *buf, size_t len)
|
||||||
{
|
{
|
||||||
struct spmi_pmic_arb *pa = spmi_controller_get_drvdata(ctrl);
|
struct spmi_pmic_arb *pmic_arb = spmi_controller_get_drvdata(ctrl);
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
u8 bc = len - 1;
|
u8 bc = len - 1;
|
||||||
u32 cmd;
|
u32 cmd;
|
||||||
int rc;
|
int rc;
|
||||||
u32 offset;
|
u32 offset;
|
||||||
|
|
||||||
rc = pa->ver_ops->offset(pa, sid, addr, &offset);
|
rc = pmic_arb->ver_ops->offset(pmic_arb, sid, addr, &offset);
|
||||||
if (rc)
|
if (rc)
|
||||||
return rc;
|
return rc;
|
||||||
|
|
||||||
if (bc >= PMIC_ARB_MAX_TRANS_BYTES) {
|
if (bc >= PMIC_ARB_MAX_TRANS_BYTES) {
|
||||||
dev_err(&ctrl->dev,
|
dev_err(&ctrl->dev, "pmic-arb supports 1..%d bytes per trans, but:%zu requested",
|
||||||
"pmic-arb supports 1..%d bytes per trans, but:%zu requested",
|
|
||||||
PMIC_ARB_MAX_TRANS_BYTES, len);
|
PMIC_ARB_MAX_TRANS_BYTES, len);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
@ -409,18 +405,20 @@ static int pmic_arb_write_cmd(struct spmi_controller *ctrl, u8 opc, u8 sid,
|
||||||
else
|
else
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
cmd = pa->ver_ops->fmt_cmd(opc, sid, addr, bc);
|
cmd = pmic_arb->ver_ops->fmt_cmd(opc, sid, addr, bc);
|
||||||
|
|
||||||
/* Write data to FIFOs */
|
/* Write data to FIFOs */
|
||||||
raw_spin_lock_irqsave(&pa->lock, flags);
|
raw_spin_lock_irqsave(&pmic_arb->lock, flags);
|
||||||
pa_write_data(pa, buf, offset + PMIC_ARB_WDATA0, min_t(u8, bc, 3));
|
pmic_arb_write_data(pmic_arb, buf, offset + PMIC_ARB_WDATA0,
|
||||||
|
min_t(u8, bc, 3));
|
||||||
if (bc > 3)
|
if (bc > 3)
|
||||||
pa_write_data(pa, buf + 4, offset + PMIC_ARB_WDATA1, bc - 4);
|
pmic_arb_write_data(pmic_arb, buf + 4, offset + PMIC_ARB_WDATA1,
|
||||||
|
bc - 4);
|
||||||
|
|
||||||
/* Start the transaction */
|
/* Start the transaction */
|
||||||
pmic_arb_base_write(pa, offset + PMIC_ARB_CMD, cmd);
|
pmic_arb_base_write(pmic_arb, offset + PMIC_ARB_CMD, cmd);
|
||||||
rc = pmic_arb_wait_for_done(ctrl, pa->wr_base, sid, addr);
|
rc = pmic_arb_wait_for_done(ctrl, pmic_arb->wr_base, sid, addr);
|
||||||
raw_spin_unlock_irqrestore(&pa->lock, flags);
|
raw_spin_unlock_irqrestore(&pmic_arb->lock, flags);
|
||||||
|
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
@ -446,67 +444,66 @@ struct spmi_pmic_arb_qpnpint_type {
|
||||||
static void qpnpint_spmi_write(struct irq_data *d, u8 reg, void *buf,
|
static void qpnpint_spmi_write(struct irq_data *d, u8 reg, void *buf,
|
||||||
size_t len)
|
size_t len)
|
||||||
{
|
{
|
||||||
struct spmi_pmic_arb *pa = irq_data_get_irq_chip_data(d);
|
struct spmi_pmic_arb *pmic_arb = irq_data_get_irq_chip_data(d);
|
||||||
u8 sid = HWIRQ_SID(d->hwirq);
|
u8 sid = hwirq_to_sid(d->hwirq);
|
||||||
u8 per = HWIRQ_PER(d->hwirq);
|
u8 per = hwirq_to_per(d->hwirq);
|
||||||
|
|
||||||
if (pmic_arb_write_cmd(pa->spmic, SPMI_CMD_EXT_WRITEL, sid,
|
if (pmic_arb_write_cmd(pmic_arb->spmic, SPMI_CMD_EXT_WRITEL, sid,
|
||||||
(per << 8) + reg, buf, len))
|
(per << 8) + reg, buf, len))
|
||||||
dev_err_ratelimited(&pa->spmic->dev,
|
dev_err_ratelimited(&pmic_arb->spmic->dev, "failed irqchip transaction on %x\n",
|
||||||
"failed irqchip transaction on %x\n",
|
|
||||||
d->irq);
|
d->irq);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void qpnpint_spmi_read(struct irq_data *d, u8 reg, void *buf, size_t len)
|
static void qpnpint_spmi_read(struct irq_data *d, u8 reg, void *buf, size_t len)
|
||||||
{
|
{
|
||||||
struct spmi_pmic_arb *pa = irq_data_get_irq_chip_data(d);
|
struct spmi_pmic_arb *pmic_arb = irq_data_get_irq_chip_data(d);
|
||||||
u8 sid = HWIRQ_SID(d->hwirq);
|
u8 sid = hwirq_to_sid(d->hwirq);
|
||||||
u8 per = HWIRQ_PER(d->hwirq);
|
u8 per = hwirq_to_per(d->hwirq);
|
||||||
|
|
||||||
if (pmic_arb_read_cmd(pa->spmic, SPMI_CMD_EXT_READL, sid,
|
if (pmic_arb_read_cmd(pmic_arb->spmic, SPMI_CMD_EXT_READL, sid,
|
||||||
(per << 8) + reg, buf, len))
|
(per << 8) + reg, buf, len))
|
||||||
dev_err_ratelimited(&pa->spmic->dev,
|
dev_err_ratelimited(&pmic_arb->spmic->dev, "failed irqchip transaction on %x\n",
|
||||||
"failed irqchip transaction on %x\n",
|
|
||||||
d->irq);
|
d->irq);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void cleanup_irq(struct spmi_pmic_arb *pa, u16 apid, int id)
|
static void cleanup_irq(struct spmi_pmic_arb *pmic_arb, u16 apid, int id)
|
||||||
{
|
{
|
||||||
u16 ppid = pa->apid_data[apid].ppid;
|
u16 ppid = pmic_arb->apid_data[apid].ppid;
|
||||||
u8 sid = ppid >> 8;
|
u8 sid = ppid >> 8;
|
||||||
u8 per = ppid & 0xFF;
|
u8 per = ppid & 0xFF;
|
||||||
u8 irq_mask = BIT(id);
|
u8 irq_mask = BIT(id);
|
||||||
|
|
||||||
writel_relaxed(irq_mask, pa->intr + pa->ver_ops->irq_clear(apid));
|
writel_relaxed(irq_mask, pmic_arb->intr +
|
||||||
|
pmic_arb->ver_ops->irq_clear(apid));
|
||||||
|
|
||||||
if (pmic_arb_write_cmd(pa->spmic, SPMI_CMD_EXT_WRITEL, sid,
|
if (pmic_arb_write_cmd(pmic_arb->spmic, SPMI_CMD_EXT_WRITEL, sid,
|
||||||
(per << 8) + QPNPINT_REG_LATCHED_CLR, &irq_mask, 1))
|
(per << 8) + QPNPINT_REG_LATCHED_CLR, &irq_mask, 1))
|
||||||
dev_err_ratelimited(&pa->spmic->dev,
|
dev_err_ratelimited(&pmic_arb->spmic->dev, "failed to ack irq_mask = 0x%x for ppid = %x\n",
|
||||||
"failed to ack irq_mask = 0x%x for ppid = %x\n",
|
|
||||||
irq_mask, ppid);
|
irq_mask, ppid);
|
||||||
|
|
||||||
if (pmic_arb_write_cmd(pa->spmic, SPMI_CMD_EXT_WRITEL, sid,
|
if (pmic_arb_write_cmd(pmic_arb->spmic, SPMI_CMD_EXT_WRITEL, sid,
|
||||||
(per << 8) + QPNPINT_REG_EN_CLR, &irq_mask, 1))
|
(per << 8) + QPNPINT_REG_EN_CLR, &irq_mask, 1))
|
||||||
dev_err_ratelimited(&pa->spmic->dev,
|
dev_err_ratelimited(&pmic_arb->spmic->dev, "failed to ack irq_mask = 0x%x for ppid = %x\n",
|
||||||
"failed to ack irq_mask = 0x%x for ppid = %x\n",
|
|
||||||
irq_mask, ppid);
|
irq_mask, ppid);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void periph_interrupt(struct spmi_pmic_arb *pa, u16 apid)
|
static void periph_interrupt(struct spmi_pmic_arb *pmic_arb, u16 apid)
|
||||||
{
|
{
|
||||||
unsigned int irq;
|
unsigned int irq;
|
||||||
u32 status;
|
u32 status;
|
||||||
int id;
|
int id;
|
||||||
u8 sid = (pa->apid_data[apid].ppid >> 8) & 0xF;
|
u8 sid = (pmic_arb->apid_data[apid].ppid >> 8) & 0xF;
|
||||||
u8 per = pa->apid_data[apid].ppid & 0xFF;
|
u8 per = pmic_arb->apid_data[apid].ppid & 0xFF;
|
||||||
|
|
||||||
status = readl_relaxed(pa->intr + pa->ver_ops->irq_status(apid));
|
status = readl_relaxed(pmic_arb->intr +
|
||||||
|
pmic_arb->ver_ops->irq_status(apid));
|
||||||
while (status) {
|
while (status) {
|
||||||
id = ffs(status) - 1;
|
id = ffs(status) - 1;
|
||||||
status &= ~BIT(id);
|
status &= ~BIT(id);
|
||||||
irq = irq_find_mapping(pa->domain, HWIRQ(sid, per, id, apid));
|
irq = irq_find_mapping(pmic_arb->domain,
|
||||||
|
spec_to_hwirq(sid, per, id, apid));
|
||||||
if (irq == 0) {
|
if (irq == 0) {
|
||||||
cleanup_irq(pa, apid, id);
|
cleanup_irq(pmic_arb, apid, id);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
generic_handle_irq(irq);
|
generic_handle_irq(irq);
|
||||||
|
@ -515,11 +512,11 @@ static void periph_interrupt(struct spmi_pmic_arb *pa, u16 apid)
|
||||||
|
|
||||||
static void pmic_arb_chained_irq(struct irq_desc *desc)
|
static void pmic_arb_chained_irq(struct irq_desc *desc)
|
||||||
{
|
{
|
||||||
struct spmi_pmic_arb *pa = irq_desc_get_handler_data(desc);
|
struct spmi_pmic_arb *pmic_arb = irq_desc_get_handler_data(desc);
|
||||||
struct irq_chip *chip = irq_desc_get_chip(desc);
|
struct irq_chip *chip = irq_desc_get_chip(desc);
|
||||||
void __iomem *intr = pa->intr;
|
void __iomem *intr = pmic_arb->intr;
|
||||||
int first = pa->min_apid >> 5;
|
int first = pmic_arb->min_apid >> 5;
|
||||||
int last = pa->max_apid >> 5;
|
int last = pmic_arb->max_apid >> 5;
|
||||||
u32 status, enable;
|
u32 status, enable;
|
||||||
int i, id, apid;
|
int i, id, apid;
|
||||||
|
|
||||||
|
@ -527,15 +524,15 @@ static void pmic_arb_chained_irq(struct irq_desc *desc)
|
||||||
|
|
||||||
for (i = first; i <= last; ++i) {
|
for (i = first; i <= last; ++i) {
|
||||||
status = readl_relaxed(intr +
|
status = readl_relaxed(intr +
|
||||||
pa->ver_ops->owner_acc_status(pa->ee, i));
|
pmic_arb->ver_ops->owner_acc_status(pmic_arb->ee, i));
|
||||||
while (status) {
|
while (status) {
|
||||||
id = ffs(status) - 1;
|
id = ffs(status) - 1;
|
||||||
status &= ~BIT(id);
|
status &= ~BIT(id);
|
||||||
apid = id + i * 32;
|
apid = id + i * 32;
|
||||||
enable = readl_relaxed(intr +
|
enable = readl_relaxed(intr +
|
||||||
pa->ver_ops->acc_enable(apid));
|
pmic_arb->ver_ops->acc_enable(apid));
|
||||||
if (enable & SPMI_PIC_ACC_ENABLE_BIT)
|
if (enable & SPMI_PIC_ACC_ENABLE_BIT)
|
||||||
periph_interrupt(pa, apid);
|
periph_interrupt(pmic_arb, apid);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -544,12 +541,13 @@ static void pmic_arb_chained_irq(struct irq_desc *desc)
|
||||||
|
|
||||||
static void qpnpint_irq_ack(struct irq_data *d)
|
static void qpnpint_irq_ack(struct irq_data *d)
|
||||||
{
|
{
|
||||||
struct spmi_pmic_arb *pa = irq_data_get_irq_chip_data(d);
|
struct spmi_pmic_arb *pmic_arb = irq_data_get_irq_chip_data(d);
|
||||||
u8 irq = HWIRQ_IRQ(d->hwirq);
|
u8 irq = hwirq_to_irq(d->hwirq);
|
||||||
u16 apid = HWIRQ_APID(d->hwirq);
|
u16 apid = hwirq_to_apid(d->hwirq);
|
||||||
u8 data;
|
u8 data;
|
||||||
|
|
||||||
writel_relaxed(BIT(irq), pa->intr + pa->ver_ops->irq_clear(apid));
|
writel_relaxed(BIT(irq), pmic_arb->intr +
|
||||||
|
pmic_arb->ver_ops->irq_clear(apid));
|
||||||
|
|
||||||
data = BIT(irq);
|
data = BIT(irq);
|
||||||
qpnpint_spmi_write(d, QPNPINT_REG_LATCHED_CLR, &data, 1);
|
qpnpint_spmi_write(d, QPNPINT_REG_LATCHED_CLR, &data, 1);
|
||||||
|
@ -557,7 +555,7 @@ static void qpnpint_irq_ack(struct irq_data *d)
|
||||||
|
|
||||||
static void qpnpint_irq_mask(struct irq_data *d)
|
static void qpnpint_irq_mask(struct irq_data *d)
|
||||||
{
|
{
|
||||||
u8 irq = HWIRQ_IRQ(d->hwirq);
|
u8 irq = hwirq_to_irq(d->hwirq);
|
||||||
u8 data = BIT(irq);
|
u8 data = BIT(irq);
|
||||||
|
|
||||||
qpnpint_spmi_write(d, QPNPINT_REG_EN_CLR, &data, 1);
|
qpnpint_spmi_write(d, QPNPINT_REG_EN_CLR, &data, 1);
|
||||||
|
@ -565,13 +563,13 @@ static void qpnpint_irq_mask(struct irq_data *d)
|
||||||
|
|
||||||
static void qpnpint_irq_unmask(struct irq_data *d)
|
static void qpnpint_irq_unmask(struct irq_data *d)
|
||||||
{
|
{
|
||||||
struct spmi_pmic_arb *pa = irq_data_get_irq_chip_data(d);
|
struct spmi_pmic_arb *pmic_arb = irq_data_get_irq_chip_data(d);
|
||||||
u8 irq = HWIRQ_IRQ(d->hwirq);
|
u8 irq = hwirq_to_irq(d->hwirq);
|
||||||
u16 apid = HWIRQ_APID(d->hwirq);
|
u16 apid = hwirq_to_apid(d->hwirq);
|
||||||
u8 buf[2];
|
u8 buf[2];
|
||||||
|
|
||||||
writel_relaxed(SPMI_PIC_ACC_ENABLE_BIT,
|
writel_relaxed(SPMI_PIC_ACC_ENABLE_BIT,
|
||||||
pa->intr + pa->ver_ops->acc_enable(apid));
|
pmic_arb->intr + pmic_arb->ver_ops->acc_enable(apid));
|
||||||
|
|
||||||
qpnpint_spmi_read(d, QPNPINT_REG_EN_SET, &buf[0], 1);
|
qpnpint_spmi_read(d, QPNPINT_REG_EN_SET, &buf[0], 1);
|
||||||
if (!(buf[0] & BIT(irq))) {
|
if (!(buf[0] & BIT(irq))) {
|
||||||
|
@ -589,7 +587,7 @@ static void qpnpint_irq_unmask(struct irq_data *d)
|
||||||
static int qpnpint_irq_set_type(struct irq_data *d, unsigned int flow_type)
|
static int qpnpint_irq_set_type(struct irq_data *d, unsigned int flow_type)
|
||||||
{
|
{
|
||||||
struct spmi_pmic_arb_qpnpint_type type;
|
struct spmi_pmic_arb_qpnpint_type type;
|
||||||
u8 irq = HWIRQ_IRQ(d->hwirq);
|
u8 irq = hwirq_to_irq(d->hwirq);
|
||||||
u8 bit_mask_irq = BIT(irq);
|
u8 bit_mask_irq = BIT(irq);
|
||||||
|
|
||||||
qpnpint_spmi_read(d, QPNPINT_REG_SET_TYPE, &type, sizeof(type));
|
qpnpint_spmi_read(d, QPNPINT_REG_SET_TYPE, &type, sizeof(type));
|
||||||
|
@ -626,7 +624,7 @@ static int qpnpint_get_irqchip_state(struct irq_data *d,
|
||||||
enum irqchip_irq_state which,
|
enum irqchip_irq_state which,
|
||||||
bool *state)
|
bool *state)
|
||||||
{
|
{
|
||||||
u8 irq = HWIRQ_IRQ(d->hwirq);
|
u8 irq = hwirq_to_irq(d->hwirq);
|
||||||
u8 status = 0;
|
u8 status = 0;
|
||||||
|
|
||||||
if (which != IRQCHIP_STATE_LINE_LEVEL)
|
if (which != IRQCHIP_STATE_LINE_LEVEL)
|
||||||
|
@ -656,12 +654,11 @@ static int qpnpint_irq_domain_dt_translate(struct irq_domain *d,
|
||||||
unsigned long *out_hwirq,
|
unsigned long *out_hwirq,
|
||||||
unsigned int *out_type)
|
unsigned int *out_type)
|
||||||
{
|
{
|
||||||
struct spmi_pmic_arb *pa = d->host_data;
|
struct spmi_pmic_arb *pmic_arb = d->host_data;
|
||||||
int rc;
|
int rc;
|
||||||
u16 apid;
|
u16 apid;
|
||||||
|
|
||||||
dev_dbg(&pa->spmic->dev,
|
dev_dbg(&pmic_arb->spmic->dev, "intspec[0] 0x%1x intspec[1] 0x%02x intspec[2] 0x%02x\n",
|
||||||
"intspec[0] 0x%1x intspec[1] 0x%02x intspec[2] 0x%02x\n",
|
|
||||||
intspec[0], intspec[1], intspec[2]);
|
intspec[0], intspec[1], intspec[2]);
|
||||||
|
|
||||||
if (irq_domain_get_of_node(d) != controller)
|
if (irq_domain_get_of_node(d) != controller)
|
||||||
|
@ -671,25 +668,24 @@ static int qpnpint_irq_domain_dt_translate(struct irq_domain *d,
|
||||||
if (intspec[0] > 0xF || intspec[1] > 0xFF || intspec[2] > 0x7)
|
if (intspec[0] > 0xF || intspec[1] > 0xFF || intspec[2] > 0x7)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
rc = pa->ver_ops->ppid_to_apid(pa, intspec[0],
|
rc = pmic_arb->ver_ops->ppid_to_apid(pmic_arb, intspec[0],
|
||||||
(intspec[1] << 8), &apid);
|
(intspec[1] << 8), &apid);
|
||||||
if (rc < 0) {
|
if (rc < 0) {
|
||||||
dev_err(&pa->spmic->dev,
|
dev_err(&pmic_arb->spmic->dev, "failed to xlate sid = 0x%x, periph = 0x%x, irq = %x rc = %d\n",
|
||||||
"failed to xlate sid = 0x%x, periph = 0x%x, irq = %x rc = %d\n",
|
|
||||||
intspec[0], intspec[1], intspec[2], rc);
|
intspec[0], intspec[1], intspec[2], rc);
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Keep track of {max,min}_apid for bounding search during interrupt */
|
/* Keep track of {max,min}_apid for bounding search during interrupt */
|
||||||
if (apid > pa->max_apid)
|
if (apid > pmic_arb->max_apid)
|
||||||
pa->max_apid = apid;
|
pmic_arb->max_apid = apid;
|
||||||
if (apid < pa->min_apid)
|
if (apid < pmic_arb->min_apid)
|
||||||
pa->min_apid = apid;
|
pmic_arb->min_apid = apid;
|
||||||
|
|
||||||
*out_hwirq = HWIRQ(intspec[0], intspec[1], intspec[2], apid);
|
*out_hwirq = spec_to_hwirq(intspec[0], intspec[1], intspec[2], apid);
|
||||||
*out_type = intspec[3] & IRQ_TYPE_SENSE_MASK;
|
*out_type = intspec[3] & IRQ_TYPE_SENSE_MASK;
|
||||||
|
|
||||||
dev_dbg(&pa->spmic->dev, "out_hwirq = %lu\n", *out_hwirq);
|
dev_dbg(&pmic_arb->spmic->dev, "out_hwirq = %lu\n", *out_hwirq);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -698,9 +694,9 @@ static int qpnpint_irq_domain_map(struct irq_domain *d,
|
||||||
unsigned int virq,
|
unsigned int virq,
|
||||||
irq_hw_number_t hwirq)
|
irq_hw_number_t hwirq)
|
||||||
{
|
{
|
||||||
struct spmi_pmic_arb *pa = d->host_data;
|
struct spmi_pmic_arb *pmic_arb = d->host_data;
|
||||||
|
|
||||||
dev_dbg(&pa->spmic->dev, "virq = %u, hwirq = %lu\n", virq, hwirq);
|
dev_dbg(&pmic_arb->spmic->dev, "virq = %u, hwirq = %lu\n", virq, hwirq);
|
||||||
|
|
||||||
irq_set_chip_and_handler(virq, &pmic_arb_irqchip, handle_level_irq);
|
irq_set_chip_and_handler(virq, &pmic_arb_irqchip, handle_level_irq);
|
||||||
irq_set_chip_data(virq, d->host_data);
|
irq_set_chip_data(virq, d->host_data);
|
||||||
|
@ -708,24 +704,24 @@ static int qpnpint_irq_domain_map(struct irq_domain *d,
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int pmic_arb_ppid_to_apid_v1(struct spmi_pmic_arb *pmic_arb, u8 sid,
|
||||||
pmic_arb_ppid_to_apid_v1(struct spmi_pmic_arb *pa, u8 sid, u16 addr, u16 *apid)
|
u16 addr, u16 *apid)
|
||||||
{
|
{
|
||||||
u16 ppid = sid << 8 | ((addr >> 8) & 0xFF);
|
u16 ppid = sid << 8 | ((addr >> 8) & 0xFF);
|
||||||
u32 *mapping_table = pa->mapping_table;
|
u32 *mapping_table = pmic_arb->mapping_table;
|
||||||
int index = 0, i;
|
int index = 0, i;
|
||||||
u16 apid_valid;
|
u16 apid_valid;
|
||||||
u32 data;
|
u32 data;
|
||||||
|
|
||||||
apid_valid = pa->ppid_to_apid[ppid];
|
apid_valid = pmic_arb->ppid_to_apid[ppid];
|
||||||
if (apid_valid & PMIC_ARB_CHAN_VALID) {
|
if (apid_valid & PMIC_ARB_APID_VALID) {
|
||||||
*apid = (apid_valid & ~PMIC_ARB_CHAN_VALID);
|
*apid = apid_valid & ~PMIC_ARB_APID_VALID;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = 0; i < SPMI_MAPPING_TABLE_TREE_DEPTH; ++i) {
|
for (i = 0; i < SPMI_MAPPING_TABLE_TREE_DEPTH; ++i) {
|
||||||
if (!test_and_set_bit(index, pa->mapping_table_valid))
|
if (!test_and_set_bit(index, pmic_arb->mapping_table_valid))
|
||||||
mapping_table[index] = readl_relaxed(pa->cnfg +
|
mapping_table[index] = readl_relaxed(pmic_arb->cnfg +
|
||||||
SPMI_MAPPING_TABLE_REG(index));
|
SPMI_MAPPING_TABLE_REG(index));
|
||||||
|
|
||||||
data = mapping_table[index];
|
data = mapping_table[index];
|
||||||
|
@ -735,9 +731,9 @@ pmic_arb_ppid_to_apid_v1(struct spmi_pmic_arb *pa, u8 sid, u16 addr, u16 *apid)
|
||||||
index = SPMI_MAPPING_BIT_IS_1_RESULT(data);
|
index = SPMI_MAPPING_BIT_IS_1_RESULT(data);
|
||||||
} else {
|
} else {
|
||||||
*apid = SPMI_MAPPING_BIT_IS_1_RESULT(data);
|
*apid = SPMI_MAPPING_BIT_IS_1_RESULT(data);
|
||||||
pa->ppid_to_apid[ppid]
|
pmic_arb->ppid_to_apid[ppid]
|
||||||
= *apid | PMIC_ARB_CHAN_VALID;
|
= *apid | PMIC_ARB_APID_VALID;
|
||||||
pa->apid_data[*apid].ppid = ppid;
|
pmic_arb->apid_data[*apid].ppid = ppid;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
@ -745,9 +741,9 @@ pmic_arb_ppid_to_apid_v1(struct spmi_pmic_arb *pa, u8 sid, u16 addr, u16 *apid)
|
||||||
index = SPMI_MAPPING_BIT_IS_0_RESULT(data);
|
index = SPMI_MAPPING_BIT_IS_0_RESULT(data);
|
||||||
} else {
|
} else {
|
||||||
*apid = SPMI_MAPPING_BIT_IS_0_RESULT(data);
|
*apid = SPMI_MAPPING_BIT_IS_0_RESULT(data);
|
||||||
pa->ppid_to_apid[ppid]
|
pmic_arb->ppid_to_apid[ppid]
|
||||||
= *apid | PMIC_ARB_CHAN_VALID;
|
= *apid | PMIC_ARB_APID_VALID;
|
||||||
pa->apid_data[*apid].ppid = ppid;
|
pmic_arb->apid_data[*apid].ppid = ppid;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -757,14 +753,14 @@ pmic_arb_ppid_to_apid_v1(struct spmi_pmic_arb *pa, u8 sid, u16 addr, u16 *apid)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* v1 offset per ee */
|
/* v1 offset per ee */
|
||||||
static int
|
static int pmic_arb_offset_v1(struct spmi_pmic_arb *pmic_arb, u8 sid, u16 addr,
|
||||||
pmic_arb_offset_v1(struct spmi_pmic_arb *pa, u8 sid, u16 addr, u32 *offset)
|
u32 *offset)
|
||||||
{
|
{
|
||||||
*offset = 0x800 + 0x80 * pa->channel;
|
*offset = 0x800 + 0x80 * pmic_arb->channel;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static u16 pmic_arb_find_apid(struct spmi_pmic_arb *pa, u16 ppid)
|
static u16 pmic_arb_find_apid(struct spmi_pmic_arb *pmic_arb, u16 ppid)
|
||||||
{
|
{
|
||||||
u32 regval, offset;
|
u32 regval, offset;
|
||||||
u16 apid;
|
u16 apid;
|
||||||
|
@ -774,61 +770,61 @@ static u16 pmic_arb_find_apid(struct spmi_pmic_arb *pa, u16 ppid)
|
||||||
* PMIC_ARB_REG_CHNL is a table in HW mapping channel to ppid.
|
* PMIC_ARB_REG_CHNL is a table in HW mapping channel to ppid.
|
||||||
* ppid_to_apid is an in-memory invert of that table.
|
* ppid_to_apid is an in-memory invert of that table.
|
||||||
*/
|
*/
|
||||||
for (apid = pa->last_apid; ; apid++) {
|
for (apid = pmic_arb->last_apid; ; apid++) {
|
||||||
offset = PMIC_ARB_REG_CHNL(apid);
|
offset = PMIC_ARB_REG_APID(apid);
|
||||||
if (offset >= pa->core_size)
|
if (offset >= pmic_arb->core_size)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
regval = readl_relaxed(pa->cnfg +
|
regval = readl_relaxed(pmic_arb->cnfg +
|
||||||
SPMI_OWNERSHIP_TABLE_REG(apid));
|
SPMI_OWNERSHIP_TABLE_REG(apid));
|
||||||
pa->apid_data[apid].owner = SPMI_OWNERSHIP_PERIPH2OWNER(regval);
|
pmic_arb->apid_data[apid].owner =
|
||||||
|
SPMI_OWNERSHIP_PERIPH2OWNER(regval);
|
||||||
|
|
||||||
regval = readl_relaxed(pa->core + offset);
|
regval = readl_relaxed(pmic_arb->core + offset);
|
||||||
if (!regval)
|
if (!regval)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
id = (regval >> 8) & PMIC_ARB_PPID_MASK;
|
id = (regval >> 8) & PMIC_ARB_PPID_MASK;
|
||||||
pa->ppid_to_apid[id] = apid | PMIC_ARB_CHAN_VALID;
|
pmic_arb->ppid_to_apid[id] = apid | PMIC_ARB_APID_VALID;
|
||||||
pa->apid_data[apid].ppid = id;
|
pmic_arb->apid_data[apid].ppid = id;
|
||||||
if (id == ppid) {
|
if (id == ppid) {
|
||||||
apid |= PMIC_ARB_CHAN_VALID;
|
apid |= PMIC_ARB_APID_VALID;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pa->last_apid = apid & ~PMIC_ARB_CHAN_VALID;
|
pmic_arb->last_apid = apid & ~PMIC_ARB_APID_VALID;
|
||||||
|
|
||||||
return apid;
|
return apid;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int pmic_arb_ppid_to_apid_v2(struct spmi_pmic_arb *pmic_arb, u8 sid,
|
||||||
static int
|
u16 addr, u16 *apid)
|
||||||
pmic_arb_ppid_to_apid_v2(struct spmi_pmic_arb *pa, u8 sid, u16 addr, u16 *apid)
|
|
||||||
{
|
{
|
||||||
u16 ppid = (sid << 8) | (addr >> 8);
|
u16 ppid = (sid << 8) | (addr >> 8);
|
||||||
u16 apid_valid;
|
u16 apid_valid;
|
||||||
|
|
||||||
apid_valid = pa->ppid_to_apid[ppid];
|
apid_valid = pmic_arb->ppid_to_apid[ppid];
|
||||||
if (!(apid_valid & PMIC_ARB_CHAN_VALID))
|
if (!(apid_valid & PMIC_ARB_APID_VALID))
|
||||||
apid_valid = pmic_arb_find_apid(pa, ppid);
|
apid_valid = pmic_arb_find_apid(pmic_arb, ppid);
|
||||||
if (!(apid_valid & PMIC_ARB_CHAN_VALID))
|
if (!(apid_valid & PMIC_ARB_APID_VALID))
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
*apid = (apid_valid & ~PMIC_ARB_CHAN_VALID);
|
*apid = apid_valid & ~PMIC_ARB_APID_VALID;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* v2 offset per ppid and per ee */
|
/* v2 offset per ppid and per ee */
|
||||||
static int
|
static int pmic_arb_offset_v2(struct spmi_pmic_arb *pmic_arb, u8 sid, u16 addr,
|
||||||
pmic_arb_offset_v2(struct spmi_pmic_arb *pa, u8 sid, u16 addr, u32 *offset)
|
u32 *offset)
|
||||||
{
|
{
|
||||||
u16 apid;
|
u16 apid;
|
||||||
int rc;
|
int rc;
|
||||||
|
|
||||||
rc = pmic_arb_ppid_to_apid_v2(pa, sid, addr, &apid);
|
rc = pmic_arb_ppid_to_apid_v2(pmic_arb, sid, addr, &apid);
|
||||||
if (rc < 0)
|
if (rc < 0)
|
||||||
return rc;
|
return rc;
|
||||||
|
|
||||||
*offset = 0x1000 * pa->ee + 0x8000 * apid;
|
*offset = 0x1000 * pmic_arb->ee + 0x8000 * apid;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -930,22 +926,22 @@ static const struct irq_domain_ops pmic_arb_irq_domain_ops = {
|
||||||
|
|
||||||
static int spmi_pmic_arb_probe(struct platform_device *pdev)
|
static int spmi_pmic_arb_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct spmi_pmic_arb *pa;
|
struct spmi_pmic_arb *pmic_arb;
|
||||||
struct spmi_controller *ctrl;
|
struct spmi_controller *ctrl;
|
||||||
struct resource *res;
|
struct resource *res;
|
||||||
void __iomem *core;
|
void __iomem *core;
|
||||||
u32 channel, ee, hw_ver;
|
u32 channel, ee, hw_ver;
|
||||||
int err;
|
int err;
|
||||||
|
|
||||||
ctrl = spmi_controller_alloc(&pdev->dev, sizeof(*pa));
|
ctrl = spmi_controller_alloc(&pdev->dev, sizeof(*pmic_arb));
|
||||||
if (!ctrl)
|
if (!ctrl)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
pa = spmi_controller_get_drvdata(ctrl);
|
pmic_arb = spmi_controller_get_drvdata(ctrl);
|
||||||
pa->spmic = ctrl;
|
pmic_arb->spmic = ctrl;
|
||||||
|
|
||||||
res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "core");
|
res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "core");
|
||||||
pa->core_size = resource_size(res);
|
pmic_arb->core_size = resource_size(res);
|
||||||
|
|
||||||
core = devm_ioremap_resource(&ctrl->dev, res);
|
core = devm_ioremap_resource(&ctrl->dev, res);
|
||||||
if (IS_ERR(core)) {
|
if (IS_ERR(core)) {
|
||||||
|
@ -953,9 +949,10 @@ static int spmi_pmic_arb_probe(struct platform_device *pdev)
|
||||||
goto err_put_ctrl;
|
goto err_put_ctrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
pa->ppid_to_apid = devm_kcalloc(&ctrl->dev, PMIC_ARB_MAX_PPID,
|
pmic_arb->ppid_to_apid = devm_kcalloc(&ctrl->dev, PMIC_ARB_MAX_PPID,
|
||||||
sizeof(*pa->ppid_to_apid), GFP_KERNEL);
|
sizeof(*pmic_arb->ppid_to_apid),
|
||||||
if (!pa->ppid_to_apid) {
|
GFP_KERNEL);
|
||||||
|
if (!pmic_arb->ppid_to_apid) {
|
||||||
err = -ENOMEM;
|
err = -ENOMEM;
|
||||||
goto err_put_ctrl;
|
goto err_put_ctrl;
|
||||||
}
|
}
|
||||||
|
@ -963,54 +960,54 @@ static int spmi_pmic_arb_probe(struct platform_device *pdev)
|
||||||
hw_ver = readl_relaxed(core + PMIC_ARB_VERSION);
|
hw_ver = readl_relaxed(core + PMIC_ARB_VERSION);
|
||||||
|
|
||||||
if (hw_ver < PMIC_ARB_VERSION_V2_MIN) {
|
if (hw_ver < PMIC_ARB_VERSION_V2_MIN) {
|
||||||
pa->ver_ops = &pmic_arb_v1;
|
pmic_arb->ver_ops = &pmic_arb_v1;
|
||||||
pa->wr_base = core;
|
pmic_arb->wr_base = core;
|
||||||
pa->rd_base = core;
|
pmic_arb->rd_base = core;
|
||||||
} else {
|
} else {
|
||||||
pa->core = core;
|
pmic_arb->core = core;
|
||||||
|
|
||||||
if (hw_ver < PMIC_ARB_VERSION_V3_MIN)
|
if (hw_ver < PMIC_ARB_VERSION_V3_MIN)
|
||||||
pa->ver_ops = &pmic_arb_v2;
|
pmic_arb->ver_ops = &pmic_arb_v2;
|
||||||
else
|
else
|
||||||
pa->ver_ops = &pmic_arb_v3;
|
pmic_arb->ver_ops = &pmic_arb_v3;
|
||||||
|
|
||||||
res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
|
res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
|
||||||
"obsrvr");
|
"obsrvr");
|
||||||
pa->rd_base = devm_ioremap_resource(&ctrl->dev, res);
|
pmic_arb->rd_base = devm_ioremap_resource(&ctrl->dev, res);
|
||||||
if (IS_ERR(pa->rd_base)) {
|
if (IS_ERR(pmic_arb->rd_base)) {
|
||||||
err = PTR_ERR(pa->rd_base);
|
err = PTR_ERR(pmic_arb->rd_base);
|
||||||
goto err_put_ctrl;
|
goto err_put_ctrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
|
res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
|
||||||
"chnls");
|
"chnls");
|
||||||
pa->wr_base = devm_ioremap_resource(&ctrl->dev, res);
|
pmic_arb->wr_base = devm_ioremap_resource(&ctrl->dev, res);
|
||||||
if (IS_ERR(pa->wr_base)) {
|
if (IS_ERR(pmic_arb->wr_base)) {
|
||||||
err = PTR_ERR(pa->wr_base);
|
err = PTR_ERR(pmic_arb->wr_base);
|
||||||
goto err_put_ctrl;
|
goto err_put_ctrl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dev_info(&ctrl->dev, "PMIC arbiter version %s (0x%x)\n",
|
dev_info(&ctrl->dev, "PMIC arbiter version %s (0x%x)\n",
|
||||||
pa->ver_ops->ver_str, hw_ver);
|
pmic_arb->ver_ops->ver_str, hw_ver);
|
||||||
|
|
||||||
res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "intr");
|
res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "intr");
|
||||||
pa->intr = devm_ioremap_resource(&ctrl->dev, res);
|
pmic_arb->intr = devm_ioremap_resource(&ctrl->dev, res);
|
||||||
if (IS_ERR(pa->intr)) {
|
if (IS_ERR(pmic_arb->intr)) {
|
||||||
err = PTR_ERR(pa->intr);
|
err = PTR_ERR(pmic_arb->intr);
|
||||||
goto err_put_ctrl;
|
goto err_put_ctrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "cnfg");
|
res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "cnfg");
|
||||||
pa->cnfg = devm_ioremap_resource(&ctrl->dev, res);
|
pmic_arb->cnfg = devm_ioremap_resource(&ctrl->dev, res);
|
||||||
if (IS_ERR(pa->cnfg)) {
|
if (IS_ERR(pmic_arb->cnfg)) {
|
||||||
err = PTR_ERR(pa->cnfg);
|
err = PTR_ERR(pmic_arb->cnfg);
|
||||||
goto err_put_ctrl;
|
goto err_put_ctrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
pa->irq = platform_get_irq_byname(pdev, "periph_irq");
|
pmic_arb->irq = platform_get_irq_byname(pdev, "periph_irq");
|
||||||
if (pa->irq < 0) {
|
if (pmic_arb->irq < 0) {
|
||||||
err = pa->irq;
|
err = pmic_arb->irq;
|
||||||
goto err_put_ctrl;
|
goto err_put_ctrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1027,7 +1024,7 @@ static int spmi_pmic_arb_probe(struct platform_device *pdev)
|
||||||
goto err_put_ctrl;
|
goto err_put_ctrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
pa->channel = channel;
|
pmic_arb->channel = channel;
|
||||||
|
|
||||||
err = of_property_read_u32(pdev->dev.of_node, "qcom,ee", &ee);
|
err = of_property_read_u32(pdev->dev.of_node, "qcom,ee", &ee);
|
||||||
if (err) {
|
if (err) {
|
||||||
|
@ -1041,38 +1038,41 @@ static int spmi_pmic_arb_probe(struct platform_device *pdev)
|
||||||
goto err_put_ctrl;
|
goto err_put_ctrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
pa->ee = ee;
|
pmic_arb->ee = ee;
|
||||||
|
|
||||||
pa->mapping_table = devm_kcalloc(&ctrl->dev, PMIC_ARB_MAX_PERIPHS - 1,
|
pmic_arb->mapping_table = devm_kcalloc(&ctrl->dev,
|
||||||
sizeof(*pa->mapping_table), GFP_KERNEL);
|
PMIC_ARB_MAX_PERIPHS - 1,
|
||||||
if (!pa->mapping_table) {
|
sizeof(*pmic_arb->mapping_table),
|
||||||
|
GFP_KERNEL);
|
||||||
|
if (!pmic_arb->mapping_table) {
|
||||||
err = -ENOMEM;
|
err = -ENOMEM;
|
||||||
goto err_put_ctrl;
|
goto err_put_ctrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Initialize max_apid/min_apid to the opposite bounds, during
|
/* Initialize max_apid/min_apid to the opposite bounds, during
|
||||||
* the irq domain translation, we are sure to update these */
|
* the irq domain translation, we are sure to update these */
|
||||||
pa->max_apid = 0;
|
pmic_arb->max_apid = 0;
|
||||||
pa->min_apid = PMIC_ARB_MAX_PERIPHS - 1;
|
pmic_arb->min_apid = PMIC_ARB_MAX_PERIPHS - 1;
|
||||||
|
|
||||||
platform_set_drvdata(pdev, ctrl);
|
platform_set_drvdata(pdev, ctrl);
|
||||||
raw_spin_lock_init(&pa->lock);
|
raw_spin_lock_init(&pmic_arb->lock);
|
||||||
|
|
||||||
ctrl->cmd = pmic_arb_cmd;
|
ctrl->cmd = pmic_arb_cmd;
|
||||||
ctrl->read_cmd = pmic_arb_read_cmd;
|
ctrl->read_cmd = pmic_arb_read_cmd;
|
||||||
ctrl->write_cmd = pmic_arb_write_cmd;
|
ctrl->write_cmd = pmic_arb_write_cmd;
|
||||||
|
|
||||||
dev_dbg(&pdev->dev, "adding irq domain\n");
|
dev_dbg(&pdev->dev, "adding irq domain\n");
|
||||||
pa->domain = irq_domain_add_tree(pdev->dev.of_node,
|
pmic_arb->domain = irq_domain_add_tree(pdev->dev.of_node,
|
||||||
&pmic_arb_irq_domain_ops, pa);
|
&pmic_arb_irq_domain_ops, pmic_arb);
|
||||||
if (!pa->domain) {
|
if (!pmic_arb->domain) {
|
||||||
dev_err(&pdev->dev, "unable to create irq_domain\n");
|
dev_err(&pdev->dev, "unable to create irq_domain\n");
|
||||||
err = -ENOMEM;
|
err = -ENOMEM;
|
||||||
goto err_put_ctrl;
|
goto err_put_ctrl;
|
||||||
}
|
}
|
||||||
|
|
||||||
irq_set_chained_handler_and_data(pa->irq, pmic_arb_chained_irq, pa);
|
irq_set_chained_handler_and_data(pmic_arb->irq, pmic_arb_chained_irq,
|
||||||
enable_irq_wake(pa->irq);
|
pmic_arb);
|
||||||
|
enable_irq_wake(pmic_arb->irq);
|
||||||
|
|
||||||
err = spmi_controller_add(ctrl);
|
err = spmi_controller_add(ctrl);
|
||||||
if (err)
|
if (err)
|
||||||
|
@ -1081,8 +1081,8 @@ static int spmi_pmic_arb_probe(struct platform_device *pdev)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
err_domain_remove:
|
err_domain_remove:
|
||||||
irq_set_chained_handler_and_data(pa->irq, NULL, NULL);
|
irq_set_chained_handler_and_data(pmic_arb->irq, NULL, NULL);
|
||||||
irq_domain_remove(pa->domain);
|
irq_domain_remove(pmic_arb->domain);
|
||||||
err_put_ctrl:
|
err_put_ctrl:
|
||||||
spmi_controller_put(ctrl);
|
spmi_controller_put(ctrl);
|
||||||
return err;
|
return err;
|
||||||
|
@ -1091,10 +1091,10 @@ err_put_ctrl:
|
||||||
static int spmi_pmic_arb_remove(struct platform_device *pdev)
|
static int spmi_pmic_arb_remove(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
struct spmi_controller *ctrl = platform_get_drvdata(pdev);
|
struct spmi_controller *ctrl = platform_get_drvdata(pdev);
|
||||||
struct spmi_pmic_arb *pa = spmi_controller_get_drvdata(ctrl);
|
struct spmi_pmic_arb *pmic_arb = spmi_controller_get_drvdata(ctrl);
|
||||||
spmi_controller_remove(ctrl);
|
spmi_controller_remove(ctrl);
|
||||||
irq_set_chained_handler_and_data(pa->irq, NULL, NULL);
|
irq_set_chained_handler_and_data(pmic_arb->irq, NULL, NULL);
|
||||||
irq_domain_remove(pa->domain);
|
irq_domain_remove(pmic_arb->domain);
|
||||||
spmi_controller_put(ctrl);
|
spmi_controller_put(ctrl);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue