blob: d02be78a41386b2ecb94c249cff8da11776ecb4a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Helge Deller8a1def42009-01-06 14:23:13 +01006 * (c) Copyright 2001-2009 Helge Deller <deller@gmx.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * (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>
Grant Grundler34994952005-10-21 22:46:18 -040021 * - Switch from using a tasklet to a work queue, so the led_LCD_driver
22 * can sleep.
23 * David Pye <dmp@davidmpye.dyndns.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 */
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#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>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080032#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#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>
Alexey Dobriyan217bfb52009-11-27 06:51:12 +000041#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/ctype.h>
43#include <linux/blkdev.h>
Grant Grundler34994952005-10-21 22:46:18 -040044#include <linux/workqueue.h>
Herbert Xue5ed6392005-10-03 14:35:55 -070045#include <linux/rcupdate.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#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
Grant Grundler34994952005-10-21 22:46:18 -040055 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 turned off with the following variables (controlled via procfs) */
59
Helge Deller8039de12006-01-10 20:35:03 -050060static int led_type __read_mostly = -1;
Grant Grundler34994952005-10-21 22:46:18 -040061static unsigned char lastleds; /* LED state from most recent update */
Helge Deller8039de12006-01-10 20:35:03 -050062static 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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Grant Grundler34994952005-10-21 22:46:18 -040068
69static struct workqueue_struct *led_wq;
David Howells6858f3b2006-12-07 15:31:38 +000070static void led_work_func(struct work_struct *);
71static DECLARE_DELAYED_WORK(led_task, led_work_func);
Grant Grundler34994952005-10-21 22:46:18 -040072
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#if 0
74#define DPRINTK(x) printk x
75#else
76#define DPRINTK(x)
77#endif
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079struct 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
Helge Deller8039de12006-01-10 20:35:03 -0500112lcd_info __attribute__((aligned(8))) __read_mostly =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
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
Grant Grundler34994952005-10-21 22:46:18 -0400129#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");
David Howells6858f3b2006-12-07 15:31:38 +0000140 queue_delayed_work(led_wq, &led_task, 0);
Grant Grundler34994952005-10-21 22:46:18 -0400141
142 return 0;
143}
144
145device_initcall(start_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147/* ptr to LCD/LED-specific function */
Helge Deller8039de12006-01-10 20:35:03 -0500148static void (*led_func_ptr) (unsigned char) __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150#ifdef CONFIG_PROC_FS
Alexey Dobriyan217bfb52009-11-27 06:51:12 +0000151static int led_proc_show(struct seq_file *m, void *v)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Alexey Dobriyan217bfb52009-11-27 06:51:12 +0000153 switch ((long)m->private)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 {
155 case LED_NOLCD:
Alexey Dobriyan217bfb52009-11-27 06:51:12 +0000156 seq_printf(m, "Heartbeat: %d\n", led_heartbeat);
157 seq_printf(m, "Disk IO: %d\n", led_diskio);
158 seq_printf(m, "LAN Rx/Tx: %d\n", led_lanrxtx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 break;
160 case LED_HASLCD:
Alexey Dobriyan217bfb52009-11-27 06:51:12 +0000161 seq_printf(m, "%s\n", lcd_text);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 break;
163 default:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 return 0;
165 }
Alexey Dobriyan217bfb52009-11-27 06:51:12 +0000166 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
Alexey Dobriyan217bfb52009-11-27 06:51:12 +0000169static int led_proc_open(struct inode *inode, struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
Alexey Dobriyan217bfb52009-11-27 06:51:12 +0000171 return single_open(file, led_proc_show, PDE(inode)->data);
172}
173
174
175static ssize_t led_proc_write(struct file *file, const char *buf,
176 size_t count, loff_t *pos)
177{
178 void *data = PDE(file->f_path.dentry->d_inode)->data;
Helge Deller4b4fd272010-08-02 22:46:41 +0200179 char *cur, lbuf[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 int d;
181
182 if (!capable(CAP_SYS_ADMIN))
183 return -EACCES;
184
Helge Deller4b4fd272010-08-02 22:46:41 +0200185 if (count >= sizeof(lbuf))
186 count = sizeof(lbuf)-1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187
188 if (copy_from_user(lbuf, buf, count))
189 return -EFAULT;
Helge Deller4b4fd272010-08-02 22:46:41 +0200190 lbuf[count] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
192 cur = lbuf;
193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 switch ((long)data)
195 {
196 case LED_NOLCD:
197 d = *cur++ - '0';
198 if (d != 0 && d != 1) goto parse_error;
199 led_heartbeat = d;
200
201 if (*cur++ != ' ') goto parse_error;
202
203 d = *cur++ - '0';
204 if (d != 0 && d != 1) goto parse_error;
205 led_diskio = d;
206
207 if (*cur++ != ' ') goto parse_error;
208
209 d = *cur++ - '0';
210 if (d != 0 && d != 1) goto parse_error;
211 led_lanrxtx = d;
212
213 break;
214 case LED_HASLCD:
215 if (*cur && cur[strlen(cur)-1] == '\n')
216 cur[strlen(cur)-1] = 0;
217 if (*cur == 0)
218 cur = lcd_text_default;
219 lcd_print(cur);
220 break;
221 default:
222 return 0;
223 }
224
225 return count;
226
227parse_error:
228 if ((long)data == LED_NOLCD)
229 printk(KERN_CRIT "Parse error: expect \"n n n\" (n == 0 or 1) for heartbeat,\ndisk io and lan tx/rx indicators\n");
230 return -EINVAL;
231}
232
Alexey Dobriyan217bfb52009-11-27 06:51:12 +0000233static const struct file_operations led_proc_fops = {
234 .owner = THIS_MODULE,
235 .open = led_proc_open,
236 .read = seq_read,
237 .llseek = seq_lseek,
238 .release = single_release,
239 .write = led_proc_write,
240};
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242static int __init led_create_procfs(void)
243{
244 struct proc_dir_entry *proc_pdc_root = NULL;
245 struct proc_dir_entry *ent;
246
247 if (led_type == -1) return -1;
248
249 proc_pdc_root = proc_mkdir("pdc", 0);
250 if (!proc_pdc_root) return -1;
Alexey Dobriyan217bfb52009-11-27 06:51:12 +0000251 ent = proc_create_data("led", S_IRUGO|S_IWUSR, proc_pdc_root,
252 &led_proc_fops, (void *)LED_NOLCD); /* LED */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 if (!ent) return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 if (led_type == LED_HASLCD)
256 {
Alexey Dobriyan217bfb52009-11-27 06:51:12 +0000257 ent = proc_create_data("lcd", S_IRUGO|S_IWUSR, proc_pdc_root,
258 &led_proc_fops, (void *)LED_HASLCD); /* LCD */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (!ent) return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 }
261
262 return 0;
263}
264#endif
265
266/*
267 **
268 ** led_ASP_driver()
269 **
270 */
271#define LED_DATA 0x01 /* data to shift (0:on 1:off) */
272#define LED_STROBE 0x02 /* strobe to clock data */
273static void led_ASP_driver(unsigned char leds)
274{
275 int i;
276
277 leds = ~leds;
278 for (i = 0; i < 8; i++) {
279 unsigned char value;
280 value = (leds & 0x80) >> 7;
281 gsc_writeb( value, LED_DATA_REG );
282 gsc_writeb( value | LED_STROBE, LED_DATA_REG );
283 leds <<= 1;
284 }
285}
286
287
288/*
289 **
290 ** led_LASI_driver()
291 **
292 */
293static void led_LASI_driver(unsigned char leds)
294{
295 leds = ~leds;
296 gsc_writeb( leds, LED_DATA_REG );
297}
298
299
300/*
301 **
302 ** led_LCD_driver()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 **
304 */
305static void led_LCD_driver(unsigned char leds)
306{
Grant Grundler34994952005-10-21 22:46:18 -0400307 static int i;
308 static unsigned char mask[4] = { LED_HEARTBEAT, LED_DISK_IO,
309 LED_LAN_RCV, LED_LAN_TX };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Grant Grundler34994952005-10-21 22:46:18 -0400311 static struct lcd_block * blockp[4] = {
312 &lcd_info.heartbeat,
313 &lcd_info.disk_io,
314 &lcd_info.lan_rcv,
315 &lcd_info.lan_tx
316 };
317
318 /* Convert min_cmd_delay to milliseconds */
319 unsigned int msec_cmd_delay = 1 + (lcd_info.min_cmd_delay / 1000);
320
321 for (i=0; i<4; ++i)
322 {
323 if ((leds & mask[i]) != (lastleds & mask[i]))
324 {
325 gsc_writeb( blockp[i]->command, LCD_CMD_REG );
326 msleep(msec_cmd_delay);
327
328 gsc_writeb( leds & mask[i] ? blockp[i]->on :
329 blockp[i]->off, LCD_DATA_REG );
330 msleep(msec_cmd_delay);
331 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
333}
334
335
336/*
337 **
338 ** led_get_net_activity()
339 **
Adrian Bunk93b1fae2006-01-10 00:13:33 +0100340 ** calculate if there was TX- or RX-throughput on the network interfaces
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 ** (analog to dev_get_info() from net/core/dev.c)
342 **
343 */
344static __inline__ int led_get_net_activity(void)
345{
346#ifndef CONFIG_NET
347 return 0;
348#else
349 static unsigned long rx_total_last, tx_total_last;
350 unsigned long rx_total, tx_total;
351 struct net_device *dev;
352 int retval;
353
354 rx_total = tx_total = 0;
355
Eric Dumazet246c65a2009-11-09 18:07:28 +0000356 /* we are running as a workqueue task, so we can use an RCU lookup */
Herbert Xue5ed6392005-10-03 14:35:55 -0700357 rcu_read_lock();
Eric Dumazet246c65a2009-11-09 18:07:28 +0000358 for_each_netdev_rcu(&init_net, dev) {
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -0800359 const struct net_device_stats *stats;
Herbert Xue5ed6392005-10-03 14:35:55 -0700360 struct in_device *in_dev = __in_dev_get_rcu(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 if (!in_dev || !in_dev->ifa_list)
362 continue;
Joe Perches17159b02007-12-16 20:28:24 -0800363 if (ipv4_is_loopback(in_dev->ifa_list->ifa_local))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 continue;
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -0800365 stats = dev_get_stats(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 rx_total += stats->rx_packets;
367 tx_total += stats->tx_packets;
368 }
Herbert Xue5ed6392005-10-03 14:35:55 -0700369 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 retval = 0;
372
373 if (rx_total != rx_total_last) {
374 rx_total_last = rx_total;
375 retval |= LED_LAN_RCV;
376 }
377
378 if (tx_total != tx_total_last) {
379 tx_total_last = tx_total;
380 retval |= LED_LAN_TX;
381 }
382
383 return retval;
384#endif
385}
386
387
388/*
389 **
390 ** led_get_diskio_activity()
391 **
392 ** calculate if there was disk-io in the system
393 **
394 */
395static __inline__ int led_get_diskio_activity(void)
396{
397 static unsigned long last_pgpgin, last_pgpgout;
Christoph Lameterf8891e52006-06-30 01:55:45 -0700398 unsigned long events[NR_VM_EVENT_ITEMS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 int changed;
Grant Grundler34994952005-10-21 22:46:18 -0400400
Christoph Lameterf8891e52006-06-30 01:55:45 -0700401 all_vm_events(events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 /* Just use a very simple calculation here. Do not care about overflow,
404 since we only want to know if there was activity or not. */
Christoph Lameterf8891e52006-06-30 01:55:45 -0700405 changed = (events[PGPGIN] != last_pgpgin) ||
406 (events[PGPGOUT] != last_pgpgout);
407 last_pgpgin = events[PGPGIN];
408 last_pgpgout = events[PGPGOUT];
Grant Grundler34994952005-10-21 22:46:18 -0400409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 return (changed ? LED_DISK_IO : 0);
411}
412
413
414
415/*
Grant Grundler34994952005-10-21 22:46:18 -0400416 ** led_work_func()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 **
Grant Grundler34994952005-10-21 22:46:18 -0400418 ** manages when and which chassis LCD/LED gets updated
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 TODO:
421 - display load average (older machines like 715/64 have 4 "free" LED's for that)
422 - optimizations
423 */
424
Grant Grundler34994952005-10-21 22:46:18 -0400425#define HEARTBEAT_LEN (HZ*10/100)
426#define HEARTBEAT_2ND_RANGE_START (HZ*28/100)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427#define HEARTBEAT_2ND_RANGE_END (HEARTBEAT_2ND_RANGE_START + HEARTBEAT_LEN)
428
Grant Grundler34994952005-10-21 22:46:18 -0400429#define LED_UPDATE_INTERVAL (1 + (HZ*19/1000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
David Howells6858f3b2006-12-07 15:31:38 +0000431static void led_work_func (struct work_struct *unused)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Grant Grundler34994952005-10-21 22:46:18 -0400433 static unsigned long last_jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 static unsigned long count_HZ; /* counter in range 0..HZ */
Grant Grundler34994952005-10-21 22:46:18 -0400435 unsigned char currentleds = 0; /* stores current value of the LEDs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437 /* exit if not initialized */
438 if (!led_func_ptr)
439 return;
440
Grant Grundler34994952005-10-21 22:46:18 -0400441 /* increment the heartbeat timekeeper */
442 count_HZ += jiffies - last_jiffies;
443 last_jiffies = jiffies;
444 if (count_HZ >= HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 count_HZ = 0;
446
Grant Grundler34994952005-10-21 22:46:18 -0400447 if (likely(led_heartbeat))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 {
Grant Grundler34994952005-10-21 22:46:18 -0400449 /* flash heartbeat-LED like a real heart
450 * (2 x short then a long delay)
451 */
452 if (count_HZ < HEARTBEAT_LEN ||
453 (count_HZ >= HEARTBEAT_2ND_RANGE_START &&
454 count_HZ < HEARTBEAT_2ND_RANGE_END))
455 currentleds |= LED_HEARTBEAT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 }
457
Grant Grundler34994952005-10-21 22:46:18 -0400458 if (likely(led_lanrxtx)) currentleds |= led_get_net_activity();
459 if (likely(led_diskio)) currentleds |= led_get_diskio_activity();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Helge Deller8a1def42009-01-06 14:23:13 +0100461 /* blink LEDs if we got an Oops (HPMC) */
462 if (unlikely(oops_in_progress)) {
463 if (boot_cpu_data.cpu_type >= pcxl2) {
464 /* newer machines don't have loadavg. LEDs, so we
465 * let all LEDs blink twice per second instead */
466 currentleds = (count_HZ <= (HZ/2)) ? 0 : 0xff;
467 } else {
468 /* old machines: blink loadavg. LEDs twice per second */
469 if (count_HZ <= (HZ/2))
470 currentleds &= ~(LED4|LED5|LED6|LED7);
471 else
472 currentleds |= (LED4|LED5|LED6|LED7);
473 }
474 }
Grant Grundler34994952005-10-21 22:46:18 -0400475
476 if (currentleds != lastleds)
477 {
478 led_func_ptr(currentleds); /* Update the LCD/LEDs */
479 lastleds = currentleds;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
Grant Grundler34994952005-10-21 22:46:18 -0400481
482 queue_delayed_work(led_wq, &led_task, LED_UPDATE_INTERVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485/*
486 ** led_halt()
487 **
488 ** called by the reboot notifier chain at shutdown and stops all
489 ** LED/LCD activities.
490 **
491 */
492
493static int led_halt(struct notifier_block *, unsigned long, void *);
494
495static struct notifier_block led_notifier = {
496 .notifier_call = led_halt,
497};
Alan Sterne041c682006-03-27 01:16:30 -0800498static int notifier_disabled = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500static int led_halt(struct notifier_block *nb, unsigned long event, void *buf)
501{
502 char *txt;
Alan Sterne041c682006-03-27 01:16:30 -0800503
504 if (notifier_disabled)
505 return NOTIFY_OK;
506
507 notifier_disabled = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 switch (event) {
509 case SYS_RESTART: txt = "SYSTEM RESTART";
510 break;
511 case SYS_HALT: txt = "SYSTEM HALT";
512 break;
513 case SYS_POWER_OFF: txt = "SYSTEM POWER OFF";
514 break;
515 default: return NOTIFY_DONE;
516 }
517
Grant Grundler34994952005-10-21 22:46:18 -0400518 /* Cancel the work item and delete the queue */
519 if (led_wq) {
Helge Deller8a1def42009-01-06 14:23:13 +0100520 cancel_delayed_work_sync(&led_task);
Grant Grundler34994952005-10-21 22:46:18 -0400521 destroy_workqueue(led_wq);
522 led_wq = NULL;
523 }
524
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 if (lcd_info.model == DISPLAY_MODEL_LCD)
526 lcd_print(txt);
527 else
528 if (led_func_ptr)
529 led_func_ptr(0xff); /* turn all LEDs ON */
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return NOTIFY_OK;
532}
533
534/*
535 ** register_led_driver()
536 **
537 ** registers an external LED or LCD for usage by this driver.
538 ** currently only LCD-, LASI- and ASP-style LCD/LED's are supported.
539 **
540 */
541
542int __init register_led_driver(int model, unsigned long cmd_reg, unsigned long data_reg)
543{
544 static int initialized;
545
546 if (initialized || !data_reg)
547 return 1;
548
549 lcd_info.model = model; /* store the values */
550 LCD_CMD_REG = (cmd_reg == LED_CMD_REG_NONE) ? 0 : cmd_reg;
551
552 switch (lcd_info.model) {
553 case DISPLAY_MODEL_LCD:
554 LCD_DATA_REG = data_reg;
555 printk(KERN_INFO "LCD display at %lx,%lx registered\n",
556 LCD_CMD_REG , LCD_DATA_REG);
557 led_func_ptr = led_LCD_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 led_type = LED_HASLCD;
559 break;
560
561 case DISPLAY_MODEL_LASI:
562 LED_DATA_REG = data_reg;
563 led_func_ptr = led_LASI_driver;
564 printk(KERN_INFO "LED display at %lx registered\n", LED_DATA_REG);
565 led_type = LED_NOLCD;
566 break;
567
568 case DISPLAY_MODEL_OLD_ASP:
569 LED_DATA_REG = data_reg;
570 led_func_ptr = led_ASP_driver;
571 printk(KERN_INFO "LED (ASP-style) display at %lx registered\n",
572 LED_DATA_REG);
573 led_type = LED_NOLCD;
574 break;
575
576 default:
577 printk(KERN_ERR "%s: Wrong LCD/LED model %d !\n",
Harvey Harrisona8043ec2008-05-14 16:21:56 -0700578 __func__, lcd_info.model);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return 1;
580 }
581
582 /* mark the LCD/LED driver now as initialized and
583 * register to the reboot notifier chain */
584 initialized++;
585 register_reboot_notifier(&led_notifier);
586
Grant Grundler34994952005-10-21 22:46:18 -0400587 /* Ensure the work is queued */
588 if (led_wq) {
David Howells6858f3b2006-12-07 15:31:38 +0000589 queue_delayed_work(led_wq, &led_task, 0);
Grant Grundler34994952005-10-21 22:46:18 -0400590 }
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 return 0;
593}
594
595/*
596 ** register_led_regions()
597 **
598 ** register_led_regions() registers the LCD/LED regions for /procfs.
599 ** At bootup - where the initialisation of the LCD/LED normally happens -
600 ** not all internal structures of request_region() are properly set up,
601 ** so that we delay the led-registration until after busdevices_init()
602 ** has been executed.
603 **
604 */
605
606void __init register_led_regions(void)
607{
608 switch (lcd_info.model) {
609 case DISPLAY_MODEL_LCD:
610 request_mem_region((unsigned long)LCD_CMD_REG, 1, "lcd_cmd");
611 request_mem_region((unsigned long)LCD_DATA_REG, 1, "lcd_data");
612 break;
613 case DISPLAY_MODEL_LASI:
614 case DISPLAY_MODEL_OLD_ASP:
615 request_mem_region((unsigned long)LED_DATA_REG, 1, "led_data");
616 break;
617 }
618}
619
620
621/*
622 **
623 ** lcd_print()
624 **
625 ** Displays the given string on the LCD-Display of newer machines.
Grant Grundler34994952005-10-21 22:46:18 -0400626 ** lcd_print() disables/enables the timer-based led work queue to
627 ** avoid a race condition while writing the CMD/DATA register pair.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 **
629 */
Helge Deller6e16d942007-01-07 16:07:48 +0100630int lcd_print( const char *str )
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
632 int i;
633
634 if (!led_func_ptr || lcd_info.model != DISPLAY_MODEL_LCD)
635 return 0;
636
Grant Grundler34994952005-10-21 22:46:18 -0400637 /* temporarily disable the led work task */
638 if (led_wq)
Helge Deller8a1def42009-01-06 14:23:13 +0100639 cancel_delayed_work_sync(&led_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 /* copy display string to buffer for procfs */
642 strlcpy(lcd_text, str, sizeof(lcd_text));
Grant Grundler34994952005-10-21 22:46:18 -0400643
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 /* Set LCD Cursor to 1st character */
645 gsc_writeb(lcd_info.reset_cmd1, LCD_CMD_REG);
646 udelay(lcd_info.min_cmd_delay);
647
648 /* Print the string */
649 for (i=0; i < lcd_info.lcd_width; i++) {
650 if (str && *str)
651 gsc_writeb(*str++, LCD_DATA_REG);
652 else
653 gsc_writeb(' ', LCD_DATA_REG);
654 udelay(lcd_info.min_cmd_delay);
655 }
656
Grant Grundler34994952005-10-21 22:46:18 -0400657 /* re-queue the work */
658 if (led_wq) {
David Howells6858f3b2006-12-07 15:31:38 +0000659 queue_delayed_work(led_wq, &led_task, 0);
Grant Grundler34994952005-10-21 22:46:18 -0400660 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 return lcd_info.lcd_width;
663}
664
665/*
666 ** led_init()
667 **
668 ** led_init() is called very early in the bootup-process from setup.c
669 ** and asks the PDC for an usable chassis LCD or LED.
670 ** If the PDC doesn't return any info, then the LED
671 ** is detected by lasi.c or asp.c and registered with the
672 ** above functions lasi_led_init() or asp_led_init().
673 ** KittyHawk machines have often a buggy PDC, so that
674 ** we explicitly check for those machines here.
675 */
676
677int __init led_init(void)
678{
679 struct pdc_chassis_info chassis_info;
680 int ret;
681
682 snprintf(lcd_text_default, sizeof(lcd_text_default),
Serge E. Hallyn96b644b2006-10-02 02:18:13 -0700683 "Linux %s", init_utsname()->release);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 /* Work around the buggy PDC of KittyHawk-machines */
686 switch (CPU_HVERSION) {
687 case 0x580: /* KittyHawk DC2-100 (K100) */
688 case 0x581: /* KittyHawk DC3-120 (K210) */
689 case 0x582: /* KittyHawk DC3 100 (K400) */
690 case 0x583: /* KittyHawk DC3 120 (K410) */
691 case 0x58B: /* KittyHawk DC2 100 (K200) */
692 printk(KERN_INFO "%s: KittyHawk-Machine (hversion 0x%x) found, "
693 "LED detection skipped.\n", __FILE__, CPU_HVERSION);
694 goto found; /* use the preinitialized values of lcd_info */
695 }
696
697 /* initialize the struct, so that we can check for valid return values */
698 lcd_info.model = DISPLAY_MODEL_NONE;
699 chassis_info.actcnt = chassis_info.maxcnt = 0;
700
701 ret = pdc_chassis_info(&chassis_info, &lcd_info, sizeof(lcd_info));
702 if (ret == PDC_OK) {
703 DPRINTK((KERN_INFO "%s: chassis info: model=%d (%s), "
704 "lcd_width=%d, cmd_delay=%u,\n"
705 "%s: sizecnt=%d, actcnt=%ld, maxcnt=%ld\n",
706 __FILE__, lcd_info.model,
707 (lcd_info.model==DISPLAY_MODEL_LCD) ? "LCD" :
708 (lcd_info.model==DISPLAY_MODEL_LASI) ? "LED" : "unknown",
709 lcd_info.lcd_width, lcd_info.min_cmd_delay,
710 __FILE__, sizeof(lcd_info),
711 chassis_info.actcnt, chassis_info.maxcnt));
712 DPRINTK((KERN_INFO "%s: cmd=%p, data=%p, reset1=%x, reset2=%x, act_enable=%d\n",
713 __FILE__, lcd_info.lcd_cmd_reg_addr,
714 lcd_info.lcd_data_reg_addr, lcd_info.reset_cmd1,
715 lcd_info.reset_cmd2, lcd_info.act_enable ));
716
717 /* check the results. Some machines have a buggy PDC */
718 if (chassis_info.actcnt <= 0 || chassis_info.actcnt != chassis_info.maxcnt)
719 goto not_found;
720
721 switch (lcd_info.model) {
722 case DISPLAY_MODEL_LCD: /* LCD display */
723 if (chassis_info.actcnt <
724 offsetof(struct pdc_chassis_lcd_info_ret_block, _pad)-1)
725 goto not_found;
726 if (!lcd_info.act_enable) {
727 DPRINTK((KERN_INFO "PDC prohibited usage of the LCD.\n"));
728 goto not_found;
729 }
730 break;
731
732 case DISPLAY_MODEL_NONE: /* no LED or LCD available */
733 printk(KERN_INFO "PDC reported no LCD or LED.\n");
734 goto not_found;
735
736 case DISPLAY_MODEL_LASI: /* Lasi style 8 bit LED display */
737 if (chassis_info.actcnt != 8 && chassis_info.actcnt != 32)
738 goto not_found;
739 break;
740
741 default:
742 printk(KERN_WARNING "PDC reported unknown LCD/LED model %d\n",
743 lcd_info.model);
744 goto not_found;
745 } /* switch() */
746
747found:
748 /* register the LCD/LED driver */
749 register_led_driver(lcd_info.model, LCD_CMD_REG, LCD_DATA_REG);
750 return 0;
751
752 } else { /* if() */
753 DPRINTK((KERN_INFO "pdc_chassis_info call failed with retval = %d\n", ret));
754 }
755
756not_found:
757 lcd_info.model = DISPLAY_MODEL_NONE;
758 return 1;
759}
760
Alan Sterne041c682006-03-27 01:16:30 -0800761static void __exit led_exit(void)
762{
763 unregister_reboot_notifier(&led_notifier);
764 return;
765}
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767#ifdef CONFIG_PROC_FS
768module_init(led_create_procfs)
769#endif