[PATCH] Light weight event counters
[deliverable/linux.git] / drivers / parisc / led.c
CommitLineData
1da177e4
LT
1/*
2 * Chassis LCD/LED driver for HP-PARISC workstations
3 *
4 * (c) Copyright 2000 Red Hat Software
5 * (c) Copyright 2000 Helge Deller <hdeller@redhat.com>
8039de10 6 * (c) Copyright 2001-2005 Helge Deller <deller@gmx.de>
1da177e4
LT
7 * (c) Copyright 2001 Randolph Chung <tausq@debian.org>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * TODO:
15 * - speed-up calculations with inlined assembler
16 * - interface to write to second row of LCD from /proc (if technically possible)
17 *
18 * Changes:
19 * - Audit copy_from_user in led_proc_write.
20 * Daniele Bellucci <bellucda@tiscali.it>
34994952
GG
21 * - Switch from using a tasklet to a work queue, so the led_LCD_driver
22 * can sleep.
23 * David Pye <dmp@davidmpye.dyndns.org>
1da177e4
LT
24 */
25
26#include <linux/config.h>
27#include <linux/module.h>
28#include <linux/stddef.h> /* for offsetof() */
29#include <linux/init.h>
30#include <linux/types.h>
31#include <linux/ioport.h>
32#include <linux/utsname.h>
c59ede7b 33#include <linux/capability.h>
1da177e4
LT
34#include <linux/delay.h>
35#include <linux/netdevice.h>
36#include <linux/inetdevice.h>
37#include <linux/in.h>
38#include <linux/interrupt.h>
39#include <linux/kernel_stat.h>
40#include <linux/reboot.h>
41#include <linux/proc_fs.h>
42#include <linux/ctype.h>
43#include <linux/blkdev.h>
34994952 44#include <linux/workqueue.h>
e5ed6399 45#include <linux/rcupdate.h>
1da177e4
LT
46#include <asm/io.h>
47#include <asm/processor.h>
48#include <asm/hardware.h>
49#include <asm/param.h> /* HZ */
50#include <asm/led.h>
51#include <asm/pdc.h>
52#include <asm/uaccess.h>
53
54/* The control of the LEDs and LCDs on PARISC-machines have to be done
34994952
GG
55 completely in software. The necessary calculations are done in a work queue
56 task which is scheduled regularly, and since the calculations may consume a
57 relatively large amount of CPU time, some of the calculations can be
1da177e4
LT
58 turned off with the following variables (controlled via procfs) */
59
8039de10 60static int led_type __read_mostly = -1;
34994952 61static unsigned char lastleds; /* LED state from most recent update */
8039de10
HD
62static unsigned int led_heartbeat __read_mostly = 1;
63static unsigned int led_diskio __read_mostly = 1;
64static unsigned int led_lanrxtx __read_mostly = 1;
65static char lcd_text[32] __read_mostly;
66static char lcd_text_default[32] __read_mostly;
1da177e4 67
34994952
GG
68
69static struct workqueue_struct *led_wq;
70static void led_work_func(void *);
71static DECLARE_WORK(led_task, led_work_func, NULL);
72
1da177e4
LT
73#if 0
74#define DPRINTK(x) printk x
75#else
76#define DPRINTK(x)
77#endif
78
1da177e4
LT
79struct lcd_block {
80 unsigned char command; /* stores the command byte */
81 unsigned char on; /* value for turning LED on */
82 unsigned char off; /* value for turning LED off */
83};
84
85/* Structure returned by PDC_RETURN_CHASSIS_INFO */
86/* NOTE: we use unsigned long:16 two times, since the following member
87 lcd_cmd_reg_addr needs to be 64bit aligned on 64bit PA2.0-machines */
88struct pdc_chassis_lcd_info_ret_block {
89 unsigned long model:16; /* DISPLAY_MODEL_XXXX */
90 unsigned long lcd_width:16; /* width of the LCD in chars (DISPLAY_MODEL_LCD only) */
91 unsigned long lcd_cmd_reg_addr; /* ptr to LCD cmd-register & data ptr for LED */
92 unsigned long lcd_data_reg_addr; /* ptr to LCD data-register (LCD only) */
93 unsigned int min_cmd_delay; /* delay in uS after cmd-write (LCD only) */
94 unsigned char reset_cmd1; /* command #1 for writing LCD string (LCD only) */
95 unsigned char reset_cmd2; /* command #2 for writing LCD string (LCD only) */
96 unsigned char act_enable; /* 0 = no activity (LCD only) */
97 struct lcd_block heartbeat;
98 struct lcd_block disk_io;
99 struct lcd_block lan_rcv;
100 struct lcd_block lan_tx;
101 char _pad;
102};
103
104
105/* LCD_CMD and LCD_DATA for KittyHawk machines */
106#define KITTYHAWK_LCD_CMD F_EXTEND(0xf0190000UL) /* 64bit-ready */
107#define KITTYHAWK_LCD_DATA (KITTYHAWK_LCD_CMD+1)
108
109/* lcd_info is pre-initialized to the values needed to program KittyHawk LCD's
110 * HP seems to have used Sharp/Hitachi HD44780 LCDs most of the time. */
111static struct pdc_chassis_lcd_info_ret_block
8039de10 112lcd_info __attribute__((aligned(8))) __read_mostly =
1da177e4
LT
113{
114 .model = DISPLAY_MODEL_LCD,
115 .lcd_width = 16,
116 .lcd_cmd_reg_addr = KITTYHAWK_LCD_CMD,
117 .lcd_data_reg_addr = KITTYHAWK_LCD_DATA,
118 .min_cmd_delay = 40,
119 .reset_cmd1 = 0x80,
120 .reset_cmd2 = 0xc0,
121};
122
123
124/* direct access to some of the lcd_info variables */
125#define LCD_CMD_REG lcd_info.lcd_cmd_reg_addr
126#define LCD_DATA_REG lcd_info.lcd_data_reg_addr
127#define LED_DATA_REG lcd_info.lcd_cmd_reg_addr /* LASI & ASP only */
128
34994952
GG
129#define LED_HASLCD 1
130#define LED_NOLCD 0
131
132/* The workqueue must be created at init-time */
133static int start_task(void)
134{
135 /* Display the default text now */
136 if (led_type == LED_HASLCD) lcd_print( lcd_text_default );
137
138 /* Create the work queue and queue the LED task */
139 led_wq = create_singlethread_workqueue("led_wq");
140 queue_work(led_wq, &led_task);
141
142 return 0;
143}
144
145device_initcall(start_task);
1da177e4
LT
146
147/* ptr to LCD/LED-specific function */
8039de10 148static void (*led_func_ptr) (unsigned char) __read_mostly;
1da177e4 149
1da177e4
LT
150#ifdef CONFIG_PROC_FS
151static int led_proc_read(char *page, char **start, off_t off, int count,
152 int *eof, void *data)
153{
154 char *out = page;
155 int len;
156
157 switch ((long)data)
158 {
159 case LED_NOLCD:
160 out += sprintf(out, "Heartbeat: %d\n", led_heartbeat);
161 out += sprintf(out, "Disk IO: %d\n", led_diskio);
162 out += sprintf(out, "LAN Rx/Tx: %d\n", led_lanrxtx);
163 break;
164 case LED_HASLCD:
165 out += sprintf(out, "%s\n", lcd_text);
166 break;
167 default:
168 *eof = 1;
169 return 0;
170 }
171
172 len = out - page - off;
173 if (len < count) {
174 *eof = 1;
175 if (len <= 0) return 0;
176 } else {
177 len = count;
178 }
179 *start = page + off;
180 return len;
181}
182
183static int led_proc_write(struct file *file, const char *buf,
184 unsigned long count, void *data)
185{
186 char *cur, lbuf[count + 1];
187 int d;
188
189 if (!capable(CAP_SYS_ADMIN))
190 return -EACCES;
191
192 memset(lbuf, 0, count + 1);
193
194 if (copy_from_user(lbuf, buf, count))
195 return -EFAULT;
196
197 cur = lbuf;
198
199 /* skip initial spaces */
200 while (*cur && isspace(*cur))
201 {
202 cur++;
203 }
204
205 switch ((long)data)
206 {
207 case LED_NOLCD:
208 d = *cur++ - '0';
209 if (d != 0 && d != 1) goto parse_error;
210 led_heartbeat = d;
211
212 if (*cur++ != ' ') goto parse_error;
213
214 d = *cur++ - '0';
215 if (d != 0 && d != 1) goto parse_error;
216 led_diskio = d;
217
218 if (*cur++ != ' ') goto parse_error;
219
220 d = *cur++ - '0';
221 if (d != 0 && d != 1) goto parse_error;
222 led_lanrxtx = d;
223
224 break;
225 case LED_HASLCD:
226 if (*cur && cur[strlen(cur)-1] == '\n')
227 cur[strlen(cur)-1] = 0;
228 if (*cur == 0)
229 cur = lcd_text_default;
230 lcd_print(cur);
231 break;
232 default:
233 return 0;
234 }
235
236 return count;
237
238parse_error:
239 if ((long)data == LED_NOLCD)
240 printk(KERN_CRIT "Parse error: expect \"n n n\" (n == 0 or 1) for heartbeat,\ndisk io and lan tx/rx indicators\n");
241 return -EINVAL;
242}
243
244static int __init led_create_procfs(void)
245{
246 struct proc_dir_entry *proc_pdc_root = NULL;
247 struct proc_dir_entry *ent;
248
249 if (led_type == -1) return -1;
250
251 proc_pdc_root = proc_mkdir("pdc", 0);
252 if (!proc_pdc_root) return -1;
253 proc_pdc_root->owner = THIS_MODULE;
254 ent = create_proc_entry("led", S_IFREG|S_IRUGO|S_IWUSR, proc_pdc_root);
255 if (!ent) return -1;
256 ent->nlink = 1;
257 ent->data = (void *)LED_NOLCD; /* LED */
258 ent->read_proc = led_proc_read;
259 ent->write_proc = led_proc_write;
260 ent->owner = THIS_MODULE;
261
262 if (led_type == LED_HASLCD)
263 {
264 ent = create_proc_entry("lcd", S_IFREG|S_IRUGO|S_IWUSR, proc_pdc_root);
265 if (!ent) return -1;
266 ent->nlink = 1;
267 ent->data = (void *)LED_HASLCD; /* LCD */
268 ent->read_proc = led_proc_read;
269 ent->write_proc = led_proc_write;
270 ent->owner = THIS_MODULE;
271 }
272
273 return 0;
274}
275#endif
276
277/*
278 **
279 ** led_ASP_driver()
280 **
281 */
282#define LED_DATA 0x01 /* data to shift (0:on 1:off) */
283#define LED_STROBE 0x02 /* strobe to clock data */
284static void led_ASP_driver(unsigned char leds)
285{
286 int i;
287
288 leds = ~leds;
289 for (i = 0; i < 8; i++) {
290 unsigned char value;
291 value = (leds & 0x80) >> 7;
292 gsc_writeb( value, LED_DATA_REG );
293 gsc_writeb( value | LED_STROBE, LED_DATA_REG );
294 leds <<= 1;
295 }
296}
297
298
299/*
300 **
301 ** led_LASI_driver()
302 **
303 */
304static void led_LASI_driver(unsigned char leds)
305{
306 leds = ~leds;
307 gsc_writeb( leds, LED_DATA_REG );
308}
309
310
311/*
312 **
313 ** led_LCD_driver()
1da177e4
LT
314 **
315 */
316static void led_LCD_driver(unsigned char leds)
317{
34994952
GG
318 static int i;
319 static unsigned char mask[4] = { LED_HEARTBEAT, LED_DISK_IO,
320 LED_LAN_RCV, LED_LAN_TX };
321
322 static struct lcd_block * blockp[4] = {
323 &lcd_info.heartbeat,
324 &lcd_info.disk_io,
325 &lcd_info.lan_rcv,
326 &lcd_info.lan_tx
327 };
328
329 /* Convert min_cmd_delay to milliseconds */
330 unsigned int msec_cmd_delay = 1 + (lcd_info.min_cmd_delay / 1000);
1da177e4 331
34994952
GG
332 for (i=0; i<4; ++i)
333 {
334 if ((leds & mask[i]) != (lastleds & mask[i]))
335 {
336 gsc_writeb( blockp[i]->command, LCD_CMD_REG );
337 msleep(msec_cmd_delay);
338
339 gsc_writeb( leds & mask[i] ? blockp[i]->on :
340 blockp[i]->off, LCD_DATA_REG );
341 msleep(msec_cmd_delay);
342 }
1da177e4
LT
343 }
344}
345
346
347/*
348 **
349 ** led_get_net_activity()
350 **
93b1fae4 351 ** calculate if there was TX- or RX-throughput on the network interfaces
1da177e4
LT
352 ** (analog to dev_get_info() from net/core/dev.c)
353 **
354 */
355static __inline__ int led_get_net_activity(void)
356{
357#ifndef CONFIG_NET
358 return 0;
359#else
360 static unsigned long rx_total_last, tx_total_last;
361 unsigned long rx_total, tx_total;
362 struct net_device *dev;
363 int retval;
364
365 rx_total = tx_total = 0;
366
34994952 367 /* we are running as a workqueue task, so locking dev_base
1da177e4
LT
368 * for reading should be OK */
369 read_lock(&dev_base_lock);
e5ed6399 370 rcu_read_lock();
1da177e4
LT
371 for (dev = dev_base; dev; dev = dev->next) {
372 struct net_device_stats *stats;
e5ed6399 373 struct in_device *in_dev = __in_dev_get_rcu(dev);
1da177e4
LT
374 if (!in_dev || !in_dev->ifa_list)
375 continue;
376 if (LOOPBACK(in_dev->ifa_list->ifa_local))
377 continue;
378 if (!dev->get_stats)
379 continue;
380 stats = dev->get_stats(dev);
381 rx_total += stats->rx_packets;
382 tx_total += stats->tx_packets;
383 }
e5ed6399 384 rcu_read_unlock();
1da177e4
LT
385 read_unlock(&dev_base_lock);
386
387 retval = 0;
388
389 if (rx_total != rx_total_last) {
390 rx_total_last = rx_total;
391 retval |= LED_LAN_RCV;
392 }
393
394 if (tx_total != tx_total_last) {
395 tx_total_last = tx_total;
396 retval |= LED_LAN_TX;
397 }
398
399 return retval;
400#endif
401}
402
403
404/*
405 **
406 ** led_get_diskio_activity()
407 **
408 ** calculate if there was disk-io in the system
409 **
410 */
411static __inline__ int led_get_diskio_activity(void)
412{
413 static unsigned long last_pgpgin, last_pgpgout;
f8891e5e 414 unsigned long events[NR_VM_EVENT_ITEMS];
1da177e4 415 int changed;
34994952 416
f8891e5e 417 all_vm_events(events);
1da177e4
LT
418
419 /* Just use a very simple calculation here. Do not care about overflow,
420 since we only want to know if there was activity or not. */
f8891e5e
CL
421 changed = (events[PGPGIN] != last_pgpgin) ||
422 (events[PGPGOUT] != last_pgpgout);
423 last_pgpgin = events[PGPGIN];
424 last_pgpgout = events[PGPGOUT];
34994952 425
1da177e4
LT
426 return (changed ? LED_DISK_IO : 0);
427}
428
429
430
431/*
34994952 432 ** led_work_func()
1da177e4 433 **
34994952 434 ** manages when and which chassis LCD/LED gets updated
1da177e4
LT
435
436 TODO:
437 - display load average (older machines like 715/64 have 4 "free" LED's for that)
438 - optimizations
439 */
440
34994952
GG
441#define HEARTBEAT_LEN (HZ*10/100)
442#define HEARTBEAT_2ND_RANGE_START (HZ*28/100)
1da177e4
LT
443#define HEARTBEAT_2ND_RANGE_END (HEARTBEAT_2ND_RANGE_START + HEARTBEAT_LEN)
444
34994952 445#define LED_UPDATE_INTERVAL (1 + (HZ*19/1000))
1da177e4 446
34994952 447static void led_work_func (void *unused)
1da177e4 448{
34994952 449 static unsigned long last_jiffies;
1da177e4 450 static unsigned long count_HZ; /* counter in range 0..HZ */
34994952 451 unsigned char currentleds = 0; /* stores current value of the LEDs */
1da177e4
LT
452
453 /* exit if not initialized */
454 if (!led_func_ptr)
455 return;
456
34994952
GG
457 /* increment the heartbeat timekeeper */
458 count_HZ += jiffies - last_jiffies;
459 last_jiffies = jiffies;
460 if (count_HZ >= HZ)
1da177e4
LT
461 count_HZ = 0;
462
34994952 463 if (likely(led_heartbeat))
1da177e4 464 {
34994952
GG
465 /* flash heartbeat-LED like a real heart
466 * (2 x short then a long delay)
467 */
468 if (count_HZ < HEARTBEAT_LEN ||
469 (count_HZ >= HEARTBEAT_2ND_RANGE_START &&
470 count_HZ < HEARTBEAT_2ND_RANGE_END))
471 currentleds |= LED_HEARTBEAT;
1da177e4
LT
472 }
473
34994952
GG
474 if (likely(led_lanrxtx)) currentleds |= led_get_net_activity();
475 if (likely(led_diskio)) currentleds |= led_get_diskio_activity();
1da177e4
LT
476
477 /* blink all LEDs twice a second if we got an Oops (HPMC) */
34994952 478 if (unlikely(oops_in_progress))
1da177e4 479 currentleds = (count_HZ<=(HZ/2)) ? 0 : 0xff;
1da177e4 480
34994952
GG
481 if (currentleds != lastleds)
482 {
483 led_func_ptr(currentleds); /* Update the LCD/LEDs */
484 lastleds = currentleds;
485 }
1da177e4 486
34994952
GG
487 queue_delayed_work(led_wq, &led_task, LED_UPDATE_INTERVAL);
488}
1da177e4
LT
489
490/*
491 ** led_halt()
492 **
493 ** called by the reboot notifier chain at shutdown and stops all
494 ** LED/LCD activities.
495 **
496 */
497
498static int led_halt(struct notifier_block *, unsigned long, void *);
499
500static struct notifier_block led_notifier = {
501 .notifier_call = led_halt,
502};
e041c683 503static int notifier_disabled = 0;
1da177e4
LT
504
505static int led_halt(struct notifier_block *nb, unsigned long event, void *buf)
506{
507 char *txt;
e041c683
AS
508
509 if (notifier_disabled)
510 return NOTIFY_OK;
511
512 notifier_disabled = 1;
1da177e4
LT
513 switch (event) {
514 case SYS_RESTART: txt = "SYSTEM RESTART";
515 break;
516 case SYS_HALT: txt = "SYSTEM HALT";
517 break;
518 case SYS_POWER_OFF: txt = "SYSTEM POWER OFF";
519 break;
520 default: return NOTIFY_DONE;
521 }
522
34994952
GG
523 /* Cancel the work item and delete the queue */
524 if (led_wq) {
525 cancel_rearming_delayed_workqueue(led_wq, &led_task);
526 destroy_workqueue(led_wq);
527 led_wq = NULL;
528 }
529
1da177e4
LT
530 if (lcd_info.model == DISPLAY_MODEL_LCD)
531 lcd_print(txt);
532 else
533 if (led_func_ptr)
534 led_func_ptr(0xff); /* turn all LEDs ON */
535
1da177e4
LT
536 return NOTIFY_OK;
537}
538
539/*
540 ** register_led_driver()
541 **
542 ** registers an external LED or LCD for usage by this driver.
543 ** currently only LCD-, LASI- and ASP-style LCD/LED's are supported.
544 **
545 */
546
547int __init register_led_driver(int model, unsigned long cmd_reg, unsigned long data_reg)
548{
549 static int initialized;
550
551 if (initialized || !data_reg)
552 return 1;
553
554 lcd_info.model = model; /* store the values */
555 LCD_CMD_REG = (cmd_reg == LED_CMD_REG_NONE) ? 0 : cmd_reg;
556
557 switch (lcd_info.model) {
558 case DISPLAY_MODEL_LCD:
559 LCD_DATA_REG = data_reg;
560 printk(KERN_INFO "LCD display at %lx,%lx registered\n",
561 LCD_CMD_REG , LCD_DATA_REG);
562 led_func_ptr = led_LCD_driver;
1da177e4
LT
563 led_type = LED_HASLCD;
564 break;
565
566 case DISPLAY_MODEL_LASI:
567 LED_DATA_REG = data_reg;
568 led_func_ptr = led_LASI_driver;
569 printk(KERN_INFO "LED display at %lx registered\n", LED_DATA_REG);
570 led_type = LED_NOLCD;
571 break;
572
573 case DISPLAY_MODEL_OLD_ASP:
574 LED_DATA_REG = data_reg;
575 led_func_ptr = led_ASP_driver;
576 printk(KERN_INFO "LED (ASP-style) display at %lx registered\n",
577 LED_DATA_REG);
578 led_type = LED_NOLCD;
579 break;
580
581 default:
582 printk(KERN_ERR "%s: Wrong LCD/LED model %d !\n",
583 __FUNCTION__, lcd_info.model);
584 return 1;
585 }
586
587 /* mark the LCD/LED driver now as initialized and
588 * register to the reboot notifier chain */
589 initialized++;
590 register_reboot_notifier(&led_notifier);
591
34994952
GG
592 /* Ensure the work is queued */
593 if (led_wq) {
594 queue_work(led_wq, &led_task);
595 }
596
1da177e4
LT
597 return 0;
598}
599
600/*
601 ** register_led_regions()
602 **
603 ** register_led_regions() registers the LCD/LED regions for /procfs.
604 ** At bootup - where the initialisation of the LCD/LED normally happens -
605 ** not all internal structures of request_region() are properly set up,
606 ** so that we delay the led-registration until after busdevices_init()
607 ** has been executed.
608 **
609 */
610
611void __init register_led_regions(void)
612{
613 switch (lcd_info.model) {
614 case DISPLAY_MODEL_LCD:
615 request_mem_region((unsigned long)LCD_CMD_REG, 1, "lcd_cmd");
616 request_mem_region((unsigned long)LCD_DATA_REG, 1, "lcd_data");
617 break;
618 case DISPLAY_MODEL_LASI:
619 case DISPLAY_MODEL_OLD_ASP:
620 request_mem_region((unsigned long)LED_DATA_REG, 1, "led_data");
621 break;
622 }
623}
624
625
626/*
627 **
628 ** lcd_print()
629 **
630 ** Displays the given string on the LCD-Display of newer machines.
34994952
GG
631 ** lcd_print() disables/enables the timer-based led work queue to
632 ** avoid a race condition while writing the CMD/DATA register pair.
1da177e4
LT
633 **
634 */
635int lcd_print( char *str )
636{
637 int i;
638
639 if (!led_func_ptr || lcd_info.model != DISPLAY_MODEL_LCD)
640 return 0;
641
34994952
GG
642 /* temporarily disable the led work task */
643 if (led_wq)
644 cancel_rearming_delayed_workqueue(led_wq, &led_task);
1da177e4
LT
645
646 /* copy display string to buffer for procfs */
647 strlcpy(lcd_text, str, sizeof(lcd_text));
34994952 648
1da177e4
LT
649 /* Set LCD Cursor to 1st character */
650 gsc_writeb(lcd_info.reset_cmd1, LCD_CMD_REG);
651 udelay(lcd_info.min_cmd_delay);
652
653 /* Print the string */
654 for (i=0; i < lcd_info.lcd_width; i++) {
655 if (str && *str)
656 gsc_writeb(*str++, LCD_DATA_REG);
657 else
658 gsc_writeb(' ', LCD_DATA_REG);
659 udelay(lcd_info.min_cmd_delay);
660 }
661
34994952
GG
662 /* re-queue the work */
663 if (led_wq) {
664 queue_work(led_wq, &led_task);
665 }
1da177e4
LT
666
667 return lcd_info.lcd_width;
668}
669
670/*
671 ** led_init()
672 **
673 ** led_init() is called very early in the bootup-process from setup.c
674 ** and asks the PDC for an usable chassis LCD or LED.
675 ** If the PDC doesn't return any info, then the LED
676 ** is detected by lasi.c or asp.c and registered with the
677 ** above functions lasi_led_init() or asp_led_init().
678 ** KittyHawk machines have often a buggy PDC, so that
679 ** we explicitly check for those machines here.
680 */
681
682int __init led_init(void)
683{
684 struct pdc_chassis_info chassis_info;
685 int ret;
686
687 snprintf(lcd_text_default, sizeof(lcd_text_default),
688 "Linux %s", system_utsname.release);
689
690 /* Work around the buggy PDC of KittyHawk-machines */
691 switch (CPU_HVERSION) {
692 case 0x580: /* KittyHawk DC2-100 (K100) */
693 case 0x581: /* KittyHawk DC3-120 (K210) */
694 case 0x582: /* KittyHawk DC3 100 (K400) */
695 case 0x583: /* KittyHawk DC3 120 (K410) */
696 case 0x58B: /* KittyHawk DC2 100 (K200) */
697 printk(KERN_INFO "%s: KittyHawk-Machine (hversion 0x%x) found, "
698 "LED detection skipped.\n", __FILE__, CPU_HVERSION);
699 goto found; /* use the preinitialized values of lcd_info */
700 }
701
702 /* initialize the struct, so that we can check for valid return values */
703 lcd_info.model = DISPLAY_MODEL_NONE;
704 chassis_info.actcnt = chassis_info.maxcnt = 0;
705
706 ret = pdc_chassis_info(&chassis_info, &lcd_info, sizeof(lcd_info));
707 if (ret == PDC_OK) {
708 DPRINTK((KERN_INFO "%s: chassis info: model=%d (%s), "
709 "lcd_width=%d, cmd_delay=%u,\n"
710 "%s: sizecnt=%d, actcnt=%ld, maxcnt=%ld\n",
711 __FILE__, lcd_info.model,
712 (lcd_info.model==DISPLAY_MODEL_LCD) ? "LCD" :
713 (lcd_info.model==DISPLAY_MODEL_LASI) ? "LED" : "unknown",
714 lcd_info.lcd_width, lcd_info.min_cmd_delay,
715 __FILE__, sizeof(lcd_info),
716 chassis_info.actcnt, chassis_info.maxcnt));
717 DPRINTK((KERN_INFO "%s: cmd=%p, data=%p, reset1=%x, reset2=%x, act_enable=%d\n",
718 __FILE__, lcd_info.lcd_cmd_reg_addr,
719 lcd_info.lcd_data_reg_addr, lcd_info.reset_cmd1,
720 lcd_info.reset_cmd2, lcd_info.act_enable ));
721
722 /* check the results. Some machines have a buggy PDC */
723 if (chassis_info.actcnt <= 0 || chassis_info.actcnt != chassis_info.maxcnt)
724 goto not_found;
725
726 switch (lcd_info.model) {
727 case DISPLAY_MODEL_LCD: /* LCD display */
728 if (chassis_info.actcnt <
729 offsetof(struct pdc_chassis_lcd_info_ret_block, _pad)-1)
730 goto not_found;
731 if (!lcd_info.act_enable) {
732 DPRINTK((KERN_INFO "PDC prohibited usage of the LCD.\n"));
733 goto not_found;
734 }
735 break;
736
737 case DISPLAY_MODEL_NONE: /* no LED or LCD available */
738 printk(KERN_INFO "PDC reported no LCD or LED.\n");
739 goto not_found;
740
741 case DISPLAY_MODEL_LASI: /* Lasi style 8 bit LED display */
742 if (chassis_info.actcnt != 8 && chassis_info.actcnt != 32)
743 goto not_found;
744 break;
745
746 default:
747 printk(KERN_WARNING "PDC reported unknown LCD/LED model %d\n",
748 lcd_info.model);
749 goto not_found;
750 } /* switch() */
751
752found:
753 /* register the LCD/LED driver */
754 register_led_driver(lcd_info.model, LCD_CMD_REG, LCD_DATA_REG);
755 return 0;
756
757 } else { /* if() */
758 DPRINTK((KERN_INFO "pdc_chassis_info call failed with retval = %d\n", ret));
759 }
760
761not_found:
762 lcd_info.model = DISPLAY_MODEL_NONE;
763 return 1;
764}
765
e041c683
AS
766static void __exit led_exit(void)
767{
768 unregister_reboot_notifier(&led_notifier);
769 return;
770}
771
1da177e4
LT
772#ifdef CONFIG_PROC_FS
773module_init(led_create_procfs)
774#endif
This page took 0.236274 seconds and 5 git commands to generate.