Blame view

arch/arm/mach-pxa/reset.c 1.86 KB
75f10b465   Dmitry Eremin-Solenikov   [ARM] 5047/2: Sup...
1
2
3
4
5
6
7
8
9
  /*
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License version 2 as
   * published by the Free Software Foundation.
   */
  #include <linux/kernel.h>
  #include <linux/module.h>
  #include <linux/delay.h>
  #include <linux/gpio.h>
fced80c73   Russell King   [ARM] Convert asm...
10
  #include <linux/io.h>
75f10b465   Dmitry Eremin-Solenikov   [ARM] 5047/2: Sup...
11
  #include <asm/proc-fns.h>
5bf3df3f0   Eric Miao   [ARM] pxa: separa...
12
  #include <mach/regs-ost.h>
afd2fc02a   Russell King   Merge branch 'for...
13
  #include <mach/reset.h>
75f10b465   Dmitry Eremin-Solenikov   [ARM] 5047/2: Sup...
14

04fef228f   Eric Miao   [ARM] pxa: introd...
15
16
  unsigned int reset_status;
  EXPORT_SYMBOL(reset_status);
75f10b465   Dmitry Eremin-Solenikov   [ARM] 5047/2: Sup...
17
18
19
20
  
  static void do_hw_reset(void);
  
  static int reset_gpio = -1;
216e3b7ab   Daniel Ribeiro   [ARM] pxa: allow ...
21
  int init_gpio_reset(int gpio, int output, int level)
75f10b465   Dmitry Eremin-Solenikov   [ARM] 5047/2: Sup...
22
23
24
25
26
27
28
29
30
  {
  	int rc;
  
  	rc = gpio_request(gpio, "reset generator");
  	if (rc) {
  		printk(KERN_ERR "Can't request reset_gpio
  ");
  		goto out;
  	}
69fc7eed5   Dmitry Eremin-Solenikov   [ARM] 5300/1: fix...
31
  	if (output)
216e3b7ab   Daniel Ribeiro   [ARM] pxa: allow ...
32
  		rc = gpio_direction_output(gpio, level);
69fc7eed5   Dmitry Eremin-Solenikov   [ARM] 5300/1: fix...
33
34
  	else
  		rc = gpio_direction_input(gpio);
75f10b465   Dmitry Eremin-Solenikov   [ARM] 5047/2: Sup...
35
  	if (rc) {
69fc7eed5   Dmitry Eremin-Solenikov   [ARM] 5300/1: fix...
36
37
  		printk(KERN_ERR "Can't configure reset_gpio
  ");
75f10b465   Dmitry Eremin-Solenikov   [ARM] 5047/2: Sup...
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
  		gpio_free(gpio);
  		goto out;
  	}
  
  out:
  	if (!rc)
  		reset_gpio = gpio;
  
  	return rc;
  }
  
  /*
   * Trigger GPIO reset.
   * This covers various types of logic connecting gpio pin
   * to RESET pins (nRESET or GPIO_RESET):
   */
  static void do_gpio_reset(void)
  {
  	BUG_ON(reset_gpio == -1);
  
  	/* drive it low */
  	gpio_direction_output(reset_gpio, 0);
  	mdelay(2);
  	/* rising edge or drive high */
  	gpio_set_value(reset_gpio, 1);
  	mdelay(2);
  	/* falling edge */
  	gpio_set_value(reset_gpio, 0);
  
  	/* give it some time */
  	mdelay(10);
  
  	WARN_ON(1);
  	/* fallback */
  	do_hw_reset();
  }
  
  static void do_hw_reset(void)
  {
  	/* Initialize the watchdog and let it fire */
  	OWER = OWER_WME;
  	OSSR = OSSR_M3;
  	OSMR3 = OSCR + 368640;	/* ... in 100 ms */
  }
271a74fc8   Russell King   ARM: restart: pxa...
82
  void pxa_restart(char mode, const char *cmd)
75f10b465   Dmitry Eremin-Solenikov   [ARM] 5047/2: Sup...
83
  {
271a74fc8   Russell King   ARM: restart: pxa...
84
85
  	local_irq_disable();
  	local_fiq_disable();
04fef228f   Eric Miao   [ARM] pxa: introd...
86
  	clear_reset_status(RESET_STATUS_ALL);
75f10b465   Dmitry Eremin-Solenikov   [ARM] 5047/2: Sup...
87
88
89
90
  
  	switch (mode) {
  	case 's':
  		/* Jump into ROM at address 0 */
e879c862f   Russell King   ARM: restart: onl...
91
  		soft_restart(0);
75f10b465   Dmitry Eremin-Solenikov   [ARM] 5047/2: Sup...
92
  		break;
75f10b465   Dmitry Eremin-Solenikov   [ARM] 5047/2: Sup...
93
94
95
  	case 'g':
  		do_gpio_reset();
  		break;
28105fda1   Jaya Kumar   [ARM] 5330/1: mac...
96
97
98
99
  	case 'h':
  	default:
  		do_hw_reset();
  		break;
75f10b465   Dmitry Eremin-Solenikov   [ARM] 5047/2: Sup...
100
101
  	}
  }