adb-iop.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:6k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * I/O Processor (IOP) ADB Driver
  3.  * Written and (C) 1999 by Joshua M. Thompson (funaho@jurai.org)
  4.  * Based on via-cuda.c by Paul Mackerras.
  5.  *
  6.  * 1999-07-01 (jmt) - First implementation for new driver architecture.
  7.  *
  8.  * 1999-07-31 (jmt) - First working version.
  9.  *
  10.  * TODO:
  11.  *
  12.  * o Implement SRQ handling.
  13.  */
  14. #include <linux/types.h>
  15. #include <linux/kernel.h>
  16. #include <linux/mm.h>
  17. #include <linux/delay.h>
  18. #include <linux/init.h>
  19. #include <linux/proc_fs.h>
  20. #include <asm/bootinfo.h> 
  21. #include <asm/macintosh.h> 
  22. #include <asm/macints.h> 
  23. #include <asm/mac_iop.h>
  24. #include <asm/mac_oss.h>
  25. #include <asm/adb_iop.h>
  26. #include <linux/adb.h> 
  27. /*#define DEBUG_ADB_IOP*/
  28. extern void iop_ism_irq(int, void *, struct pt_regs *);
  29. static struct adb_request *current_req;
  30. static struct adb_request *last_req;
  31. #if 0
  32. static unsigned char reply_buff[16];
  33. static unsigned char *reply_ptr;
  34. #endif
  35. static enum adb_iop_state {
  36.     idle,
  37.     sending,
  38.     awaiting_reply
  39. } adb_iop_state;
  40. static void adb_iop_start(void);
  41. static int adb_iop_probe(void);
  42. static int adb_iop_init(void);
  43. static int adb_iop_send_request(struct adb_request *, int);
  44. static int adb_iop_write(struct adb_request *);
  45. static int adb_iop_autopoll(int);
  46. static void adb_iop_poll(void);
  47. static int adb_iop_reset_bus(void);
  48. struct adb_driver adb_iop_driver = {
  49. "ISM IOP",
  50. adb_iop_probe,
  51. adb_iop_init,
  52. adb_iop_send_request,
  53. adb_iop_autopoll,
  54. adb_iop_poll,
  55. adb_iop_reset_bus
  56. };
  57. static void adb_iop_end_req(struct adb_request *req, int state)
  58. {
  59. req->complete = 1;
  60. current_req = req->next;
  61. if (req->done) (*req->done)(req);
  62. adb_iop_state = state;
  63. }
  64. /*
  65.  * Completion routine for ADB commands sent to the IOP.
  66.  *
  67.  * This will be called when a packet has been successfully sent.
  68.  */
  69. static void adb_iop_complete(struct iop_msg *msg, struct pt_regs *regs)
  70. {
  71. struct adb_request *req;
  72. uint flags;
  73. save_flags(flags);
  74. cli();
  75. req = current_req;
  76. if ((adb_iop_state == sending) && req && req->reply_expected) {
  77. adb_iop_state = awaiting_reply;
  78. }
  79. restore_flags(flags);
  80. }
  81. /*
  82.  * Listen for ADB messages from the IOP.
  83.  *
  84.  * This will be called when unsolicited messages (usually replies to TALK
  85.  * commands or autopoll packets) are received.
  86.  */
  87. static void adb_iop_listen(struct iop_msg *msg, struct pt_regs *regs)
  88. {
  89. struct adb_iopmsg *amsg = (struct adb_iopmsg *) msg->message;
  90. struct adb_request *req;
  91. uint flags;
  92. save_flags(flags);
  93. cli();
  94. req = current_req;
  95. #ifdef DEBUG_ADB_IOP
  96. printk("adb_iop_listen: rcvd packet, %d bytes: %02X %02X",
  97. (uint) amsg->count + 2, (uint) amsg->flags, (uint) amsg->cmd);
  98. i = 0;
  99. while (i < amsg->count) {
  100. printk(" %02X", (uint) amsg->data[i++]);
  101. }
  102. printk("n");
  103. #endif
  104. /* Handle a timeout. Timeout packets seem to occur even after */
  105. /* we've gotten a valid reply to a TALK, so I'm assuming that */
  106. /* a "timeout" is actually more like an "end-of-data" signal. */
  107. /* We need to send back a timeout packet to the IOP to shut   */
  108. /* it up, plus complete the current request, if any.          */
  109. if (amsg->flags & ADB_IOP_TIMEOUT) {
  110. msg->reply[0] = ADB_IOP_TIMEOUT | ADB_IOP_AUTOPOLL;
  111. msg->reply[1] = 0;
  112. msg->reply[2] = 0;
  113. if (req && (adb_iop_state != idle)) {
  114. adb_iop_end_req(req, idle);
  115. }
  116. } else {
  117. /* TODO: is it possible for more tha one chunk of data  */
  118. /*       to arrive before the timeout? If so we need to */
  119. /*       use reply_ptr here like the other drivers do.  */
  120. if ((adb_iop_state == awaiting_reply) &&
  121.     (amsg->flags & ADB_IOP_EXPLICIT)) {
  122. req->reply_len = amsg->count + 1;
  123. memcpy(req->reply, &amsg->cmd, req->reply_len);
  124. } else {
  125. adb_input(&amsg->cmd, amsg->count + 1, regs,
  126.   amsg->flags & ADB_IOP_AUTOPOLL);
  127. }
  128. memcpy(msg->reply, msg->message, IOP_MSG_LEN);
  129. }
  130. iop_complete_message(msg);
  131. restore_flags(flags);
  132. }
  133. /*
  134.  * Start sending an ADB packet, IOP style
  135.  *
  136.  * There isn't much to do other than hand the packet over to the IOP
  137.  * after encapsulating it in an adb_iopmsg.
  138.  */
  139. static void adb_iop_start(void)
  140. {
  141. unsigned long flags;
  142. struct adb_request *req;
  143. struct adb_iopmsg amsg;
  144. /* get the packet to send */
  145. req = current_req;
  146. if (!req) return;
  147. save_flags(flags);
  148. cli();
  149. #ifdef DEBUG_ADB_IOP
  150. printk("adb_iop_start: sending packet, %d bytes:", req->nbytes);
  151. for (i = 0 ; i < req->nbytes ; i++)
  152. printk(" %02X", (uint) req->data[i]);
  153. printk("n");
  154. #endif
  155. /* The IOP takes MacII-style packets, so */
  156. /* strip the initial ADB_PACKET byte.    */
  157. amsg.flags = ADB_IOP_EXPLICIT;
  158. amsg.count = req->nbytes - 2;
  159. /* amsg.data immediately follows amsg.cmd, effectively making */
  160. /* amsg.cmd a pointer to the beginning of a full ADB packet.  */
  161. memcpy(&amsg.cmd, req->data + 1, req->nbytes - 1);
  162. req->sent = 1;
  163. adb_iop_state = sending;
  164. restore_flags(flags);
  165. /* Now send it. The IOP manager will call adb_iop_complete */
  166. /* when the packet has been sent.                          */
  167. iop_send_message(ADB_IOP, ADB_CHAN, req,
  168.  sizeof(amsg), (__u8 *) &amsg, adb_iop_complete);
  169. }
  170. int adb_iop_probe(void)
  171. {
  172. if (!iop_ism_present) return -ENODEV;
  173. return 0;
  174. }
  175. int adb_iop_init(void)
  176. {
  177. printk("adb: IOP ISM driver v0.4 for Unified ADB.n");
  178. iop_listen(ADB_IOP, ADB_CHAN, adb_iop_listen, "ADB");
  179. return 0;
  180. }
  181. int adb_iop_send_request(struct adb_request *req, int sync)
  182. {
  183. int err;
  184. err = adb_iop_write(req);
  185. if (err) return err;
  186. if (sync) {
  187. while (!req->complete) adb_iop_poll();
  188. }
  189. return 0;
  190. }
  191. static int adb_iop_write(struct adb_request *req)
  192. {
  193. unsigned long flags;
  194. if ((req->nbytes < 2) || (req->data[0] != ADB_PACKET)) {
  195. req->complete = 1;
  196. return -EINVAL;
  197. }
  198. save_flags(flags);
  199. cli();
  200. req->next = 0;
  201. req->sent = 0;
  202. req->complete = 0;
  203. req->reply_len = 0;
  204. if (current_req != 0) {
  205. last_req->next = req;
  206. last_req = req;
  207. } else {
  208. current_req = req;
  209. last_req = req;
  210. }
  211. restore_flags(flags);
  212. if (adb_iop_state == idle) adb_iop_start();
  213. return 0;
  214. }
  215. int adb_iop_autopoll(int devs)
  216. {
  217. /* TODO: how do we enable/disable autopoll? */
  218. return 0;
  219. }
  220. void adb_iop_poll(void)
  221. {
  222. if (adb_iop_state == idle) adb_iop_start();
  223. iop_ism_irq(0, (void *) ADB_IOP, NULL);
  224. }
  225. int adb_iop_reset_bus(void)
  226. {
  227. struct adb_request req;
  228. req.reply_expected = 0;
  229. req.nbytes = 2;
  230. req.data[0] = ADB_PACKET;
  231. req.data[1] = 0; /* RESET */
  232. adb_iop_write(&req);
  233. while (!req.complete) adb_iop_poll();
  234. return 0;
  235. }