|
@@ -18,6 +18,7 @@
|
|
|
#include <linux/percpu.h>
|
|
|
#include <linux/profile.h>
|
|
|
#include <linux/sched.h>
|
|
|
+#include <linux/smp.h>
|
|
|
|
|
|
#include "tick-internal.h"
|
|
|
|
|
@@ -86,6 +87,11 @@ int tick_is_broadcast_device(struct clock_event_device *dev)
|
|
|
return (dev && tick_broadcast_device.evtdev == dev);
|
|
|
}
|
|
|
|
|
|
+static void err_broadcast(const struct cpumask *mask)
|
|
|
+{
|
|
|
+ pr_crit_once("Failed to broadcast timer tick. Some CPUs may be unresponsive.\n");
|
|
|
+}
|
|
|
+
|
|
|
/*
|
|
|
* Check, if the device is disfunctional and a place holder, which
|
|
|
* needs to be handled by the broadcast device.
|
|
@@ -105,6 +111,13 @@ int tick_device_uses_broadcast(struct clock_event_device *dev, int cpu)
|
|
|
*/
|
|
|
if (!tick_device_is_functional(dev)) {
|
|
|
dev->event_handler = tick_handle_periodic;
|
|
|
+ if (!dev->broadcast)
|
|
|
+ dev->broadcast = tick_broadcast;
|
|
|
+ if (!dev->broadcast) {
|
|
|
+ pr_warn_once("%s depends on broadcast, but no broadcast function available\n",
|
|
|
+ dev->name);
|
|
|
+ dev->broadcast = err_broadcast;
|
|
|
+ }
|
|
|
cpumask_set_cpu(cpu, tick_get_broadcast_mask());
|
|
|
tick_broadcast_start_periodic(tick_broadcast_device.evtdev);
|
|
|
ret = 1;
|
|
@@ -125,6 +138,23 @@ int tick_device_uses_broadcast(struct clock_event_device *dev, int cpu)
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
+#ifdef CONFIG_GENERIC_CLOCKEVENTS_BROADCAST
|
|
|
+int tick_receive_broadcast(void)
|
|
|
+{
|
|
|
+ struct tick_device *td = this_cpu_ptr(&tick_cpu_device);
|
|
|
+ struct clock_event_device *evt = td->evtdev;
|
|
|
+
|
|
|
+ if (!evt)
|
|
|
+ return -ENODEV;
|
|
|
+
|
|
|
+ if (!evt->event_handler)
|
|
|
+ return -EINVAL;
|
|
|
+
|
|
|
+ evt->event_handler(evt);
|
|
|
+ return 0;
|
|
|
+}
|
|
|
+#endif
|
|
|
+
|
|
|
/*
|
|
|
* Broadcast the event to the cpus, which are set in the mask (mangled).
|
|
|
*/
|