via-pmu68k.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:25k
源码类别:

嵌入式Linux

开发平台:

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