iop.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713
  1. /*
  2. * I/O Processor (IOP) management
  3. * Written and (C) 1999 by Joshua M. Thompson (funaho@jurai.org)
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice and this list of conditions.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice and this list of conditions in the documentation and/or other
  12. * materials provided with the distribution.
  13. */
  14. /*
  15. * The IOP chips are used in the IIfx and some Quadras (900, 950) to manage
  16. * serial and ADB. They are actually a 6502 processor and some glue logic.
  17. *
  18. * 990429 (jmt) - Initial implementation, just enough to knock the SCC IOP
  19. * into compatible mode so nobody has to fiddle with the
  20. * Serial Switch control panel anymore.
  21. * 990603 (jmt) - Added code to grab the correct ISM IOP interrupt for OSS
  22. * and non-OSS machines (at least I hope it's correct on a
  23. * non-OSS machine -- someone with a Q900 or Q950 needs to
  24. * check this.)
  25. * 990605 (jmt) - Rearranged things a bit wrt IOP detection; iop_present is
  26. * gone, IOP base addresses are now in an array and the
  27. * globally-visible functions take an IOP number instead of an
  28. * an actual base address.
  29. * 990610 (jmt) - Finished the message passing framework and it seems to work.
  30. * Sending _definitely_ works; my adb-bus.c mods can send
  31. * messages and receive the MSG_COMPLETED status back from the
  32. * IOP. The trick now is figuring out the message formats.
  33. * 990611 (jmt) - More cleanups. Fixed problem where unclaimed messages on a
  34. * receive channel were never properly acknowledged. Bracketed
  35. * the remaining debug printk's with #ifdef's and disabled
  36. * debugging. I can now type on the console.
  37. * 990612 (jmt) - Copyright notice added. Reworked the way replies are handled.
  38. * It turns out that replies are placed back in the send buffer
  39. * for that channel; messages on the receive channels are always
  40. * unsolicited messages from the IOP (and our replies to them
  41. * should go back in the receive channel.) Also added tracking
  42. * of device names to the listener functions ala the interrupt
  43. * handlers.
  44. * 990729 (jmt) - Added passing of pt_regs structure to IOP handlers. This is
  45. * used by the new unified ADB driver.
  46. *
  47. * TODO:
  48. *
  49. * o Something should be periodically checking iop_alive() to make sure the
  50. * IOP hasn't died.
  51. * o Some of the IOP manager routines need better error checking and
  52. * return codes. Nothing major, just prettying up.
  53. */
  54. /*
  55. * -----------------------
  56. * IOP Message Passing 101
  57. * -----------------------
  58. *
  59. * The host talks to the IOPs using a rather simple message-passing scheme via
  60. * a shared memory area in the IOP RAM. Each IOP has seven "channels"; each
  61. * channel is conneced to a specific software driver on the IOP. For example
  62. * on the SCC IOP there is one channel for each serial port. Each channel has
  63. * an incoming and and outgoing message queue with a depth of one.
  64. *
  65. * A message is 32 bytes plus a state byte for the channel (MSG_IDLE, MSG_NEW,
  66. * MSG_RCVD, MSG_COMPLETE). To send a message you copy the message into the
  67. * buffer, set the state to MSG_NEW and signal the IOP by setting the IRQ flag
  68. * in the IOP control to 1. The IOP will move the state to MSG_RCVD when it
  69. * receives the message and then to MSG_COMPLETE when the message processing
  70. * has completed. It is the host's responsibility at that point to read the
  71. * reply back out of the send channel buffer and reset the channel state back
  72. * to MSG_IDLE.
  73. *
  74. * To receive message from the IOP the same procedure is used except the roles
  75. * are reversed. That is, the IOP puts message in the channel with a state of
  76. * MSG_NEW, and the host receives the message and move its state to MSG_RCVD
  77. * and then to MSG_COMPLETE when processing is completed and the reply (if any)
  78. * has been placed back in the receive channel. The IOP will then reset the
  79. * channel state to MSG_IDLE.
  80. *
  81. * Two sets of host interrupts are provided, INT0 and INT1. Both appear on one
  82. * interrupt level; they are distinguished by a pair of bits in the IOP status
  83. * register. The IOP will raise INT0 when one or more messages in the send
  84. * channels have gone to the MSG_COMPLETE state and it will raise INT1 when one
  85. * or more messages on the receive channels have gone to the MSG_NEW state.
  86. *
  87. * Since each channel handles only one message we have to implement a small
  88. * interrupt-driven queue on our end. Messages to be sent are placed on the
  89. * queue for sending and contain a pointer to an optional callback function.
  90. * The handler for a message is called when the message state goes to
  91. * MSG_COMPLETE.
  92. *
  93. * For receiving message we maintain a list of handler functions to call when
  94. * a message is received on that IOP/channel combination. The handlers are
  95. * called much like an interrupt handler and are passed a copy of the message
  96. * from the IOP. The message state will be in MSG_RCVD while the handler runs;
  97. * it is the handler's responsibility to call iop_complete_message() when
  98. * finished; this function moves the message state to MSG_COMPLETE and signals
  99. * the IOP. This two-step process is provided to allow the handler to defer
  100. * message processing to a bottom-half handler if the processing will take
  101. * a signifigant amount of time (handlers are called at interrupt time so they
  102. * should execute quickly.)
  103. */
  104. #include <linux/types.h>
  105. #include <linux/kernel.h>
  106. #include <linux/mm.h>
  107. #include <linux/delay.h>
  108. #include <linux/init.h>
  109. #include <linux/proc_fs.h>
  110. #include <linux/interrupt.h>
  111. #include <asm/bootinfo.h>
  112. #include <asm/macintosh.h>
  113. #include <asm/macints.h>
  114. #include <asm/mac_iop.h>
  115. #include <asm/mac_oss.h>
  116. /*#define DEBUG_IOP*/
  117. /* Set to nonezero if the IOPs are present. Set by iop_init() */
  118. int iop_scc_present,iop_ism_present;
  119. #ifdef CONFIG_PROC_FS
  120. static int iop_get_proc_info(char *, char **, off_t, int);
  121. #endif /* CONFIG_PROC_FS */
  122. /* structure for tracking channel listeners */
  123. struct listener {
  124. const char *devname;
  125. void (*handler)(struct iop_msg *);
  126. };
  127. /*
  128. * IOP structures for the two IOPs
  129. *
  130. * The SCC IOP controls both serial ports (A and B) as its two functions.
  131. * The ISM IOP controls the SWIM (floppy drive) and ADB.
  132. */
  133. static volatile struct mac_iop *iop_base[NUM_IOPS];
  134. /*
  135. * IOP message queues
  136. */
  137. static struct iop_msg iop_msg_pool[NUM_IOP_MSGS];
  138. static struct iop_msg *iop_send_queue[NUM_IOPS][NUM_IOP_CHAN];
  139. static struct listener iop_listeners[NUM_IOPS][NUM_IOP_CHAN];
  140. irqreturn_t iop_ism_irq(int, void *);
  141. extern void oss_irq_enable(int);
  142. /*
  143. * Private access functions
  144. */
  145. static __inline__ void iop_loadaddr(volatile struct mac_iop *iop, __u16 addr)
  146. {
  147. iop->ram_addr_lo = addr;
  148. iop->ram_addr_hi = addr >> 8;
  149. }
  150. static __inline__ __u8 iop_readb(volatile struct mac_iop *iop, __u16 addr)
  151. {
  152. iop->ram_addr_lo = addr;
  153. iop->ram_addr_hi = addr >> 8;
  154. return iop->ram_data;
  155. }
  156. static __inline__ void iop_writeb(volatile struct mac_iop *iop, __u16 addr, __u8 data)
  157. {
  158. iop->ram_addr_lo = addr;
  159. iop->ram_addr_hi = addr >> 8;
  160. iop->ram_data = data;
  161. }
  162. static __inline__ void iop_stop(volatile struct mac_iop *iop)
  163. {
  164. iop->status_ctrl &= ~IOP_RUN;
  165. }
  166. static __inline__ void iop_start(volatile struct mac_iop *iop)
  167. {
  168. iop->status_ctrl = IOP_RUN | IOP_AUTOINC;
  169. }
  170. static __inline__ void iop_bypass(volatile struct mac_iop *iop)
  171. {
  172. iop->status_ctrl |= IOP_BYPASS;
  173. }
  174. static __inline__ void iop_interrupt(volatile struct mac_iop *iop)
  175. {
  176. iop->status_ctrl |= IOP_IRQ;
  177. }
  178. static int iop_alive(volatile struct mac_iop *iop)
  179. {
  180. int retval;
  181. retval = (iop_readb(iop, IOP_ADDR_ALIVE) == 0xFF);
  182. iop_writeb(iop, IOP_ADDR_ALIVE, 0);
  183. return retval;
  184. }
  185. static struct iop_msg *iop_alloc_msg(void)
  186. {
  187. int i;
  188. unsigned long flags;
  189. local_irq_save(flags);
  190. for (i = 0 ; i < NUM_IOP_MSGS ; i++) {
  191. if (iop_msg_pool[i].status == IOP_MSGSTATUS_UNUSED) {
  192. iop_msg_pool[i].status = IOP_MSGSTATUS_WAITING;
  193. local_irq_restore(flags);
  194. return &iop_msg_pool[i];
  195. }
  196. }
  197. local_irq_restore(flags);
  198. return NULL;
  199. }
  200. static void iop_free_msg(struct iop_msg *msg)
  201. {
  202. msg->status = IOP_MSGSTATUS_UNUSED;
  203. }
  204. /*
  205. * This is called by the startup code before anything else. Its purpose
  206. * is to find and initialize the IOPs early in the boot sequence, so that
  207. * the serial IOP can be placed into bypass mode _before_ we try to
  208. * initialize the serial console.
  209. */
  210. void __init iop_preinit(void)
  211. {
  212. if (macintosh_config->scc_type == MAC_SCC_IOP) {
  213. if (macintosh_config->ident == MAC_MODEL_IIFX) {
  214. iop_base[IOP_NUM_SCC] = (struct mac_iop *) SCC_IOP_BASE_IIFX;
  215. } else {
  216. iop_base[IOP_NUM_SCC] = (struct mac_iop *) SCC_IOP_BASE_QUADRA;
  217. }
  218. iop_base[IOP_NUM_SCC]->status_ctrl = 0x87;
  219. iop_scc_present = 1;
  220. } else {
  221. iop_base[IOP_NUM_SCC] = NULL;
  222. iop_scc_present = 0;
  223. }
  224. if (macintosh_config->adb_type == MAC_ADB_IOP) {
  225. if (macintosh_config->ident == MAC_MODEL_IIFX) {
  226. iop_base[IOP_NUM_ISM] = (struct mac_iop *) ISM_IOP_BASE_IIFX;
  227. } else {
  228. iop_base[IOP_NUM_ISM] = (struct mac_iop *) ISM_IOP_BASE_QUADRA;
  229. }
  230. iop_base[IOP_NUM_ISM]->status_ctrl = 0;
  231. iop_ism_present = 1;
  232. } else {
  233. iop_base[IOP_NUM_ISM] = NULL;
  234. iop_ism_present = 0;
  235. }
  236. }
  237. /*
  238. * Initialize the IOPs, if present.
  239. */
  240. void __init iop_init(void)
  241. {
  242. int i;
  243. if (iop_scc_present) {
  244. printk("IOP: detected SCC IOP at %p\n", iop_base[IOP_NUM_SCC]);
  245. }
  246. if (iop_ism_present) {
  247. printk("IOP: detected ISM IOP at %p\n", iop_base[IOP_NUM_ISM]);
  248. iop_start(iop_base[IOP_NUM_ISM]);
  249. iop_alive(iop_base[IOP_NUM_ISM]); /* clears the alive flag */
  250. }
  251. /* Make the whole pool available and empty the queues */
  252. for (i = 0 ; i < NUM_IOP_MSGS ; i++) {
  253. iop_msg_pool[i].status = IOP_MSGSTATUS_UNUSED;
  254. }
  255. for (i = 0 ; i < NUM_IOP_CHAN ; i++) {
  256. iop_send_queue[IOP_NUM_SCC][i] = NULL;
  257. iop_send_queue[IOP_NUM_ISM][i] = NULL;
  258. iop_listeners[IOP_NUM_SCC][i].devname = NULL;
  259. iop_listeners[IOP_NUM_SCC][i].handler = NULL;
  260. iop_listeners[IOP_NUM_ISM][i].devname = NULL;
  261. iop_listeners[IOP_NUM_ISM][i].handler = NULL;
  262. }
  263. #if 0 /* Crashing in 2.4 now, not yet sure why. --jmt */
  264. #ifdef CONFIG_PROC_FS
  265. create_proc_info_entry("mac_iop", 0, &proc_root, iop_get_proc_info);
  266. #endif
  267. #endif
  268. }
  269. /*
  270. * Register the interrupt handler for the IOPs.
  271. * TODO: might be wrong for non-OSS machines. Anyone?
  272. */
  273. void __init iop_register_interrupts(void)
  274. {
  275. if (iop_ism_present) {
  276. if (oss_present) {
  277. request_irq(OSS_IRQLEV_IOPISM, iop_ism_irq,
  278. IRQ_FLG_LOCK, "ISM IOP",
  279. (void *) IOP_NUM_ISM);
  280. oss_irq_enable(IRQ_MAC_ADB);
  281. } else {
  282. request_irq(IRQ_VIA2_0, iop_ism_irq,
  283. IRQ_FLG_LOCK|IRQ_FLG_FAST, "ISM IOP",
  284. (void *) IOP_NUM_ISM);
  285. }
  286. if (!iop_alive(iop_base[IOP_NUM_ISM])) {
  287. printk("IOP: oh my god, they killed the ISM IOP!\n");
  288. } else {
  289. printk("IOP: the ISM IOP seems to be alive.\n");
  290. }
  291. }
  292. }
  293. /*
  294. * Register or unregister a listener for a specific IOP and channel
  295. *
  296. * If the handler pointer is NULL the current listener (if any) is
  297. * unregistered. Otherwise the new listener is registered provided
  298. * there is no existing listener registered.
  299. */
  300. int iop_listen(uint iop_num, uint chan,
  301. void (*handler)(struct iop_msg *),
  302. const char *devname)
  303. {
  304. if ((iop_num >= NUM_IOPS) || !iop_base[iop_num]) return -EINVAL;
  305. if (chan >= NUM_IOP_CHAN) return -EINVAL;
  306. if (iop_listeners[iop_num][chan].handler && handler) return -EINVAL;
  307. iop_listeners[iop_num][chan].devname = devname;
  308. iop_listeners[iop_num][chan].handler = handler;
  309. return 0;
  310. }
  311. /*
  312. * Complete reception of a message, which just means copying the reply
  313. * into the buffer, setting the channel state to MSG_COMPLETE and
  314. * notifying the IOP.
  315. */
  316. void iop_complete_message(struct iop_msg *msg)
  317. {
  318. int iop_num = msg->iop_num;
  319. int chan = msg->channel;
  320. int i,offset;
  321. #ifdef DEBUG_IOP
  322. printk("iop_complete(%p): iop %d chan %d\n", msg, msg->iop_num, msg->channel);
  323. #endif
  324. offset = IOP_ADDR_RECV_MSG + (msg->channel * IOP_MSG_LEN);
  325. for (i = 0 ; i < IOP_MSG_LEN ; i++, offset++) {
  326. iop_writeb(iop_base[iop_num], offset, msg->reply[i]);
  327. }
  328. iop_writeb(iop_base[iop_num],
  329. IOP_ADDR_RECV_STATE + chan, IOP_MSG_COMPLETE);
  330. iop_interrupt(iop_base[msg->iop_num]);
  331. iop_free_msg(msg);
  332. }
  333. /*
  334. * Actually put a message into a send channel buffer
  335. */
  336. static void iop_do_send(struct iop_msg *msg)
  337. {
  338. volatile struct mac_iop *iop = iop_base[msg->iop_num];
  339. int i,offset;
  340. offset = IOP_ADDR_SEND_MSG + (msg->channel * IOP_MSG_LEN);
  341. for (i = 0 ; i < IOP_MSG_LEN ; i++, offset++) {
  342. iop_writeb(iop, offset, msg->message[i]);
  343. }
  344. iop_writeb(iop, IOP_ADDR_SEND_STATE + msg->channel, IOP_MSG_NEW);
  345. iop_interrupt(iop);
  346. }
  347. /*
  348. * Handle sending a message on a channel that
  349. * has gone into the IOP_MSG_COMPLETE state.
  350. */
  351. static void iop_handle_send(uint iop_num, uint chan)
  352. {
  353. volatile struct mac_iop *iop = iop_base[iop_num];
  354. struct iop_msg *msg,*msg2;
  355. int i,offset;
  356. #ifdef DEBUG_IOP
  357. printk("iop_handle_send: iop %d channel %d\n", iop_num, chan);
  358. #endif
  359. iop_writeb(iop, IOP_ADDR_SEND_STATE + chan, IOP_MSG_IDLE);
  360. if (!(msg = iop_send_queue[iop_num][chan])) return;
  361. msg->status = IOP_MSGSTATUS_COMPLETE;
  362. offset = IOP_ADDR_SEND_MSG + (chan * IOP_MSG_LEN);
  363. for (i = 0 ; i < IOP_MSG_LEN ; i++, offset++) {
  364. msg->reply[i] = iop_readb(iop, offset);
  365. }
  366. if (msg->handler) (*msg->handler)(msg);
  367. msg2 = msg;
  368. msg = msg->next;
  369. iop_free_msg(msg2);
  370. iop_send_queue[iop_num][chan] = msg;
  371. if (msg) iop_do_send(msg);
  372. }
  373. /*
  374. * Handle reception of a message on a channel that has
  375. * gone into the IOP_MSG_NEW state.
  376. */
  377. static void iop_handle_recv(uint iop_num, uint chan)
  378. {
  379. volatile struct mac_iop *iop = iop_base[iop_num];
  380. int i,offset;
  381. struct iop_msg *msg;
  382. #ifdef DEBUG_IOP
  383. printk("iop_handle_recv: iop %d channel %d\n", iop_num, chan);
  384. #endif
  385. msg = iop_alloc_msg();
  386. msg->iop_num = iop_num;
  387. msg->channel = chan;
  388. msg->status = IOP_MSGSTATUS_UNSOL;
  389. msg->handler = iop_listeners[iop_num][chan].handler;
  390. offset = IOP_ADDR_RECV_MSG + (chan * IOP_MSG_LEN);
  391. for (i = 0 ; i < IOP_MSG_LEN ; i++, offset++) {
  392. msg->message[i] = iop_readb(iop, offset);
  393. }
  394. iop_writeb(iop, IOP_ADDR_RECV_STATE + chan, IOP_MSG_RCVD);
  395. /* If there is a listener, call it now. Otherwise complete */
  396. /* the message ourselves to avoid possible stalls. */
  397. if (msg->handler) {
  398. (*msg->handler)(msg);
  399. } else {
  400. #ifdef DEBUG_IOP
  401. printk("iop_handle_recv: unclaimed message on iop %d channel %d\n", iop_num, chan);
  402. printk("iop_handle_recv:");
  403. for (i = 0 ; i < IOP_MSG_LEN ; i++) {
  404. printk(" %02X", (uint) msg->message[i]);
  405. }
  406. printk("\n");
  407. #endif
  408. iop_complete_message(msg);
  409. }
  410. }
  411. /*
  412. * Send a message
  413. *
  414. * The message is placed at the end of the send queue. Afterwards if the
  415. * channel is idle we force an immediate send of the next message in the
  416. * queue.
  417. */
  418. int iop_send_message(uint iop_num, uint chan, void *privdata,
  419. uint msg_len, __u8 *msg_data,
  420. void (*handler)(struct iop_msg *))
  421. {
  422. struct iop_msg *msg, *q;
  423. if ((iop_num >= NUM_IOPS) || !iop_base[iop_num]) return -EINVAL;
  424. if (chan >= NUM_IOP_CHAN) return -EINVAL;
  425. if (msg_len > IOP_MSG_LEN) return -EINVAL;
  426. msg = iop_alloc_msg();
  427. if (!msg) return -ENOMEM;
  428. msg->next = NULL;
  429. msg->status = IOP_MSGSTATUS_WAITING;
  430. msg->iop_num = iop_num;
  431. msg->channel = chan;
  432. msg->caller_priv = privdata;
  433. memcpy(msg->message, msg_data, msg_len);
  434. msg->handler = handler;
  435. if (!(q = iop_send_queue[iop_num][chan])) {
  436. iop_send_queue[iop_num][chan] = msg;
  437. } else {
  438. while (q->next) q = q->next;
  439. q->next = msg;
  440. }
  441. if (iop_readb(iop_base[iop_num],
  442. IOP_ADDR_SEND_STATE + chan) == IOP_MSG_IDLE) {
  443. iop_do_send(msg);
  444. }
  445. return 0;
  446. }
  447. /*
  448. * Upload code to the shared RAM of an IOP.
  449. */
  450. void iop_upload_code(uint iop_num, __u8 *code_start,
  451. uint code_len, __u16 shared_ram_start)
  452. {
  453. if ((iop_num >= NUM_IOPS) || !iop_base[iop_num]) return;
  454. iop_loadaddr(iop_base[iop_num], shared_ram_start);
  455. while (code_len--) {
  456. iop_base[iop_num]->ram_data = *code_start++;
  457. }
  458. }
  459. /*
  460. * Download code from the shared RAM of an IOP.
  461. */
  462. void iop_download_code(uint iop_num, __u8 *code_start,
  463. uint code_len, __u16 shared_ram_start)
  464. {
  465. if ((iop_num >= NUM_IOPS) || !iop_base[iop_num]) return;
  466. iop_loadaddr(iop_base[iop_num], shared_ram_start);
  467. while (code_len--) {
  468. *code_start++ = iop_base[iop_num]->ram_data;
  469. }
  470. }
  471. /*
  472. * Compare the code in the shared RAM of an IOP with a copy in system memory
  473. * and return 0 on match or the first nonmatching system memory address on
  474. * failure.
  475. */
  476. __u8 *iop_compare_code(uint iop_num, __u8 *code_start,
  477. uint code_len, __u16 shared_ram_start)
  478. {
  479. if ((iop_num >= NUM_IOPS) || !iop_base[iop_num]) return code_start;
  480. iop_loadaddr(iop_base[iop_num], shared_ram_start);
  481. while (code_len--) {
  482. if (*code_start != iop_base[iop_num]->ram_data) {
  483. return code_start;
  484. }
  485. code_start++;
  486. }
  487. return (__u8 *) 0;
  488. }
  489. /*
  490. * Handle an ISM IOP interrupt
  491. */
  492. irqreturn_t iop_ism_irq(int irq, void *dev_id)
  493. {
  494. uint iop_num = (uint) dev_id;
  495. volatile struct mac_iop *iop = iop_base[iop_num];
  496. int i,state;
  497. #ifdef DEBUG_IOP
  498. printk("iop_ism_irq: status = %02X\n", (uint) iop->status_ctrl);
  499. #endif
  500. /* INT0 indicates a state change on an outgoing message channel */
  501. if (iop->status_ctrl & IOP_INT0) {
  502. iop->status_ctrl = IOP_INT0 | IOP_RUN | IOP_AUTOINC;
  503. #ifdef DEBUG_IOP
  504. printk("iop_ism_irq: new status = %02X, send states",
  505. (uint) iop->status_ctrl);
  506. #endif
  507. for (i = 0 ; i < NUM_IOP_CHAN ; i++) {
  508. state = iop_readb(iop, IOP_ADDR_SEND_STATE + i);
  509. #ifdef DEBUG_IOP
  510. printk(" %02X", state);
  511. #endif
  512. if (state == IOP_MSG_COMPLETE) {
  513. iop_handle_send(iop_num, i);
  514. }
  515. }
  516. #ifdef DEBUG_IOP
  517. printk("\n");
  518. #endif
  519. }
  520. if (iop->status_ctrl & IOP_INT1) { /* INT1 for incoming msgs */
  521. iop->status_ctrl = IOP_INT1 | IOP_RUN | IOP_AUTOINC;
  522. #ifdef DEBUG_IOP
  523. printk("iop_ism_irq: new status = %02X, recv states",
  524. (uint) iop->status_ctrl);
  525. #endif
  526. for (i = 0 ; i < NUM_IOP_CHAN ; i++) {
  527. state = iop_readb(iop, IOP_ADDR_RECV_STATE + i);
  528. #ifdef DEBUG_IOP
  529. printk(" %02X", state);
  530. #endif
  531. if (state == IOP_MSG_NEW) {
  532. iop_handle_recv(iop_num, i);
  533. }
  534. }
  535. #ifdef DEBUG_IOP
  536. printk("\n");
  537. #endif
  538. }
  539. return IRQ_HANDLED;
  540. }
  541. #ifdef CONFIG_PROC_FS
  542. char *iop_chan_state(int state)
  543. {
  544. switch(state) {
  545. case IOP_MSG_IDLE : return "idle ";
  546. case IOP_MSG_NEW : return "new ";
  547. case IOP_MSG_RCVD : return "received ";
  548. case IOP_MSG_COMPLETE : return "completed ";
  549. default : return "unknown ";
  550. }
  551. }
  552. int iop_dump_one_iop(char *buf, int iop_num, char *iop_name)
  553. {
  554. int i,len = 0;
  555. volatile struct mac_iop *iop = iop_base[iop_num];
  556. len += sprintf(buf+len, "%s IOP channel states:\n\n", iop_name);
  557. len += sprintf(buf+len, "## send_state recv_state device\n");
  558. len += sprintf(buf+len, "------------------------------------------------\n");
  559. for (i = 0 ; i < NUM_IOP_CHAN ; i++) {
  560. len += sprintf(buf+len, "%2d %10s %10s %s\n", i,
  561. iop_chan_state(iop_readb(iop, IOP_ADDR_SEND_STATE+i)),
  562. iop_chan_state(iop_readb(iop, IOP_ADDR_RECV_STATE+i)),
  563. iop_listeners[iop_num][i].handler?
  564. iop_listeners[iop_num][i].devname : "");
  565. }
  566. len += sprintf(buf+len, "\n");
  567. return len;
  568. }
  569. static int iop_get_proc_info(char *buf, char **start, off_t pos, int count)
  570. {
  571. int len, cnt;
  572. cnt = 0;
  573. len = sprintf(buf, "IOPs detected:\n\n");
  574. if (iop_scc_present) {
  575. len += sprintf(buf+len, "SCC IOP (%p): status %02X\n",
  576. iop_base[IOP_NUM_SCC],
  577. (uint) iop_base[IOP_NUM_SCC]->status_ctrl);
  578. }
  579. if (iop_ism_present) {
  580. len += sprintf(buf+len, "ISM IOP (%p): status %02X\n\n",
  581. iop_base[IOP_NUM_ISM],
  582. (uint) iop_base[IOP_NUM_ISM]->status_ctrl);
  583. }
  584. if (iop_scc_present) {
  585. len += iop_dump_one_iop(buf+len, IOP_NUM_SCC, "SCC");
  586. }
  587. if (iop_ism_present) {
  588. len += iop_dump_one_iop(buf+len, IOP_NUM_ISM, "ISM");
  589. }
  590. if (len >= pos) {
  591. if (!*start) {
  592. *start = buf + pos;
  593. cnt = len - pos;
  594. } else {
  595. cnt += len;
  596. }
  597. }
  598. return (count > cnt) ? cnt : count;
  599. }
  600. #endif /* CONFIG_PROC_FS */