1 // SPDX-License-Identifier: GPL-2.0
3 * Driver for the ADB controller in the Mac I/O (Hydra) chip.
5 #include <linux/types.h>
6 #include <linux/errno.h>
7 #include <linux/kernel.h>
8 #include <linux/delay.h>
9 #include <linux/spinlock.h>
10 #include <linux/interrupt.h>
11 #include <linux/pgtable.h>
13 #include <linux/adb.h>
15 #include <asm/hydra.h>
17 #include <linux/init.h>
18 #include <linux/ioport.h>
33 struct preg active_hi;
34 struct preg active_lo;
38 /* Bits in intr and intr_enb registers */
39 #define DFB 1 /* data from bus */
40 #define TAG 2 /* transfer access grant */
42 /* Bits in dcount register */
43 #define HMB 0x0f /* how many bytes */
44 #define APD 0x10 /* auto-poll data */
46 /* Bits in error register */
47 #define NRE 1 /* no response error */
48 #define DLE 2 /* data lost error */
50 /* Bits in ctrl register */
51 #define TAR 1 /* transfer access request */
52 #define DTB 2 /* data to bus */
53 #define CRE 4 /* command response expected */
54 #define ADB_RST 8 /* ADB reset */
56 /* Bits in autopoll register */
57 #define APE 1 /* autopoll enable */
59 static volatile struct adb_regs __iomem *adb;
60 static struct adb_request *current_req, *last_req;
61 static DEFINE_SPINLOCK(macio_lock);
63 static int macio_probe(void);
64 static int macio_init(void);
65 static irqreturn_t macio_adb_interrupt(int irq, void *arg);
66 static int macio_send_request(struct adb_request *req, int sync);
67 static int macio_adb_autopoll(int devs);
68 static void macio_adb_poll(void);
69 static int macio_adb_reset_bus(void);
71 struct adb_driver macio_adb_driver = {
75 .send_request = macio_send_request,
76 .autopoll = macio_adb_autopoll,
77 .poll = macio_adb_poll,
78 .reset_bus = macio_adb_reset_bus,
83 struct device_node *np;
85 np = of_find_compatible_node(NULL, "adb", "chrp,adb0");
95 struct device_node *adbs;
99 adbs = of_find_compatible_node(NULL, "adb", "chrp,adb0");
103 if (of_address_to_resource(adbs, 0, &r)) {
107 adb = ioremap(r.start, sizeof(struct adb_regs));
113 out_8(&adb->ctrl.r, 0);
114 out_8(&adb->intr.r, 0);
115 out_8(&adb->error.r, 0);
116 out_8(&adb->active_hi.r, 0xff); /* for now, set all devices active */
117 out_8(&adb->active_lo.r, 0xff);
118 out_8(&adb->autopoll.r, APE);
120 irq = irq_of_parse_and_map(adbs, 0);
122 if (request_irq(irq, macio_adb_interrupt, 0, "ADB", (void *)0)) {
123 printk(KERN_ERR "ADB: can't get irq %d\n", irq);
126 out_8(&adb->intr_enb.r, DFB | TAG);
128 printk("adb: mac-io driver 1.0 for unified ADB\n");
133 static int macio_adb_autopoll(int devs)
137 spin_lock_irqsave(&macio_lock, flags);
138 out_8(&adb->active_hi.r, devs >> 8);
139 out_8(&adb->active_lo.r, devs);
140 out_8(&adb->autopoll.r, devs? APE: 0);
141 spin_unlock_irqrestore(&macio_lock, flags);
145 static int macio_adb_reset_bus(void)
148 int timeout = 1000000;
150 /* Hrm... we may want to not lock interrupts for so
151 * long ... oh well, who uses that chip anyway ? :)
152 * That function will be seldom used during boot
153 * on rare machines, so...
155 spin_lock_irqsave(&macio_lock, flags);
156 out_8(&adb->ctrl.r, in_8(&adb->ctrl.r) | ADB_RST);
157 while ((in_8(&adb->ctrl.r) & ADB_RST) != 0) {
158 if (--timeout == 0) {
159 out_8(&adb->ctrl.r, in_8(&adb->ctrl.r) & ~ADB_RST);
160 spin_unlock_irqrestore(&macio_lock, flags);
164 spin_unlock_irqrestore(&macio_lock, flags);
168 /* Send an ADB command */
169 static int macio_send_request(struct adb_request *req, int sync)
174 if (req->data[0] != ADB_PACKET)
177 for (i = 0; i < req->nbytes - 1; ++i)
178 req->data[i] = req->data[i+1];
186 spin_lock_irqsave(&macio_lock, flags);
187 if (current_req != 0) {
188 last_req->next = req;
191 current_req = last_req = req;
192 out_8(&adb->ctrl.r, in_8(&adb->ctrl.r) | TAR);
194 spin_unlock_irqrestore(&macio_lock, flags);
197 while (!req->complete)
204 static irqreturn_t macio_adb_interrupt(int irq, void *arg)
207 struct adb_request *req = NULL;
208 unsigned char ibuf[16];
214 spin_lock(&macio_lock);
215 if (in_8(&adb->intr.r) & TAG) {
217 if ((req = current_req) != 0) {
218 /* put the current request in */
219 for (i = 0; i < req->nbytes; ++i)
220 out_8(&adb->data[i].r, req->data[i]);
221 out_8(&adb->dcount.r, req->nbytes & HMB);
223 if (req->reply_expected) {
224 out_8(&adb->ctrl.r, DTB + CRE);
226 out_8(&adb->ctrl.r, DTB);
227 current_req = req->next;
230 out_8(&adb->ctrl.r, in_8(&adb->ctrl.r) | TAR);
233 out_8(&adb->intr.r, 0);
236 if (in_8(&adb->intr.r) & DFB) {
238 err = in_8(&adb->error.r);
239 if (current_req && current_req->sent) {
240 /* this is the response to a command */
243 req->reply_len = in_8(&adb->dcount.r) & HMB;
244 for (i = 0; i < req->reply_len; ++i)
245 req->reply[i] = in_8(&adb->data[i].r);
247 current_req = req->next;
250 out_8(&adb->ctrl.r, in_8(&adb->ctrl.r) | TAR);
251 } else if (err == 0) {
253 n = in_8(&adb->dcount.r) & HMB;
254 for (i = 0; i < n; ++i)
255 ibuf[i] = in_8(&adb->data[i].r);
257 autopoll = (in_8(&adb->dcount.r) & APD) != 0;
259 out_8(&adb->error.r, 0);
260 out_8(&adb->intr.r, 0);
262 spin_unlock(&macio_lock);
263 if (complete && req) {
264 void (*done)(struct adb_request *) = req->done;
267 /* Here, we assume that if the request has a done member, the
268 * struct request will survive to setting req->complete to 1
274 adb_input(ibuf, ibuf_len, autopoll);
276 return IRQ_RETVAL(handled);
279 static void macio_adb_poll(void)
283 local_irq_save(flags);
284 if (in_8(&adb->intr.r) != 0)
285 macio_adb_interrupt(0, NULL);
286 local_irq_restore(flags);