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