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