]> git.karo-electronics.de Git - mv-sheeva.git/blob - include/asm-arm/arch-s3c2410/system.h
[ARM] 4168/1: S3C24XX: use defines instead of numbers
[mv-sheeva.git] / include / asm-arm / arch-s3c2410 / system.h
1 /* linux/include/asm-arm/arch-s3c2410/system.h
2  *
3  * Copyright (c) 2003 Simtec Electronics
4  *      Ben Dooks <ben@simtec.co.uk>
5  *
6  * S3C2410 - System function defines and includes
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11 */
12
13 #include <asm/hardware.h>
14 #include <asm/io.h>
15
16 #include <asm/arch/map.h>
17 #include <asm/arch/idle.h>
18
19 #include <asm/arch/regs-watchdog.h>
20 #include <asm/arch/regs-clock.h>
21
22 void (*s3c24xx_idle)(void);
23
24 void s3c24xx_default_idle(void)
25 {
26         unsigned long tmp;
27         int i;
28
29         /* idle the system by using the idle mode which will wait for an
30          * interrupt to happen before restarting the system.
31          */
32
33         /* Warning: going into idle state upsets jtag scanning */
34
35         __raw_writel(__raw_readl(S3C2410_CLKCON) | S3C2410_CLKCON_IDLE,
36                      S3C2410_CLKCON);
37
38         /* the samsung port seems to do a loop and then unset idle.. */
39         for (i = 0; i < 50; i++) {
40                 tmp += __raw_readl(S3C2410_CLKCON); /* ensure loop not optimised out */
41         }
42
43         /* this bit is not cleared on re-start... */
44
45         __raw_writel(__raw_readl(S3C2410_CLKCON) & ~S3C2410_CLKCON_IDLE,
46                      S3C2410_CLKCON);
47 }
48
49 static void arch_idle(void)
50 {
51         if (s3c24xx_idle != NULL)
52                 (s3c24xx_idle)();
53         else
54                 s3c24xx_default_idle();
55 }
56
57
58 static void
59 arch_reset(char mode)
60 {
61         if (mode == 's') {
62                 cpu_reset(0);
63         }
64
65         printk("arch_reset: attempting watchdog reset\n");
66
67         __raw_writel(0, S3C2410_WTCON);   /* disable watchdog, to be safe  */
68
69         /* put initial values into count and data */
70         __raw_writel(0x100, S3C2410_WTCNT);
71         __raw_writel(0x100, S3C2410_WTDAT);
72
73         /* set the watchdog to go and reset... */
74         __raw_writel(S3C2410_WTCON_ENABLE|S3C2410_WTCON_DIV16|S3C2410_WTCON_RSTEN |
75                      S3C2410_WTCON_PRESCALE(0x20), S3C2410_WTCON);
76
77         /* wait for reset to assert... */
78         mdelay(5000);
79
80         printk(KERN_ERR "Watchdog reset failed to assert reset\n");
81
82         /* we'll take a jump through zero as a poor second */
83         cpu_reset(0);
84 }