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/mutex.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 DEFINE_MUTEX(pmu_info_proc_mutex
);
77 static volatile unsigned char __iomem
*via
;
79 /* VIA registers - spaced 0x200 bytes apart */
80 #define RS 0x200 /* skip between registers */
81 #define B 0 /* B-side data */
82 #define A RS /* A-side data */
83 #define DIRB (2*RS) /* B-side direction (1=output) */
84 #define DIRA (3*RS) /* A-side direction (1=output) */
85 #define T1CL (4*RS) /* Timer 1 ctr/latch (low 8 bits) */
86 #define T1CH (5*RS) /* Timer 1 counter (high 8 bits) */
87 #define T1LL (6*RS) /* Timer 1 latch (low 8 bits) */
88 #define T1LH (7*RS) /* Timer 1 latch (high 8 bits) */
89 #define T2CL (8*RS) /* Timer 2 ctr/latch (low 8 bits) */
90 #define T2CH (9*RS) /* Timer 2 counter (high 8 bits) */
91 #define SR (10*RS) /* Shift register */
92 #define ACR (11*RS) /* Auxiliary control register */
93 #define PCR (12*RS) /* Peripheral control register */
94 #define IFR (13*RS) /* Interrupt flag register */
95 #define IER (14*RS) /* Interrupt enable register */
96 #define ANH (15*RS) /* A-side data, no handshake */
98 /* Bits in B data register: both active low */
99 #define TACK 0x08 /* Transfer acknowledge (input) */
100 #define TREQ 0x10 /* Transfer request (output) */
103 #define SR_CTRL 0x1c /* Shift register control bits */
104 #define SR_EXT 0x0c /* Shift on external clock */
105 #define SR_OUT 0x10 /* Shift out if 1 */
107 /* Bits in IFR and IER */
108 #define IER_SET 0x80 /* set bits in IER */
109 #define IER_CLR 0 /* clear bits in IER */
110 #define SR_INT 0x04 /* Shift register full/empty */
112 #define CB1_INT 0x10 /* transition on CB1 input */
114 static volatile enum pmu_state
{
123 static volatile enum int_data_state
{
128 } int_data_state
[2] = { int_data_empty
, int_data_empty
};
130 static struct adb_request
*current_req
;
131 static struct adb_request
*last_req
;
132 static struct adb_request
*req_awaiting_reply
;
133 static unsigned char interrupt_data
[2][32];
134 static int interrupt_data_len
[2];
135 static int int_data_last
;
136 static unsigned char *reply_ptr
;
137 static int data_index
;
139 static volatile int adb_int_pending
;
140 static volatile int disable_poll
;
141 static struct device_node
*vias
;
142 static int pmu_kind
= PMU_UNKNOWN
;
143 static int pmu_fully_inited
;
144 static int pmu_has_adb
;
145 static struct device_node
*gpio_node
;
146 static unsigned char __iomem
*gpio_reg
;
147 static int gpio_irq
= NO_IRQ
;
148 static int gpio_irq_enabled
= -1;
149 static volatile int pmu_suspended
;
150 static spinlock_t pmu_lock
;
151 static u8 pmu_intr_mask
;
152 static int pmu_version
;
153 static int drop_interrupts
;
154 #if defined(CONFIG_SUSPEND) && defined(CONFIG_PPC32)
155 static int option_lid_wakeup
= 1;
156 #endif /* CONFIG_SUSPEND && CONFIG_PPC32 */
157 static unsigned long async_req_locks
;
158 static unsigned int pmu_irq_stats
[11];
160 static struct proc_dir_entry
*proc_pmu_root
;
161 static struct proc_dir_entry
*proc_pmu_info
;
162 static struct proc_dir_entry
*proc_pmu_irqstats
;
163 static struct proc_dir_entry
*proc_pmu_options
;
164 static int option_server_mode
;
166 int pmu_battery_count
;
168 unsigned int pmu_power_flags
= PMU_PWR_AC_PRESENT
;
169 struct pmu_battery_info pmu_batteries
[PMU_MAX_BATTERIES
];
170 static int query_batt_timer
= BATTERY_POLLING_COUNT
;
171 static struct adb_request batt_req
;
172 static struct proc_dir_entry
*proc_pmu_batt
[PMU_MAX_BATTERIES
];
178 static int adb_dev_map
;
179 static int pmu_adb_flags
;
181 static int pmu_probe(void);
182 static int pmu_init(void);
183 static int pmu_send_request(struct adb_request
*req
, int sync
);
184 static int pmu_adb_autopoll(int devs
);
185 static int pmu_adb_reset_bus(void);
186 #endif /* CONFIG_ADB */
188 static int init_pmu(void);
189 static void pmu_start(void);
190 static irqreturn_t
via_pmu_interrupt(int irq
, void *arg
);
191 static irqreturn_t
gpio1_interrupt(int irq
, void *arg
);
192 static const struct file_operations pmu_info_proc_fops
;
193 static const struct file_operations pmu_irqstats_proc_fops
;
194 static void pmu_pass_intr(unsigned char *data
, int len
);
195 static const struct file_operations pmu_battery_proc_fops
;
196 static const struct file_operations pmu_options_proc_fops
;
199 struct adb_driver via_pmu_driver
= {
208 #endif /* CONFIG_ADB */
210 extern void low_sleep_handler(void);
211 extern void enable_kernel_altivec(void);
212 extern void enable_kernel_fp(void);
215 int pmu_polled_request(struct adb_request
*req
);
216 void pmu_blink(int n
);
220 * This table indicates for each PMU opcode:
221 * - the number of data bytes to be sent with the command, or -1
222 * if a length byte should be sent,
223 * - the number of response bytes which the PMU will return, or
224 * -1 if it will send a length byte.
226 static const s8 pmu_data_len
[256][2] = {
227 /* 0 1 2 3 4 5 6 7 */
228 /*00*/ {-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
229 /*08*/ {-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},
230 /*10*/ { 1, 0},{ 1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
231 /*18*/ { 0, 1},{ 0, 1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{ 0, 0},
232 /*20*/ {-1, 0},{ 0, 0},{ 2, 0},{ 1, 0},{ 1, 0},{-1, 0},{-1, 0},{-1, 0},
233 /*28*/ { 0,-1},{ 0,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{ 0,-1},
234 /*30*/ { 4, 0},{20, 0},{-1, 0},{ 3, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
235 /*38*/ { 0, 4},{ 0,20},{ 2,-1},{ 2, 1},{ 3,-1},{-1,-1},{-1,-1},{ 4, 0},
236 /*40*/ { 1, 0},{ 1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
237 /*48*/ { 0, 1},{ 0, 1},{-1,-1},{ 1, 0},{ 1, 0},{-1,-1},{-1,-1},{-1,-1},
238 /*50*/ { 1, 0},{ 0, 0},{ 2, 0},{ 2, 0},{-1, 0},{ 1, 0},{ 3, 0},{ 1, 0},
239 /*58*/ { 0, 1},{ 1, 0},{ 0, 2},{ 0, 2},{ 0,-1},{-1,-1},{-1,-1},{-1,-1},
240 /*60*/ { 2, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
241 /*68*/ { 0, 3},{ 0, 3},{ 0, 2},{ 0, 8},{ 0,-1},{ 0,-1},{-1,-1},{-1,-1},
242 /*70*/ { 1, 0},{ 1, 0},{ 1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
243 /*78*/ { 0,-1},{ 0,-1},{-1,-1},{-1,-1},{-1,-1},{ 5, 1},{ 4, 1},{ 4, 1},
244 /*80*/ { 4, 0},{-1, 0},{ 0, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
245 /*88*/ { 0, 5},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},
246 /*90*/ { 1, 0},{ 2, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
247 /*98*/ { 0, 1},{ 0, 1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},
248 /*a0*/ { 2, 0},{ 2, 0},{ 2, 0},{ 4, 0},{-1, 0},{ 0, 0},{-1, 0},{-1, 0},
249 /*a8*/ { 1, 1},{ 1, 0},{ 3, 0},{ 2, 0},{-1,-1},{-1,-1},{-1,-1},{-1,-1},
250 /*b0*/ {-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
251 /*b8*/ {-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},
252 /*c0*/ {-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
253 /*c8*/ {-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},
254 /*d0*/ { 0, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
255 /*d8*/ { 1, 1},{ 1, 1},{-1,-1},{-1,-1},{ 0, 1},{ 0,-1},{-1,-1},{-1,-1},
256 /*e0*/ {-1, 0},{ 4, 0},{ 0, 1},{-1, 0},{-1, 0},{ 4, 0},{-1, 0},{-1, 0},
257 /*e8*/ { 3,-1},{-1,-1},{ 0, 1},{-1,-1},{ 0,-1},{-1,-1},{-1,-1},{ 0, 0},
258 /*f0*/ {-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},{-1, 0},
259 /*f8*/ {-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},{-1,-1},
262 static char *pbook_type
[] = {
264 "PowerBook 2400/3400/3500(G3)",
265 "PowerBook G3 Series",
270 int __init
find_via_pmu(void)
277 vias
= of_find_node_by_name(NULL
, "via-pmu");
281 reg
= of_get_property(vias
, "reg", NULL
);
283 printk(KERN_ERR
"via-pmu: No \"reg\" property !\n");
286 taddr
= of_translate_address(vias
, reg
);
287 if (taddr
== OF_BAD_ADDR
) {
288 printk(KERN_ERR
"via-pmu: Can't translate address !\n");
292 spin_lock_init(&pmu_lock
);
296 pmu_intr_mask
= PMU_INT_PCEJECT
|
301 if (vias
->parent
->name
&& ((strcmp(vias
->parent
->name
, "ohare") == 0)
302 || of_device_is_compatible(vias
->parent
, "ohare")))
303 pmu_kind
= PMU_OHARE_BASED
;
304 else if (of_device_is_compatible(vias
->parent
, "paddington"))
305 pmu_kind
= PMU_PADDINGTON_BASED
;
306 else if (of_device_is_compatible(vias
->parent
, "heathrow"))
307 pmu_kind
= PMU_HEATHROW_BASED
;
308 else if (of_device_is_compatible(vias
->parent
, "Keylargo")
309 || of_device_is_compatible(vias
->parent
, "K2-Keylargo")) {
310 struct device_node
*gpiop
;
311 struct device_node
*adbp
;
312 u64 gaddr
= OF_BAD_ADDR
;
314 pmu_kind
= PMU_KEYLARGO_BASED
;
315 adbp
= of_find_node_by_type(NULL
, "adb");
316 pmu_has_adb
= (adbp
!= NULL
);
318 pmu_intr_mask
= PMU_INT_PCEJECT
|
324 gpiop
= of_find_node_by_name(NULL
, "gpio");
326 reg
= of_get_property(gpiop
, "reg", NULL
);
328 gaddr
= of_translate_address(gpiop
, reg
);
329 if (gaddr
!= OF_BAD_ADDR
)
330 gpio_reg
= ioremap(gaddr
, 0x10);
332 if (gpio_reg
== NULL
) {
333 printk(KERN_ERR
"via-pmu: Can't find GPIO reg !\n");
337 pmu_kind
= PMU_UNKNOWN
;
339 via
= ioremap(taddr
, 0x2000);
341 printk(KERN_ERR
"via-pmu: Can't map address !\n");
345 out_8(&via
[IER
], IER_CLR
| 0x7f); /* disable all intrs */
346 out_8(&via
[IFR
], 0x7f); /* clear IFR */
355 printk(KERN_INFO
"PMU driver v%d initialized for %s, firmware: %02x\n",
356 PMU_DRIVER_VERSION
, pbook_type
[pmu_kind
], pmu_version
);
358 sys_ctrler
= SYS_CTRLER_PMU
;
371 static int pmu_probe(void)
373 return vias
== NULL
? -ENODEV
: 0;
376 static int __init
pmu_init(void)
382 #endif /* CONFIG_ADB */
385 * We can't wait until pmu_init gets called, that happens too late.
386 * It happens after IDE and SCSI initialization, which can take a few
387 * seconds, and by that time the PMU could have given up on us and
389 * Thus this is called with arch_initcall rather than device_initcall.
391 static int __init
via_pmu_start(void)
398 batt_req
.complete
= 1;
400 irq
= irq_of_parse_and_map(vias
, 0);
402 printk(KERN_ERR
"via-pmu: can't map interrupt\n");
405 /* We set IRQF_NO_SUSPEND because we don't want the interrupt
406 * to be disabled between the 2 passes of driver suspend, we
407 * control our own disabling for that one
409 if (request_irq(irq
, via_pmu_interrupt
, IRQF_NO_SUSPEND
,
410 "VIA-PMU", (void *)0)) {
411 printk(KERN_ERR
"via-pmu: can't request irq %d\n", irq
);
415 if (pmu_kind
== PMU_KEYLARGO_BASED
) {
416 gpio_node
= of_find_node_by_name(NULL
, "extint-gpio1");
417 if (gpio_node
== NULL
)
418 gpio_node
= of_find_node_by_name(NULL
,
421 gpio_irq
= irq_of_parse_and_map(gpio_node
, 0);
423 if (gpio_irq
!= NO_IRQ
) {
424 if (request_irq(gpio_irq
, gpio1_interrupt
, IRQF_TIMER
,
425 "GPIO1 ADB", (void *)0))
426 printk(KERN_ERR
"pmu: can't get irq %d"
427 " (GPIO1)\n", gpio_irq
);
429 gpio_irq_enabled
= 1;
433 /* Enable interrupts */
434 out_8(&via
[IER
], IER_SET
| SR_INT
| CB1_INT
);
436 pmu_fully_inited
= 1;
438 /* Make sure PMU settle down before continuing. This is _very_ important
439 * since the IDE probe may shut interrupts down for quite a bit of time. If
440 * a PMU communication is pending while this happens, the PMU may timeout
441 * Not that on Core99 machines, the PMU keeps sending us environement
442 * messages, we should find a way to either fix IDE or make it call
443 * pmu_suspend() before masking interrupts. This can also happens while
444 * scolling with some fbdevs.
448 } while (pmu_state
!= idle
);
453 arch_initcall(via_pmu_start
);
456 * This has to be done after pci_init, which is a subsys_initcall.
458 static int __init
via_pmu_dev_init(void)
463 #ifdef CONFIG_PMAC_BACKLIGHT
464 /* Initialize backlight */
465 pmu_backlight_init();
469 if (of_machine_is_compatible("AAPL,3400/2400") ||
470 of_machine_is_compatible("AAPL,3500")) {
471 int mb
= pmac_call_feature(PMAC_FTR_GET_MB_INFO
,
472 NULL
, PMAC_MB_INFO_MODEL
, 0);
473 pmu_battery_count
= 1;
474 if (mb
== PMAC_TYPE_COMET
)
475 pmu_batteries
[0].flags
|= PMU_BATT_TYPE_COMET
;
477 pmu_batteries
[0].flags
|= PMU_BATT_TYPE_HOOPER
;
478 } else if (of_machine_is_compatible("AAPL,PowerBook1998") ||
479 of_machine_is_compatible("PowerBook1,1")) {
480 pmu_battery_count
= 2;
481 pmu_batteries
[0].flags
|= PMU_BATT_TYPE_SMART
;
482 pmu_batteries
[1].flags
|= PMU_BATT_TYPE_SMART
;
484 struct device_node
* prim
=
485 of_find_node_by_name(NULL
, "power-mgt");
486 const u32
*prim_info
= NULL
;
488 prim_info
= of_get_property(prim
, "prim-info", NULL
);
490 /* Other stuffs here yet unknown */
491 pmu_battery_count
= (prim_info
[6] >> 16) & 0xff;
492 pmu_batteries
[0].flags
|= PMU_BATT_TYPE_SMART
;
493 if (pmu_battery_count
> 1)
494 pmu_batteries
[1].flags
|= PMU_BATT_TYPE_SMART
;
498 #endif /* CONFIG_PPC32 */
500 /* Create /proc/pmu */
501 proc_pmu_root
= proc_mkdir("pmu", NULL
);
505 for (i
=0; i
<pmu_battery_count
; i
++) {
507 sprintf(title
, "battery_%ld", i
);
508 proc_pmu_batt
[i
] = proc_create_data(title
, 0, proc_pmu_root
,
509 &pmu_battery_proc_fops
, (void *)i
);
512 proc_pmu_info
= proc_create("info", 0, proc_pmu_root
, &pmu_info_proc_fops
);
513 proc_pmu_irqstats
= proc_create("interrupts", 0, proc_pmu_root
,
514 &pmu_irqstats_proc_fops
);
515 proc_pmu_options
= proc_create("options", 0600, proc_pmu_root
,
516 &pmu_options_proc_fops
);
521 device_initcall(via_pmu_dev_init
);
527 struct adb_request req
;
529 out_8(&via
[B
], via
[B
] | TREQ
); /* negate TREQ */
530 out_8(&via
[DIRB
], (via
[DIRB
] | TREQ
) & ~TACK
); /* TACK in, TREQ out */
532 pmu_request(&req
, NULL
, 2, PMU_SET_INTR_MASK
, pmu_intr_mask
);
534 while (!req
.complete
) {
536 printk(KERN_ERR
"init_pmu: no response from PMU\n");
543 /* ack all pending interrupts */
545 interrupt_data
[0][0] = 1;
546 while (interrupt_data
[0][0] || pmu_state
!= idle
) {
548 printk(KERN_ERR
"init_pmu: timed out acking intrs\n");
551 if (pmu_state
== idle
)
553 via_pmu_interrupt(0, NULL
);
557 /* Tell PMU we are ready. */
558 if (pmu_kind
== PMU_KEYLARGO_BASED
) {
559 pmu_request(&req
, NULL
, 2, PMU_SYSTEM_READY
, 2);
560 while (!req
.complete
)
564 /* Read PMU version */
565 pmu_request(&req
, NULL
, 1, PMU_GET_VERSION
);
566 pmu_wait_complete(&req
);
567 if (req
.reply_len
> 0)
568 pmu_version
= req
.reply
[0];
570 /* Read server mode setting */
571 if (pmu_kind
== PMU_KEYLARGO_BASED
) {
572 pmu_request(&req
, NULL
, 2, PMU_POWER_EVENTS
,
573 PMU_PWR_GET_POWERUP_EVENTS
);
574 pmu_wait_complete(&req
);
575 if (req
.reply_len
== 2) {
576 if (req
.reply
[1] & PMU_PWR_WAKEUP_AC_INSERT
)
577 option_server_mode
= 1;
578 printk(KERN_INFO
"via-pmu: Server Mode is %s\n",
579 option_server_mode
? "enabled" : "disabled");
591 static void pmu_set_server_mode(int server_mode
)
593 struct adb_request req
;
595 if (pmu_kind
!= PMU_KEYLARGO_BASED
)
598 option_server_mode
= server_mode
;
599 pmu_request(&req
, NULL
, 2, PMU_POWER_EVENTS
, PMU_PWR_GET_POWERUP_EVENTS
);
600 pmu_wait_complete(&req
);
601 if (req
.reply_len
< 2)
604 pmu_request(&req
, NULL
, 4, PMU_POWER_EVENTS
,
605 PMU_PWR_SET_POWERUP_EVENTS
,
606 req
.reply
[0], PMU_PWR_WAKEUP_AC_INSERT
);
608 pmu_request(&req
, NULL
, 4, PMU_POWER_EVENTS
,
609 PMU_PWR_CLR_POWERUP_EVENTS
,
610 req
.reply
[0], PMU_PWR_WAKEUP_AC_INSERT
);
611 pmu_wait_complete(&req
);
614 /* This new version of the code for 2400/3400/3500 powerbooks
615 * is inspired from the implementation in gkrellm-pmu
618 done_battery_state_ohare(struct adb_request
* req
)
622 * 0x01 : AC indicator
624 * 0x04 : battery exist
627 * 0x20 : full charged
628 * 0x40 : pcharge reset
629 * 0x80 : battery exist
631 * [1][2] : battery voltage
632 * [3] : CPU temperature
633 * [4] : battery temperature
638 unsigned int bat_flags
= PMU_BATT_TYPE_HOOPER
;
639 long pcharge
, charge
, vb
, vmax
, lmax
;
640 long vmax_charging
, vmax_charged
;
641 long amperage
, voltage
, time
, max
;
642 int mb
= pmac_call_feature(PMAC_FTR_GET_MB_INFO
,
643 NULL
, PMAC_MB_INFO_MODEL
, 0);
645 if (req
->reply
[0] & 0x01)
646 pmu_power_flags
|= PMU_PWR_AC_PRESENT
;
648 pmu_power_flags
&= ~PMU_PWR_AC_PRESENT
;
650 if (mb
== PMAC_TYPE_COMET
) {
661 /* If battery installed */
662 if (req
->reply
[0] & 0x04) {
663 bat_flags
|= PMU_BATT_PRESENT
;
664 if (req
->reply
[0] & 0x02)
665 bat_flags
|= PMU_BATT_CHARGING
;
666 vb
= (req
->reply
[1] << 8) | req
->reply
[2];
667 voltage
= (vb
* 265 + 72665) / 10;
668 amperage
= req
->reply
[5];
669 if ((req
->reply
[0] & 0x01) == 0) {
671 vb
+= ((amperage
- 200) * 15)/100;
672 } else if (req
->reply
[0] & 0x02) {
673 vb
= (vb
* 97) / 100;
674 vmax
= vmax_charging
;
676 charge
= (100 * vb
) / vmax
;
677 if (req
->reply
[0] & 0x40) {
678 pcharge
= (req
->reply
[6] << 8) + req
->reply
[7];
682 pcharge
= 100 - pcharge
/ lmax
;
683 if (pcharge
< charge
)
687 time
= (charge
* 16440) / amperage
;
691 amperage
= -amperage
;
693 charge
= max
= amperage
= voltage
= time
= 0;
695 pmu_batteries
[pmu_cur_battery
].flags
= bat_flags
;
696 pmu_batteries
[pmu_cur_battery
].charge
= charge
;
697 pmu_batteries
[pmu_cur_battery
].max_charge
= max
;
698 pmu_batteries
[pmu_cur_battery
].amperage
= amperage
;
699 pmu_batteries
[pmu_cur_battery
].voltage
= voltage
;
700 pmu_batteries
[pmu_cur_battery
].time_remaining
= time
;
702 clear_bit(0, &async_req_locks
);
706 done_battery_state_smart(struct adb_request
* req
)
709 * [0] : format of this structure (known: 3,4,5)
722 * [4][5] : max charge
727 unsigned int bat_flags
= PMU_BATT_TYPE_SMART
;
729 unsigned int capa
, max
, voltage
;
731 if (req
->reply
[1] & 0x01)
732 pmu_power_flags
|= PMU_PWR_AC_PRESENT
;
734 pmu_power_flags
&= ~PMU_PWR_AC_PRESENT
;
737 capa
= max
= amperage
= voltage
= 0;
739 if (req
->reply
[1] & 0x04) {
740 bat_flags
|= PMU_BATT_PRESENT
;
741 switch(req
->reply
[0]) {
743 case 4: capa
= req
->reply
[2];
745 amperage
= *((signed char *)&req
->reply
[4]);
746 voltage
= req
->reply
[5];
748 case 5: capa
= (req
->reply
[2] << 8) | req
->reply
[3];
749 max
= (req
->reply
[4] << 8) | req
->reply
[5];
750 amperage
= *((signed short *)&req
->reply
[6]);
751 voltage
= (req
->reply
[8] << 8) | req
->reply
[9];
754 printk(KERN_WARNING
"pmu.c : unrecognized battery info, len: %d, %02x %02x %02x %02x\n",
755 req
->reply_len
, req
->reply
[0], req
->reply
[1], req
->reply
[2], req
->reply
[3]);
760 if ((req
->reply
[1] & 0x01) && (amperage
> 0))
761 bat_flags
|= PMU_BATT_CHARGING
;
763 pmu_batteries
[pmu_cur_battery
].flags
= bat_flags
;
764 pmu_batteries
[pmu_cur_battery
].charge
= capa
;
765 pmu_batteries
[pmu_cur_battery
].max_charge
= max
;
766 pmu_batteries
[pmu_cur_battery
].amperage
= amperage
;
767 pmu_batteries
[pmu_cur_battery
].voltage
= voltage
;
769 if ((req
->reply
[1] & 0x01) && (amperage
> 0))
770 pmu_batteries
[pmu_cur_battery
].time_remaining
771 = ((max
-capa
) * 3600) / amperage
;
773 pmu_batteries
[pmu_cur_battery
].time_remaining
774 = (capa
* 3600) / (-amperage
);
776 pmu_batteries
[pmu_cur_battery
].time_remaining
= 0;
778 pmu_cur_battery
= (pmu_cur_battery
+ 1) % pmu_battery_count
;
780 clear_bit(0, &async_req_locks
);
784 query_battery_state(void)
786 if (test_and_set_bit(0, &async_req_locks
))
788 if (pmu_kind
== PMU_OHARE_BASED
)
789 pmu_request(&batt_req
, done_battery_state_ohare
,
790 1, PMU_BATTERY_STATE
);
792 pmu_request(&batt_req
, done_battery_state_smart
,
793 2, PMU_SMART_BATTERY_STATE
, pmu_cur_battery
+1);
796 static int pmu_info_proc_show(struct seq_file
*m
, void *v
)
798 seq_printf(m
, "PMU driver version : %d\n", PMU_DRIVER_VERSION
);
799 seq_printf(m
, "PMU firmware version : %02x\n", pmu_version
);
800 seq_printf(m
, "AC Power : %d\n",
801 ((pmu_power_flags
& PMU_PWR_AC_PRESENT
) != 0) || pmu_battery_count
== 0);
802 seq_printf(m
, "Battery count : %d\n", pmu_battery_count
);
807 static int pmu_info_proc_open(struct inode
*inode
, struct file
*file
)
809 return single_open(file
, pmu_info_proc_show
, NULL
);
812 static const struct file_operations pmu_info_proc_fops
= {
813 .owner
= THIS_MODULE
,
814 .open
= pmu_info_proc_open
,
817 .release
= single_release
,
820 static int pmu_irqstats_proc_show(struct seq_file
*m
, void *v
)
823 static const char *irq_names
[] = {
824 "Total CB1 triggered events",
825 "Total GPIO1 triggered events",
826 "PC-Card eject button",
827 "Sound/Brightness button",
829 "Battery state change",
830 "Environment interrupt",
832 "Ghost interrupt (zero len)",
833 "Empty interrupt (empty mask)",
837 for (i
=0; i
<11; i
++) {
838 seq_printf(m
, " %2u: %10u (%s)\n",
839 i
, pmu_irq_stats
[i
], irq_names
[i
]);
844 static int pmu_irqstats_proc_open(struct inode
*inode
, struct file
*file
)
846 return single_open(file
, pmu_irqstats_proc_show
, NULL
);
849 static const struct file_operations pmu_irqstats_proc_fops
= {
850 .owner
= THIS_MODULE
,
851 .open
= pmu_irqstats_proc_open
,
854 .release
= single_release
,
857 static int pmu_battery_proc_show(struct seq_file
*m
, void *v
)
859 long batnum
= (long)m
->private;
862 seq_printf(m
, "flags : %08x\n", pmu_batteries
[batnum
].flags
);
863 seq_printf(m
, "charge : %d\n", pmu_batteries
[batnum
].charge
);
864 seq_printf(m
, "max_charge : %d\n", pmu_batteries
[batnum
].max_charge
);
865 seq_printf(m
, "current : %d\n", pmu_batteries
[batnum
].amperage
);
866 seq_printf(m
, "voltage : %d\n", pmu_batteries
[batnum
].voltage
);
867 seq_printf(m
, "time rem. : %d\n", pmu_batteries
[batnum
].time_remaining
);
871 static int pmu_battery_proc_open(struct inode
*inode
, struct file
*file
)
873 return single_open(file
, pmu_battery_proc_show
, PDE(inode
)->data
);
876 static const struct file_operations pmu_battery_proc_fops
= {
877 .owner
= THIS_MODULE
,
878 .open
= pmu_battery_proc_open
,
881 .release
= single_release
,
884 static int pmu_options_proc_show(struct seq_file
*m
, void *v
)
886 #if defined(CONFIG_SUSPEND) && defined(CONFIG_PPC32)
887 if (pmu_kind
== PMU_KEYLARGO_BASED
&&
888 pmac_call_feature(PMAC_FTR_SLEEP_STATE
,NULL
,0,-1) >= 0)
889 seq_printf(m
, "lid_wakeup=%d\n", option_lid_wakeup
);
891 if (pmu_kind
== PMU_KEYLARGO_BASED
)
892 seq_printf(m
, "server_mode=%d\n", option_server_mode
);
897 static int pmu_options_proc_open(struct inode
*inode
, struct file
*file
)
899 return single_open(file
, pmu_options_proc_show
, NULL
);
902 static ssize_t
pmu_options_proc_write(struct file
*file
,
903 const char __user
*buffer
, size_t count
, loff_t
*pos
)
907 size_t fcount
= count
;
913 if (copy_from_user(tmp
, buffer
, count
))
921 while(*val
&& (*val
!= '=')) {
931 #if defined(CONFIG_SUSPEND) && defined(CONFIG_PPC32)
932 if (pmu_kind
== PMU_KEYLARGO_BASED
&&
933 pmac_call_feature(PMAC_FTR_SLEEP_STATE
,NULL
,0,-1) >= 0)
934 if (!strcmp(label
, "lid_wakeup"))
935 option_lid_wakeup
= ((*val
) == '1');
937 if (pmu_kind
== PMU_KEYLARGO_BASED
&& !strcmp(label
, "server_mode")) {
939 new_value
= ((*val
) == '1');
940 if (new_value
!= option_server_mode
)
941 pmu_set_server_mode(new_value
);
946 static const struct file_operations pmu_options_proc_fops
= {
947 .owner
= THIS_MODULE
,
948 .open
= pmu_options_proc_open
,
951 .release
= single_release
,
952 .write
= pmu_options_proc_write
,
956 /* Send an ADB command */
957 static int pmu_send_request(struct adb_request
*req
, int sync
)
961 if ((vias
== NULL
) || (!pmu_fully_inited
)) {
968 switch (req
->data
[0]) {
970 for (i
= 0; i
< req
->nbytes
- 1; ++i
)
971 req
->data
[i
] = req
->data
[i
+1];
973 if (pmu_data_len
[req
->data
[0]][1] != 0) {
974 req
->reply
[0] = ADB_RET_OK
;
978 ret
= pmu_queue_request(req
);
981 switch (req
->data
[1]) {
983 if (req
->nbytes
!= 2)
985 req
->data
[0] = PMU_READ_RTC
;
988 req
->reply
[0] = CUDA_PACKET
;
990 req
->reply
[2] = CUDA_GET_TIME
;
991 ret
= pmu_queue_request(req
);
994 if (req
->nbytes
!= 6)
996 req
->data
[0] = PMU_SET_RTC
;
998 for (i
= 1; i
<= 4; ++i
)
999 req
->data
[i
] = req
->data
[i
+1];
1001 req
->reply
[0] = CUDA_PACKET
;
1003 req
->reply
[2] = CUDA_SET_TIME
;
1004 ret
= pmu_queue_request(req
);
1011 for (i
= req
->nbytes
- 1; i
> 1; --i
)
1012 req
->data
[i
+2] = req
->data
[i
];
1013 req
->data
[3] = req
->nbytes
- 2;
1014 req
->data
[2] = pmu_adb_flags
;
1015 /*req->data[1] = req->data[1];*/
1016 req
->data
[0] = PMU_ADB_CMD
;
1018 req
->reply_expected
= 1;
1020 ret
= pmu_queue_request(req
);
1029 while (!req
->complete
)
1035 /* Enable/disable autopolling */
1036 static int __pmu_adb_autopoll(int devs
)
1038 struct adb_request req
;
1041 pmu_request(&req
, NULL
, 5, PMU_ADB_CMD
, 0, 0x86,
1042 adb_dev_map
>> 8, adb_dev_map
);
1045 pmu_request(&req
, NULL
, 1, PMU_ADB_POLL_OFF
);
1048 while (!req
.complete
)
1053 static int pmu_adb_autopoll(int devs
)
1055 if ((vias
== NULL
) || (!pmu_fully_inited
) || !pmu_has_adb
)
1059 return __pmu_adb_autopoll(devs
);
1062 /* Reset the ADB bus */
1063 static int pmu_adb_reset_bus(void)
1065 struct adb_request req
;
1066 int save_autopoll
= adb_dev_map
;
1068 if ((vias
== NULL
) || (!pmu_fully_inited
) || !pmu_has_adb
)
1071 /* anyone got a better idea?? */
1072 __pmu_adb_autopoll(0);
1076 req
.data
[0] = PMU_ADB_CMD
;
1077 req
.data
[1] = ADB_BUSRESET
;
1082 req
.reply_expected
= 1;
1083 if (pmu_queue_request(&req
) != 0) {
1084 printk(KERN_ERR
"pmu_adb_reset_bus: pmu_queue_request failed\n");
1087 pmu_wait_complete(&req
);
1089 if (save_autopoll
!= 0)
1090 __pmu_adb_autopoll(save_autopoll
);
1094 #endif /* CONFIG_ADB */
1096 /* Construct and send a pmu request */
1098 pmu_request(struct adb_request
*req
, void (*done
)(struct adb_request
*),
1107 if (nbytes
< 0 || nbytes
> 32) {
1108 printk(KERN_ERR
"pmu_request: bad nbytes (%d)\n", nbytes
);
1112 req
->nbytes
= nbytes
;
1114 va_start(list
, nbytes
);
1115 for (i
= 0; i
< nbytes
; ++i
)
1116 req
->data
[i
] = va_arg(list
, int);
1119 req
->reply_expected
= 0;
1120 return pmu_queue_request(req
);
1124 pmu_queue_request(struct adb_request
*req
)
1126 unsigned long flags
;
1133 if (req
->nbytes
<= 0) {
1137 nsend
= pmu_data_len
[req
->data
[0]][0];
1138 if (nsend
>= 0 && req
->nbytes
!= nsend
+ 1) {
1147 spin_lock_irqsave(&pmu_lock
, flags
);
1148 if (current_req
!= 0) {
1149 last_req
->next
= req
;
1154 if (pmu_state
== idle
)
1157 spin_unlock_irqrestore(&pmu_lock
, flags
);
1165 /* Sightly increased the delay, I had one occurrence of the message
1169 while ((in_8(&via
[B
]) & TACK
) == 0) {
1170 if (--timeout
< 0) {
1171 printk(KERN_ERR
"PMU not responding (!ack)\n");
1178 /* New PMU seems to be very sensitive to those timings, so we make sure
1179 * PCI is flushed immediately */
1183 volatile unsigned char __iomem
*v
= via
;
1185 out_8(&v
[ACR
], in_8(&v
[ACR
]) | SR_OUT
| SR_EXT
);
1187 out_8(&v
[B
], in_8(&v
[B
]) & ~TREQ
); /* assert TREQ */
1194 volatile unsigned char __iomem
*v
= via
;
1196 out_8(&v
[ACR
], (in_8(&v
[ACR
]) & ~SR_OUT
) | SR_EXT
);
1197 in_8(&v
[SR
]); /* resets SR */
1198 out_8(&v
[B
], in_8(&v
[B
]) & ~TREQ
);
1203 pmu_done(struct adb_request
*req
)
1205 void (*done
)(struct adb_request
*) = req
->done
;
1208 /* Here, we assume that if the request has a done member, the
1209 * struct request will survive to setting req->complete to 1
1218 struct adb_request
*req
;
1220 /* assert pmu_state == idle */
1221 /* get the packet to send */
1223 if (req
== 0 || pmu_state
!= idle
1224 || (/*req->reply_expected && */req_awaiting_reply
))
1227 pmu_state
= sending
;
1229 data_len
= pmu_data_len
[req
->data
[0]][0];
1231 /* Sounds safer to make sure ACK is high before writing. This helped
1232 * kill a problem with ADB and some iBooks
1235 /* set the shift register to shift out and send a byte */
1236 send_byte(req
->data
[0]);
1246 via_pmu_interrupt(0, NULL
);
1256 /* Kicks ADB read when PMU is suspended */
1257 adb_int_pending
= 1;
1259 via_pmu_interrupt(0, NULL
);
1260 } while (pmu_suspended
&& (adb_int_pending
|| pmu_state
!= idle
1261 || req_awaiting_reply
));
1265 pmu_wait_complete(struct adb_request
*req
)
1269 while((pmu_state
!= idle
&& pmu_state
!= locked
) || !req
->complete
)
1270 via_pmu_interrupt(0, NULL
);
1273 /* This function loops until the PMU is idle and prevents it from
1274 * anwsering to ADB interrupts. pmu_request can still be called.
1275 * This is done to avoid spurrious shutdowns when we know we'll have
1276 * interrupts switched off for a long time
1281 unsigned long flags
;
1286 spin_lock_irqsave(&pmu_lock
, flags
);
1288 if (pmu_suspended
> 1) {
1289 spin_unlock_irqrestore(&pmu_lock
, flags
);
1294 spin_unlock_irqrestore(&pmu_lock
, flags
);
1295 if (req_awaiting_reply
)
1296 adb_int_pending
= 1;
1297 via_pmu_interrupt(0, NULL
);
1298 spin_lock_irqsave(&pmu_lock
, flags
);
1299 if (!adb_int_pending
&& pmu_state
== idle
&& !req_awaiting_reply
) {
1301 disable_irq_nosync(gpio_irq
);
1302 out_8(&via
[IER
], CB1_INT
| IER_CLR
);
1303 spin_unlock_irqrestore(&pmu_lock
, flags
);
1312 unsigned long flags
;
1314 if (!via
|| (pmu_suspended
< 1))
1317 spin_lock_irqsave(&pmu_lock
, flags
);
1319 if (pmu_suspended
> 0) {
1320 spin_unlock_irqrestore(&pmu_lock
, flags
);
1323 adb_int_pending
= 1;
1325 enable_irq(gpio_irq
);
1326 out_8(&via
[IER
], CB1_INT
| IER_SET
);
1327 spin_unlock_irqrestore(&pmu_lock
, flags
);
1331 /* Interrupt data could be the result data from an ADB cmd */
1333 pmu_handle_data(unsigned char *data
, int len
)
1335 unsigned char ints
, pirq
;
1339 if (drop_interrupts
|| len
< 1) {
1340 adb_int_pending
= 0;
1345 /* Get PMU interrupt mask */
1348 /* Record zero interrupts for stats */
1352 /* Hack to deal with ADB autopoll flag */
1353 if (ints
& PMU_INT_ADB
)
1354 ints
&= ~(PMU_INT_ADB_AUTO
| PMU_INT_AUTO_SRQ_POLL
);
1359 if (i
> pmu_irq_stats
[10])
1360 pmu_irq_stats
[10] = i
;
1364 for (pirq
= 0; pirq
< 8; pirq
++)
1365 if (ints
& (1 << pirq
))
1367 pmu_irq_stats
[pirq
]++;
1369 ints
&= ~(1 << pirq
);
1371 /* Note: for some reason, we get an interrupt with len=1,
1372 * data[0]==0 after each normal ADB interrupt, at least
1373 * on the Pismo. Still investigating... --BenH
1375 if ((1 << pirq
) & PMU_INT_ADB
) {
1376 if ((data
[0] & PMU_INT_ADB_AUTO
) == 0) {
1377 struct adb_request
*req
= req_awaiting_reply
;
1379 printk(KERN_ERR
"PMU: extra ADB reply\n");
1382 req_awaiting_reply
= NULL
;
1386 memcpy(req
->reply
, data
+ 1, len
- 1);
1387 req
->reply_len
= len
- 1;
1391 if (len
== 4 && data
[1] == 0x2c) {
1392 extern int xmon_wants_key
, xmon_adb_keycode
;
1393 if (xmon_wants_key
) {
1394 xmon_adb_keycode
= data
[2];
1400 * XXX On the [23]400 the PMU gives us an up
1401 * event for keycodes 0x74 or 0x75 when the PC
1402 * card eject buttons are released, so we
1403 * ignore those events.
1405 if (!(pmu_kind
== PMU_OHARE_BASED
&& len
== 4
1406 && data
[1] == 0x2c && data
[3] == 0xff
1407 && (data
[2] & ~1) == 0xf4))
1408 adb_input(data
+1, len
-1, 1);
1409 #endif /* CONFIG_ADB */
1412 /* Sound/brightness button pressed */
1413 else if ((1 << pirq
) & PMU_INT_SNDBRT
) {
1414 #ifdef CONFIG_PMAC_BACKLIGHT
1416 pmac_backlight_set_legacy_brightness_pmu(data
[1] >> 4);
1419 /* Tick interrupt */
1420 else if ((1 << pirq
) & PMU_INT_TICK
) {
1421 /* Environement or tick interrupt, query batteries */
1422 if (pmu_battery_count
) {
1423 if ((--query_batt_timer
) == 0) {
1424 query_battery_state();
1425 query_batt_timer
= BATTERY_POLLING_COUNT
;
1429 else if ((1 << pirq
) & PMU_INT_ENVIRONMENT
) {
1430 if (pmu_battery_count
)
1431 query_battery_state();
1432 pmu_pass_intr(data
, len
);
1433 /* len == 6 is probably a bad check. But how do I
1434 * know what PMU versions send what events here? */
1436 via_pmu_event(PMU_EVT_POWER
, !!(data
[1]&8));
1437 via_pmu_event(PMU_EVT_LID
, data
[1]&1);
1440 pmu_pass_intr(data
, len
);
1445 static struct adb_request
*
1448 struct adb_request
*req
;
1451 if (via
[B
] & TREQ
) {
1452 printk(KERN_ERR
"PMU: spurious SR intr (%x)\n", via
[B
]);
1453 out_8(&via
[IFR
], SR_INT
);
1456 /* The ack may not yet be low when we get the interrupt */
1457 while ((in_8(&via
[B
]) & TACK
) != 0)
1460 /* if reading grab the byte, and reset the interrupt */
1461 if (pmu_state
== reading
|| pmu_state
== reading_intr
)
1462 bite
= in_8(&via
[SR
]);
1464 /* reset TREQ and wait for TACK to go high */
1465 out_8(&via
[B
], in_8(&via
[B
]) | TREQ
);
1468 switch (pmu_state
) {
1472 data_len
= req
->nbytes
- 1;
1473 send_byte(data_len
);
1476 if (data_index
<= data_len
) {
1477 send_byte(req
->data
[data_index
++]);
1481 data_len
= pmu_data_len
[req
->data
[0]][1];
1482 if (data_len
== 0) {
1484 current_req
= req
->next
;
1485 if (req
->reply_expected
)
1486 req_awaiting_reply
= req
;
1490 pmu_state
= reading
;
1492 reply_ptr
= req
->reply
+ req
->reply_len
;
1500 pmu_state
= reading_intr
;
1501 reply_ptr
= interrupt_data
[int_data_last
];
1503 if (gpio_irq
>= 0 && !gpio_irq_enabled
) {
1504 enable_irq(gpio_irq
);
1505 gpio_irq_enabled
= 1;
1511 if (data_len
== -1) {
1514 printk(KERN_ERR
"PMU: bad reply len %d\n", bite
);
1515 } else if (data_index
< 32) {
1516 reply_ptr
[data_index
++] = bite
;
1518 if (data_index
< data_len
) {
1523 if (pmu_state
== reading_intr
) {
1525 int_data_state
[int_data_last
] = int_data_ready
;
1526 interrupt_data_len
[int_data_last
] = data_len
;
1530 * For PMU sleep and freq change requests, we lock the
1531 * PMU until it's explicitly unlocked. This avoids any
1532 * spurrious event polling getting in
1534 current_req
= req
->next
;
1535 req
->reply_len
+= data_index
;
1536 if (req
->data
[0] == PMU_SLEEP
|| req
->data
[0] == PMU_CPU_SPEED
)
1545 printk(KERN_ERR
"via_pmu_interrupt: unknown state %d?\n",
1552 via_pmu_interrupt(int irq
, void *arg
)
1554 unsigned long flags
;
1558 struct adb_request
*req
= NULL
;
1561 /* This is a bit brutal, we can probably do better */
1562 spin_lock_irqsave(&pmu_lock
, flags
);
1566 intr
= in_8(&via
[IFR
]) & (SR_INT
| CB1_INT
);
1570 if (++nloop
> 1000) {
1571 printk(KERN_DEBUG
"PMU: stuck in intr loop, "
1572 "intr=%x, ier=%x pmu_state=%d\n",
1573 intr
, in_8(&via
[IER
]), pmu_state
);
1576 out_8(&via
[IFR
], intr
);
1577 if (intr
& CB1_INT
) {
1578 adb_int_pending
= 1;
1581 if (intr
& SR_INT
) {
1582 req
= pmu_sr_intr();
1589 if (pmu_state
== idle
) {
1590 if (adb_int_pending
) {
1591 if (int_data_state
[0] == int_data_empty
)
1593 else if (int_data_state
[1] == int_data_empty
)
1598 int_data_state
[int_data_last
] = int_data_fill
;
1599 /* Sounds safer to make sure ACK is high before writing.
1600 * This helped kill a problem with ADB and some iBooks
1603 send_byte(PMU_INT_ACK
);
1604 adb_int_pending
= 0;
1605 } else if (current_req
)
1609 /* Mark the oldest buffer for flushing */
1610 if (int_data_state
[!int_data_last
] == int_data_ready
) {
1611 int_data_state
[!int_data_last
] = int_data_flush
;
1612 int_data
= !int_data_last
;
1613 } else if (int_data_state
[int_data_last
] == int_data_ready
) {
1614 int_data_state
[int_data_last
] = int_data_flush
;
1615 int_data
= int_data_last
;
1618 spin_unlock_irqrestore(&pmu_lock
, flags
);
1620 /* Deal with completed PMU requests outside of the lock */
1626 /* Deal with interrupt datas outside of the lock */
1627 if (int_data
>= 0) {
1628 pmu_handle_data(interrupt_data
[int_data
], interrupt_data_len
[int_data
]);
1629 spin_lock_irqsave(&pmu_lock
, flags
);
1631 int_data_state
[int_data
] = int_data_empty
;
1636 return IRQ_RETVAL(handled
);
1642 unsigned long flags
;
1644 spin_lock_irqsave(&pmu_lock
, flags
);
1645 if (pmu_state
== locked
)
1647 adb_int_pending
= 1;
1648 spin_unlock_irqrestore(&pmu_lock
, flags
);
1653 gpio1_interrupt(int irq
, void *arg
)
1655 unsigned long flags
;
1657 if ((in_8(gpio_reg
+ 0x9) & 0x02) == 0) {
1658 spin_lock_irqsave(&pmu_lock
, flags
);
1659 if (gpio_irq_enabled
> 0) {
1660 disable_irq_nosync(gpio_irq
);
1661 gpio_irq_enabled
= 0;
1664 adb_int_pending
= 1;
1665 spin_unlock_irqrestore(&pmu_lock
, flags
);
1666 via_pmu_interrupt(0, NULL
);
1673 pmu_enable_irled(int on
)
1675 struct adb_request req
;
1679 if (pmu_kind
== PMU_KEYLARGO_BASED
)
1682 pmu_request(&req
, NULL
, 2, PMU_POWER_CTRL
, PMU_POW_IRLED
|
1683 (on
? PMU_POW_ON
: PMU_POW_OFF
));
1684 pmu_wait_complete(&req
);
1690 struct adb_request req
;
1695 local_irq_disable();
1697 drop_interrupts
= 1;
1699 if (pmu_kind
!= PMU_KEYLARGO_BASED
) {
1700 pmu_request(&req
, NULL
, 2, PMU_SET_INTR_MASK
, PMU_INT_ADB
|
1702 while(!req
.complete
)
1706 pmu_request(&req
, NULL
, 1, PMU_RESET
);
1707 pmu_wait_complete(&req
);
1715 struct adb_request req
;
1720 local_irq_disable();
1722 drop_interrupts
= 1;
1724 if (pmu_kind
!= PMU_KEYLARGO_BASED
) {
1725 pmu_request(&req
, NULL
, 2, PMU_SET_INTR_MASK
, PMU_INT_ADB
|
1727 pmu_wait_complete(&req
);
1729 /* Disable server mode on shutdown or we'll just
1732 pmu_set_server_mode(0);
1735 pmu_request(&req
, NULL
, 5, PMU_SHUTDOWN
,
1736 'M', 'A', 'T', 'T');
1737 pmu_wait_complete(&req
);
1748 #if defined(CONFIG_SUSPEND) && defined(CONFIG_PPC32)
1750 * Put the powerbook to sleep.
1753 static u32 save_via
[8];
1756 save_via_state(void)
1758 save_via
[0] = in_8(&via
[ANH
]);
1759 save_via
[1] = in_8(&via
[DIRA
]);
1760 save_via
[2] = in_8(&via
[B
]);
1761 save_via
[3] = in_8(&via
[DIRB
]);
1762 save_via
[4] = in_8(&via
[PCR
]);
1763 save_via
[5] = in_8(&via
[ACR
]);
1764 save_via
[6] = in_8(&via
[T1CL
]);
1765 save_via
[7] = in_8(&via
[T1CH
]);
1768 restore_via_state(void)
1770 out_8(&via
[ANH
], save_via
[0]);
1771 out_8(&via
[DIRA
], save_via
[1]);
1772 out_8(&via
[B
], save_via
[2]);
1773 out_8(&via
[DIRB
], save_via
[3]);
1774 out_8(&via
[PCR
], save_via
[4]);
1775 out_8(&via
[ACR
], save_via
[5]);
1776 out_8(&via
[T1CL
], save_via
[6]);
1777 out_8(&via
[T1CH
], save_via
[7]);
1778 out_8(&via
[IER
], IER_CLR
| 0x7f); /* disable all intrs */
1779 out_8(&via
[IFR
], 0x7f); /* clear IFR */
1780 out_8(&via
[IER
], IER_SET
| SR_INT
| CB1_INT
);
1783 #define GRACKLE_PM (1<<7)
1784 #define GRACKLE_DOZE (1<<5)
1785 #define GRACKLE_NAP (1<<4)
1786 #define GRACKLE_SLEEP (1<<3)
1788 static int powerbook_sleep_grackle(void)
1790 unsigned long save_l2cr
;
1791 unsigned short pmcr1
;
1792 struct adb_request req
;
1793 struct pci_dev
*grackle
;
1795 grackle
= pci_get_bus_and_slot(0, 0);
1799 /* Turn off various things. Darwin does some retry tests here... */
1800 pmu_request(&req
, NULL
, 2, PMU_POWER_CTRL0
, PMU_POW0_OFF
|PMU_POW0_HARD_DRIVE
);
1801 pmu_wait_complete(&req
);
1802 pmu_request(&req
, NULL
, 2, PMU_POWER_CTRL
,
1803 PMU_POW_OFF
|PMU_POW_BACKLIGHT
|PMU_POW_IRLED
|PMU_POW_MEDIABAY
);
1804 pmu_wait_complete(&req
);
1806 /* For 750, save backside cache setting and disable it */
1807 save_l2cr
= _get_L2CR(); /* (returns -1 if not available) */
1809 if (!__fake_sleep
) {
1810 /* Ask the PMU to put us to sleep */
1811 pmu_request(&req
, NULL
, 5, PMU_SLEEP
, 'M', 'A', 'T', 'T');
1812 pmu_wait_complete(&req
);
1815 /* The VIA is supposed not to be restored correctly*/
1817 /* We shut down some HW */
1818 pmac_call_feature(PMAC_FTR_SLEEP_STATE
,NULL
,0,1);
1820 pci_read_config_word(grackle
, 0x70, &pmcr1
);
1821 /* Apparently, MacOS uses NAP mode for Grackle ??? */
1822 pmcr1
&= ~(GRACKLE_DOZE
|GRACKLE_SLEEP
);
1823 pmcr1
|= GRACKLE_PM
|GRACKLE_NAP
;
1824 pci_write_config_word(grackle
, 0x70, pmcr1
);
1826 /* Call low-level ASM sleep handler */
1830 low_sleep_handler();
1832 /* We're awake again, stop grackle PM */
1833 pci_read_config_word(grackle
, 0x70, &pmcr1
);
1834 pmcr1
&= ~(GRACKLE_PM
|GRACKLE_DOZE
|GRACKLE_SLEEP
|GRACKLE_NAP
);
1835 pci_write_config_word(grackle
, 0x70, pmcr1
);
1837 pci_dev_put(grackle
);
1839 /* Make sure the PMU is idle */
1840 pmac_call_feature(PMAC_FTR_SLEEP_STATE
,NULL
,0,0);
1841 restore_via_state();
1843 /* Restore L2 cache */
1844 if (save_l2cr
!= 0xffffffff && (save_l2cr
& L2CR_L2E
) != 0)
1845 _set_L2CR(save_l2cr
);
1847 /* Restore userland MMU context */
1848 switch_mmu_context(NULL
, current
->active_mm
);
1850 /* Power things up */
1852 pmu_request(&req
, NULL
, 2, PMU_SET_INTR_MASK
, pmu_intr_mask
);
1853 pmu_wait_complete(&req
);
1854 pmu_request(&req
, NULL
, 2, PMU_POWER_CTRL0
,
1855 PMU_POW0_ON
|PMU_POW0_HARD_DRIVE
);
1856 pmu_wait_complete(&req
);
1857 pmu_request(&req
, NULL
, 2, PMU_POWER_CTRL
,
1858 PMU_POW_ON
|PMU_POW_BACKLIGHT
|PMU_POW_CHARGER
|PMU_POW_IRLED
|PMU_POW_MEDIABAY
);
1859 pmu_wait_complete(&req
);
1865 powerbook_sleep_Core99(void)
1867 unsigned long save_l2cr
;
1868 unsigned long save_l3cr
;
1869 struct adb_request req
;
1871 if (pmac_call_feature(PMAC_FTR_SLEEP_STATE
,NULL
,0,-1) < 0) {
1872 printk(KERN_ERR
"Sleep mode not supported on this machine\n");
1876 if (num_online_cpus() > 1 || cpu_is_offline(0))
1879 /* Stop environment and ADB interrupts */
1880 pmu_request(&req
, NULL
, 2, PMU_SET_INTR_MASK
, 0);
1881 pmu_wait_complete(&req
);
1883 /* Tell PMU what events will wake us up */
1884 pmu_request(&req
, NULL
, 4, PMU_POWER_EVENTS
, PMU_PWR_CLR_WAKEUP_EVENTS
,
1886 pmu_wait_complete(&req
);
1887 pmu_request(&req
, NULL
, 4, PMU_POWER_EVENTS
, PMU_PWR_SET_WAKEUP_EVENTS
,
1888 0, PMU_PWR_WAKEUP_KEY
|
1889 (option_lid_wakeup
? PMU_PWR_WAKEUP_LID_OPEN
: 0));
1890 pmu_wait_complete(&req
);
1892 /* Save the state of the L2 and L3 caches */
1893 save_l3cr
= _get_L3CR(); /* (returns -1 if not available) */
1894 save_l2cr
= _get_L2CR(); /* (returns -1 if not available) */
1896 if (!__fake_sleep
) {
1897 /* Ask the PMU to put us to sleep */
1898 pmu_request(&req
, NULL
, 5, PMU_SLEEP
, 'M', 'A', 'T', 'T');
1899 pmu_wait_complete(&req
);
1902 /* The VIA is supposed not to be restored correctly*/
1905 /* Shut down various ASICs. There's a chance that we can no longer
1906 * talk to the PMU after this, so I moved it to _after_ sending the
1907 * sleep command to it. Still need to be checked.
1909 pmac_call_feature(PMAC_FTR_SLEEP_STATE
, NULL
, 0, 1);
1911 /* Call low-level ASM sleep handler */
1915 low_sleep_handler();
1917 /* Restore Apple core ASICs state */
1918 pmac_call_feature(PMAC_FTR_SLEEP_STATE
, NULL
, 0, 0);
1921 restore_via_state();
1923 /* tweak LPJ before cpufreq is there */
1924 loops_per_jiffy
*= 2;
1927 pmac_call_early_video_resume();
1929 /* Restore L2 cache */
1930 if (save_l2cr
!= 0xffffffff && (save_l2cr
& L2CR_L2E
) != 0)
1931 _set_L2CR(save_l2cr
);
1932 /* Restore L3 cache */
1933 if (save_l3cr
!= 0xffffffff && (save_l3cr
& L3CR_L3E
) != 0)
1934 _set_L3CR(save_l3cr
);
1936 /* Restore userland MMU context */
1937 switch_mmu_context(NULL
, current
->active_mm
);
1939 /* Tell PMU we are ready */
1941 pmu_request(&req
, NULL
, 2, PMU_SYSTEM_READY
, 2);
1942 pmu_wait_complete(&req
);
1943 pmu_request(&req
, NULL
, 2, PMU_SET_INTR_MASK
, pmu_intr_mask
);
1944 pmu_wait_complete(&req
);
1946 /* Restore LPJ, cpufreq will adjust the cpu frequency */
1947 loops_per_jiffy
/= 2;
1952 #define PB3400_MEM_CTRL 0xf8000000
1953 #define PB3400_MEM_CTRL_SLEEP 0x70
1955 static void __iomem
*pb3400_mem_ctrl
;
1957 static void powerbook_sleep_init_3400(void)
1959 /* map in the memory controller registers */
1960 pb3400_mem_ctrl
= ioremap(PB3400_MEM_CTRL
, 0x100);
1961 if (pb3400_mem_ctrl
== NULL
)
1962 printk(KERN_WARNING
"ioremap failed: sleep won't be possible");
1965 static int powerbook_sleep_3400(void)
1970 struct adb_request sleep_req
;
1971 unsigned int __iomem
*mem_ctrl_sleep
;
1973 if (pb3400_mem_ctrl
== NULL
)
1975 mem_ctrl_sleep
= pb3400_mem_ctrl
+ PB3400_MEM_CTRL_SLEEP
;
1977 /* Set the memory controller to keep the memory refreshed
1978 while we're asleep */
1979 for (i
= 0x403f; i
>= 0x4000; --i
) {
1980 out_be32(mem_ctrl_sleep
, i
);
1982 x
= (in_be32(mem_ctrl_sleep
) >> 16) & 0x3ff;
1988 /* Ask the PMU to put us to sleep */
1989 pmu_request(&sleep_req
, NULL
, 5, PMU_SLEEP
, 'M', 'A', 'T', 'T');
1990 pmu_wait_complete(&sleep_req
);
1993 pmac_call_feature(PMAC_FTR_SLEEP_STATE
, NULL
, 0, 1);
1997 /* Put the CPU into sleep mode */
1998 hid0
= mfspr(SPRN_HID0
);
1999 hid0
= (hid0
& ~(HID0_NAP
| HID0_DOZE
)) | HID0_SLEEP
;
2000 mtspr(SPRN_HID0
, hid0
);
2002 msr
= mfmsr() | MSR_POW
;
2008 local_irq_disable();
2010 /* OK, we're awake again, start restoring things */
2011 out_be32(mem_ctrl_sleep
, 0x3f);
2012 pmac_call_feature(PMAC_FTR_SLEEP_STATE
, NULL
, 0, 0);
2017 #endif /* CONFIG_SUSPEND && CONFIG_PPC32 */
2020 * Support for /dev/pmu device
2022 #define RB_SIZE 0x10
2023 struct pmu_private
{
2024 struct list_head list
;
2029 unsigned char data
[16];
2031 wait_queue_head_t wait
;
2033 #if defined(CONFIG_INPUT_ADBHID) && defined(CONFIG_PMAC_BACKLIGHT)
2034 int backlight_locker
;
2038 static LIST_HEAD(all_pmu_pvt
);
2039 static DEFINE_SPINLOCK(all_pvt_lock
);
2042 pmu_pass_intr(unsigned char *data
, int len
)
2044 struct pmu_private
*pp
;
2045 struct list_head
*list
;
2047 unsigned long flags
;
2049 if (len
> sizeof(pp
->rb_buf
[0].data
))
2050 len
= sizeof(pp
->rb_buf
[0].data
);
2051 spin_lock_irqsave(&all_pvt_lock
, flags
);
2052 for (list
= &all_pmu_pvt
; (list
= list
->next
) != &all_pmu_pvt
; ) {
2053 pp
= list_entry(list
, struct pmu_private
, list
);
2054 spin_lock(&pp
->lock
);
2058 if (i
!= pp
->rb_get
) {
2059 struct rb_entry
*rp
= &pp
->rb_buf
[pp
->rb_put
];
2061 memcpy(rp
->data
, data
, len
);
2063 wake_up_interruptible(&pp
->wait
);
2065 spin_unlock(&pp
->lock
);
2067 spin_unlock_irqrestore(&all_pvt_lock
, flags
);
2071 pmu_open(struct inode
*inode
, struct file
*file
)
2073 struct pmu_private
*pp
;
2074 unsigned long flags
;
2076 pp
= kmalloc(sizeof(struct pmu_private
), GFP_KERNEL
);
2079 pp
->rb_get
= pp
->rb_put
= 0;
2080 spin_lock_init(&pp
->lock
);
2081 init_waitqueue_head(&pp
->wait
);
2082 mutex_lock(&pmu_info_proc_mutex
);
2083 spin_lock_irqsave(&all_pvt_lock
, flags
);
2084 #if defined(CONFIG_INPUT_ADBHID) && defined(CONFIG_PMAC_BACKLIGHT)
2085 pp
->backlight_locker
= 0;
2087 list_add(&pp
->list
, &all_pmu_pvt
);
2088 spin_unlock_irqrestore(&all_pvt_lock
, flags
);
2089 file
->private_data
= pp
;
2090 mutex_unlock(&pmu_info_proc_mutex
);
2095 pmu_read(struct file
*file
, char __user
*buf
,
2096 size_t count
, loff_t
*ppos
)
2098 struct pmu_private
*pp
= file
->private_data
;
2099 DECLARE_WAITQUEUE(wait
, current
);
2100 unsigned long flags
;
2103 if (count
< 1 || pp
== 0)
2105 if (!access_ok(VERIFY_WRITE
, buf
, count
))
2108 spin_lock_irqsave(&pp
->lock
, flags
);
2109 add_wait_queue(&pp
->wait
, &wait
);
2110 current
->state
= TASK_INTERRUPTIBLE
;
2114 if (pp
->rb_get
!= pp
->rb_put
) {
2116 struct rb_entry
*rp
= &pp
->rb_buf
[i
];
2118 spin_unlock_irqrestore(&pp
->lock
, flags
);
2121 if (ret
> 0 && copy_to_user(buf
, rp
->data
, ret
))
2125 spin_lock_irqsave(&pp
->lock
, flags
);
2130 if (file
->f_flags
& O_NONBLOCK
)
2133 if (signal_pending(current
))
2135 spin_unlock_irqrestore(&pp
->lock
, flags
);
2137 spin_lock_irqsave(&pp
->lock
, flags
);
2139 current
->state
= TASK_RUNNING
;
2140 remove_wait_queue(&pp
->wait
, &wait
);
2141 spin_unlock_irqrestore(&pp
->lock
, flags
);
2147 pmu_write(struct file
*file
, const char __user
*buf
,
2148 size_t count
, loff_t
*ppos
)
2154 pmu_fpoll(struct file
*filp
, poll_table
*wait
)
2156 struct pmu_private
*pp
= filp
->private_data
;
2157 unsigned int mask
= 0;
2158 unsigned long flags
;
2162 poll_wait(filp
, &pp
->wait
, wait
);
2163 spin_lock_irqsave(&pp
->lock
, flags
);
2164 if (pp
->rb_get
!= pp
->rb_put
)
2166 spin_unlock_irqrestore(&pp
->lock
, flags
);
2171 pmu_release(struct inode
*inode
, struct file
*file
)
2173 struct pmu_private
*pp
= file
->private_data
;
2174 unsigned long flags
;
2177 file
->private_data
= NULL
;
2178 spin_lock_irqsave(&all_pvt_lock
, flags
);
2179 list_del(&pp
->list
);
2180 spin_unlock_irqrestore(&all_pvt_lock
, flags
);
2182 #if defined(CONFIG_INPUT_ADBHID) && defined(CONFIG_PMAC_BACKLIGHT)
2183 if (pp
->backlight_locker
)
2184 pmac_backlight_enable();
2192 #if defined(CONFIG_SUSPEND) && defined(CONFIG_PPC32)
2193 static void pmac_suspend_disable_irqs(void)
2195 /* Call platform functions marked "on sleep" */
2196 pmac_pfunc_i2c_suspend();
2197 pmac_pfunc_base_suspend();
2200 static int powerbook_sleep(suspend_state_t state
)
2204 /* Wait for completion of async requests */
2205 while (!batt_req
.complete
)
2208 /* Giveup the lazy FPU & vec so we don't have to back them
2209 * up from the low level code
2213 #ifdef CONFIG_ALTIVEC
2214 if (cpu_has_feature(CPU_FTR_ALTIVEC
))
2215 enable_kernel_altivec();
2216 #endif /* CONFIG_ALTIVEC */
2219 case PMU_OHARE_BASED
:
2220 error
= powerbook_sleep_3400();
2222 case PMU_HEATHROW_BASED
:
2223 case PMU_PADDINGTON_BASED
:
2224 error
= powerbook_sleep_grackle();
2226 case PMU_KEYLARGO_BASED
:
2227 error
= powerbook_sleep_Core99();
2241 static void pmac_suspend_enable_irqs(void)
2243 /* Force a poll of ADB interrupts */
2244 adb_int_pending
= 1;
2245 via_pmu_interrupt(0, NULL
);
2249 /* Call platform functions marked "on wake" */
2250 pmac_pfunc_base_resume();
2251 pmac_pfunc_i2c_resume();
2254 static int pmu_sleep_valid(suspend_state_t state
)
2256 return state
== PM_SUSPEND_MEM
2257 && (pmac_call_feature(PMAC_FTR_SLEEP_STATE
, NULL
, 0, -1) >= 0);
2260 static struct platform_suspend_ops pmu_pm_ops
= {
2261 .enter
= powerbook_sleep
,
2262 .valid
= pmu_sleep_valid
,
2265 static int register_pmu_pm_ops(void)
2267 if (pmu_kind
== PMU_OHARE_BASED
)
2268 powerbook_sleep_init_3400();
2269 ppc_md
.suspend_disable_irqs
= pmac_suspend_disable_irqs
;
2270 ppc_md
.suspend_enable_irqs
= pmac_suspend_enable_irqs
;
2271 suspend_set_ops(&pmu_pm_ops
);
2276 device_initcall(register_pmu_pm_ops
);
2279 static int pmu_ioctl(struct file
*filp
,
2280 u_int cmd
, u_long arg
)
2282 __u32 __user
*argp
= (__u32 __user
*)arg
;
2283 int error
= -EINVAL
;
2287 if (!capable(CAP_SYS_ADMIN
))
2289 return pm_suspend(PM_SUSPEND_MEM
);
2290 case PMU_IOC_CAN_SLEEP
:
2291 if (pmac_call_feature(PMAC_FTR_SLEEP_STATE
, NULL
, 0, -1) < 0)
2292 return put_user(0, argp
);
2294 return put_user(1, argp
);
2296 #ifdef CONFIG_PMAC_BACKLIGHT_LEGACY
2297 /* Compatibility ioctl's for backlight */
2298 case PMU_IOC_GET_BACKLIGHT
:
2302 brightness
= pmac_backlight_get_legacy_brightness();
2306 return put_user(brightness
, argp
);
2309 case PMU_IOC_SET_BACKLIGHT
:
2313 error
= get_user(brightness
, argp
);
2317 return pmac_backlight_set_legacy_brightness(brightness
);
2319 #ifdef CONFIG_INPUT_ADBHID
2320 case PMU_IOC_GRAB_BACKLIGHT
: {
2321 struct pmu_private
*pp
= filp
->private_data
;
2323 if (pp
->backlight_locker
)
2326 pp
->backlight_locker
= 1;
2327 pmac_backlight_disable();
2331 #endif /* CONFIG_INPUT_ADBHID */
2332 #endif /* CONFIG_PMAC_BACKLIGHT_LEGACY */
2334 case PMU_IOC_GET_MODEL
:
2335 return put_user(pmu_kind
, argp
);
2336 case PMU_IOC_HAS_ADB
:
2337 return put_user(pmu_has_adb
, argp
);
2342 static long pmu_unlocked_ioctl(struct file
*filp
,
2343 u_int cmd
, u_long arg
)
2347 mutex_lock(&pmu_info_proc_mutex
);
2348 ret
= pmu_ioctl(filp
, cmd
, arg
);
2349 mutex_unlock(&pmu_info_proc_mutex
);
2354 #ifdef CONFIG_COMPAT
2355 #define PMU_IOC_GET_BACKLIGHT32 _IOR('B', 1, compat_size_t)
2356 #define PMU_IOC_SET_BACKLIGHT32 _IOW('B', 2, compat_size_t)
2357 #define PMU_IOC_GET_MODEL32 _IOR('B', 3, compat_size_t)
2358 #define PMU_IOC_HAS_ADB32 _IOR('B', 4, compat_size_t)
2359 #define PMU_IOC_CAN_SLEEP32 _IOR('B', 5, compat_size_t)
2360 #define PMU_IOC_GRAB_BACKLIGHT32 _IOR('B', 6, compat_size_t)
2362 static long compat_pmu_ioctl (struct file
*filp
, u_int cmd
, u_long arg
)
2367 case PMU_IOC_GET_BACKLIGHT32
:
2368 cmd
= PMU_IOC_GET_BACKLIGHT
;
2370 case PMU_IOC_SET_BACKLIGHT32
:
2371 cmd
= PMU_IOC_SET_BACKLIGHT
;
2373 case PMU_IOC_GET_MODEL32
:
2374 cmd
= PMU_IOC_GET_MODEL
;
2376 case PMU_IOC_HAS_ADB32
:
2377 cmd
= PMU_IOC_HAS_ADB
;
2379 case PMU_IOC_CAN_SLEEP32
:
2380 cmd
= PMU_IOC_CAN_SLEEP
;
2382 case PMU_IOC_GRAB_BACKLIGHT32
:
2383 cmd
= PMU_IOC_GRAB_BACKLIGHT
;
2386 return -ENOIOCTLCMD
;
2388 return pmu_unlocked_ioctl(filp
, cmd
, (unsigned long)compat_ptr(arg
));
2392 static const struct file_operations pmu_device_fops
= {
2396 .unlocked_ioctl
= pmu_unlocked_ioctl
,
2397 #ifdef CONFIG_COMPAT
2398 .compat_ioctl
= compat_pmu_ioctl
,
2401 .release
= pmu_release
,
2402 .llseek
= noop_llseek
,
2405 static struct miscdevice pmu_device
= {
2406 PMU_MINOR
, "pmu", &pmu_device_fops
2409 static int pmu_device_init(void)
2413 if (misc_register(&pmu_device
) < 0)
2414 printk(KERN_ERR
"via-pmu: cannot register misc device.\n");
2417 device_initcall(pmu_device_init
);
2422 polled_handshake(volatile unsigned char __iomem
*via
)
2424 via
[B
] &= ~TREQ
; eieio();
2425 while ((via
[B
] & TACK
) != 0)
2427 via
[B
] |= TREQ
; eieio();
2428 while ((via
[B
] & TACK
) == 0)
2433 polled_send_byte(volatile unsigned char __iomem
*via
, int x
)
2435 via
[ACR
] |= SR_OUT
| SR_EXT
; eieio();
2436 via
[SR
] = x
; eieio();
2437 polled_handshake(via
);
2441 polled_recv_byte(volatile unsigned char __iomem
*via
)
2445 via
[ACR
] = (via
[ACR
] & ~SR_OUT
) | SR_EXT
; eieio();
2446 x
= via
[SR
]; eieio();
2447 polled_handshake(via
);
2448 x
= via
[SR
]; eieio();
2453 pmu_polled_request(struct adb_request
*req
)
2455 unsigned long flags
;
2457 volatile unsigned char __iomem
*v
= via
;
2461 l
= pmu_data_len
[c
][0];
2462 if (l
>= 0 && req
->nbytes
!= l
+ 1)
2465 local_irq_save(flags
);
2466 while (pmu_state
!= idle
)
2469 while ((via
[B
] & TACK
) == 0)
2471 polled_send_byte(v
, c
);
2473 l
= req
->nbytes
- 1;
2474 polled_send_byte(v
, l
);
2476 for (i
= 1; i
<= l
; ++i
)
2477 polled_send_byte(v
, req
->data
[i
]);
2479 l
= pmu_data_len
[c
][1];
2481 l
= polled_recv_byte(v
);
2482 for (i
= 0; i
< l
; ++i
)
2483 req
->reply
[i
+ req
->reply_len
] = polled_recv_byte(v
);
2488 local_irq_restore(flags
);
2492 /* N.B. This doesn't work on the 3400 */
2493 void pmu_blink(int n
)
2495 struct adb_request req
;
2497 memset(&req
, 0, sizeof(req
));
2499 for (; n
> 0; --n
) {
2506 req
.reply
[0] = ADB_RET_OK
;
2508 req
.reply_expected
= 0;
2509 pmu_polled_request(&req
);
2517 req
.reply
[0] = ADB_RET_OK
;
2519 req
.reply_expected
= 0;
2520 pmu_polled_request(&req
);
2525 #endif /* DEBUG_SLEEP */
2527 #if defined(CONFIG_SUSPEND) && defined(CONFIG_PPC32)
2528 int pmu_sys_suspended
;
2530 static int pmu_sys_suspend(struct sys_device
*sysdev
, pm_message_t state
)
2532 if (state
.event
!= PM_EVENT_SUSPEND
|| pmu_sys_suspended
)
2535 /* Suspend PMU event interrupts */\
2537 pmu_sys_suspended
= 1;
2539 #ifdef CONFIG_PMAC_BACKLIGHT
2540 /* Tell backlight code not to muck around with the chip anymore */
2541 pmu_backlight_set_sleep(1);
2547 static int pmu_sys_resume(struct sys_device
*sysdev
)
2549 struct adb_request req
;
2551 if (!pmu_sys_suspended
)
2554 /* Tell PMU we are ready */
2555 pmu_request(&req
, NULL
, 2, PMU_SYSTEM_READY
, 2);
2556 pmu_wait_complete(&req
);
2558 #ifdef CONFIG_PMAC_BACKLIGHT
2559 /* Tell backlight code it can use the chip again */
2560 pmu_backlight_set_sleep(0);
2562 /* Resume PMU event interrupts */
2564 pmu_sys_suspended
= 0;
2569 #endif /* CONFIG_SUSPEND && CONFIG_PPC32 */
2571 static struct sysdev_class pmu_sysclass
= {
2575 static struct sys_device device_pmu
= {
2576 .cls
= &pmu_sysclass
,
2579 static struct sysdev_driver driver_pmu
= {
2580 #if defined(CONFIG_SUSPEND) && defined(CONFIG_PPC32)
2581 .suspend
= &pmu_sys_suspend
,
2582 .resume
= &pmu_sys_resume
,
2583 #endif /* CONFIG_SUSPEND && CONFIG_PPC32 */
2586 static int __init
init_pmu_sysfs(void)
2590 rc
= sysdev_class_register(&pmu_sysclass
);
2592 printk(KERN_ERR
"Failed registering PMU sys class\n");
2595 rc
= sysdev_register(&device_pmu
);
2597 printk(KERN_ERR
"Failed registering PMU sys device\n");
2600 rc
= sysdev_driver_register(&pmu_sysclass
, &driver_pmu
);
2602 printk(KERN_ERR
"Failed registering PMU sys driver\n");
2608 subsys_initcall(init_pmu_sysfs
);
2610 EXPORT_SYMBOL(pmu_request
);
2611 EXPORT_SYMBOL(pmu_queue_request
);
2612 EXPORT_SYMBOL(pmu_poll
);
2613 EXPORT_SYMBOL(pmu_poll_adb
);
2614 EXPORT_SYMBOL(pmu_wait_complete
);
2615 EXPORT_SYMBOL(pmu_suspend
);
2616 EXPORT_SYMBOL(pmu_resume
);
2617 EXPORT_SYMBOL(pmu_unlock
);
2618 #if defined(CONFIG_PPC32)
2619 EXPORT_SYMBOL(pmu_enable_irled
);
2620 EXPORT_SYMBOL(pmu_battery_count
);
2621 EXPORT_SYMBOL(pmu_batteries
);
2622 EXPORT_SYMBOL(pmu_power_flags
);
2623 #endif /* CONFIG_SUSPEND && CONFIG_PPC32 */