blob: 2633bc254935cc49110c97f5e8a7eed223ee4292 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * I/O Processor (IOP) ADB Driver
4 * Written and (C) 1999 by Joshua M. Thompson (funaho@jurai.org)
5 * Based on via-cuda.c by Paul Mackerras.
6 *
7 * 1999-07-01 (jmt) - First implementation for new driver architecture.
8 *
9 * 1999-07-31 (jmt) - First working version.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
12#include <linux/types.h>
13#include <linux/kernel.h>
14#include <linux/mm.h>
15#include <linux/delay.h>
16#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
Finn Thain47fd2062018-09-11 20:18:44 -040018#include <asm/macintosh.h>
19#include <asm/macints.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/mac_iop.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <asm/adb_iop.h>
Finn Thainc396dd22021-01-18 17:19:40 +110022#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Finn Thain47fd2062018-09-11 20:18:44 -040024#include <linux/adb.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Linus Torvalds1da177e2005-04-16 15:20:36 -070026static struct adb_request *current_req;
27static struct adb_request *last_req;
Finn Thainc66da952020-05-31 09:17:03 +100028static unsigned int autopoll_devs;
Finn Thain10199e92020-11-20 15:39:56 +110029static u8 autopoll_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31static enum adb_iop_state {
Finn Thain47fd2062018-09-11 20:18:44 -040032 idle,
33 sending,
34 awaiting_reply
Linus Torvalds1da177e2005-04-16 15:20:36 -070035} adb_iop_state;
36
37static void adb_iop_start(void);
38static int adb_iop_probe(void);
39static int adb_iop_init(void);
40static int adb_iop_send_request(struct adb_request *, int);
41static int adb_iop_write(struct adb_request *);
42static int adb_iop_autopoll(int);
43static void adb_iop_poll(void);
44static int adb_iop_reset_bus(void);
45
Finn Thain10199e92020-11-20 15:39:56 +110046/* ADB command byte structure */
47#define ADDR_MASK 0xF0
48#define OP_MASK 0x0C
49#define TALK 0x0C
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051struct adb_driver adb_iop_driver = {
Finn Thain3a52f6f2018-03-29 11:36:04 +110052 .name = "ISM IOP",
53 .probe = adb_iop_probe,
54 .init = adb_iop_init,
55 .send_request = adb_iop_send_request,
56 .autopoll = adb_iop_autopoll,
57 .poll = adb_iop_poll,
58 .reset_bus = adb_iop_reset_bus
Linus Torvalds1da177e2005-04-16 15:20:36 -070059};
60
Finn Thain32226e82020-05-31 09:17:03 +100061static void adb_iop_done(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
Finn Thain32226e82020-05-31 09:17:03 +100063 struct adb_request *req = current_req;
64
65 adb_iop_state = idle;
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 req->complete = 1;
68 current_req = req->next;
Finn Thain47fd2062018-09-11 20:18:44 -040069 if (req->done)
70 (*req->done)(req);
Finn Thain32226e82020-05-31 09:17:03 +100071
72 if (adb_iop_state == idle)
73 adb_iop_start();
Linus Torvalds1da177e2005-04-16 15:20:36 -070074}
75
76/*
77 * Completion routine for ADB commands sent to the IOP.
78 *
79 * This will be called when a packet has been successfully sent.
80 */
81
David Howells7d12e782006-10-05 14:55:46 +010082static void adb_iop_complete(struct iop_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
Geert Uytterhoeven38b7a2a2010-11-11 14:05:06 -080084 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86 local_irq_save(flags);
87
Finn Thain2c9cfba2020-11-20 15:39:56 +110088 adb_iop_state = awaiting_reply;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 local_irq_restore(flags);
91}
92
93/*
94 * Listen for ADB messages from the IOP.
95 *
Finn Thain2c9cfba2020-11-20 15:39:56 +110096 * This will be called when unsolicited IOP messages are received.
97 * These IOP messages can carry ADB autopoll responses and also occur
98 * after explicit ADB commands.
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 */
100
David Howells7d12e782006-10-05 14:55:46 +0100101static void adb_iop_listen(struct iop_msg *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102{
Finn Thain47fd2062018-09-11 20:18:44 -0400103 struct adb_iopmsg *amsg = (struct adb_iopmsg *)msg->message;
Finn Thain10199e92020-11-20 15:39:56 +1100104 u8 addr = (amsg->cmd & ADDR_MASK) >> 4;
105 u8 op = amsg->cmd & OP_MASK;
Geert Uytterhoeven38b7a2a2010-11-11 14:05:06 -0800106 unsigned long flags;
Finn Thain32226e82020-05-31 09:17:03 +1000107 bool req_done = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 local_irq_save(flags);
110
Finn Thain10199e92020-11-20 15:39:56 +1100111 /* Responses to Talk commands may be unsolicited as they are
112 * produced when the IOP polls devices. They are mostly timeouts.
Finn Thainff785e12020-05-31 09:17:03 +1000113 */
Finn Thain10199e92020-11-20 15:39:56 +1100114 if (op == TALK && ((1 << addr) & autopoll_devs))
115 autopoll_addr = addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Finn Thain10199e92020-11-20 15:39:56 +1100117 switch (amsg->flags & (ADB_IOP_EXPLICIT |
118 ADB_IOP_AUTOPOLL |
119 ADB_IOP_TIMEOUT)) {
120 case ADB_IOP_EXPLICIT:
121 case ADB_IOP_EXPLICIT | ADB_IOP_TIMEOUT:
Finn Thain32226e82020-05-31 09:17:03 +1000122 if (adb_iop_state == awaiting_reply) {
123 struct adb_request *req = current_req;
124
Finn Thain2c9cfba2020-11-20 15:39:56 +1100125 if (req->reply_expected) {
126 req->reply_len = amsg->count + 1;
127 memcpy(req->reply, &amsg->cmd, req->reply_len);
128 }
Finn Thain32226e82020-05-31 09:17:03 +1000129
130 req_done = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 }
Finn Thain10199e92020-11-20 15:39:56 +1100132 break;
133 case ADB_IOP_AUTOPOLL:
134 if (((1 << addr) & autopoll_devs) &&
135 amsg->cmd == ADB_READREG(addr, 0))
136 adb_input(&amsg->cmd, amsg->count + 1, 1);
137 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
Finn Thain10199e92020-11-20 15:39:56 +1100139 msg->reply[0] = autopoll_addr ? ADB_IOP_AUTOPOLL : 0;
140 msg->reply[1] = 0;
141 msg->reply[2] = autopoll_addr ? ADB_READREG(autopoll_addr, 0) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 iop_complete_message(msg);
Finn Thain32226e82020-05-31 09:17:03 +1000143
144 if (req_done)
145 adb_iop_done();
146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 local_irq_restore(flags);
148}
149
150/*
151 * Start sending an ADB packet, IOP style
152 *
153 * There isn't much to do other than hand the packet over to the IOP
154 * after encapsulating it in an adb_iopmsg.
155 */
156
157static void adb_iop_start(void)
158{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 struct adb_request *req;
160 struct adb_iopmsg amsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
162 /* get the packet to send */
163 req = current_req;
Finn Thain47fd2062018-09-11 20:18:44 -0400164 if (!req)
165 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Finn Thainff785e12020-05-31 09:17:03 +1000167 /* The IOP takes MacII-style packets, so strip the initial
168 * ADB_PACKET byte.
169 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 amsg.flags = ADB_IOP_EXPLICIT;
171 amsg.count = req->nbytes - 2;
172
Finn Thainff785e12020-05-31 09:17:03 +1000173 /* amsg.data immediately follows amsg.cmd, effectively making
174 * &amsg.cmd a pointer to the beginning of a full ADB packet.
175 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 memcpy(&amsg.cmd, req->data + 1, req->nbytes - 1);
177
178 req->sent = 1;
179 adb_iop_state = sending;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Finn Thainff785e12020-05-31 09:17:03 +1000181 /* Now send it. The IOP manager will call adb_iop_complete
182 * when the message has been sent.
183 */
Finn Thain47fd2062018-09-11 20:18:44 -0400184 iop_send_message(ADB_IOP, ADB_CHAN, req, sizeof(amsg), (__u8 *)&amsg,
185 adb_iop_complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
Finn Thain56b732e2020-05-31 09:17:03 +1000188static int adb_iop_probe(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
Finn Thain47fd2062018-09-11 20:18:44 -0400190 if (!iop_ism_present)
191 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 return 0;
193}
194
Finn Thain56b732e2020-05-31 09:17:03 +1000195static int adb_iop_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196{
Finn Thain351e5ad2018-09-11 20:18:44 -0400197 pr_info("adb: IOP ISM driver v0.4 for Unified ADB\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 iop_listen(ADB_IOP, ADB_CHAN, adb_iop_listen, "ADB");
199 return 0;
200}
201
Finn Thain56b732e2020-05-31 09:17:03 +1000202static int adb_iop_send_request(struct adb_request *req, int sync)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
204 int err;
205
206 err = adb_iop_write(req);
Finn Thain47fd2062018-09-11 20:18:44 -0400207 if (err)
208 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210 if (sync) {
Finn Thain47fd2062018-09-11 20:18:44 -0400211 while (!req->complete)
212 adb_iop_poll();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 }
214 return 0;
215}
216
217static int adb_iop_write(struct adb_request *req)
218{
219 unsigned long flags;
220
221 if ((req->nbytes < 2) || (req->data[0] != ADB_PACKET)) {
222 req->complete = 1;
223 return -EINVAL;
224 }
225
Al Viroa5d361f2006-01-12 01:06:34 -0800226 req->next = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 req->sent = 0;
228 req->complete = 0;
229 req->reply_len = 0;
230
Finn Thainaac840e2020-05-31 09:17:03 +1000231 local_irq_save(flags);
232
Finn Thain56b732e2020-05-31 09:17:03 +1000233 if (current_req) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 last_req->next = req;
235 last_req = req;
236 } else {
237 current_req = req;
238 last_req = req;
239 }
240
Finn Thain47fd2062018-09-11 20:18:44 -0400241 if (adb_iop_state == idle)
242 adb_iop_start();
Finn Thainaac840e2020-05-31 09:17:03 +1000243
244 local_irq_restore(flags);
245
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return 0;
247}
248
Finn Thainc66da952020-05-31 09:17:03 +1000249static void adb_iop_set_ap_complete(struct iop_msg *msg)
250{
251 struct adb_iopmsg *amsg = (struct adb_iopmsg *)msg->message;
252
Finn Thainc396dd22021-01-18 17:19:40 +1100253 autopoll_devs = get_unaligned_be16(amsg->data);
Finn Thain10199e92020-11-20 15:39:56 +1100254 if (autopoll_devs & (1 << autopoll_addr))
255 return;
256 autopoll_addr = autopoll_devs ? (ffs(autopoll_devs) - 1) : 0;
Finn Thainc66da952020-05-31 09:17:03 +1000257}
258
Finn Thain56b732e2020-05-31 09:17:03 +1000259static int adb_iop_autopoll(int devs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
Finn Thainc66da952020-05-31 09:17:03 +1000261 struct adb_iopmsg amsg;
262 unsigned long flags;
263 unsigned int mask = (unsigned int)devs & 0xFFFE;
264
265 local_irq_save(flags);
266
267 amsg.flags = ADB_IOP_SET_AUTOPOLL | (mask ? ADB_IOP_AUTOPOLL : 0);
268 amsg.count = 2;
269 amsg.cmd = 0;
Finn Thainc396dd22021-01-18 17:19:40 +1100270 put_unaligned_be16(mask, amsg.data);
Finn Thainc66da952020-05-31 09:17:03 +1000271
272 iop_send_message(ADB_IOP, ADB_CHAN, NULL, sizeof(amsg), (__u8 *)&amsg,
273 adb_iop_set_ap_complete);
274
275 local_irq_restore(flags);
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 return 0;
278}
279
Finn Thain56b732e2020-05-31 09:17:03 +1000280static void adb_iop_poll(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Finn Thain92178fc2017-10-26 22:45:24 -0400282 iop_ism_irq_poll(ADB_IOP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283}
284
Finn Thain56b732e2020-05-31 09:17:03 +1000285static int adb_iop_reset_bus(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286{
Finn Thain303511e2020-05-31 09:17:03 +1000287 struct adb_request req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Finn Thain303511e2020-05-31 09:17:03 +1000289 /* Command = 0, Address = ignored */
290 adb_request(&req, NULL, ADBREQ_NOSEND, 1, ADB_BUSRESET);
291 adb_iop_send_request(&req, 1);
292
293 /* Don't want any more requests during the Global Reset low time. */
294 mdelay(3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296 return 0;
297}