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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Device driver for the PMU on 68K-based Apple PowerBooks
  3.  *
  4.  * The VIA (versatile interface adapter) interfaces to the PMU,
  5.  * a 6805 microprocessor core whose primary function is to control
  6.  * battery charging and system power on the PowerBooks.
  7.  * The PMU also controls the ADB (Apple Desktop Bus) which connects
  8.  * to the keyboard and mouse, as well as the non-volatile RAM
  9.  * and the RTC (real time clock) chip.
  10.  *
  11.  * Adapted for 68K PMU by Joshua M. Thompson
  12.  *
  13.  * Based largely on the PowerMac PMU code by Paul Mackerras and
  14.  * Fabio Riccardi.
  15.  *
  16.  * Also based on the PMU driver from MkLinux by Apple Computer, Inc.
  17.  * and the Open Software Foundation, Inc.
  18.  */
  19. #include <stdarg.h>
  20. #include <linux/types.h>
  21. #include <linux/errno.h>
  22. #include <linux/kernel.h>
  23. #include <linux/delay.h>
  24. #include <linux/sched.h>
  25. #include <linux/miscdevice.h>
  26. #include <linux/blkdev.h>
  27. #include <linux/pci.h>
  28. #include <linux/slab.h>
  29. #include <linux/init.h>
  30. #include <linux/adb.h>
  31. #include <linux/pmu.h>
  32. #include <linux/cuda.h>
  33. #include <asm/macintosh.h>
  34. #include <asm/macints.h>
  35. #include <asm/machw.h>
  36. #include <asm/mac_via.h>
  37. #include <asm/pgtable.h>
  38. #include <asm/system.h>
  39. #include <asm/irq.h>
  40. #include <asm/uaccess.h>
  41. /* Misc minor number allocated for /dev/pmu */
  42. #define PMU_MINOR 154
  43. /* VIA registers - spaced 0x200 bytes apart */
  44. #define RS 0x200 /* skip between registers */
  45. #define B 0 /* B-side data */
  46. #define A RS /* A-side data */
  47. #define DIRB (2*RS) /* B-side direction (1=output) */
  48. #define DIRA (3*RS) /* A-side direction (1=output) */
  49. #define T1CL (4*RS) /* Timer 1 ctr/latch (low 8 bits) */
  50. #define T1CH (5*RS) /* Timer 1 counter (high 8 bits) */
  51. #define T1LL (6*RS) /* Timer 1 latch (low 8 bits) */
  52. #define T1LH (7*RS) /* Timer 1 latch (high 8 bits) */
  53. #define T2CL (8*RS) /* Timer 2 ctr/latch (low 8 bits) */
  54. #define T2CH (9*RS) /* Timer 2 counter (high 8 bits) */
  55. #define SR (10*RS) /* Shift register */
  56. #define ACR (11*RS) /* Auxiliary control register */
  57. #define PCR (12*RS) /* Peripheral control register */
  58. #define IFR (13*RS) /* Interrupt flag register */
  59. #define IER (14*RS) /* Interrupt enable register */
  60. #define ANH (15*RS) /* A-side data, no handshake */
  61. /* Bits in B data register: both active low */
  62. #define TACK 0x02 /* Transfer acknowledge (input) */
  63. #define TREQ 0x04 /* Transfer request (output) */
  64. /* Bits in ACR */
  65. #define SR_CTRL 0x1c /* Shift register control bits */
  66. #define SR_EXT 0x0c /* Shift on external clock */
  67. #define SR_OUT 0x10 /* Shift out if 1 */
  68. /* Bits in IFR and IER */
  69. #define SR_INT 0x04 /* Shift register full/empty */
  70. #define CB1_INT 0x10 /* transition on CB1 input */
  71. static enum pmu_state {
  72. idle,
  73. sending,
  74. intack,
  75. reading,
  76. reading_intr,
  77. } pmu_state;
  78. static struct adb_request *current_req;
  79. static struct adb_request *last_req;
  80. static struct adb_request *req_awaiting_reply;
  81. static unsigned char interrupt_data[32];
  82. static unsigned char *reply_ptr;
  83. static int data_index;
  84. static int data_len;
  85. static int adb_int_pending;
  86. static int pmu_adb_flags;
  87. static int adb_dev_map = 0;
  88. static struct adb_request bright_req_1, bright_req_2, bright_req_3;
  89. static int pmu_kind = PMU_UNKNOWN;
  90. static int pmu_fully_inited = 0;
  91. int asleep;
  92. struct notifier_block *sleep_notifier_list;
  93. static int pmu_probe(void);
  94. static int pmu_init(void);
  95. static void pmu_start(void);
  96. static void pmu_interrupt(int irq, void *arg, struct pt_regs *regs);
  97. static int pmu_send_request(struct adb_request *req, int sync);
  98. static int pmu_autopoll(int devs);
  99. void pmu_poll(void);
  100. static int pmu_reset_bus(void);
  101. static int pmu_queue_request(struct adb_request *req);
  102. static void pmu_start(void);
  103. static void send_byte(int x);
  104. static void recv_byte(void);
  105. static void pmu_done(struct adb_request *req);
  106. static void pmu_handle_data(unsigned char *data, int len,
  107.     struct pt_regs *regs);
  108. static void set_volume(int level);
  109. static void pmu_enable_backlight(int on);
  110. static void pmu_set_brightness(int level);
  111. struct adb_driver via_pmu_driver = {
  112. "68K PMU",
  113. pmu_probe,
  114. pmu_init,
  115. pmu_send_request,
  116. pmu_autopoll,
  117. pmu_poll,
  118. pmu_reset_bus
  119. };
  120. /*
  121.  * This table indicates for each PMU opcode:
  122.  * - the number of data bytes to be sent with the command, or -1
  123.  *   if a length byte should be sent,
  124.  * - the number of response bytes which the PMU will return, or
  125.  *   -1 if it will send a length byte.
  126.  */
  127. static s8 pmu_data_len[256][2] = {
  128. /*    0    1    2    3    4    5    6    7  */
  129. /*00*/ {-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
  130. /*08*/ {-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},
  131. /*10*/ { 1, 0},{ 1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
  132. /*18*/ { 0, 1},{ 0, 1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{ 0, 0},
  133. /*20*/ {-1, 0},{ 0, 0},{ 2, 0},{ 1, 0},{ 1, 0},{-1, 0},{-1, 0},{-1, 0},
  134. /*28*/ { 0,-1},{ 0,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{ 0,-1},
  135. /*30*/ { 4, 0},{20, 0},{-1, 0},{ 3, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
  136. /*38*/ { 0, 4},{ 0,20},{ 2,-1},{ 2, 1},{ 3,-1},{-1,-1},{-1,-1},{ 4, 0},
  137. /*40*/ { 1, 0},{ 1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
  138. /*48*/ { 0, 1},{ 0, 1},{-1,-1},{ 1, 0},{ 1, 0},{-1,-1},{-1,-1},{-1,-1},
  139. /*50*/ { 1, 0},{ 0, 0},{ 2, 0},{ 2, 0},{-1, 0},{ 1, 0},{ 3, 0},{ 1, 0},
  140. /*58*/ { 0, 1},{ 1, 0},{ 0, 2},{ 0, 2},{ 0,-1},{-1,-1},{-1,-1},{-1,-1},
  141. /*60*/ { 2, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
  142. /*68*/ { 0, 3},{ 0, 3},{ 0, 2},{ 0, 8},{ 0,-1},{ 0,-1},{-1,-1},{-1,-1},
  143. /*70*/ { 1, 0},{ 1, 0},{ 1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
  144. /*78*/ { 0,-1},{ 0,-1},{-1,-1},{-1,-1},{-1,-1},{ 5, 1},{ 4, 1},{ 4, 1},
  145. /*80*/ { 4, 0},{-1, 0},{ 0, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
  146. /*88*/ { 0, 5},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},
  147. /*90*/ { 1, 0},{ 2, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
  148. /*98*/ { 0, 1},{ 0, 1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},
  149. /*a0*/ { 2, 0},{ 2, 0},{ 2, 0},{ 4, 0},{-1, 0},{ 0, 0},{-1, 0},{-1, 0},
  150. /*a8*/ { 1, 1},{ 1, 0},{ 3, 0},{ 2, 0},{-1,-1},{-1,-1},{-1,-1},{-1,-1},
  151. /*b0*/ {-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
  152. /*b8*/ {-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},
  153. /*c0*/ {-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
  154. /*c8*/ {-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},
  155. /*d0*/ { 0, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
  156. /*d8*/ { 1, 1},{ 1, 1},{-1,-1},{-1,-1},{ 0, 1},{ 0,-1},{-1,-1},{-1,-1},
  157. /*e0*/ {-1, 0},{ 4, 0},{ 0, 1},{-1, 0},{-1, 0},{ 4, 0},{-1, 0},{-1, 0},
  158. /*e8*/ { 3,-1},{-1,-1},{ 0, 1},{-1,-1},{ 0,-1},{-1,-1},{-1,-1},{ 0, 0},
  159. /*f0*/ {-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
  160. /*f8*/ {-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},
  161. };
  162. int pmu_probe()
  163. {
  164. if (macintosh_config->adb_type == MAC_ADB_PB1) {
  165. pmu_kind = PMU_68K_V1;
  166. } else if (macintosh_config->adb_type == MAC_ADB_PB2) {
  167. pmu_kind = PMU_68K_V2;
  168. } else {
  169. return -ENODEV;
  170. }
  171. pmu_state = idle;
  172. return 0;
  173. }
  174. static int 
  175. pmu_init(void)
  176. {
  177. int timeout;
  178. volatile struct adb_request req;
  179. via2[B] |= TREQ; /* negate TREQ */
  180. via2[DIRB] = (via2[DIRB] | TREQ) & ~TACK; /* TACK in, TREQ out */
  181. pmu_request((struct adb_request *) &req, NULL, 2, PMU_SET_INTR_MASK, PMU_INT_ADB);
  182. timeout =  100000;
  183. while (!req.complete) {
  184. if (--timeout < 0) {
  185. printk(KERN_ERR "pmu_init: no response from PMUn");
  186. return -EAGAIN;
  187. }
  188. udelay(10);
  189. pmu_poll();
  190. }
  191. /* ack all pending interrupts */
  192. timeout = 100000;
  193. interrupt_data[0] = 1;
  194. while (interrupt_data[0] || pmu_state != idle) {
  195. if (--timeout < 0) {
  196. printk(KERN_ERR "pmu_init: timed out acking intrsn");
  197. return -EAGAIN;
  198. }
  199. if (pmu_state == idle) {
  200. adb_int_pending = 1;
  201. pmu_interrupt(0, NULL, NULL);
  202. }
  203. pmu_poll();
  204. udelay(10);
  205. }
  206. pmu_request((struct adb_request *) &req, NULL, 2, PMU_SET_INTR_MASK,
  207. PMU_INT_ADB_AUTO|PMU_INT_SNDBRT|PMU_INT_ADB);
  208. timeout =  100000;
  209. while (!req.complete) {
  210. if (--timeout < 0) {
  211. printk(KERN_ERR "pmu_init: no response from PMUn");
  212. return -EAGAIN;
  213. }
  214. udelay(10);
  215. pmu_poll();
  216. }
  217. bright_req_1.complete = 1;
  218. bright_req_2.complete = 1;
  219. bright_req_3.complete = 1;
  220. if (request_irq(IRQ_MAC_ADB_SR, pmu_interrupt, 0, "pmu-shift",
  221. pmu_interrupt)) {
  222. printk(KERN_ERR "pmu_init: can't get irq %dn",
  223. IRQ_MAC_ADB_SR);
  224. return -EAGAIN;
  225. }
  226. if (request_irq(IRQ_MAC_ADB_CL, pmu_interrupt, 0, "pmu-clock",
  227. pmu_interrupt)) {
  228. printk(KERN_ERR "pmu_init: can't get irq %dn",
  229. IRQ_MAC_ADB_CL);
  230. free_irq(IRQ_MAC_ADB_SR, pmu_interrupt);
  231. return -EAGAIN;
  232. }
  233. pmu_fully_inited = 1;
  234. /* Enable backlight */
  235. pmu_enable_backlight(1);
  236. printk("adb: PMU 68K driver v0.5 for Unified ADB.n");
  237. return 0;
  238. }
  239. int
  240. pmu_get_model(void)
  241. {
  242. return pmu_kind;
  243. }
  244. /* Send an ADB command */
  245. static int 
  246. pmu_send_request(struct adb_request *req, int sync)
  247. {
  248.     int i, ret;
  249.     if (!pmu_fully_inited)
  250.     {
  251.   req->complete = 1;
  252.     return -ENXIO;
  253.    }
  254.     ret = -EINVAL;
  255.     switch (req->data[0]) {
  256.     case PMU_PACKET:
  257. for (i = 0; i < req->nbytes - 1; ++i)
  258. req->data[i] = req->data[i+1];
  259. --req->nbytes;
  260. if (pmu_data_len[req->data[0]][1] != 0) {
  261. req->reply[0] = ADB_RET_OK;
  262. req->reply_len = 1;
  263. } else
  264. req->reply_len = 0;
  265. ret = pmu_queue_request(req);
  266. break;
  267.     case CUDA_PACKET:
  268. switch (req->data[1]) {
  269. case CUDA_GET_TIME:
  270. if (req->nbytes != 2)
  271. break;
  272. req->data[0] = PMU_READ_RTC;
  273. req->nbytes = 1;
  274. req->reply_len = 3;
  275. req->reply[0] = CUDA_PACKET;
  276. req->reply[1] = 0;
  277. req->reply[2] = CUDA_GET_TIME;
  278. ret = pmu_queue_request(req);
  279. break;
  280. case CUDA_SET_TIME:
  281. if (req->nbytes != 6)
  282. break;
  283. req->data[0] = PMU_SET_RTC;
  284. req->nbytes = 5;
  285. for (i = 1; i <= 4; ++i)
  286. req->data[i] = req->data[i+1];
  287. req->reply_len = 3;
  288. req->reply[0] = CUDA_PACKET;
  289. req->reply[1] = 0;
  290. req->reply[2] = CUDA_SET_TIME;
  291. ret = pmu_queue_request(req);
  292. break;
  293. case CUDA_GET_PRAM:
  294. if (req->nbytes != 4)
  295. break;
  296. req->data[0] = PMU_READ_NVRAM;
  297. req->data[1] = req->data[2];
  298. req->data[2] = req->data[3];
  299. req->nbytes = 3;
  300. req->reply_len = 3;
  301. req->reply[0] = CUDA_PACKET;
  302. req->reply[1] = 0;
  303. req->reply[2] = CUDA_GET_PRAM;
  304. ret = pmu_queue_request(req);
  305. break;
  306. case CUDA_SET_PRAM:
  307. if (req->nbytes != 5)
  308. break;
  309. req->data[0] = PMU_WRITE_NVRAM;
  310. req->data[1] = req->data[2];
  311. req->data[2] = req->data[3];
  312. req->data[3] = req->data[4];
  313. req->nbytes = 4;
  314. req->reply_len = 3;
  315. req->reply[0] = CUDA_PACKET;
  316. req->reply[1] = 0;
  317. req->reply[2] = CUDA_SET_PRAM;
  318. ret = pmu_queue_request(req);
  319. break;
  320. }
  321. break;
  322.     case ADB_PACKET:
  323. for (i = req->nbytes - 1; i > 1; --i)
  324. req->data[i+2] = req->data[i];
  325. req->data[3] = req->nbytes - 2;
  326. req->data[2] = pmu_adb_flags;
  327. /*req->data[1] = req->data[1];*/
  328. req->data[0] = PMU_ADB_CMD;
  329. req->nbytes += 2;
  330. req->reply_expected = 1;
  331. req->reply_len = 0;
  332. ret = pmu_queue_request(req);
  333. break;
  334.     }
  335.     if (ret)
  336.     {
  337.      req->complete = 1;
  338.      return ret;
  339.     }
  340.     
  341.     if (sync) {
  342. while (!req->complete)
  343. pmu_poll();
  344.     }
  345.     return 0;
  346. }
  347. /* Enable/disable autopolling */
  348. static int 
  349. pmu_autopoll(int devs)
  350. {
  351. struct adb_request req;
  352. if (!pmu_fully_inited) return -ENXIO;
  353. if (devs) {
  354. adb_dev_map = devs;
  355. pmu_request(&req, NULL, 5, PMU_ADB_CMD, 0, 0x86,
  356.     adb_dev_map >> 8, adb_dev_map);
  357. pmu_adb_flags = 2;
  358. } else {
  359. pmu_request(&req, NULL, 1, PMU_ADB_POLL_OFF);
  360. pmu_adb_flags = 0;
  361. }
  362. while (!req.complete)
  363. pmu_poll();
  364. return 0;
  365. }
  366. /* Reset the ADB bus */
  367. static int 
  368. pmu_reset_bus(void)
  369. {
  370. struct adb_request req;
  371. long timeout;
  372. int save_autopoll = adb_dev_map;
  373. if (!pmu_fully_inited) return -ENXIO;
  374. /* anyone got a better idea?? */
  375. pmu_autopoll(0);
  376. req.nbytes = 5;
  377. req.done = NULL;
  378. req.data[0] = PMU_ADB_CMD;
  379. req.data[1] = 0;
  380. req.data[2] = 3; /* ADB_BUSRESET ??? */
  381. req.data[3] = 0;
  382. req.data[4] = 0;
  383. req.reply_len = 0;
  384. req.reply_expected = 1;
  385. if (pmu_queue_request(&req) != 0)
  386. {
  387. printk(KERN_ERR "pmu_adb_reset_bus: pmu_queue_request failedn");
  388. return -EIO;
  389. }
  390. while (!req.complete)
  391. pmu_poll();
  392. timeout = 100000;
  393. while (!req.complete) {
  394. if (--timeout < 0) {
  395. printk(KERN_ERR "pmu_adb_reset_bus (reset): no response from PMUn");
  396. return -EIO;
  397. }
  398. udelay(10);
  399. pmu_poll();
  400. }
  401. if (save_autopoll != 0)
  402. pmu_autopoll(save_autopoll);
  403. return 0;
  404. }
  405. /* Construct and send a pmu request */
  406. int 
  407. pmu_request(struct adb_request *req, void (*done)(struct adb_request *),
  408.     int nbytes, ...)
  409. {
  410. va_list list;
  411. int i;
  412. if (nbytes < 0 || nbytes > 32) {
  413. printk(KERN_ERR "pmu_request: bad nbytes (%d)n", nbytes);
  414. req->complete = 1;
  415. return -EINVAL;
  416. }
  417. req->nbytes = nbytes;
  418. req->done = done;
  419. va_start(list, nbytes);
  420. for (i = 0; i < nbytes; ++i)
  421. req->data[i] = va_arg(list, int);
  422. va_end(list);
  423. if (pmu_data_len[req->data[0]][1] != 0) {
  424. req->reply[0] = ADB_RET_OK;
  425. req->reply_len = 1;
  426. } else
  427. req->reply_len = 0;
  428. req->reply_expected = 0;
  429. return pmu_queue_request(req);
  430. }
  431. static int 
  432. pmu_queue_request(struct adb_request *req)
  433. {
  434. unsigned long flags;
  435. int nsend;
  436. if (req->nbytes <= 0) {
  437. req->complete = 1;
  438. return 0;
  439. }
  440. nsend = pmu_data_len[req->data[0]][0];
  441. if (nsend >= 0 && req->nbytes != nsend + 1) {
  442. req->complete = 1;
  443. return -EINVAL;
  444. }
  445. req->next = 0;
  446. req->sent = 0;
  447. req->complete = 0;
  448. save_flags(flags); cli();
  449. if (current_req != 0) {
  450. last_req->next = req;
  451. last_req = req;
  452. } else {
  453. current_req = req;
  454. last_req = req;
  455. if (pmu_state == idle)
  456. pmu_start();
  457. }
  458. restore_flags(flags);
  459. return 0;
  460. }
  461. static void 
  462. send_byte(int x)
  463. {
  464. via1[ACR] |= SR_CTRL;
  465. via1[SR] = x;
  466. via2[B] &= ~TREQ; /* assert TREQ */
  467. }
  468. static void 
  469. recv_byte()
  470. {
  471. char c;
  472. via1[ACR] = (via1[ACR] | SR_EXT) & ~SR_OUT;
  473. c = via1[SR]; /* resets SR */
  474. via2[B] &= ~TREQ;
  475. }
  476. static void 
  477. pmu_start()
  478. {
  479. unsigned long flags;
  480. struct adb_request *req;
  481. /* assert pmu_state == idle */
  482. /* get the packet to send */
  483. save_flags(flags); cli();
  484. req = current_req;
  485. if (req == 0 || pmu_state != idle
  486.     || (req->reply_expected && req_awaiting_reply))
  487. goto out;
  488. pmu_state = sending;
  489. data_index = 1;
  490. data_len = pmu_data_len[req->data[0]][0];
  491. /* set the shift register to shift out and send a byte */
  492. send_byte(req->data[0]);
  493. out:
  494. restore_flags(flags);
  495. }
  496. void 
  497. pmu_poll()
  498. {
  499. unsigned long cpu_flags;
  500. save_flags(cpu_flags);
  501. cli();
  502. if (via1[IFR] & SR_INT) {
  503. via1[IFR] = SR_INT;
  504. pmu_interrupt(IRQ_MAC_ADB_SR, NULL, NULL);
  505. }
  506. if (via1[IFR] & CB1_INT) {
  507. via1[IFR] = CB1_INT;
  508. pmu_interrupt(IRQ_MAC_ADB_CL, NULL, NULL);
  509. }
  510. restore_flags(cpu_flags);
  511. }
  512. static void 
  513. pmu_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  514. {
  515. struct adb_request *req;
  516. int timeout, bite = 0; /* to prevent compiler warning */
  517. #if 0
  518. printk("pmu_interrupt: irq %d state %d acr %02X, b %02X data_index %d/%d adb_int_pending %dn",
  519. irq, pmu_state, (uint) via1[ACR], (uint) via2[B], data_index, data_len, adb_int_pending);
  520. #endif
  521. if (irq == IRQ_MAC_ADB_CL) { /* CB1 interrupt */
  522. adb_int_pending = 1;
  523. } else if (irq == IRQ_MAC_ADB_SR) { /* SR interrupt  */
  524. if (via2[B] & TACK) {
  525. printk(KERN_DEBUG "PMU: SR_INT but ack still high! (%x)n", via2[B]);
  526. }
  527. /* if reading grab the byte */
  528. if ((via1[ACR] & SR_OUT) == 0) bite = via1[SR];
  529. /* reset TREQ and wait for TACK to go high */
  530. via2[B] |= TREQ;
  531. timeout = 3200;
  532. while (!(via2[B] & TACK)) {
  533. if (--timeout < 0) {
  534. printk(KERN_ERR "PMU not responding (!ack)n");
  535. goto finish;
  536. }
  537. udelay(10);
  538. }
  539. switch (pmu_state) {
  540. case sending:
  541. req = current_req;
  542. if (data_len < 0) {
  543. data_len = req->nbytes - 1;
  544. send_byte(data_len);
  545. break;
  546. }
  547. if (data_index <= data_len) {
  548. send_byte(req->data[data_index++]);
  549. break;
  550. }
  551. req->sent = 1;
  552. data_len = pmu_data_len[req->data[0]][1];
  553. if (data_len == 0) {
  554. pmu_state = idle;
  555. current_req = req->next;
  556. if (req->reply_expected)
  557. req_awaiting_reply = req;
  558. else
  559. pmu_done(req);
  560. } else {
  561. pmu_state = reading;
  562. data_index = 0;
  563. reply_ptr = req->reply + req->reply_len;
  564. recv_byte();
  565. }
  566. break;
  567. case intack:
  568. data_index = 0;
  569. data_len = -1;
  570. pmu_state = reading_intr;
  571. reply_ptr = interrupt_data;
  572. recv_byte();
  573. break;
  574. case reading:
  575. case reading_intr:
  576. if (data_len == -1) {
  577. data_len = bite;
  578. if (bite > 32)
  579. printk(KERN_ERR "PMU: bad reply len %dn",
  580.        bite);
  581. } else {
  582. reply_ptr[data_index++] = bite;
  583. }
  584. if (data_index < data_len) {
  585. recv_byte();
  586. break;
  587. }
  588. if (pmu_state == reading_intr) {
  589. pmu_handle_data(interrupt_data, data_index, regs);
  590. } else {
  591. req = current_req;
  592. current_req = req->next;
  593. req->reply_len += data_index;
  594. pmu_done(req);
  595. }
  596. pmu_state = idle;
  597. break;
  598. default:
  599. printk(KERN_ERR "pmu_interrupt: unknown state %d?n",
  600.        pmu_state);
  601. }
  602. }
  603. finish:
  604. if (pmu_state == idle) {
  605. if (adb_int_pending) {
  606. pmu_state = intack;
  607. send_byte(PMU_INT_ACK);
  608. adb_int_pending = 0;
  609. } else if (current_req) {
  610. pmu_start();
  611. }
  612. }
  613. #if 0
  614. printk("pmu_interrupt: exit state %d acr %02X, b %02X data_index %d/%d adb_int_pending %dn",
  615. pmu_state, (uint) via1[ACR], (uint) via2[B], data_index, data_len, adb_int_pending);
  616. #endif
  617. }
  618. static void 
  619. pmu_done(struct adb_request *req)
  620. {
  621. req->complete = 1;
  622. if (req->done)
  623. (*req->done)(req);
  624. }
  625. /* Interrupt data could be the result data from an ADB cmd */
  626. static void 
  627. pmu_handle_data(unsigned char *data, int len, struct pt_regs *regs)
  628. {
  629. static int show_pmu_ints = 1;
  630. asleep = 0;
  631. if (len < 1) {
  632. adb_int_pending = 0;
  633. return;
  634. }
  635. if (data[0] & PMU_INT_ADB) {
  636. if ((data[0] & PMU_INT_ADB_AUTO) == 0) {
  637. struct adb_request *req = req_awaiting_reply;
  638. if (req == 0) {
  639. printk(KERN_ERR "PMU: extra ADB replyn");
  640. return;
  641. }
  642. req_awaiting_reply = 0;
  643. if (len <= 2)
  644. req->reply_len = 0;
  645. else {
  646. memcpy(req->reply, data + 1, len - 1);
  647. req->reply_len = len - 1;
  648. }
  649. pmu_done(req);
  650. } else {
  651. adb_input(data+1, len-1, regs, 1);
  652. }
  653. } else {
  654. if (data[0] == 0x08 && len == 3) {
  655. /* sound/brightness buttons pressed */
  656. pmu_set_brightness(data[1] >> 3);
  657. set_volume(data[2]);
  658. } else if (show_pmu_ints
  659.    && !(data[0] == PMU_INT_TICK && len == 1)) {
  660. int i;
  661. printk(KERN_DEBUG "pmu intr");
  662. for (i = 0; i < len; ++i)
  663. printk(" %.2x", data[i]);
  664. printk("n");
  665. }
  666. }
  667. }
  668. int backlight_level = -1;
  669. int backlight_enabled = 0;
  670. #define LEVEL_TO_BRIGHT(lev) ((lev) < 1? 0x7f: 0x4a - ((lev) << 1))
  671. void 
  672. pmu_enable_backlight(int on)
  673. {
  674. struct adb_request req;
  675. if (on) {
  676.     /* first call: get current backlight value */
  677.     if (backlight_level < 0) {
  678. switch(pmu_kind) {
  679.     case PMU_68K_V1:
  680.     case PMU_68K_V2:
  681. pmu_request(&req, NULL, 3, PMU_READ_NVRAM, 0x14, 0xe);
  682. while (!req.complete)
  683. pmu_poll();
  684. printk(KERN_DEBUG "pmu: nvram returned bright: %dn", (int)req.reply[1]);
  685. backlight_level = req.reply[1];
  686. break;
  687.     default:
  688.         backlight_enabled = 0;
  689.         return;
  690. }
  691.     }
  692.     pmu_request(&req, NULL, 2, PMU_BACKLIGHT_BRIGHT,
  693.      LEVEL_TO_BRIGHT(backlight_level));
  694.     while (!req.complete)
  695. pmu_poll();
  696. }
  697. pmu_request(&req, NULL, 2, PMU_POWER_CTRL,
  698.     PMU_POW_BACKLIGHT | (on ? PMU_POW_ON : PMU_POW_OFF));
  699. while (!req.complete)
  700. pmu_poll();
  701. backlight_enabled = on;
  702. }
  703. void 
  704. pmu_set_brightness(int level)
  705. {
  706. int bright;
  707. backlight_level = level;
  708. bright = LEVEL_TO_BRIGHT(level);
  709. if (!backlight_enabled)
  710. return;
  711. if (bright_req_1.complete)
  712. pmu_request(&bright_req_1, NULL, 2, PMU_BACKLIGHT_BRIGHT,
  713.     bright);
  714. if (bright_req_2.complete)
  715. pmu_request(&bright_req_2, NULL, 2, PMU_POWER_CTRL,
  716.     PMU_POW_BACKLIGHT | (bright < 0x7f ? PMU_POW_ON : PMU_POW_OFF));
  717. }
  718. void 
  719. pmu_enable_irled(int on)
  720. {
  721. struct adb_request req;
  722. pmu_request(&req, NULL, 2, PMU_POWER_CTRL, PMU_POW_IRLED |
  723.     (on ? PMU_POW_ON : PMU_POW_OFF));
  724. while (!req.complete)
  725. pmu_poll();
  726. }
  727. static void 
  728. set_volume(int level)
  729. {
  730. }
  731. int
  732. pmu_present(void)
  733. {
  734. return (pmu_kind != PMU_UNKNOWN);
  735. }
  736. #if 0 /* needs some work for 68K */
  737. /*
  738.  * This struct is used to store config register values for
  739.  * PCI devices which may get powered off when we sleep.
  740.  */
  741. static struct pci_save {
  742. u16 command;
  743. u16 cache_lat;
  744. u16 intr;
  745. } *pbook_pci_saves;
  746. static int n_pbook_pci_saves;
  747. static inline void __openfirmware
  748. pbook_pci_save(void)
  749. {
  750. int npci;
  751. struct pci_dev *pd;
  752. struct pci_save *ps;
  753. npci = 0;
  754. for (pd = pci_devices; pd != NULL; pd = pd->next)
  755. ++npci;
  756. n_pbook_pci_saves = npci;
  757. if (npci == 0)
  758. return;
  759. ps = (struct pci_save *) kmalloc(npci * sizeof(*ps), GFP_KERNEL);
  760. pbook_pci_saves = ps;
  761. if (ps == NULL)
  762. return;
  763. for (pd = pci_devices; pd != NULL && npci != 0; pd = pd->next) {
  764. pci_read_config_word(pd, PCI_COMMAND, &ps->command);
  765. pci_read_config_word(pd, PCI_CACHE_LINE_SIZE, &ps->cache_lat);
  766. pci_read_config_word(pd, PCI_INTERRUPT_LINE, &ps->intr);
  767. ++ps;
  768. --npci;
  769. }
  770. }
  771. static inline void __openfirmware
  772. pbook_pci_restore(void)
  773. {
  774. u16 cmd;
  775. struct pci_save *ps = pbook_pci_saves;
  776. struct pci_dev *pd;
  777. int j;
  778. for (pd = pci_devices; pd != NULL; pd = pd->next, ++ps) {
  779. if (ps->command == 0)
  780. continue;
  781. pci_read_config_word(pd, PCI_COMMAND, &cmd);
  782. if ((ps->command & ~cmd) == 0)
  783. continue;
  784. switch (pd->hdr_type) {
  785. case PCI_HEADER_TYPE_NORMAL:
  786. for (j = 0; j < 6; ++j)
  787. pci_write_config_dword(pd,
  788. PCI_BASE_ADDRESS_0 + j*4,
  789. pd->resource[j].start);
  790. pci_write_config_dword(pd, PCI_ROM_ADDRESS,
  791.        pd->resource[PCI_ROM_RESOURCE].start);
  792. pci_write_config_word(pd, PCI_CACHE_LINE_SIZE,
  793. ps->cache_lat);
  794. pci_write_config_word(pd, PCI_INTERRUPT_LINE,
  795. ps->intr);
  796. pci_write_config_word(pd, PCI_COMMAND, ps->command);
  797. break;
  798. /* other header types not restored at present */
  799. }
  800. }
  801. }
  802. /*
  803.  * Put the powerbook to sleep.
  804.  */
  805. #define IRQ_ENABLE ((unsigned int *)0xf3000024)
  806. #define MEM_CTRL ((unsigned int *)0xf8000070)
  807. int __openfirmware powerbook_sleep(void)
  808. {
  809. int ret, i, x;
  810. static int save_backlight;
  811. static unsigned int save_irqen;
  812. unsigned long msr;
  813. unsigned int hid0;
  814. unsigned long p, wait;
  815. struct adb_request sleep_req;
  816. /* Notify device drivers */
  817. ret = notifier_call_chain(&sleep_notifier_list, PBOOK_SLEEP, NULL);
  818. if (ret & NOTIFY_STOP_MASK)
  819. return -EBUSY;
  820. /* Sync the disks. */
  821. /* XXX It would be nice to have some way to ensure that
  822.  * nobody is dirtying any new buffers while we wait. */
  823. fsync_dev(0);
  824. /* Turn off the display backlight */
  825. save_backlight = backlight_enabled;
  826. if (save_backlight)
  827. pmu_enable_backlight(0);
  828. /* Give the disks a little time to actually finish writing */
  829. for (wait = jiffies + (HZ/4); time_before(jiffies, wait); )
  830. mb();
  831. /* Disable all interrupts except pmu */
  832. save_irqen = in_le32(IRQ_ENABLE);
  833. for (i = 0; i < 32; ++i)
  834. if (i != vias->intrs[0].line && (save_irqen & (1 << i)))
  835. disable_irq(i);
  836. asm volatile("mtdec %0" : : "r" (0x7fffffff));
  837. /* Save the state of PCI config space for some slots */
  838. pbook_pci_save();
  839. /* Set the memory controller to keep the memory refreshed
  840.    while we're asleep */
  841. for (i = 0x403f; i >= 0x4000; --i) {
  842. out_be32(MEM_CTRL, i);
  843. do {
  844. x = (in_be32(MEM_CTRL) >> 16) & 0x3ff;
  845. } while (x == 0);
  846. if (x >= 0x100)
  847. break;
  848. }
  849. /* Ask the PMU to put us to sleep */
  850. pmu_request(&sleep_req, NULL, 5, PMU_SLEEP, 'M', 'A', 'T', 'T');
  851. while (!sleep_req.complete)
  852. mb();
  853. /* displacement-flush the L2 cache - necessary? */
  854. for (p = KERNELBASE; p < KERNELBASE + 0x100000; p += 0x1000)
  855. i = *(volatile int *)p;
  856. asleep = 1;
  857. /* Put the CPU into sleep mode */
  858. asm volatile("mfspr %0,1008" : "=r" (hid0) :);
  859. hid0 = (hid0 & ~(HID0_NAP | HID0_DOZE)) | HID0_SLEEP;
  860. asm volatile("mtspr 1008,%0" : : "r" (hid0));
  861. save_flags(msr);
  862. msr |= MSR_POW | MSR_EE;
  863. restore_flags(msr);
  864. udelay(10);
  865. /* OK, we're awake again, start restoring things */
  866. out_be32(MEM_CTRL, 0x3f);
  867. pbook_pci_restore();
  868. /* wait for the PMU interrupt sequence to complete */
  869. while (asleep)
  870. mb();
  871. /* reenable interrupts */
  872. for (i = 0; i < 32; ++i)
  873. if (i != vias->intrs[0].line && (save_irqen & (1 << i)))
  874. enable_irq(i);
  875. /* Notify drivers */
  876. notifier_call_chain(&sleep_notifier_list, PBOOK_WAKE, NULL);
  877. /* reenable ADB autopoll */
  878. pmu_adb_autopoll(adb_dev_map);
  879. /* Turn on the screen backlight, if it was on before */
  880. if (save_backlight)
  881. pmu_enable_backlight(1);
  882. /* Wait for the hard disk to spin up */
  883. return 0;
  884. }
  885. /*
  886.  * Support for /dev/pmu device
  887.  */
  888. static int __openfirmware pmu_open(struct inode *inode, struct file *file)
  889. {
  890. return 0;
  891. }
  892. static ssize_t __openfirmware pmu_read(struct file *file, char *buf,
  893. size_t count, loff_t *ppos)
  894. {
  895. return 0;
  896. }
  897. static ssize_t __openfirmware pmu_write(struct file *file, const char *buf,
  898.  size_t count, loff_t *ppos)
  899. {
  900. return 0;
  901. }
  902. /* Note: removed __openfirmware here since it causes link errors */
  903. static int /*__openfirmware*/ pmu_ioctl(struct inode * inode, struct file *filp,
  904.      u_int cmd, u_long arg)
  905. {
  906. int error;
  907. __u32 value;
  908. switch (cmd) {
  909.     case PMU_IOC_SLEEP:
  910.      return -ENOSYS;
  911.     case PMU_IOC_GET_BACKLIGHT:
  912. return put_user(backlight_level, (__u32 *)arg);
  913.     case PMU_IOC_SET_BACKLIGHT:
  914. error = get_user(value, (__u32 *)arg);
  915. if (!error)
  916. pmu_set_brightness(value);
  917. return error;
  918.     case PMU_IOC_GET_MODEL:
  919.      return put_user(pmu_kind, (__u32 *)arg);
  920. }
  921. return -EINVAL;
  922. }
  923. static struct file_operations pmu_device_fops = {
  924. read: pmu_read,
  925. write: pmu_write,
  926. ioctl: pmu_ioctl,
  927. open: pmu_open,
  928. };
  929. static struct miscdevice pmu_device = {
  930. PMU_MINOR, "pmu", &pmu_device_fops
  931. };
  932. void pmu_device_init(void)
  933. {
  934. if (via)
  935. misc_register(&pmu_device);
  936. }
  937. #endif /* CONFIG_PMAC_PBOOK */