Blame view

drivers/cpuidle/cpuidle-ux500.c 3.03 KB
d2912cb15   Thomas Gleixner   treewide: Replace...
1
  // SPDX-License-Identifier: GPL-2.0-only
3ebabaa53   Daniel Lezcano   ARM: ux500: add t...
2
3
4
5
6
  /*
   * Copyright (c) 2012 Linaro : Daniel Lezcano <daniel.lezcano@linaro.org> (IBM)
   *
   * Based on the work of Rickard Andersson <rickard.andersson@stericsson.com>
   * and Jonas Aaberg <jonas.aberg@stericsson.com>.
3ebabaa53   Daniel Lezcano   ARM: ux500: add t...
7
   */
fdc7d515a   Paul Gortmaker   drivers/cpuidle: ...
8
  #include <linux/init.h>
3ebabaa53   Daniel Lezcano   ARM: ux500: add t...
9
  #include <linux/cpuidle.h>
3ebabaa53   Daniel Lezcano   ARM: ux500: add t...
10
11
12
13
  #include <linux/spinlock.h>
  #include <linux/atomic.h>
  #include <linux/smp.h>
  #include <linux/mfd/dbx500-prcmu.h>
1e22a8c61   Linus Walleij   ARM: ux500: move ...
14
  #include <linux/platform_data/arm-ux500-pm.h>
8025395f3   Linus Walleij   ARM: ux500: cpuid...
15
  #include <linux/platform_device.h>
3ebabaa53   Daniel Lezcano   ARM: ux500: add t...
16
17
  
  #include <asm/cpuidle.h>
3ebabaa53   Daniel Lezcano   ARM: ux500: add t...
18
19
20
  
  static atomic_t master = ATOMIC_INIT(0);
  static DEFINE_SPINLOCK(master_lock);
3ebabaa53   Daniel Lezcano   ARM: ux500: add t...
21
22
23
24
25
26
  
  static inline int ux500_enter_idle(struct cpuidle_device *dev,
  				   struct cpuidle_driver *drv, int index)
  {
  	int this_cpu = smp_processor_id();
  	bool recouple = false;
3ebabaa53   Daniel Lezcano   ARM: ux500: add t...
27
28
29
30
31
32
33
34
  	if (atomic_inc_return(&master) == num_online_cpus()) {
  
  		/* With this lock, we prevent the other cpu to exit and enter
  		 * this function again and become the master */
  		if (!spin_trylock(&master_lock))
  			goto wfi;
  
  		/* decouple the gic from the A9 cores */
5cc23666c   Steve Zhan   ARM: ux500: add s...
35
36
  		if (prcmu_gic_decouple()) {
  			spin_unlock(&master_lock);
3ebabaa53   Daniel Lezcano   ARM: ux500: add t...
37
  			goto out;
5cc23666c   Steve Zhan   ARM: ux500: add s...
38
  		}
3ebabaa53   Daniel Lezcano   ARM: ux500: add t...
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
82
83
84
  
  		/* If an error occur, we will have to recouple the gic
  		 * manually */
  		recouple = true;
  
  		/* At this state, as the gic is decoupled, if the other
  		 * cpu is in WFI, we have the guarantee it won't be wake
  		 * up, so we can safely go to retention */
  		if (!prcmu_is_cpu_in_wfi(this_cpu ? 0 : 1))
  			goto out;
  
  		/* The prcmu will be in charge of watching the interrupts
  		 * and wake up the cpus */
  		if (prcmu_copy_gic_settings())
  			goto out;
  
  		/* Check in the meantime an interrupt did
  		 * not occur on the gic ... */
  		if (prcmu_gic_pending_irq())
  			goto out;
  
  		/* ... and the prcmu */
  		if (prcmu_pending_irq())
  			goto out;
  
  		/* Go to the retention state, the prcmu will wait for the
  		 * cpu to go WFI and this is what happens after exiting this
  		 * 'master' critical section */
  		if (prcmu_set_power_state(PRCMU_AP_IDLE, true, true))
  			goto out;
  
  		/* When we switch to retention, the prcmu is in charge
  		 * of recoupling the gic automatically */
  		recouple = false;
  
  		spin_unlock(&master_lock);
  	}
  wfi:
  	cpu_do_idle();
  out:
  	atomic_dec(&master);
  
  	if (recouple) {
  		prcmu_gic_recouple();
  		spin_unlock(&master_lock);
  	}
3ebabaa53   Daniel Lezcano   ARM: ux500: add t...
85
86
87
88
89
90
  	return index;
  }
  
  static struct cpuidle_driver ux500_idle_driver = {
  	.name = "ux500_idle",
  	.owner = THIS_MODULE,
3ebabaa53   Daniel Lezcano   ARM: ux500: add t...
91
92
93
94
95
96
  	.states = {
  		ARM_CPUIDLE_WFI_STATE,
  		{
  			.enter		  = ux500_enter_idle,
  			.exit_latency	  = 70,
  			.target_residency = 260,
b82b6cca4   Daniel Lezcano   cpuidle: Invert C...
97
  			.flags		  = CPUIDLE_FLAG_TIMER_STOP,
3ebabaa53   Daniel Lezcano   ARM: ux500: add t...
98
99
100
101
102
103
104
  			.name		  = "ApIdle",
  			.desc		  = "ARM Retention",
  		},
  	},
  	.safe_state_index = 0,
  	.state_count = 2,
  };
2c2b24d9c   Daniel Lezcano   ARM: ux500: cpuid...
105
  static int dbx500_cpuidle_probe(struct platform_device *pdev)
3ebabaa53   Daniel Lezcano   ARM: ux500: add t...
106
  {
1e22a8c61   Linus Walleij   ARM: ux500: move ...
107
  	/* Configure wake up reasons */
3ebabaa53   Daniel Lezcano   ARM: ux500: add t...
108
109
  	prcmu_enable_wakeups(PRCMU_WAKEUP(ARM) | PRCMU_WAKEUP(RTC) |
  			     PRCMU_WAKEUP(ABB));
e8928e2e1   Daniel Lezcano   ARM: ux500: cpuid...
110
  	return cpuidle_register(&ux500_idle_driver, NULL);
3ebabaa53   Daniel Lezcano   ARM: ux500: add t...
111
  }
8025395f3   Linus Walleij   ARM: ux500: cpuid...
112
113
114
  static struct platform_driver dbx500_cpuidle_plat_driver = {
  	.driver = {
  		.name = "cpuidle-dbx500",
8025395f3   Linus Walleij   ARM: ux500: cpuid...
115
116
117
  	},
  	.probe = dbx500_cpuidle_probe,
  };
fdc7d515a   Paul Gortmaker   drivers/cpuidle: ...
118
  builtin_platform_driver(dbx500_cpuidle_plat_driver);