2 * Device driver for the via-pmu on Apple Powermacs.
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 PowerBook 3400 and 2400.
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.
11 * Copyright (C) 1998 Paul Mackerras and Fabio Riccardi.
12 * Copyright (C) 2001-2002 Benjamin Herrenschmidt
13 * Copyright (C) 2006-2007 Johannes Berg
15 * THIS DRIVER IS BECOMING A TOTAL MESS !
16 * - Cleanup atomically disabling reply to PMU events after
17 * a sleep or a freq. switch
21 #include <linux/smp_lock.h>
22 #include <linux/types.h>
23 #include <linux/errno.h>
24 #include <linux/kernel.h>
25 #include <linux/delay.h>
26 #include <linux/sched.h>
27 #include <linux/miscdevice.h>
28 #include <linux/blkdev.h>
29 #include <linux/pci.h>
30 #include <linux/slab.h>
31 #include <linux/poll.h>
32 #include <linux/adb.h>
33 #include <linux/pmu.h>
34 #include <linux/cuda.h>
35 #include <linux/module.h>
36 #include <linux/spinlock.h>
38 #include <linux/proc_fs.h>
39 #include <linux/seq_file.h>
40 #include <linux/init.h>
41 #include <linux/interrupt.h>
42 #include <linux/device.h>
43 #include <linux/sysdev.h>
44 #include <linux/freezer.h>
45 #include <linux/syscalls.h>
46 #include <linux/suspend.h>
47 #include <linux/cpu.h>
48 #include <linux/compat.h>
50 #include <asm/machdep.h>
52 #include <asm/pgtable.h>
53 #include <asm/system.h>
54 #include <asm/sections.h>
56 #include <asm/pmac_feature.h>
57 #include <asm/pmac_pfunc.h>
58 #include <asm/pmac_low_i2c.h>
59 #include <asm/uaccess.h>
60 #include <asm/mmu_context.h>
61 #include <asm/cputable.h>
63 #include <asm/backlight.h>
65 #include "via-pmu-event.h"
67 /* Some compile options */
70 /* Misc minor number allocated for /dev/pmu */
73 /* How many iterations between battery polls */
74 #define BATTERY_POLLING_COUNT 2
76 static volatile unsigned char __iomem
*via
;
78 /* VIA registers - spaced 0x200 bytes apart */
79 #define RS 0x200 /* skip between registers */
80 #define B 0 /* B-side data */
81 #define A RS /* A-side data */
82 #define DIRB (2*RS) /* B-side direction (1=output) */
83 #define DIRA (3*RS) /* A-side direction (1=output) */
84 #define T1CL (4*RS) /* Timer 1 ctr/latch (low 8 bits) */
85 #define T1CH (5*RS) /* Timer 1 counter (high 8 bits) */
86 #define T1LL (6*RS) /* Timer 1 latch (low 8 bits) */
87 #define T1LH (7*RS) /* Timer 1 latch (high 8 bits) */
88 #define T2CL (8*RS) /* Timer 2 ctr/latch (low 8 bits) */
89 #define T2CH (9*RS) /* Timer 2 counter (high 8 bits) */
90 #define SR (10*RS) /* Shift register */
91 #define ACR (11*RS) /* Auxiliary control register */
92 #define PCR (12*RS) /* Peripheral control register */
93 #define IFR (13*RS) /* Interrupt flag register */
94 #define IER (14*RS) /* Interrupt enable register */
95 #define ANH (15*RS) /* A-side data, no handshake */
97 /* Bits in B data register: both active low */
98 #define TACK 0x08 /* Transfer acknowledge (input) */
99 #define TREQ 0x10 /* Transfer request (output) */
102 #define SR_CTRL 0x1c /* Shift register control bits */
103 #define SR_EXT 0x0c /* Shift on external clock */
104 #define SR_OUT 0x10 /* Shift out if 1 */
106 /* Bits in IFR and IER */
107 #define IER_SET 0x80 /* set bits in IER */
108 #define IER_CLR 0 /* clear bits in IER */
109 #define SR_INT 0x04 /* Shift register full/empty */
111 #define CB1_INT 0x10 /* transition on CB1 input */
113 static volatile enum pmu_state
{
122 static volatile enum int_data_state
{
127 } int_data_state
[2] = { int_data_empty
, int_data_empty
};
129 static struct adb_request
*current_req
;
130 static struct adb_request
*last_req
;
131 static struct adb_request
*req_awaiting_reply
;
132 static unsigned char interrupt_data
[2][32];
133 static int interrupt_data_len
[2];
134 static int int_data_last
;
135 static unsigned char *reply_ptr
;
136 static int data_index
;
138 static volatile int adb_int_pending
;
139 static volatile int disable_poll
;
140 static struct device_node
*vias
;
141 static int pmu_kind
= PMU_UNKNOWN
;
142 static int pmu_fully_inited
;
143 static int pmu_has_adb
;
144 static struct device_node
*gpio_node
;
145 static unsigned char __iomem
*gpio_reg
;
146 static int gpio_irq
= NO_IRQ
;
147 static int gpio_irq_enabled
= -1;
148 static volatile int pmu_suspended
;
149 static spinlock_t pmu_lock
;
150 static u8 pmu_intr_mask
;
151 static int pmu_version
;
152 static int drop_interrupts
;
153 #if defined(CONFIG_SUSPEND) && defined(CONFIG_PPC32)
154 static int option_lid_wakeup
= 1;
155 #endif /* CONFIG_SUSPEND && CONFIG_PPC32 */
156 static unsigned long async_req_locks
;
157 static unsigned int pmu_irq_stats
[11];
159 static struct proc_dir_entry
*proc_pmu_root
;
160 static struct proc_dir_entry
*proc_pmu_info
;
161 static struct proc_dir_entry
*proc_pmu_irqstats
;
162 static struct proc_dir_entry
*proc_pmu_options
;
163 static int option_server_mode
;
165 int pmu_battery_count
;
167 unsigned int pmu_power_flags
= PMU_PWR_AC_PRESENT
;
168 struct pmu_battery_info pmu_batteries
[PMU_MAX_BATTERIES
];
169 static int query_batt_timer
= BATTERY_POLLING_COUNT
;
170 static struct adb_request batt_req
;
171 static struct proc_dir_entry
*proc_pmu_batt
[PMU_MAX_BATTERIES
];
177 static int adb_dev_map
;
178 static int pmu_adb_flags
;
180 static int pmu_probe(void);
181 static int pmu_init(void);
182 static int pmu_send_request(struct adb_request
*req
, int sync
);
183 static int pmu_adb_autopoll(int devs
);
184 static int pmu_adb_reset_bus(void);
185 #endif /* CONFIG_ADB */
187 static int init_pmu(void);
188 static void pmu_start(void);
189 static irqreturn_t
via_pmu_interrupt(int irq
, void *arg
);
190 static irqreturn_t
gpio1_interrupt(int irq
, void *arg
);
191 static const struct file_operations pmu_info_proc_fops
;
192 static const struct file_operations pmu_irqstats_proc_fops
;
193 static void pmu_pass_intr(unsigned char *data
, int len
);
194 static const struct file_operations pmu_battery_proc_fops
;
195 static const struct file_operations pmu_options_proc_fops
;
198 struct adb_driver via_pmu_driver
= {
207 #endif /* CONFIG_ADB */
209 extern void low_sleep_handler(void);
210 extern void enable_kernel_altivec(void);
211 extern void enable_kernel_fp(void);
214 int pmu_polled_request(struct adb_request
*req
);
215 void pmu_blink(int n
);
219 * This table indicates for each PMU opcode:
220 * - the number of data bytes to be sent with the command, or -1
221 * if a length byte should be sent,
222 * - the number of response bytes which the PMU will return, or
223 * -1 if it will send a length byte.
225 static const s8 pmu_data_len
[256][2] = {
226 /* 0 1 2 3 4 5 6 7 */
227 /*00*/ {-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
228 /*08*/ {-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},
229 /*10*/ { 1, 0},{ 1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
230 /*18*/ { 0, 1},{ 0, 1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{ 0, 0},
231 /*20*/ {-1, 0},{ 0, 0},{ 2, 0},{ 1, 0},{ 1, 0},{-1, 0},{-1, 0},{-1, 0},
232 /*28*/ { 0,-1},{ 0,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{ 0,-1},
233 /*30*/ { 4, 0},{20, 0},{-1, 0},{ 3, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
234 /*38*/ { 0, 4},{ 0,20},{ 2,-1},{ 2, 1},{ 3,-1},{-1,-1},{-1,-1},{ 4, 0},
235 /*40*/ { 1, 0},{ 1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
236 /*48*/ { 0, 1},{ 0, 1},{-1,-1},{ 1, 0},{ 1, 0},{-1,-1},{-1,-1},{-1,-1},
237 /*50*/ { 1, 0},{ 0, 0},{ 2, 0},{ 2, 0},{-1, 0},{ 1, 0},{ 3, 0},{ 1, 0},
238 /*58*/ { 0, 1},{ 1, 0},{ 0, 2},{ 0, 2},{ 0,-1},{-1,-1},{-1,-1},{-1,-1},
239 /*60*/ { 2, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
240 /*68*/ { 0, 3},{ 0, 3},{ 0, 2},{ 0, 8},{ 0,-1},{ 0,-1},{-1,-1},{-1,-1},
241 /*70*/ { 1, 0},{ 1, 0},{ 1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
242 /*78*/ { 0,-1},{ 0,-1},{-1,-1},{-1,-1},{-1,-1},{ 5, 1},{ 4, 1},{ 4, 1},
243 /*80*/ { 4, 0},{-1, 0},{ 0, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
244 /*88*/ { 0, 5},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},
245 /*90*/ { 1, 0},{ 2, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
246 /*98*/ { 0, 1},{ 0, 1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},
247 /*a0*/ { 2, 0},{ 2, 0},{ 2, 0},{ 4, 0},{-1, 0},{ 0, 0},{-1, 0},{-1, 0},
248 /*a8*/ { 1, 1},{ 1, 0},{ 3, 0},{ 2, 0},{-1,-1},{-1,-1},{-1,-1},{-1,-1},
249 /*b0*/ {-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
250 /*b8*/ {-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},
251 /*c0*/ {-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
252 /*c8*/ {-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},
253 /*d0*/ { 0, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
254 /*d8*/ { 1, 1},{ 1, 1},{-1,-1},{-1,-1},{ 0, 1},{ 0,-1},{-1,-1},{-1,-1},
255 /*e0*/ {-1, 0},{ 4, 0},{ 0, 1},{-1, 0},{-1, 0},{ 4, 0},{-1, 0},{-1, 0},
256 /*e8*/ { 3,-1},{-1,-1},{ 0, 1},{-1,-1},{ 0,-1},{-1,-1},{-1,-1},{ 0, 0},
257 /*f0*/ {-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
258 /*f8*/ {-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},
261 static char *pbook_type
[] = {
263 "PowerBook 2400/3400/3500(G3)",
264 "PowerBook G3 Series",
269 int __init
find_via_pmu(void)
276 vias
= of_find_node_by_name(NULL
, "via-pmu");
280 reg
= of_get_property(vias
, "reg", NULL
);
282 printk(KERN_ERR
"via-pmu: No \"reg\" property !\n");
285 taddr
= of_translate_address(vias
, reg
);
286 if (taddr
== OF_BAD_ADDR
) {
287 printk(KERN_ERR
"via-pmu: Can't translate address !\n");
291 spin_lock_init(&pmu_lock
);
295 pmu_intr_mask
= PMU_INT_PCEJECT
|
300 if (vias
->parent
->name
&& ((strcmp(vias
->parent
->name
, "ohare") == 0)
301 || of_device_is_compatible(vias
->parent
, "ohare")))
302 pmu_kind
= PMU_OHARE_BASED
;
303 else if (of_device_is_compatible(vias
->parent
, "paddington"))
304 pmu_kind
= PMU_PADDINGTON_BASED
;
305 else if (of_device_is_compatible(vias
->parent
, "heathrow"))
306 pmu_kind
= PMU_HEATHROW_BASED
;
307 else if (of_device_is_compatible(vias
->parent
, "Keylargo")
308 || of_device_is_compatible(vias
->parent
, "K2-Keylargo")) {
309 struct device_node
*gpiop
;
310 struct device_node
*adbp
;
311 u64 gaddr
= OF_BAD_ADDR
;
313 pmu_kind
= PMU_KEYLARGO_BASED
;
314 adbp
= of_find_node_by_type(NULL
, "adb");
315 pmu_has_adb
= (adbp
!= NULL
);
317 pmu_intr_mask
= PMU_INT_PCEJECT
|
323 gpiop
= of_find_node_by_name(NULL
, "gpio");
325 reg
= of_get_property(gpiop
, "reg", NULL
);
327 gaddr
= of_translate_address(gpiop
, reg
);
328 if (gaddr
!= OF_BAD_ADDR
)
329 gpio_reg
= ioremap(gaddr
, 0x10);
331 if (gpio_reg
== NULL
) {
332 printk(KERN_ERR
"via-pmu: Can't find GPIO reg !\n");
336 pmu_kind
= PMU_UNKNOWN
;
338 via
= ioremap(taddr
, 0x2000);
340 printk(KERN_ERR
"via-pmu: Can't map address !\n");
344 out_8(&via
[IER
], IER_CLR
| 0x7f); /* disable all intrs */
345 out_8(&via
[IFR
], 0x7f); /* clear IFR */
354 printk(KERN_INFO
"PMU driver v%d initialized for %s, firmware: %02x\n",
355 PMU_DRIVER_VERSION
, pbook_type
[pmu_kind
], pmu_version
);
357 sys_ctrler
= SYS_CTRLER_PMU
;
370 static int pmu_probe(void)
372 return vias
== NULL
? -ENODEV
: 0;
375 static int __init
pmu_init(void)
381 #endif /* CONFIG_ADB */
384 * We can't wait until pmu_init gets called, that happens too late.
385 * It happens after IDE and SCSI initialization, which can take a few
386 * seconds, and by that time the PMU could have given up on us and
388 * Thus this is called with arch_initcall rather than device_initcall.
390 static int __init
via_pmu_start(void)
397 batt_req
.complete
= 1;
399 irq
= irq_of_parse_and_map(vias
, 0);
401 printk(KERN_ERR
"via-pmu: can't map interrupt\n");
404 /* We set IRQF_NO_SUSPEND because we don't want the interrupt
405 * to be disabled between the 2 passes of driver suspend, we
406 * control our own disabling for that one
408 if (request_irq(irq
, via_pmu_interrupt
, IRQF_NO_SUSPEND
,
409 "VIA-PMU", (void *)0)) {
410 printk(KERN_ERR
"via-pmu: can't request irq %d\n", irq
);
414 if (pmu_kind
== PMU_KEYLARGO_BASED
) {
415 gpio_node
= of_find_node_by_name(NULL
, "extint-gpio1");
416 if (gpio_node
== NULL
)
417 gpio_node
= of_find_node_by_name(NULL
,
420 gpio_irq
= irq_of_parse_and_map(gpio_node
, 0);
422 if (gpio_irq
!= NO_IRQ
) {
423 if (request_irq(gpio_irq
, gpio1_interrupt
, IRQF_TIMER
,
424 "GPIO1 ADB", (void *)0))
425 printk(KERN_ERR
"pmu: can't get irq %d"
426 " (GPIO1)\n", gpio_irq
);
428 gpio_irq_enabled
= 1;
432 /* Enable interrupts */
433 out_8(&via
[IER
], IER_SET
| SR_INT
| CB1_INT
);
435 pmu_fully_inited
= 1;
437 /* Make sure PMU settle down before continuing. This is _very_ important
438 * since the IDE probe may shut interrupts down for quite a bit of time. If
439 * a PMU communication is pending while this happens, the PMU may timeout
440 * Not that on Core99 machines, the PMU keeps sending us environement
441 * messages, we should find a way to either fix IDE or make it call
442 * pmu_suspend() before masking interrupts. This can also happens while
443 * scolling with some fbdevs.
447 } while (pmu_state
!= idle
);
452 arch_initcall(via_pmu_start
);
455 * This has to be done after pci_init, which is a subsys_initcall.
457 static int __init
via_pmu_dev_init(void)
462 #ifdef CONFIG_PMAC_BACKLIGHT
463 /* Initialize backlight */
464 pmu_backlight_init();
468 if (of_machine_is_compatible("AAPL,3400/2400") ||
469 of_machine_is_compatible("AAPL,3500")) {
470 int mb
= pmac_call_feature(PMAC_FTR_GET_MB_INFO
,
471 NULL
, PMAC_MB_INFO_MODEL
, 0);
472 pmu_battery_count
= 1;
473 if (mb
== PMAC_TYPE_COMET
)
474 pmu_batteries
[0].flags
|= PMU_BATT_TYPE_COMET
;
476 pmu_batteries
[0].flags
|= PMU_BATT_TYPE_HOOPER
;
477 } else if (of_machine_is_compatible("AAPL,PowerBook1998") ||
478 of_machine_is_compatible("PowerBook1,1")) {
479 pmu_battery_count
= 2;
480 pmu_batteries
[0].flags
|= PMU_BATT_TYPE_SMART
;
481 pmu_batteries
[1].flags
|= PMU_BATT_TYPE_SMART
;
483 struct device_node
* prim
=
484 of_find_node_by_name(NULL
, "power-mgt");
485 const u32
*prim_info
= NULL
;
487 prim_info
= of_get_property(prim
, "prim-info", NULL
);
489 /* Other stuffs here yet unknown */
490 pmu_battery_count
= (prim_info
[6] >> 16) & 0xff;
491 pmu_batteries
[0].flags
|= PMU_BATT_TYPE_SMART
;
492 if (pmu_battery_count
> 1)
493 pmu_batteries
[1].flags
|= PMU_BATT_TYPE_SMART
;
497 #endif /* CONFIG_PPC32 */
499 /* Create /proc/pmu */
500 proc_pmu_root
= proc_mkdir("pmu", NULL
);
504 for (i
=0; i
<pmu_battery_count
; i
++) {
506 sprintf(title
, "battery_%ld", i
);
507 proc_pmu_batt
[i
] = proc_create_data(title
, 0, proc_pmu_root
,
508 &pmu_battery_proc_fops
, (void *)i
);
511 proc_pmu_info
= proc_create("info", 0, proc_pmu_root
, &pmu_info_proc_fops
);
512 proc_pmu_irqstats
= proc_create("interrupts", 0, proc_pmu_root
,
513 &pmu_irqstats_proc_fops
);
514 proc_pmu_options
= proc_create("options", 0600, proc_pmu_root
,
515 &pmu_options_proc_fops
);
520 device_initcall(via_pmu_dev_init
);
526 struct adb_request req
;
528 out_8(&via
[B
], via
[B
] | TREQ
); /* negate TREQ */
529 out_8(&via
[DIRB
], (via
[DIRB
] | TREQ
) & ~TACK
); /* TACK in, TREQ out */
531 pmu_request(&req
, NULL
, 2, PMU_SET_INTR_MASK
, pmu_intr_mask
);
533 while (!req
.complete
) {
535 printk(KERN_ERR
"init_pmu: no response from PMU\n");
542 /* ack all pending interrupts */
544 interrupt_data
[0][0] = 1;
545 while (interrupt_data
[0][0] || pmu_state
!= idle
) {
547 printk(KERN_ERR
"init_pmu: timed out acking intrs\n");
550 if (pmu_state
== idle
)
552 via_pmu_interrupt(0, NULL
);
556 /* Tell PMU we are ready. */
557 if (pmu_kind
== PMU_KEYLARGO_BASED
) {
558 pmu_request(&req
, NULL
, 2, PMU_SYSTEM_READY
, 2);
559 while (!req
.complete
)
563 /* Read PMU version */
564 pmu_request(&req
, NULL
, 1, PMU_GET_VERSION
);
565 pmu_wait_complete(&req
);
566 if (req
.reply_len
> 0)
567 pmu_version
= req
.reply
[0];
569 /* Read server mode setting */
570 if (pmu_kind
== PMU_KEYLARGO_BASED
) {
571 pmu_request(&req
, NULL
, 2, PMU_POWER_EVENTS
,
572 PMU_PWR_GET_POWERUP_EVENTS
);
573 pmu_wait_complete(&req
);
574 if (req
.reply_len
== 2) {
575 if (req
.reply
[1] & PMU_PWR_WAKEUP_AC_INSERT
)
576 option_server_mode
= 1;
577 printk(KERN_INFO
"via-pmu: Server Mode is %s\n",
578 option_server_mode
? "enabled" : "disabled");
590 static void pmu_set_server_mode(int server_mode
)
592 struct adb_request req
;
594 if (pmu_kind
!= PMU_KEYLARGO_BASED
)
597 option_server_mode
= server_mode
;
598 pmu_request(&req
, NULL
, 2, PMU_POWER_EVENTS
, PMU_PWR_GET_POWERUP_EVENTS
);
599 pmu_wait_complete(&req
);
600 if (req
.reply_len
< 2)
603 pmu_request(&req
, NULL
, 4, PMU_POWER_EVENTS
,
604 PMU_PWR_SET_POWERUP_EVENTS
,
605 req
.reply
[0], PMU_PWR_WAKEUP_AC_INSERT
);
607 pmu_request(&req
, NULL
, 4, PMU_POWER_EVENTS
,
608 PMU_PWR_CLR_POWERUP_EVENTS
,
609 req
.reply
[0], PMU_PWR_WAKEUP_AC_INSERT
);
610 pmu_wait_complete(&req
);
613 /* This new version of the code for 2400/3400/3500 powerbooks
614 * is inspired from the implementation in gkrellm-pmu
617 done_battery_state_ohare(struct adb_request
* req
)
621 * 0x01 : AC indicator
623 * 0x04 : battery exist
626 * 0x20 : full charged
627 * 0x40 : pcharge reset
628 * 0x80 : battery exist
630 * [1][2] : battery voltage
631 * [3] : CPU temperature
632 * [4] : battery temperature
637 unsigned int bat_flags
= PMU_BATT_TYPE_HOOPER
;
638 long pcharge
, charge
, vb
, vmax
, lmax
;
639 long vmax_charging
, vmax_charged
;
640 long amperage
, voltage
, time
, max
;
641 int mb
= pmac_call_feature(PMAC_FTR_GET_MB_INFO
,
642 NULL
, PMAC_MB_INFO_MODEL
, 0);
644 if (req
->reply
[0] & 0x01)
645 pmu_power_flags
|= PMU_PWR_AC_PRESENT
;
647 pmu_power_flags
&= ~PMU_PWR_AC_PRESENT
;
649 if (mb
== PMAC_TYPE_COMET
) {
660 /* If battery installed */
661 if (req
->reply
[0] & 0x04) {
662 bat_flags
|= PMU_BATT_PRESENT
;
663 if (req
->reply
[0] & 0x02)
664 bat_flags
|= PMU_BATT_CHARGING
;
665 vb
= (req
->reply
[1] << 8) | req
->reply
[2];
666 voltage
= (vb
* 265 + 72665) / 10;
667 amperage
= req
->reply
[5];
668 if ((req
->reply
[0] & 0x01) == 0) {
670 vb
+= ((amperage
- 200) * 15)/100;
671 } else if (req
->reply
[0] & 0x02) {
672 vb
= (vb
* 97) / 100;
673 vmax
= vmax_charging
;
675 charge
= (100 * vb
) / vmax
;
676 if (req
->reply
[0] & 0x40) {
677 pcharge
= (req
->reply
[6] << 8) + req
->reply
[7];
681 pcharge
= 100 - pcharge
/ lmax
;
682 if (pcharge
< charge
)
686 time
= (charge
* 16440) / amperage
;
690 amperage
= -amperage
;
692 charge
= max
= amperage
= voltage
= time
= 0;
694 pmu_batteries
[pmu_cur_battery
].flags
= bat_flags
;
695 pmu_batteries
[pmu_cur_battery
].charge
= charge
;
696 pmu_batteries
[pmu_cur_battery
].max_charge
= max
;
697 pmu_batteries
[pmu_cur_battery
].amperage
= amperage
;
698 pmu_batteries
[pmu_cur_battery
].voltage
= voltage
;
699 pmu_batteries
[pmu_cur_battery
].time_remaining
= time
;
701 clear_bit(0, &async_req_locks
);
705 done_battery_state_smart(struct adb_request
* req
)
708 * [0] : format of this structure (known: 3,4,5)
721 * [4][5] : max charge
726 unsigned int bat_flags
= PMU_BATT_TYPE_SMART
;
728 unsigned int capa
, max
, voltage
;
730 if (req
->reply
[1] & 0x01)
731 pmu_power_flags
|= PMU_PWR_AC_PRESENT
;
733 pmu_power_flags
&= ~PMU_PWR_AC_PRESENT
;
736 capa
= max
= amperage
= voltage
= 0;
738 if (req
->reply
[1] & 0x04) {
739 bat_flags
|= PMU_BATT_PRESENT
;
740 switch(req
->reply
[0]) {
742 case 4: capa
= req
->reply
[2];
744 amperage
= *((signed char *)&req
->reply
[4]);
745 voltage
= req
->reply
[5];
747 case 5: capa
= (req
->reply
[2] << 8) | req
->reply
[3];
748 max
= (req
->reply
[4] << 8) | req
->reply
[5];
749 amperage
= *((signed short *)&req
->reply
[6]);
750 voltage
= (req
->reply
[8] << 8) | req
->reply
[9];
753 printk(KERN_WARNING
"pmu.c : unrecognized battery info, len: %d, %02x %02x %02x %02x\n",
754 req
->reply_len
, req
->reply
[0], req
->reply
[1], req
->reply
[2], req
->reply
[3]);
759 if ((req
->reply
[1] & 0x01) && (amperage
> 0))
760 bat_flags
|= PMU_BATT_CHARGING
;
762 pmu_batteries
[pmu_cur_battery
].flags
= bat_flags
;
763 pmu_batteries
[pmu_cur_battery
].charge
= capa
;
764 pmu_batteries
[pmu_cur_battery
].max_charge
= max
;
765 pmu_batteries
[pmu_cur_battery
].amperage
= amperage
;
766 pmu_batteries
[pmu_cur_battery
].voltage
= voltage
;
768 if ((req
->reply
[1] & 0x01) && (amperage
> 0))
769 pmu_batteries
[pmu_cur_battery
].time_remaining
770 = ((max
-capa
) * 3600) / amperage
;
772 pmu_batteries
[pmu_cur_battery
].time_remaining
773 = (capa
* 3600) / (-amperage
);
775 pmu_batteries
[pmu_cur_battery
].time_remaining
= 0;
777 pmu_cur_battery
= (pmu_cur_battery
+ 1) % pmu_battery_count
;
779 clear_bit(0, &async_req_locks
);
783 query_battery_state(void)
785 if (test_and_set_bit(0, &async_req_locks
))
787 if (pmu_kind
== PMU_OHARE_BASED
)
788 pmu_request(&batt_req
, done_battery_state_ohare
,
789 1, PMU_BATTERY_STATE
);
791 pmu_request(&batt_req
, done_battery_state_smart
,
792 2, PMU_SMART_BATTERY_STATE
, pmu_cur_battery
+1);
795 static int pmu_info_proc_show(struct seq_file
*m
, void *v
)
797 seq_printf(m
, "PMU driver version : %d\n", PMU_DRIVER_VERSION
);
798 seq_printf(m
, "PMU firmware version : %02x\n", pmu_version
);
799 seq_printf(m
, "AC Power : %d\n",
800 ((pmu_power_flags
& PMU_PWR_AC_PRESENT
) != 0) || pmu_battery_count
== 0);
801 seq_printf(m
, "Battery count : %d\n", pmu_battery_count
);
806 static int pmu_info_proc_open(struct inode
*inode
, struct file
*file
)
808 return single_open(file
, pmu_info_proc_show
, NULL
);
811 static const struct file_operations pmu_info_proc_fops
= {
812 .owner
= THIS_MODULE
,
813 .open
= pmu_info_proc_open
,
816 .release
= single_release
,
819 static int pmu_irqstats_proc_show(struct seq_file
*m
, void *v
)
822 static const char *irq_names
[] = {
823 "Total CB1 triggered events",
824 "Total GPIO1 triggered events",
825 "PC-Card eject button",
826 "Sound/Brightness button",
828 "Battery state change",
829 "Environment interrupt",
831 "Ghost interrupt (zero len)",
832 "Empty interrupt (empty mask)",
836 for (i
=0; i
<11; i
++) {
837 seq_printf(m
, " %2u: %10u (%s)\n",
838 i
, pmu_irq_stats
[i
], irq_names
[i
]);
843 static int pmu_irqstats_proc_open(struct inode
*inode
, struct file
*file
)
845 return single_open(file
, pmu_irqstats_proc_show
, NULL
);
848 static const struct file_operations pmu_irqstats_proc_fops
= {
849 .owner
= THIS_MODULE
,
850 .open
= pmu_irqstats_proc_open
,
853 .release
= single_release
,
856 static int pmu_battery_proc_show(struct seq_file
*m
, void *v
)
858 long batnum
= (long)m
->private;
861 seq_printf(m
, "flags : %08x\n", pmu_batteries
[batnum
].flags
);
862 seq_printf(m
, "charge : %d\n", pmu_batteries
[batnum
].charge
);
863 seq_printf(m
, "max_charge : %d\n", pmu_batteries
[batnum
].max_charge
);
864 seq_printf(m
, "current : %d\n", pmu_batteries
[batnum
].amperage
);
865 seq_printf(m
, "voltage : %d\n", pmu_batteries
[batnum
].voltage
);
866 seq_printf(m
, "time rem. : %d\n", pmu_batteries
[batnum
].time_remaining
);
870 static int pmu_battery_proc_open(struct inode
*inode
, struct file
*file
)
872 return single_open(file
, pmu_battery_proc_show
, PDE(inode
)->data
);
875 static const struct file_operations pmu_battery_proc_fops
= {
876 .owner
= THIS_MODULE
,
877 .open
= pmu_battery_proc_open
,
880 .release
= single_release
,
883 static int pmu_options_proc_show(struct seq_file
*m
, void *v
)
885 #if defined(CONFIG_SUSPEND) && defined(CONFIG_PPC32)
886 if (pmu_kind
== PMU_KEYLARGO_BASED
&&
887 pmac_call_feature(PMAC_FTR_SLEEP_STATE
,NULL
,0,-1) >= 0)
888 seq_printf(m
, "lid_wakeup=%d\n", option_lid_wakeup
);
890 if (pmu_kind
== PMU_KEYLARGO_BASED
)
891 seq_printf(m
, "server_mode=%d\n", option_server_mode
);
896 static int pmu_options_proc_open(struct inode
*inode
, struct file
*file
)
898 return single_open(file
, pmu_options_proc_show
, NULL
);
901 static ssize_t
pmu_options_proc_write(struct file
*file
,
902 const char __user
*buffer
, size_t count
, loff_t
*pos
)
906 size_t fcount
= count
;
912 if (copy_from_user(tmp
, buffer
, count
))
920 while(*val
&& (*val
!= '=')) {
930 #if defined(CONFIG_SUSPEND) && defined(CONFIG_PPC32)
931 if (pmu_kind
== PMU_KEYLARGO_BASED
&&
932 pmac_call_feature(PMAC_FTR_SLEEP_STATE
,NULL
,0,-1) >= 0)
933 if (!strcmp(label
, "lid_wakeup"))
934 option_lid_wakeup
= ((*val
) == '1');
936 if (pmu_kind
== PMU_KEYLARGO_BASED
&& !strcmp(label
, "server_mode")) {
938 new_value
= ((*val
) == '1');
939 if (new_value
!= option_server_mode
)
940 pmu_set_server_mode(new_value
);
945 static const struct file_operations pmu_options_proc_fops
= {
946 .owner
= THIS_MODULE
,
947 .open
= pmu_options_proc_open
,
950 .release
= single_release
,
951 .write
= pmu_options_proc_write
,
955 /* Send an ADB command */
956 static int pmu_send_request(struct adb_request
*req
, int sync
)
960 if ((vias
== NULL
) || (!pmu_fully_inited
)) {
967 switch (req
->data
[0]) {
969 for (i
= 0; i
< req
->nbytes
- 1; ++i
)
970 req
->data
[i
] = req
->data
[i
+1];
972 if (pmu_data_len
[req
->data
[0]][1] != 0) {
973 req
->reply
[0] = ADB_RET_OK
;
977 ret
= pmu_queue_request(req
);
980 switch (req
->data
[1]) {
982 if (req
->nbytes
!= 2)
984 req
->data
[0] = PMU_READ_RTC
;
987 req
->reply
[0] = CUDA_PACKET
;
989 req
->reply
[2] = CUDA_GET_TIME
;
990 ret
= pmu_queue_request(req
);
993 if (req
->nbytes
!= 6)
995 req
->data
[0] = PMU_SET_RTC
;
997 for (i
= 1; i
<= 4; ++i
)
998 req
->data
[i
] = req
->data
[i
+1];
1000 req
->reply
[0] = CUDA_PACKET
;
1002 req
->reply
[2] = CUDA_SET_TIME
;
1003 ret
= pmu_queue_request(req
);
1010 for (i
= req
->nbytes
- 1; i
> 1; --i
)
1011 req
->data
[i
+2] = req
->data
[i
];
1012 req
->data
[3] = req
->nbytes
- 2;
1013 req
->data
[2] = pmu_adb_flags
;
1014 /*req->data[1] = req->data[1];*/
1015 req
->data
[0] = PMU_ADB_CMD
;
1017 req
->reply_expected
= 1;
1019 ret
= pmu_queue_request(req
);
1028 while (!req
->complete
)
1034 /* Enable/disable autopolling */
1035 static int __pmu_adb_autopoll(int devs
)
1037 struct adb_request req
;
1040 pmu_request(&req
, NULL
, 5, PMU_ADB_CMD
, 0, 0x86,
1041 adb_dev_map
>> 8, adb_dev_map
);
1044 pmu_request(&req
, NULL
, 1, PMU_ADB_POLL_OFF
);
1047 while (!req
.complete
)
1052 static int pmu_adb_autopoll(int devs
)
1054 if ((vias
== NULL
) || (!pmu_fully_inited
) || !pmu_has_adb
)
1058 return __pmu_adb_autopoll(devs
);
1061 /* Reset the ADB bus */
1062 static int pmu_adb_reset_bus(void)
1064 struct adb_request req
;
1065 int save_autopoll
= adb_dev_map
;
1067 if ((vias
== NULL
) || (!pmu_fully_inited
) || !pmu_has_adb
)
1070 /* anyone got a better idea?? */
1071 __pmu_adb_autopoll(0);
1075 req
.data
[0] = PMU_ADB_CMD
;
1076 req
.data
[1] = ADB_BUSRESET
;
1081 req
.reply_expected
= 1;
1082 if (pmu_queue_request(&req
) != 0) {
1083 printk(KERN_ERR
"pmu_adb_reset_bus: pmu_queue_request failed\n");
1086 pmu_wait_complete(&req
);
1088 if (save_autopoll
!= 0)
1089 __pmu_adb_autopoll(save_autopoll
);
1093 #endif /* CONFIG_ADB */
1095 /* Construct and send a pmu request */
1097 pmu_request(struct adb_request
*req
, void (*done
)(struct adb_request
*),
1106 if (nbytes
< 0 || nbytes
> 32) {
1107 printk(KERN_ERR
"pmu_request: bad nbytes (%d)\n", nbytes
);
1111 req
->nbytes
= nbytes
;
1113 va_start(list
, nbytes
);
1114 for (i
= 0; i
< nbytes
; ++i
)
1115 req
->data
[i
] = va_arg(list
, int);
1118 req
->reply_expected
= 0;
1119 return pmu_queue_request(req
);
1123 pmu_queue_request(struct adb_request
*req
)
1125 unsigned long flags
;
1132 if (req
->nbytes
<= 0) {
1136 nsend
= pmu_data_len
[req
->data
[0]][0];
1137 if (nsend
>= 0 && req
->nbytes
!= nsend
+ 1) {
1146 spin_lock_irqsave(&pmu_lock
, flags
);
1147 if (current_req
!= 0) {
1148 last_req
->next
= req
;
1153 if (pmu_state
== idle
)
1156 spin_unlock_irqrestore(&pmu_lock
, flags
);
1164 /* Sightly increased the delay, I had one occurrence of the message
1168 while ((in_8(&via
[B
]) & TACK
) == 0) {
1169 if (--timeout
< 0) {
1170 printk(KERN_ERR
"PMU not responding (!ack)\n");
1177 /* New PMU seems to be very sensitive to those timings, so we make sure
1178 * PCI is flushed immediately */
1182 volatile unsigned char __iomem
*v
= via
;
1184 out_8(&v
[ACR
], in_8(&v
[ACR
]) | SR_OUT
| SR_EXT
);
1186 out_8(&v
[B
], in_8(&v
[B
]) & ~TREQ
); /* assert TREQ */
1193 volatile unsigned char __iomem
*v
= via
;
1195 out_8(&v
[ACR
], (in_8(&v
[ACR
]) & ~SR_OUT
) | SR_EXT
);
1196 in_8(&v
[SR
]); /* resets SR */
1197 out_8(&v
[B
], in_8(&v
[B
]) & ~TREQ
);
1202 pmu_done(struct adb_request
*req
)
1204 void (*done
)(struct adb_request
*) = req
->done
;
1207 /* Here, we assume that if the request has a done member, the
1208 * struct request will survive to setting req->complete to 1
1217 struct adb_request
*req
;
1219 /* assert pmu_state == idle */
1220 /* get the packet to send */
1222 if (req
== 0 || pmu_state
!= idle
1223 || (/*req->reply_expected && */req_awaiting_reply
))
1226 pmu_state
= sending
;
1228 data_len
= pmu_data_len
[req
->data
[0]][0];
1230 /* Sounds safer to make sure ACK is high before writing. This helped
1231 * kill a problem with ADB and some iBooks
1234 /* set the shift register to shift out and send a byte */
1235 send_byte(req
->data
[0]);
1245 via_pmu_interrupt(0, NULL
);
1255 /* Kicks ADB read when PMU is suspended */
1256 adb_int_pending
= 1;
1258 via_pmu_interrupt(0, NULL
);
1259 } while (pmu_suspended
&& (adb_int_pending
|| pmu_state
!= idle
1260 || req_awaiting_reply
));
1264 pmu_wait_complete(struct adb_request
*req
)
1268 while((pmu_state
!= idle
&& pmu_state
!= locked
) || !req
->complete
)
1269 via_pmu_interrupt(0, NULL
);
1272 /* This function loops until the PMU is idle and prevents it from
1273 * anwsering to ADB interrupts. pmu_request can still be called.
1274 * This is done to avoid spurrious shutdowns when we know we'll have
1275 * interrupts switched off for a long time
1280 unsigned long flags
;
1285 spin_lock_irqsave(&pmu_lock
, flags
);
1287 if (pmu_suspended
> 1) {
1288 spin_unlock_irqrestore(&pmu_lock
, flags
);
1293 spin_unlock_irqrestore(&pmu_lock
, flags
);
1294 if (req_awaiting_reply
)
1295 adb_int_pending
= 1;
1296 via_pmu_interrupt(0, NULL
);
1297 spin_lock_irqsave(&pmu_lock
, flags
);
1298 if (!adb_int_pending
&& pmu_state
== idle
&& !req_awaiting_reply
) {
1300 disable_irq_nosync(gpio_irq
);
1301 out_8(&via
[IER
], CB1_INT
| IER_CLR
);
1302 spin_unlock_irqrestore(&pmu_lock
, flags
);
1311 unsigned long flags
;
1313 if (!via
|| (pmu_suspended
< 1))
1316 spin_lock_irqsave(&pmu_lock
, flags
);
1318 if (pmu_suspended
> 0) {
1319 spin_unlock_irqrestore(&pmu_lock
, flags
);
1322 adb_int_pending
= 1;
1324 enable_irq(gpio_irq
);
1325 out_8(&via
[IER
], CB1_INT
| IER_SET
);
1326 spin_unlock_irqrestore(&pmu_lock
, flags
);
1330 /* Interrupt data could be the result data from an ADB cmd */
1332 pmu_handle_data(unsigned char *data
, int len
)
1334 unsigned char ints
, pirq
;
1338 if (drop_interrupts
|| len
< 1) {
1339 adb_int_pending
= 0;
1344 /* Get PMU interrupt mask */
1347 /* Record zero interrupts for stats */
1351 /* Hack to deal with ADB autopoll flag */
1352 if (ints
& PMU_INT_ADB
)
1353 ints
&= ~(PMU_INT_ADB_AUTO
| PMU_INT_AUTO_SRQ_POLL
);
1358 if (i
> pmu_irq_stats
[10])
1359 pmu_irq_stats
[10] = i
;
1363 for (pirq
= 0; pirq
< 8; pirq
++)
1364 if (ints
& (1 << pirq
))
1366 pmu_irq_stats
[pirq
]++;
1368 ints
&= ~(1 << pirq
);
1370 /* Note: for some reason, we get an interrupt with len=1,
1371 * data[0]==0 after each normal ADB interrupt, at least
1372 * on the Pismo. Still investigating... --BenH
1374 if ((1 << pirq
) & PMU_INT_ADB
) {
1375 if ((data
[0] & PMU_INT_ADB_AUTO
) == 0) {
1376 struct adb_request
*req
= req_awaiting_reply
;
1378 printk(KERN_ERR
"PMU: extra ADB reply\n");
1381 req_awaiting_reply
= NULL
;
1385 memcpy(req
->reply
, data
+ 1, len
- 1);
1386 req
->reply_len
= len
- 1;
1390 if (len
== 4 && data
[1] == 0x2c) {
1391 extern int xmon_wants_key
, xmon_adb_keycode
;
1392 if (xmon_wants_key
) {
1393 xmon_adb_keycode
= data
[2];
1399 * XXX On the [23]400 the PMU gives us an up
1400 * event for keycodes 0x74 or 0x75 when the PC
1401 * card eject buttons are released, so we
1402 * ignore those events.
1404 if (!(pmu_kind
== PMU_OHARE_BASED
&& len
== 4
1405 && data
[1] == 0x2c && data
[3] == 0xff
1406 && (data
[2] & ~1) == 0xf4))
1407 adb_input(data
+1, len
-1, 1);
1408 #endif /* CONFIG_ADB */
1411 /* Sound/brightness button pressed */
1412 else if ((1 << pirq
) & PMU_INT_SNDBRT
) {
1413 #ifdef CONFIG_PMAC_BACKLIGHT
1415 pmac_backlight_set_legacy_brightness_pmu(data
[1] >> 4);
1418 /* Tick interrupt */
1419 else if ((1 << pirq
) & PMU_INT_TICK
) {
1420 /* Environement or tick interrupt, query batteries */
1421 if (pmu_battery_count
) {
1422 if ((--query_batt_timer
) == 0) {
1423 query_battery_state();
1424 query_batt_timer
= BATTERY_POLLING_COUNT
;
1428 else if ((1 << pirq
) & PMU_INT_ENVIRONMENT
) {
1429 if (pmu_battery_count
)
1430 query_battery_state();
1431 pmu_pass_intr(data
, len
);
1432 /* len == 6 is probably a bad check. But how do I
1433 * know what PMU versions send what events here? */
1435 via_pmu_event(PMU_EVT_POWER
, !!(data
[1]&8));
1436 via_pmu_event(PMU_EVT_LID
, data
[1]&1);
1439 pmu_pass_intr(data
, len
);
1444 static struct adb_request
*
1447 struct adb_request
*req
;
1450 if (via
[B
] & TREQ
) {
1451 printk(KERN_ERR
"PMU: spurious SR intr (%x)\n", via
[B
]);
1452 out_8(&via
[IFR
], SR_INT
);
1455 /* The ack may not yet be low when we get the interrupt */
1456 while ((in_8(&via
[B
]) & TACK
) != 0)
1459 /* if reading grab the byte, and reset the interrupt */
1460 if (pmu_state
== reading
|| pmu_state
== reading_intr
)
1461 bite
= in_8(&via
[SR
]);
1463 /* reset TREQ and wait for TACK to go high */
1464 out_8(&via
[B
], in_8(&via
[B
]) | TREQ
);
1467 switch (pmu_state
) {
1471 data_len
= req
->nbytes
- 1;
1472 send_byte(data_len
);
1475 if (data_index
<= data_len
) {
1476 send_byte(req
->data
[data_index
++]);
1480 data_len
= pmu_data_len
[req
->data
[0]][1];
1481 if (data_len
== 0) {
1483 current_req
= req
->next
;
1484 if (req
->reply_expected
)
1485 req_awaiting_reply
= req
;
1489 pmu_state
= reading
;
1491 reply_ptr
= req
->reply
+ req
->reply_len
;
1499 pmu_state
= reading_intr
;
1500 reply_ptr
= interrupt_data
[int_data_last
];
1502 if (gpio_irq
>= 0 && !gpio_irq_enabled
) {
1503 enable_irq(gpio_irq
);
1504 gpio_irq_enabled
= 1;
1510 if (data_len
== -1) {
1513 printk(KERN_ERR
"PMU: bad reply len %d\n", bite
);
1514 } else if (data_index
< 32) {
1515 reply_ptr
[data_index
++] = bite
;
1517 if (data_index
< data_len
) {
1522 if (pmu_state
== reading_intr
) {
1524 int_data_state
[int_data_last
] = int_data_ready
;
1525 interrupt_data_len
[int_data_last
] = data_len
;
1529 * For PMU sleep and freq change requests, we lock the
1530 * PMU until it's explicitly unlocked. This avoids any
1531 * spurrious event polling getting in
1533 current_req
= req
->next
;
1534 req
->reply_len
+= data_index
;
1535 if (req
->data
[0] == PMU_SLEEP
|| req
->data
[0] == PMU_CPU_SPEED
)
1544 printk(KERN_ERR
"via_pmu_interrupt: unknown state %d?\n",
1551 via_pmu_interrupt(int irq
, void *arg
)
1553 unsigned long flags
;
1557 struct adb_request
*req
= NULL
;
1560 /* This is a bit brutal, we can probably do better */
1561 spin_lock_irqsave(&pmu_lock
, flags
);
1565 intr
= in_8(&via
[IFR
]) & (SR_INT
| CB1_INT
);
1569 if (++nloop
> 1000) {
1570 printk(KERN_DEBUG
"PMU: stuck in intr loop, "
1571 "intr=%x, ier=%x pmu_state=%d\n",
1572 intr
, in_8(&via
[IER
]), pmu_state
);
1575 out_8(&via
[IFR
], intr
);
1576 if (intr
& CB1_INT
) {
1577 adb_int_pending
= 1;
1580 if (intr
& SR_INT
) {
1581 req
= pmu_sr_intr();
1588 if (pmu_state
== idle
) {
1589 if (adb_int_pending
) {
1590 if (int_data_state
[0] == int_data_empty
)
1592 else if (int_data_state
[1] == int_data_empty
)
1597 int_data_state
[int_data_last
] = int_data_fill
;
1598 /* Sounds safer to make sure ACK is high before writing.
1599 * This helped kill a problem with ADB and some iBooks
1602 send_byte(PMU_INT_ACK
);
1603 adb_int_pending
= 0;
1604 } else if (current_req
)
1608 /* Mark the oldest buffer for flushing */
1609 if (int_data_state
[!int_data_last
] == int_data_ready
) {
1610 int_data_state
[!int_data_last
] = int_data_flush
;
1611 int_data
= !int_data_last
;
1612 } else if (int_data_state
[int_data_last
] == int_data_ready
) {
1613 int_data_state
[int_data_last
] = int_data_flush
;
1614 int_data
= int_data_last
;
1617 spin_unlock_irqrestore(&pmu_lock
, flags
);
1619 /* Deal with completed PMU requests outside of the lock */
1625 /* Deal with interrupt datas outside of the lock */
1626 if (int_data
>= 0) {
1627 pmu_handle_data(interrupt_data
[int_data
], interrupt_data_len
[int_data
]);
1628 spin_lock_irqsave(&pmu_lock
, flags
);
1630 int_data_state
[int_data
] = int_data_empty
;
1635 return IRQ_RETVAL(handled
);
1641 unsigned long flags
;
1643 spin_lock_irqsave(&pmu_lock
, flags
);
1644 if (pmu_state
== locked
)
1646 adb_int_pending
= 1;
1647 spin_unlock_irqrestore(&pmu_lock
, flags
);
1652 gpio1_interrupt(int irq
, void *arg
)
1654 unsigned long flags
;
1656 if ((in_8(gpio_reg
+ 0x9) & 0x02) == 0) {
1657 spin_lock_irqsave(&pmu_lock
, flags
);
1658 if (gpio_irq_enabled
> 0) {
1659 disable_irq_nosync(gpio_irq
);
1660 gpio_irq_enabled
= 0;
1663 adb_int_pending
= 1;
1664 spin_unlock_irqrestore(&pmu_lock
, flags
);
1665 via_pmu_interrupt(0, NULL
);
1672 pmu_enable_irled(int on
)
1674 struct adb_request req
;
1678 if (pmu_kind
== PMU_KEYLARGO_BASED
)
1681 pmu_request(&req
, NULL
, 2, PMU_POWER_CTRL
, PMU_POW_IRLED
|
1682 (on
? PMU_POW_ON
: PMU_POW_OFF
));
1683 pmu_wait_complete(&req
);
1689 struct adb_request req
;
1694 local_irq_disable();
1696 drop_interrupts
= 1;
1698 if (pmu_kind
!= PMU_KEYLARGO_BASED
) {
1699 pmu_request(&req
, NULL
, 2, PMU_SET_INTR_MASK
, PMU_INT_ADB
|
1701 while(!req
.complete
)
1705 pmu_request(&req
, NULL
, 1, PMU_RESET
);
1706 pmu_wait_complete(&req
);
1714 struct adb_request req
;
1719 local_irq_disable();
1721 drop_interrupts
= 1;
1723 if (pmu_kind
!= PMU_KEYLARGO_BASED
) {
1724 pmu_request(&req
, NULL
, 2, PMU_SET_INTR_MASK
, PMU_INT_ADB
|
1726 pmu_wait_complete(&req
);
1728 /* Disable server mode on shutdown or we'll just
1731 pmu_set_server_mode(0);
1734 pmu_request(&req
, NULL
, 5, PMU_SHUTDOWN
,
1735 'M', 'A', 'T', 'T');
1736 pmu_wait_complete(&req
);
1747 #if defined(CONFIG_SUSPEND) && defined(CONFIG_PPC32)
1749 * Put the powerbook to sleep.
1752 static u32 save_via
[8];
1755 save_via_state(void)
1757 save_via
[0] = in_8(&via
[ANH
]);
1758 save_via
[1] = in_8(&via
[DIRA
]);
1759 save_via
[2] = in_8(&via
[B
]);
1760 save_via
[3] = in_8(&via
[DIRB
]);
1761 save_via
[4] = in_8(&via
[PCR
]);
1762 save_via
[5] = in_8(&via
[ACR
]);
1763 save_via
[6] = in_8(&via
[T1CL
]);
1764 save_via
[7] = in_8(&via
[T1CH
]);
1767 restore_via_state(void)
1769 out_8(&via
[ANH
], save_via
[0]);
1770 out_8(&via
[DIRA
], save_via
[1]);
1771 out_8(&via
[B
], save_via
[2]);
1772 out_8(&via
[DIRB
], save_via
[3]);
1773 out_8(&via
[PCR
], save_via
[4]);
1774 out_8(&via
[ACR
], save_via
[5]);
1775 out_8(&via
[T1CL
], save_via
[6]);
1776 out_8(&via
[T1CH
], save_via
[7]);
1777 out_8(&via
[IER
], IER_CLR
| 0x7f); /* disable all intrs */
1778 out_8(&via
[IFR
], 0x7f); /* clear IFR */
1779 out_8(&via
[IER
], IER_SET
| SR_INT
| CB1_INT
);
1782 #define GRACKLE_PM (1<<7)
1783 #define GRACKLE_DOZE (1<<5)
1784 #define GRACKLE_NAP (1<<4)
1785 #define GRACKLE_SLEEP (1<<3)
1787 static int powerbook_sleep_grackle(void)
1789 unsigned long save_l2cr
;
1790 unsigned short pmcr1
;
1791 struct adb_request req
;
1792 struct pci_dev
*grackle
;
1794 grackle
= pci_get_bus_and_slot(0, 0);
1798 /* Turn off various things. Darwin does some retry tests here... */
1799 pmu_request(&req
, NULL
, 2, PMU_POWER_CTRL0
, PMU_POW0_OFF
|PMU_POW0_HARD_DRIVE
);
1800 pmu_wait_complete(&req
);
1801 pmu_request(&req
, NULL
, 2, PMU_POWER_CTRL
,
1802 PMU_POW_OFF
|PMU_POW_BACKLIGHT
|PMU_POW_IRLED
|PMU_POW_MEDIABAY
);
1803 pmu_wait_complete(&req
);
1805 /* For 750, save backside cache setting and disable it */
1806 save_l2cr
= _get_L2CR(); /* (returns -1 if not available) */
1808 if (!__fake_sleep
) {
1809 /* Ask the PMU to put us to sleep */
1810 pmu_request(&req
, NULL
, 5, PMU_SLEEP
, 'M', 'A', 'T', 'T');
1811 pmu_wait_complete(&req
);
1814 /* The VIA is supposed not to be restored correctly*/
1816 /* We shut down some HW */
1817 pmac_call_feature(PMAC_FTR_SLEEP_STATE
,NULL
,0,1);
1819 pci_read_config_word(grackle
, 0x70, &pmcr1
);
1820 /* Apparently, MacOS uses NAP mode for Grackle ??? */
1821 pmcr1
&= ~(GRACKLE_DOZE
|GRACKLE_SLEEP
);
1822 pmcr1
|= GRACKLE_PM
|GRACKLE_NAP
;
1823 pci_write_config_word(grackle
, 0x70, pmcr1
);
1825 /* Call low-level ASM sleep handler */
1829 low_sleep_handler();
1831 /* We're awake again, stop grackle PM */
1832 pci_read_config_word(grackle
, 0x70, &pmcr1
);
1833 pmcr1
&= ~(GRACKLE_PM
|GRACKLE_DOZE
|GRACKLE_SLEEP
|GRACKLE_NAP
);
1834 pci_write_config_word(grackle
, 0x70, pmcr1
);
1836 pci_dev_put(grackle
);
1838 /* Make sure the PMU is idle */
1839 pmac_call_feature(PMAC_FTR_SLEEP_STATE
,NULL
,0,0);
1840 restore_via_state();
1842 /* Restore L2 cache */
1843 if (save_l2cr
!= 0xffffffff && (save_l2cr
& L2CR_L2E
) != 0)
1844 _set_L2CR(save_l2cr
);
1846 /* Restore userland MMU context */
1847 switch_mmu_context(NULL
, current
->active_mm
);
1849 /* Power things up */
1851 pmu_request(&req
, NULL
, 2, PMU_SET_INTR_MASK
, pmu_intr_mask
);
1852 pmu_wait_complete(&req
);
1853 pmu_request(&req
, NULL
, 2, PMU_POWER_CTRL0
,
1854 PMU_POW0_ON
|PMU_POW0_HARD_DRIVE
);
1855 pmu_wait_complete(&req
);
1856 pmu_request(&req
, NULL
, 2, PMU_POWER_CTRL
,
1857 PMU_POW_ON
|PMU_POW_BACKLIGHT
|PMU_POW_CHARGER
|PMU_POW_IRLED
|PMU_POW_MEDIABAY
);
1858 pmu_wait_complete(&req
);
1864 powerbook_sleep_Core99(void)
1866 unsigned long save_l2cr
;
1867 unsigned long save_l3cr
;
1868 struct adb_request req
;
1870 if (pmac_call_feature(PMAC_FTR_SLEEP_STATE
,NULL
,0,-1) < 0) {
1871 printk(KERN_ERR
"Sleep mode not supported on this machine\n");
1875 if (num_online_cpus() > 1 || cpu_is_offline(0))
1878 /* Stop environment and ADB interrupts */
1879 pmu_request(&req
, NULL
, 2, PMU_SET_INTR_MASK
, 0);
1880 pmu_wait_complete(&req
);
1882 /* Tell PMU what events will wake us up */
1883 pmu_request(&req
, NULL
, 4, PMU_POWER_EVENTS
, PMU_PWR_CLR_WAKEUP_EVENTS
,
1885 pmu_wait_complete(&req
);
1886 pmu_request(&req
, NULL
, 4, PMU_POWER_EVENTS
, PMU_PWR_SET_WAKEUP_EVENTS
,
1887 0, PMU_PWR_WAKEUP_KEY
|
1888 (option_lid_wakeup
? PMU_PWR_WAKEUP_LID_OPEN
: 0));
1889 pmu_wait_complete(&req
);
1891 /* Save the state of the L2 and L3 caches */
1892 save_l3cr
= _get_L3CR(); /* (returns -1 if not available) */
1893 save_l2cr
= _get_L2CR(); /* (returns -1 if not available) */
1895 if (!__fake_sleep
) {
1896 /* Ask the PMU to put us to sleep */
1897 pmu_request(&req
, NULL
, 5, PMU_SLEEP
, 'M', 'A', 'T', 'T');
1898 pmu_wait_complete(&req
);
1901 /* The VIA is supposed not to be restored correctly*/
1904 /* Shut down various ASICs. There's a chance that we can no longer
1905 * talk to the PMU after this, so I moved it to _after_ sending the
1906 * sleep command to it. Still need to be checked.
1908 pmac_call_feature(PMAC_FTR_SLEEP_STATE
, NULL
, 0, 1);
1910 /* Call low-level ASM sleep handler */
1914 low_sleep_handler();
1916 /* Restore Apple core ASICs state */
1917 pmac_call_feature(PMAC_FTR_SLEEP_STATE
, NULL
, 0, 0);
1920 restore_via_state();
1922 /* tweak LPJ before cpufreq is there */
1923 loops_per_jiffy
*= 2;
1926 pmac_call_early_video_resume();
1928 /* Restore L2 cache */
1929 if (save_l2cr
!= 0xffffffff && (save_l2cr
& L2CR_L2E
) != 0)
1930 _set_L2CR(save_l2cr
);
1931 /* Restore L3 cache */
1932 if (save_l3cr
!= 0xffffffff && (save_l3cr
& L3CR_L3E
) != 0)
1933 _set_L3CR(save_l3cr
);
1935 /* Restore userland MMU context */
1936 switch_mmu_context(NULL
, current
->active_mm
);
1938 /* Tell PMU we are ready */
1940 pmu_request(&req
, NULL
, 2, PMU_SYSTEM_READY
, 2);
1941 pmu_wait_complete(&req
);
1942 pmu_request(&req
, NULL
, 2, PMU_SET_INTR_MASK
, pmu_intr_mask
);
1943 pmu_wait_complete(&req
);
1945 /* Restore LPJ, cpufreq will adjust the cpu frequency */
1946 loops_per_jiffy
/= 2;
1951 #define PB3400_MEM_CTRL 0xf8000000
1952 #define PB3400_MEM_CTRL_SLEEP 0x70
1954 static void __iomem
*pb3400_mem_ctrl
;
1956 static void powerbook_sleep_init_3400(void)
1958 /* map in the memory controller registers */
1959 pb3400_mem_ctrl
= ioremap(PB3400_MEM_CTRL
, 0x100);
1960 if (pb3400_mem_ctrl
== NULL
)
1961 printk(KERN_WARNING
"ioremap failed: sleep won't be possible");
1964 static int powerbook_sleep_3400(void)
1969 struct adb_request sleep_req
;
1970 unsigned int __iomem
*mem_ctrl_sleep
;
1972 if (pb3400_mem_ctrl
== NULL
)
1974 mem_ctrl_sleep
= pb3400_mem_ctrl
+ PB3400_MEM_CTRL_SLEEP
;
1976 /* Set the memory controller to keep the memory refreshed
1977 while we're asleep */
1978 for (i
= 0x403f; i
>= 0x4000; --i
) {
1979 out_be32(mem_ctrl_sleep
, i
);
1981 x
= (in_be32(mem_ctrl_sleep
) >> 16) & 0x3ff;
1987 /* Ask the PMU to put us to sleep */
1988 pmu_request(&sleep_req
, NULL
, 5, PMU_SLEEP
, 'M', 'A', 'T', 'T');
1989 pmu_wait_complete(&sleep_req
);
1992 pmac_call_feature(PMAC_FTR_SLEEP_STATE
, NULL
, 0, 1);
1996 /* Put the CPU into sleep mode */
1997 hid0
= mfspr(SPRN_HID0
);
1998 hid0
= (hid0
& ~(HID0_NAP
| HID0_DOZE
)) | HID0_SLEEP
;
1999 mtspr(SPRN_HID0
, hid0
);
2001 msr
= mfmsr() | MSR_POW
;
2007 local_irq_disable();
2009 /* OK, we're awake again, start restoring things */
2010 out_be32(mem_ctrl_sleep
, 0x3f);
2011 pmac_call_feature(PMAC_FTR_SLEEP_STATE
, NULL
, 0, 0);
2016 #endif /* CONFIG_SUSPEND && CONFIG_PPC32 */
2019 * Support for /dev/pmu device
2021 #define RB_SIZE 0x10
2022 struct pmu_private
{
2023 struct list_head list
;
2028 unsigned char data
[16];
2030 wait_queue_head_t wait
;
2032 #if defined(CONFIG_INPUT_ADBHID) && defined(CONFIG_PMAC_BACKLIGHT)
2033 int backlight_locker
;
2037 static LIST_HEAD(all_pmu_pvt
);
2038 static DEFINE_SPINLOCK(all_pvt_lock
);
2041 pmu_pass_intr(unsigned char *data
, int len
)
2043 struct pmu_private
*pp
;
2044 struct list_head
*list
;
2046 unsigned long flags
;
2048 if (len
> sizeof(pp
->rb_buf
[0].data
))
2049 len
= sizeof(pp
->rb_buf
[0].data
);
2050 spin_lock_irqsave(&all_pvt_lock
, flags
);
2051 for (list
= &all_pmu_pvt
; (list
= list
->next
) != &all_pmu_pvt
; ) {
2052 pp
= list_entry(list
, struct pmu_private
, list
);
2053 spin_lock(&pp
->lock
);
2057 if (i
!= pp
->rb_get
) {
2058 struct rb_entry
*rp
= &pp
->rb_buf
[pp
->rb_put
];
2060 memcpy(rp
->data
, data
, len
);
2062 wake_up_interruptible(&pp
->wait
);
2064 spin_unlock(&pp
->lock
);
2066 spin_unlock_irqrestore(&all_pvt_lock
, flags
);
2070 pmu_open(struct inode
*inode
, struct file
*file
)
2072 struct pmu_private
*pp
;
2073 unsigned long flags
;
2075 pp
= kmalloc(sizeof(struct pmu_private
), GFP_KERNEL
);
2078 pp
->rb_get
= pp
->rb_put
= 0;
2079 spin_lock_init(&pp
->lock
);
2080 init_waitqueue_head(&pp
->wait
);
2082 spin_lock_irqsave(&all_pvt_lock
, flags
);
2083 #if defined(CONFIG_INPUT_ADBHID) && defined(CONFIG_PMAC_BACKLIGHT)
2084 pp
->backlight_locker
= 0;
2086 list_add(&pp
->list
, &all_pmu_pvt
);
2087 spin_unlock_irqrestore(&all_pvt_lock
, flags
);
2088 file
->private_data
= pp
;
2094 pmu_read(struct file
*file
, char __user
*buf
,
2095 size_t count
, loff_t
*ppos
)
2097 struct pmu_private
*pp
= file
->private_data
;
2098 DECLARE_WAITQUEUE(wait
, current
);
2099 unsigned long flags
;
2102 if (count
< 1 || pp
== 0)
2104 if (!access_ok(VERIFY_WRITE
, buf
, count
))
2107 spin_lock_irqsave(&pp
->lock
, flags
);
2108 add_wait_queue(&pp
->wait
, &wait
);
2109 current
->state
= TASK_INTERRUPTIBLE
;
2113 if (pp
->rb_get
!= pp
->rb_put
) {
2115 struct rb_entry
*rp
= &pp
->rb_buf
[i
];
2117 spin_unlock_irqrestore(&pp
->lock
, flags
);
2120 if (ret
> 0 && copy_to_user(buf
, rp
->data
, ret
))
2124 spin_lock_irqsave(&pp
->lock
, flags
);
2129 if (file
->f_flags
& O_NONBLOCK
)
2132 if (signal_pending(current
))
2134 spin_unlock_irqrestore(&pp
->lock
, flags
);
2136 spin_lock_irqsave(&pp
->lock
, flags
);
2138 current
->state
= TASK_RUNNING
;
2139 remove_wait_queue(&pp
->wait
, &wait
);
2140 spin_unlock_irqrestore(&pp
->lock
, flags
);
2146 pmu_write(struct file
*file
, const char __user
*buf
,
2147 size_t count
, loff_t
*ppos
)
2153 pmu_fpoll(struct file
*filp
, poll_table
*wait
)
2155 struct pmu_private
*pp
= filp
->private_data
;
2156 unsigned int mask
= 0;
2157 unsigned long flags
;
2161 poll_wait(filp
, &pp
->wait
, wait
);
2162 spin_lock_irqsave(&pp
->lock
, flags
);
2163 if (pp
->rb_get
!= pp
->rb_put
)
2165 spin_unlock_irqrestore(&pp
->lock
, flags
);
2170 pmu_release(struct inode
*inode
, struct file
*file
)
2172 struct pmu_private
*pp
= file
->private_data
;
2173 unsigned long flags
;
2176 file
->private_data
= NULL
;
2177 spin_lock_irqsave(&all_pvt_lock
, flags
);
2178 list_del(&pp
->list
);
2179 spin_unlock_irqrestore(&all_pvt_lock
, flags
);
2181 #if defined(CONFIG_INPUT_ADBHID) && defined(CONFIG_PMAC_BACKLIGHT)
2182 if (pp
->backlight_locker
)
2183 pmac_backlight_enable();
2191 #if defined(CONFIG_SUSPEND) && defined(CONFIG_PPC32)
2192 static void pmac_suspend_disable_irqs(void)
2194 /* Call platform functions marked "on sleep" */
2195 pmac_pfunc_i2c_suspend();
2196 pmac_pfunc_base_suspend();
2199 static int powerbook_sleep(suspend_state_t state
)
2203 /* Wait for completion of async requests */
2204 while (!batt_req
.complete
)
2207 /* Giveup the lazy FPU & vec so we don't have to back them
2208 * up from the low level code
2212 #ifdef CONFIG_ALTIVEC
2213 if (cpu_has_feature(CPU_FTR_ALTIVEC
))
2214 enable_kernel_altivec();
2215 #endif /* CONFIG_ALTIVEC */
2218 case PMU_OHARE_BASED
:
2219 error
= powerbook_sleep_3400();
2221 case PMU_HEATHROW_BASED
:
2222 case PMU_PADDINGTON_BASED
:
2223 error
= powerbook_sleep_grackle();
2225 case PMU_KEYLARGO_BASED
:
2226 error
= powerbook_sleep_Core99();
2240 static void pmac_suspend_enable_irqs(void)
2242 /* Force a poll of ADB interrupts */
2243 adb_int_pending
= 1;
2244 via_pmu_interrupt(0, NULL
);
2248 /* Call platform functions marked "on wake" */
2249 pmac_pfunc_base_resume();
2250 pmac_pfunc_i2c_resume();
2253 static int pmu_sleep_valid(suspend_state_t state
)
2255 return state
== PM_SUSPEND_MEM
2256 && (pmac_call_feature(PMAC_FTR_SLEEP_STATE
, NULL
, 0, -1) >= 0);
2259 static struct platform_suspend_ops pmu_pm_ops
= {
2260 .enter
= powerbook_sleep
,
2261 .valid
= pmu_sleep_valid
,
2264 static int register_pmu_pm_ops(void)
2266 if (pmu_kind
== PMU_OHARE_BASED
)
2267 powerbook_sleep_init_3400();
2268 ppc_md
.suspend_disable_irqs
= pmac_suspend_disable_irqs
;
2269 ppc_md
.suspend_enable_irqs
= pmac_suspend_enable_irqs
;
2270 suspend_set_ops(&pmu_pm_ops
);
2275 device_initcall(register_pmu_pm_ops
);
2278 static int pmu_ioctl(struct file
*filp
,
2279 u_int cmd
, u_long arg
)
2281 __u32 __user
*argp
= (__u32 __user
*)arg
;
2282 int error
= -EINVAL
;
2286 if (!capable(CAP_SYS_ADMIN
))
2288 return pm_suspend(PM_SUSPEND_MEM
);
2289 case PMU_IOC_CAN_SLEEP
:
2290 if (pmac_call_feature(PMAC_FTR_SLEEP_STATE
, NULL
, 0, -1) < 0)
2291 return put_user(0, argp
);
2293 return put_user(1, argp
);
2295 #ifdef CONFIG_PMAC_BACKLIGHT_LEGACY
2296 /* Compatibility ioctl's for backlight */
2297 case PMU_IOC_GET_BACKLIGHT
:
2301 brightness
= pmac_backlight_get_legacy_brightness();
2305 return put_user(brightness
, argp
);
2308 case PMU_IOC_SET_BACKLIGHT
:
2312 error
= get_user(brightness
, argp
);
2316 return pmac_backlight_set_legacy_brightness(brightness
);
2318 #ifdef CONFIG_INPUT_ADBHID
2319 case PMU_IOC_GRAB_BACKLIGHT
: {
2320 struct pmu_private
*pp
= filp
->private_data
;
2322 if (pp
->backlight_locker
)
2325 pp
->backlight_locker
= 1;
2326 pmac_backlight_disable();
2330 #endif /* CONFIG_INPUT_ADBHID */
2331 #endif /* CONFIG_PMAC_BACKLIGHT_LEGACY */
2333 case PMU_IOC_GET_MODEL
:
2334 return put_user(pmu_kind
, argp
);
2335 case PMU_IOC_HAS_ADB
:
2336 return put_user(pmu_has_adb
, argp
);
2341 static long pmu_unlocked_ioctl(struct file
*filp
,
2342 u_int cmd
, u_long arg
)
2347 ret
= pmu_ioctl(filp
, cmd
, arg
);
2353 #ifdef CONFIG_COMPAT
2354 #define PMU_IOC_GET_BACKLIGHT32 _IOR('B', 1, compat_size_t)
2355 #define PMU_IOC_SET_BACKLIGHT32 _IOW('B', 2, compat_size_t)
2356 #define PMU_IOC_GET_MODEL32 _IOR('B', 3, compat_size_t)
2357 #define PMU_IOC_HAS_ADB32 _IOR('B', 4, compat_size_t)
2358 #define PMU_IOC_CAN_SLEEP32 _IOR('B', 5, compat_size_t)
2359 #define PMU_IOC_GRAB_BACKLIGHT32 _IOR('B', 6, compat_size_t)
2361 static long compat_pmu_ioctl (struct file
*filp
, u_int cmd
, u_long arg
)
2366 case PMU_IOC_GET_BACKLIGHT32
:
2367 cmd
= PMU_IOC_GET_BACKLIGHT
;
2369 case PMU_IOC_SET_BACKLIGHT32
:
2370 cmd
= PMU_IOC_SET_BACKLIGHT
;
2372 case PMU_IOC_GET_MODEL32
:
2373 cmd
= PMU_IOC_GET_MODEL
;
2375 case PMU_IOC_HAS_ADB32
:
2376 cmd
= PMU_IOC_HAS_ADB
;
2378 case PMU_IOC_CAN_SLEEP32
:
2379 cmd
= PMU_IOC_CAN_SLEEP
;
2381 case PMU_IOC_GRAB_BACKLIGHT32
:
2382 cmd
= PMU_IOC_GRAB_BACKLIGHT
;
2385 return -ENOIOCTLCMD
;
2387 return pmu_unlocked_ioctl(filp
, cmd
, (unsigned long)compat_ptr(arg
));
2391 static const struct file_operations pmu_device_fops
= {
2395 .unlocked_ioctl
= pmu_unlocked_ioctl
,
2396 #ifdef CONFIG_COMPAT
2397 .compat_ioctl
= compat_pmu_ioctl
,
2400 .release
= pmu_release
,
2403 static struct miscdevice pmu_device
= {
2404 PMU_MINOR
, "pmu", &pmu_device_fops
2407 static int pmu_device_init(void)
2411 if (misc_register(&pmu_device
) < 0)
2412 printk(KERN_ERR
"via-pmu: cannot register misc device.\n");
2415 device_initcall(pmu_device_init
);
2420 polled_handshake(volatile unsigned char __iomem
*via
)
2422 via
[B
] &= ~TREQ
; eieio();
2423 while ((via
[B
] & TACK
) != 0)
2425 via
[B
] |= TREQ
; eieio();
2426 while ((via
[B
] & TACK
) == 0)
2431 polled_send_byte(volatile unsigned char __iomem
*via
, int x
)
2433 via
[ACR
] |= SR_OUT
| SR_EXT
; eieio();
2434 via
[SR
] = x
; eieio();
2435 polled_handshake(via
);
2439 polled_recv_byte(volatile unsigned char __iomem
*via
)
2443 via
[ACR
] = (via
[ACR
] & ~SR_OUT
) | SR_EXT
; eieio();
2444 x
= via
[SR
]; eieio();
2445 polled_handshake(via
);
2446 x
= via
[SR
]; eieio();
2451 pmu_polled_request(struct adb_request
*req
)
2453 unsigned long flags
;
2455 volatile unsigned char __iomem
*v
= via
;
2459 l
= pmu_data_len
[c
][0];
2460 if (l
>= 0 && req
->nbytes
!= l
+ 1)
2463 local_irq_save(flags
);
2464 while (pmu_state
!= idle
)
2467 while ((via
[B
] & TACK
) == 0)
2469 polled_send_byte(v
, c
);
2471 l
= req
->nbytes
- 1;
2472 polled_send_byte(v
, l
);
2474 for (i
= 1; i
<= l
; ++i
)
2475 polled_send_byte(v
, req
->data
[i
]);
2477 l
= pmu_data_len
[c
][1];
2479 l
= polled_recv_byte(v
);
2480 for (i
= 0; i
< l
; ++i
)
2481 req
->reply
[i
+ req
->reply_len
] = polled_recv_byte(v
);
2486 local_irq_restore(flags
);
2490 /* N.B. This doesn't work on the 3400 */
2491 void pmu_blink(int n
)
2493 struct adb_request req
;
2495 memset(&req
, 0, sizeof(req
));
2497 for (; n
> 0; --n
) {
2504 req
.reply
[0] = ADB_RET_OK
;
2506 req
.reply_expected
= 0;
2507 pmu_polled_request(&req
);
2515 req
.reply
[0] = ADB_RET_OK
;
2517 req
.reply_expected
= 0;
2518 pmu_polled_request(&req
);
2523 #endif /* DEBUG_SLEEP */
2525 #if defined(CONFIG_SUSPEND) && defined(CONFIG_PPC32)
2526 int pmu_sys_suspended
;
2528 static int pmu_sys_suspend(struct sys_device
*sysdev
, pm_message_t state
)
2530 if (state
.event
!= PM_EVENT_SUSPEND
|| pmu_sys_suspended
)
2533 /* Suspend PMU event interrupts */\
2535 pmu_sys_suspended
= 1;
2537 #ifdef CONFIG_PMAC_BACKLIGHT
2538 /* Tell backlight code not to muck around with the chip anymore */
2539 pmu_backlight_set_sleep(1);
2545 static int pmu_sys_resume(struct sys_device
*sysdev
)
2547 struct adb_request req
;
2549 if (!pmu_sys_suspended
)
2552 /* Tell PMU we are ready */
2553 pmu_request(&req
, NULL
, 2, PMU_SYSTEM_READY
, 2);
2554 pmu_wait_complete(&req
);
2556 #ifdef CONFIG_PMAC_BACKLIGHT
2557 /* Tell backlight code it can use the chip again */
2558 pmu_backlight_set_sleep(0);
2560 /* Resume PMU event interrupts */
2562 pmu_sys_suspended
= 0;
2567 #endif /* CONFIG_SUSPEND && CONFIG_PPC32 */
2569 static struct sysdev_class pmu_sysclass
= {
2573 static struct sys_device device_pmu
= {
2574 .cls
= &pmu_sysclass
,
2577 static struct sysdev_driver driver_pmu
= {
2578 #if defined(CONFIG_SUSPEND) && defined(CONFIG_PPC32)
2579 .suspend
= &pmu_sys_suspend
,
2580 .resume
= &pmu_sys_resume
,
2581 #endif /* CONFIG_SUSPEND && CONFIG_PPC32 */
2584 static int __init
init_pmu_sysfs(void)
2588 rc
= sysdev_class_register(&pmu_sysclass
);
2590 printk(KERN_ERR
"Failed registering PMU sys class\n");
2593 rc
= sysdev_register(&device_pmu
);
2595 printk(KERN_ERR
"Failed registering PMU sys device\n");
2598 rc
= sysdev_driver_register(&pmu_sysclass
, &driver_pmu
);
2600 printk(KERN_ERR
"Failed registering PMU sys driver\n");
2606 subsys_initcall(init_pmu_sysfs
);
2608 EXPORT_SYMBOL(pmu_request
);
2609 EXPORT_SYMBOL(pmu_queue_request
);
2610 EXPORT_SYMBOL(pmu_poll
);
2611 EXPORT_SYMBOL(pmu_poll_adb
);
2612 EXPORT_SYMBOL(pmu_wait_complete
);
2613 EXPORT_SYMBOL(pmu_suspend
);
2614 EXPORT_SYMBOL(pmu_resume
);
2615 EXPORT_SYMBOL(pmu_unlock
);
2616 #if defined(CONFIG_PPC32)
2617 EXPORT_SYMBOL(pmu_enable_irled
);
2618 EXPORT_SYMBOL(pmu_battery_count
);
2619 EXPORT_SYMBOL(pmu_batteries
);
2620 EXPORT_SYMBOL(pmu_power_flags
);
2621 #endif /* CONFIG_SUSPEND && CONFIG_PPC32 */