reset.c 1.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10
/*
 * Cobalt Reset operations
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 1995, 1996, 1997 by Ralf Baechle
 * Copyright (C) 2001 by Liam Davies (ldavies@agile.tv)
 */
11 12
#include <linux/jiffies.h>

L
Linus Torvalds 已提交
13 14
#include <asm/io.h>
#include <asm/reboot.h>
15 16

#include <cobalt.h>
L
Linus Torvalds 已提交
17

R
Ralf Baechle 已提交
18
void cobalt_machine_halt(void)
L
Linus Torvalds 已提交
19
{
R
Ralf Baechle 已提交
20 21
	int state, last, diff;
	unsigned long mark;
L
Linus Torvalds 已提交
22 23

	/*
R
Ralf Baechle 已提交
24 25 26
	 * turn off bar on Qube, flash power off LED on RaQ (0.5Hz)
	 *
	 * restart if ENTER and SELECT are pressed
L
Linus Torvalds 已提交
27 28
	 */

R
Ralf Baechle 已提交
29
	last = COBALT_KEY_PORT;
L
Linus Torvalds 已提交
30

R
Ralf Baechle 已提交
31 32 33 34 35 36 37
	for (state = 0;;) {

		state ^= COBALT_LED_POWER_OFF;
		COBALT_LED_PORT = state;

		diff = COBALT_KEY_PORT ^ last;
		last ^= diff;
L
Linus Torvalds 已提交
38

R
Ralf Baechle 已提交
39 40 41 42 43
		if((diff & (COBALT_KEY_ENTER | COBALT_KEY_SELECT)) && !(~last & (COBALT_KEY_ENTER | COBALT_KEY_SELECT)))
			COBALT_LED_PORT = COBALT_LED_RESET;

		for (mark = jiffies; jiffies - mark < HZ;)
			;
L
Linus Torvalds 已提交
44 45 46
	}
}

R
Ralf Baechle 已提交
47 48 49 50 51 52 53 54
void cobalt_machine_restart(char *command)
{
	COBALT_LED_PORT = COBALT_LED_RESET;

	/* we should never get here */
	cobalt_machine_halt();
}

L
Linus Torvalds 已提交
55 56 57 58 59 60 61 62
/*
 * This triggers the luser mode device driver for the power switch ;-)
 */
void cobalt_machine_power_off(void)
{
	printk("You can switch the machine off now.\n");
	cobalt_machine_halt();
}