aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>2007-10-02 10:17:38 -0400
committerRalf Baechle <ralf@linux-mips.org>2007-10-11 18:46:14 -0400
commit3282bd3cb0c7653e604c0d3666331281ae8f74c4 (patch)
tree75fe2ae38bbea3810481026798940da6f53a0a5b
parent5a860424a1bcf21655d993a7c09b36662e34d2a9 (diff)
[MIPS] Cobalt: Move reset port definition to arch/mips/cobalt/reset.c
It's only used in arch/mips/cobalt/reset.c. Signed-off-by: Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r--arch/mips/cobalt/reset.c8
-rw-r--r--include/asm-mips/mach-cobalt/cobalt.h7
2 files changed, 6 insertions, 9 deletions
diff --git a/arch/mips/cobalt/reset.c b/arch/mips/cobalt/reset.c
index f503a0d04b3b..81628b3ae621 100644
--- a/arch/mips/cobalt/reset.c
+++ b/arch/mips/cobalt/reset.c
@@ -9,11 +9,15 @@
9 * Copyright (C) 2001 by Liam Davies (ldavies@agile.tv) 9 * Copyright (C) 2001 by Liam Davies (ldavies@agile.tv)
10 */ 10 */
11#include <linux/init.h> 11#include <linux/init.h>
12#include <linux/io.h>
12#include <linux/jiffies.h> 13#include <linux/jiffies.h>
13#include <linux/leds.h> 14#include <linux/leds.h>
14 15
15#include <cobalt.h> 16#include <cobalt.h>
16 17
18#define RESET_PORT ((void __iomem *)CKSEG1ADDR(0x1c000000))
19#define RESET 0x0f
20
17DEFINE_LED_TRIGGER(power_off_led_trigger); 21DEFINE_LED_TRIGGER(power_off_led_trigger);
18 22
19static int __init ledtrig_power_off_init(void) 23static int __init ledtrig_power_off_init(void)
@@ -43,7 +47,7 @@ void cobalt_machine_halt(void)
43 last ^= diff; 47 last ^= diff;
44 48
45 if((diff & (COBALT_KEY_ENTER | COBALT_KEY_SELECT)) && !(~last & (COBALT_KEY_ENTER | COBALT_KEY_SELECT))) 49 if((diff & (COBALT_KEY_ENTER | COBALT_KEY_SELECT)) && !(~last & (COBALT_KEY_ENTER | COBALT_KEY_SELECT)))
46 COBALT_LED_PORT = COBALT_LED_RESET; 50 writeb(RESET, RESET_PORT);
47 51
48 for (mark = jiffies; jiffies - mark < HZ;) 52 for (mark = jiffies; jiffies - mark < HZ;)
49 ; 53 ;
@@ -52,7 +56,7 @@ void cobalt_machine_halt(void)
52 56
53void cobalt_machine_restart(char *command) 57void cobalt_machine_restart(char *command)
54{ 58{
55 COBALT_LED_PORT = COBALT_LED_RESET; 59 writeb(RESET, RESET_PORT);
56 60
57 /* we should never get here */ 61 /* we should never get here */
58 cobalt_machine_halt(); 62 cobalt_machine_halt();
diff --git a/include/asm-mips/mach-cobalt/cobalt.h b/include/asm-mips/mach-cobalt/cobalt.h
index 4cb5844d42df..a79e7caf3a86 100644
--- a/include/asm-mips/mach-cobalt/cobalt.h
+++ b/include/asm-mips/mach-cobalt/cobalt.h
@@ -22,13 +22,6 @@ extern int cobalt_board_id;
22#define COBALT_BRD_ID_QUBE2 0x5 22#define COBALT_BRD_ID_QUBE2 0x5
23#define COBALT_BRD_ID_RAQ2 0x6 23#define COBALT_BRD_ID_RAQ2 0x6
24 24
25#define COBALT_LED_PORT (*(volatile unsigned char *) CKSEG1ADDR(0x1c000000))
26# define COBALT_LED_BAR_LEFT (1 << 0) /* Qube */
27# define COBALT_LED_BAR_RIGHT (1 << 1) /* Qube */
28# define COBALT_LED_WEB (1 << 2) /* RaQ */
29# define COBALT_LED_POWER_OFF (1 << 3) /* RaQ */
30# define COBALT_LED_RESET 0x0f
31
32#define COBALT_KEY_PORT ((~*(volatile unsigned int *) CKSEG1ADDR(0x1d000000) >> 24) & COBALT_KEY_MASK) 25#define COBALT_KEY_PORT ((~*(volatile unsigned int *) CKSEG1ADDR(0x1d000000) >> 24) & COBALT_KEY_MASK)
33# define COBALT_KEY_CLEAR (1 << 1) 26# define COBALT_KEY_CLEAR (1 << 1)
34# define COBALT_KEY_LEFT (1 << 2) 27# define COBALT_KEY_LEFT (1 << 2)