1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26#include <linux/module.h>
27#include <linux/stddef.h>
28#include <linux/init.h>
29#include <linux/types.h>
30#include <linux/ioport.h>
31#include <linux/utsname.h>
32#include <linux/capability.h>
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>
43#include <linux/workqueue.h>
44#include <linux/rcupdate.h>
45#include <asm/io.h>
46#include <asm/processor.h>
47#include <asm/hardware.h>
48#include <asm/param.h>
49#include <asm/led.h>
50#include <asm/pdc.h>
51#include <asm/uaccess.h>
52
53
54
55
56
57
58
59static int led_type __read_mostly = -1;
60static unsigned char lastleds;
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;
66
67
68static struct workqueue_struct *led_wq;
69static void led_work_func(struct work_struct *);
70static DECLARE_DELAYED_WORK(led_task, led_work_func);
71
72#if 0
73#define DPRINTK(x) printk x
74#else
75#define DPRINTK(x)
76#endif
77
78struct lcd_block {
79 unsigned char command;
80 unsigned char on;
81 unsigned char off;
82};
83
84
85
86
87struct pdc_chassis_lcd_info_ret_block {
88 unsigned long model:16;
89 unsigned long lcd_width:16;
90 unsigned long lcd_cmd_reg_addr;
91 unsigned long lcd_data_reg_addr;
92 unsigned int min_cmd_delay;
93 unsigned char reset_cmd1;
94 unsigned char reset_cmd2;
95 unsigned char act_enable;
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
105#define KITTYHAWK_LCD_CMD F_EXTEND(0xf0190000UL)
106#define KITTYHAWK_LCD_DATA (KITTYHAWK_LCD_CMD+1)
107
108
109
110static struct pdc_chassis_lcd_info_ret_block
111lcd_info __attribute__((aligned(8))) __read_mostly =
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
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
127
128#define LED_HASLCD 1
129#define LED_NOLCD 0
130
131
132static int start_task(void)
133{
134
135 if (led_type == LED_HASLCD) lcd_print( lcd_text_default );
136
137
138 led_wq = create_singlethread_workqueue("led_wq");
139 queue_delayed_work(led_wq, &led_task, 0);
140
141 return 0;
142}
143
144device_initcall(start_task);
145
146
147static void (*led_func_ptr) (unsigned char) __read_mostly;
148
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[32];
186 int d;
187
188 if (!capable(CAP_SYS_ADMIN))
189 return -EACCES;
190
191 if (count >= sizeof(lbuf))
192 count = sizeof(lbuf)-1;
193
194 if (copy_from_user(lbuf, buf, count))
195 return -EFAULT;
196 lbuf[count] = 0;
197
198 cur = lbuf;
199
200 switch ((long)data)
201 {
202 case LED_NOLCD:
203 d = *cur++ - '0';
204 if (d != 0 && d != 1) goto parse_error;
205 led_heartbeat = d;
206
207 if (*cur++ != ' ') goto parse_error;
208
209 d = *cur++ - '0';
210 if (d != 0 && d != 1) goto parse_error;
211 led_diskio = d;
212
213 if (*cur++ != ' ') goto parse_error;
214
215 d = *cur++ - '0';
216 if (d != 0 && d != 1) goto parse_error;
217 led_lanrxtx = d;
218
219 break;
220 case LED_HASLCD:
221 if (*cur && cur[strlen(cur)-1] == '\n')
222 cur[strlen(cur)-1] = 0;
223 if (*cur == 0)
224 cur = lcd_text_default;
225 lcd_print(cur);
226 break;
227 default:
228 return 0;
229 }
230
231 return count;
232
233parse_error:
234 if ((long)data == LED_NOLCD)
235 printk(KERN_CRIT "Parse error: expect \"n n n\" (n == 0 or 1) for heartbeat,\ndisk io and lan tx/rx indicators\n");
236 return -EINVAL;
237}
238
239static int __init led_create_procfs(void)
240{
241 struct proc_dir_entry *proc_pdc_root = NULL;
242 struct proc_dir_entry *ent;
243
244 if (led_type == -1) return -1;
245
246 proc_pdc_root = proc_mkdir("pdc", 0);
247 if (!proc_pdc_root) return -1;
248 proc_pdc_root->owner = THIS_MODULE;
249 ent = create_proc_entry("led", S_IFREG|S_IRUGO|S_IWUSR, proc_pdc_root);
250 if (!ent) return -1;
251 ent->data = (void *)LED_NOLCD;
252 ent->read_proc = led_proc_read;
253 ent->write_proc = led_proc_write;
254 ent->owner = THIS_MODULE;
255
256 if (led_type == LED_HASLCD)
257 {
258 ent = create_proc_entry("lcd", S_IFREG|S_IRUGO|S_IWUSR, proc_pdc_root);
259 if (!ent) return -1;
260 ent->data = (void *)LED_HASLCD;
261 ent->read_proc = led_proc_read;
262 ent->write_proc = led_proc_write;
263 ent->owner = THIS_MODULE;
264 }
265
266 return 0;
267}
268#endif
269
270
271
272
273
274
275#define LED_DATA 0x01
276#define LED_STROBE 0x02
277static void led_ASP_driver(unsigned char leds)
278{
279 int i;
280
281 leds = ~leds;
282 for (i = 0; i < 8; i++) {
283 unsigned char value;
284 value = (leds & 0x80) >> 7;
285 gsc_writeb( value, LED_DATA_REG );
286 gsc_writeb( value | LED_STROBE, LED_DATA_REG );
287 leds <<= 1;
288 }
289}
290
291
292
293
294
295
296
297static void led_LASI_driver(unsigned char leds)
298{
299 leds = ~leds;
300 gsc_writeb( leds, LED_DATA_REG );
301}
302
303
304
305
306
307
308
309static void led_LCD_driver(unsigned char leds)
310{
311 static int i;
312 static unsigned char mask[4] = { LED_HEARTBEAT, LED_DISK_IO,
313 LED_LAN_RCV, LED_LAN_TX };
314
315 static struct lcd_block * blockp[4] = {
316 &lcd_info.heartbeat,
317 &lcd_info.disk_io,
318 &lcd_info.lan_rcv,
319 &lcd_info.lan_tx
320 };
321
322
323 unsigned int msec_cmd_delay = 1 + (lcd_info.min_cmd_delay / 1000);
324
325 for (i=0; i<4; ++i)
326 {
327 if ((leds & mask[i]) != (lastleds & mask[i]))
328 {
329 gsc_writeb( blockp[i]->command, LCD_CMD_REG );
330 msleep(msec_cmd_delay);
331
332 gsc_writeb( leds & mask[i] ? blockp[i]->on :
333 blockp[i]->off, LCD_DATA_REG );
334 msleep(msec_cmd_delay);
335 }
336 }
337}
338
339
340
341
342
343
344
345
346
347
348static __inline__ int led_get_net_activity(void)
349{
350#ifndef CONFIG_NET
351 return 0;
352#else
353 static unsigned long rx_total_last, tx_total_last;
354 unsigned long rx_total, tx_total;
355 struct net_device *dev;
356 int retval;
357
358 rx_total = tx_total = 0;
359
360
361
362 read_lock(&dev_base_lock);
363 rcu_read_lock();
364 for_each_netdev(&init_net, dev) {
365 struct net_device_stats *stats;
366 struct in_device *in_dev = __in_dev_get_rcu(dev);
367 if (!in_dev || !in_dev->ifa_list)
368 continue;
369 if (ipv4_is_loopback(in_dev->ifa_list->ifa_local))
370 continue;
371 stats = dev->get_stats(dev);
372 rx_total += stats->rx_packets;
373 tx_total += stats->tx_packets;
374 }
375 rcu_read_unlock();
376 read_unlock(&dev_base_lock);
377
378 retval = 0;
379
380 if (rx_total != rx_total_last) {
381 rx_total_last = rx_total;
382 retval |= LED_LAN_RCV;
383 }
384
385 if (tx_total != tx_total_last) {
386 tx_total_last = tx_total;
387 retval |= LED_LAN_TX;
388 }
389
390 return retval;
391#endif
392}
393
394
395
396
397
398
399
400
401
402static __inline__ int led_get_diskio_activity(void)
403{
404 static unsigned long last_pgpgin, last_pgpgout;
405 unsigned long events[NR_VM_EVENT_ITEMS];
406 int changed;
407
408 all_vm_events(events);
409
410
411
412 changed = (events[PGPGIN] != last_pgpgin) ||
413 (events[PGPGOUT] != last_pgpgout);
414 last_pgpgin = events[PGPGIN];
415 last_pgpgout = events[PGPGOUT];
416
417 return (changed ? LED_DISK_IO : 0);
418}
419
420
421
422
423
424
425
426
427
428
429
430
431
432#define HEARTBEAT_LEN (HZ*10/100)
433#define HEARTBEAT_2ND_RANGE_START (HZ*28/100)
434#define HEARTBEAT_2ND_RANGE_END (HEARTBEAT_2ND_RANGE_START + HEARTBEAT_LEN)
435
436#define LED_UPDATE_INTERVAL (1 + (HZ*19/1000))
437
438static void led_work_func (struct work_struct *unused)
439{
440 static unsigned long last_jiffies;
441 static unsigned long count_HZ;
442 unsigned char currentleds = 0;
443
444
445 if (!led_func_ptr)
446 return;
447
448
449 count_HZ += jiffies - last_jiffies;
450 last_jiffies = jiffies;
451 if (count_HZ >= HZ)
452 count_HZ = 0;
453
454 if (likely(led_heartbeat))
455 {
456
457
458
459 if (count_HZ < HEARTBEAT_LEN ||
460 (count_HZ >= HEARTBEAT_2ND_RANGE_START &&
461 count_HZ < HEARTBEAT_2ND_RANGE_END))
462 currentleds |= LED_HEARTBEAT;
463 }
464
465 if (likely(led_lanrxtx)) currentleds |= led_get_net_activity();
466 if (likely(led_diskio)) currentleds |= led_get_diskio_activity();
467
468
469 if (unlikely(oops_in_progress))
470 currentleds = (count_HZ<=(HZ/2)) ? 0 : 0xff;
471
472 if (currentleds != lastleds)
473 {
474 led_func_ptr(currentleds);
475 lastleds = currentleds;
476 }
477
478 queue_delayed_work(led_wq, &led_task, LED_UPDATE_INTERVAL);
479}
480
481
482
483
484
485
486
487
488
489static int led_halt(struct notifier_block *, unsigned long, void *);
490
491static struct notifier_block led_notifier = {
492 .notifier_call = led_halt,
493};
494static int notifier_disabled = 0;
495
496static int led_halt(struct notifier_block *nb, unsigned long event, void *buf)
497{
498 char *txt;
499
500 if (notifier_disabled)
501 return NOTIFY_OK;
502
503 notifier_disabled = 1;
504 switch (event) {
505 case SYS_RESTART: txt = "SYSTEM RESTART";
506 break;
507 case SYS_HALT: txt = "SYSTEM HALT";
508 break;
509 case SYS_POWER_OFF: txt = "SYSTEM POWER OFF";
510 break;
511 default: return NOTIFY_DONE;
512 }
513
514
515 if (led_wq) {
516 cancel_rearming_delayed_workqueue(led_wq, &led_task);
517 destroy_workqueue(led_wq);
518 led_wq = NULL;
519 }
520
521 if (lcd_info.model == DISPLAY_MODEL_LCD)
522 lcd_print(txt);
523 else
524 if (led_func_ptr)
525 led_func_ptr(0xff);
526
527 return NOTIFY_OK;
528}
529
530
531
532
533
534
535
536
537
538int __init register_led_driver(int model, unsigned long cmd_reg, unsigned long data_reg)
539{
540 static int initialized;
541
542 if (initialized || !data_reg)
543 return 1;
544
545 lcd_info.model = model;
546 LCD_CMD_REG = (cmd_reg == LED_CMD_REG_NONE) ? 0 : cmd_reg;
547
548 switch (lcd_info.model) {
549 case DISPLAY_MODEL_LCD:
550 LCD_DATA_REG = data_reg;
551 printk(KERN_INFO "LCD display at %lx,%lx registered\n",
552 LCD_CMD_REG , LCD_DATA_REG);
553 led_func_ptr = led_LCD_driver;
554 led_type = LED_HASLCD;
555 break;
556
557 case DISPLAY_MODEL_LASI:
558 LED_DATA_REG = data_reg;
559 led_func_ptr = led_LASI_driver;
560 printk(KERN_INFO "LED display at %lx registered\n", LED_DATA_REG);
561 led_type = LED_NOLCD;
562 break;
563
564 case DISPLAY_MODEL_OLD_ASP:
565 LED_DATA_REG = data_reg;
566 led_func_ptr = led_ASP_driver;
567 printk(KERN_INFO "LED (ASP-style) display at %lx registered\n",
568 LED_DATA_REG);
569 led_type = LED_NOLCD;
570 break;
571
572 default:
573 printk(KERN_ERR "%s: Wrong LCD/LED model %d !\n",
574 __func__, lcd_info.model);
575 return 1;
576 }
577
578
579
580 initialized++;
581 register_reboot_notifier(&led_notifier);
582
583
584 if (led_wq) {
585 queue_delayed_work(led_wq, &led_task, 0);
586 }
587
588 return 0;
589}
590
591
592
593
594
595
596
597
598
599
600
601
602void __init register_led_regions(void)
603{
604 switch (lcd_info.model) {
605 case DISPLAY_MODEL_LCD:
606 request_mem_region((unsigned long)LCD_CMD_REG, 1, "lcd_cmd");
607 request_mem_region((unsigned long)LCD_DATA_REG, 1, "lcd_data");
608 break;
609 case DISPLAY_MODEL_LASI:
610 case DISPLAY_MODEL_OLD_ASP:
611 request_mem_region((unsigned long)LED_DATA_REG, 1, "led_data");
612 break;
613 }
614}
615
616
617
618
619
620
621
622
623
624
625
626int lcd_print( const char *str )
627{
628 int i;
629
630 if (!led_func_ptr || lcd_info.model != DISPLAY_MODEL_LCD)
631 return 0;
632
633
634 if (led_wq)
635 cancel_rearming_delayed_workqueue(led_wq, &led_task);
636
637
638 strlcpy(lcd_text, str, sizeof(lcd_text));
639
640
641 gsc_writeb(lcd_info.reset_cmd1, LCD_CMD_REG);
642 udelay(lcd_info.min_cmd_delay);
643
644
645 for (i=0; i < lcd_info.lcd_width; i++) {
646 if (str && *str)
647 gsc_writeb(*str++, LCD_DATA_REG);
648 else
649 gsc_writeb(' ', LCD_DATA_REG);
650 udelay(lcd_info.min_cmd_delay);
651 }
652
653
654 if (led_wq) {
655 queue_delayed_work(led_wq, &led_task, 0);
656 }
657
658 return lcd_info.lcd_width;
659}
660
661
662
663
664
665
666
667
668
669
670
671
672
673int __init led_init(void)
674{
675 struct pdc_chassis_info chassis_info;
676 int ret;
677
678 snprintf(lcd_text_default, sizeof(lcd_text_default),
679 "Linux %s", init_utsname()->release);
680
681
682 switch (CPU_HVERSION) {
683 case 0x580:
684 case 0x581:
685 case 0x582:
686 case 0x583:
687 case 0x58B:
688 printk(KERN_INFO "%s: KittyHawk-Machine (hversion 0x%x) found, "
689 "LED detection skipped.\n", __FILE__, CPU_HVERSION);
690 goto found;
691 }
692
693
694 lcd_info.model = DISPLAY_MODEL_NONE;
695 chassis_info.actcnt = chassis_info.maxcnt = 0;
696
697 ret = pdc_chassis_info(&chassis_info, &lcd_info, sizeof(lcd_info));
698 if (ret == PDC_OK) {
699 DPRINTK((KERN_INFO "%s: chassis info: model=%d (%s), "
700 "lcd_width=%d, cmd_delay=%u,\n"
701 "%s: sizecnt=%d, actcnt=%ld, maxcnt=%ld\n",
702 __FILE__, lcd_info.model,
703 (lcd_info.model==DISPLAY_MODEL_LCD) ? "LCD" :
704 (lcd_info.model==DISPLAY_MODEL_LASI) ? "LED" : "unknown",
705 lcd_info.lcd_width, lcd_info.min_cmd_delay,
706 __FILE__, sizeof(lcd_info),
707 chassis_info.actcnt, chassis_info.maxcnt));
708 DPRINTK((KERN_INFO "%s: cmd=%p, data=%p, reset1=%x, reset2=%x, act_enable=%d\n",
709 __FILE__, lcd_info.lcd_cmd_reg_addr,
710 lcd_info.lcd_data_reg_addr, lcd_info.reset_cmd1,
711 lcd_info.reset_cmd2, lcd_info.act_enable ));
712
713
714 if (chassis_info.actcnt <= 0 || chassis_info.actcnt != chassis_info.maxcnt)
715 goto not_found;
716
717 switch (lcd_info.model) {
718 case DISPLAY_MODEL_LCD:
719 if (chassis_info.actcnt <
720 offsetof(struct pdc_chassis_lcd_info_ret_block, _pad)-1)
721 goto not_found;
722 if (!lcd_info.act_enable) {
723 DPRINTK((KERN_INFO "PDC prohibited usage of the LCD.\n"));
724 goto not_found;
725 }
726 break;
727
728 case DISPLAY_MODEL_NONE:
729 printk(KERN_INFO "PDC reported no LCD or LED.\n");
730 goto not_found;
731
732 case DISPLAY_MODEL_LASI:
733 if (chassis_info.actcnt != 8 && chassis_info.actcnt != 32)
734 goto not_found;
735 break;
736
737 default:
738 printk(KERN_WARNING "PDC reported unknown LCD/LED model %d\n",
739 lcd_info.model);
740 goto not_found;
741 }
742
743found:
744
745 register_led_driver(lcd_info.model, LCD_CMD_REG, LCD_DATA_REG);
746 return 0;
747
748 } else {
749 DPRINTK((KERN_INFO "pdc_chassis_info call failed with retval = %d\n", ret));
750 }
751
752not_found:
753 lcd_info.model = DISPLAY_MODEL_NONE;
754 return 1;
755}
756
757static void __exit led_exit(void)
758{
759 unregister_reboot_notifier(&led_notifier);
760 return;
761}
762
763#ifdef CONFIG_PROC_FS
764module_init(led_create_procfs)
765#endif
766