1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2013-2015 Fujitsu Semiconductor Ltd.
4 * Copyright (C) 2015 Linaro Ltd.
5 * Author: Jassi Brar <jaswinder.singh@linaro.org>
8 #include <linux/interrupt.h>
9 #include <linux/spinlock.h>
10 #include <linux/mutex.h>
11 #include <linux/delay.h>
12 #include <linux/slab.h>
13 #include <linux/err.h>
15 #include <linux/module.h>
16 #include <linux/amba/bus.h>
17 #include <linux/mailbox_controller.h>
19 #define INTR_STAT_OFS 0x0
20 #define INTR_SET_OFS 0x8
21 #define INTR_CLR_OFS 0x10
23 #define MHU_LP_OFFSET 0x0
24 #define MHU_HP_OFFSET 0x20
25 #define MHU_SEC_OFFSET 0x200
26 #define TX_REG_OFFSET 0x100
38 struct mhu_link mlink
[MHU_CHANS
];
39 struct mbox_chan chan
[MHU_CHANS
];
40 struct mbox_controller mbox
;
43 static irqreturn_t
mhu_rx_interrupt(int irq
, void *p
)
45 struct mbox_chan
*chan
= p
;
46 struct mhu_link
*mlink
= chan
->con_priv
;
49 val
= readl_relaxed(mlink
->rx_reg
+ INTR_STAT_OFS
);
53 mbox_chan_received_data(chan
, (void *)&val
);
55 writel_relaxed(val
, mlink
->rx_reg
+ INTR_CLR_OFS
);
60 static bool mhu_last_tx_done(struct mbox_chan
*chan
)
62 struct mhu_link
*mlink
= chan
->con_priv
;
63 u32 val
= readl_relaxed(mlink
->tx_reg
+ INTR_STAT_OFS
);
68 static int mhu_send_data(struct mbox_chan
*chan
, void *data
)
70 struct mhu_link
*mlink
= chan
->con_priv
;
73 writel_relaxed(*arg
, mlink
->tx_reg
+ INTR_SET_OFS
);
78 static int mhu_startup(struct mbox_chan
*chan
)
80 struct mhu_link
*mlink
= chan
->con_priv
;
84 val
= readl_relaxed(mlink
->tx_reg
+ INTR_STAT_OFS
);
85 writel_relaxed(val
, mlink
->tx_reg
+ INTR_CLR_OFS
);
87 ret
= request_irq(mlink
->irq
, mhu_rx_interrupt
,
88 IRQF_SHARED
, "mhu_link", chan
);
90 dev_err(chan
->mbox
->dev
,
91 "Unable to acquire IRQ %d\n", mlink
->irq
);
98 static void mhu_shutdown(struct mbox_chan
*chan
)
100 struct mhu_link
*mlink
= chan
->con_priv
;
102 free_irq(mlink
->irq
, chan
);
105 static const struct mbox_chan_ops mhu_ops
= {
106 .send_data
= mhu_send_data
,
107 .startup
= mhu_startup
,
108 .shutdown
= mhu_shutdown
,
109 .last_tx_done
= mhu_last_tx_done
,
112 static int mhu_probe(struct amba_device
*adev
, const struct amba_id
*id
)
116 struct device
*dev
= &adev
->dev
;
117 int mhu_reg
[MHU_CHANS
] = {MHU_LP_OFFSET
, MHU_HP_OFFSET
, MHU_SEC_OFFSET
};
119 /* Allocate memory for device */
120 mhu
= devm_kzalloc(dev
, sizeof(*mhu
), GFP_KERNEL
);
124 mhu
->base
= devm_ioremap_resource(dev
, &adev
->res
);
125 if (IS_ERR(mhu
->base
)) {
126 dev_err(dev
, "ioremap failed\n");
127 return PTR_ERR(mhu
->base
);
130 for (i
= 0; i
< MHU_CHANS
; i
++) {
131 mhu
->chan
[i
].con_priv
= &mhu
->mlink
[i
];
132 mhu
->mlink
[i
].irq
= adev
->irq
[i
];
133 mhu
->mlink
[i
].rx_reg
= mhu
->base
+ mhu_reg
[i
];
134 mhu
->mlink
[i
].tx_reg
= mhu
->mlink
[i
].rx_reg
+ TX_REG_OFFSET
;
138 mhu
->mbox
.chans
= &mhu
->chan
[0];
139 mhu
->mbox
.num_chans
= MHU_CHANS
;
140 mhu
->mbox
.ops
= &mhu_ops
;
141 mhu
->mbox
.txdone_irq
= false;
142 mhu
->mbox
.txdone_poll
= true;
143 mhu
->mbox
.txpoll_period
= 1;
145 amba_set_drvdata(adev
, mhu
);
147 err
= devm_mbox_controller_register(dev
, &mhu
->mbox
);
149 dev_err(dev
, "Failed to register mailboxes %d\n", err
);
153 dev_info(dev
, "ARM MHU Mailbox registered\n");
157 static struct amba_id mhu_ids
[] = {
164 MODULE_DEVICE_TABLE(amba
, mhu_ids
);
166 static struct amba_driver arm_mhu_driver
= {
173 module_amba_driver(arm_mhu_driver
);
175 MODULE_LICENSE("GPL v2");
176 MODULE_DESCRIPTION("ARM MHU Driver");
177 MODULE_AUTHOR("Jassi Brar <jassisinghbrar@gmail.com>");