Nicolas Pitre | bdabef6 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 1 | /* |
| 2 | * arch/arm/include/asm/bL_switcher.h |
| 3 | * |
| 4 | * Created by: Nicolas Pitre, April 2012 |
| 5 | * Copyright: (C) 2012 Linaro Limited |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | */ |
| 11 | |
| 12 | #ifndef ASM_BL_SWITCHER_H |
| 13 | #define ASM_BL_SWITCHER_H |
| 14 | |
Dave Martin | 4c9163c | 2012-12-10 17:19:58 +0000 | [diff] [blame] | 15 | #include <linux/compiler.h> |
| 16 | #include <linux/types.h> |
| 17 | |
Dave Martin | 0e95b28 | 2013-05-22 19:08:16 +0100 | [diff] [blame] | 18 | typedef void (*bL_switch_completion_handler)(void *cookie); |
| 19 | |
| 20 | int bL_switch_request_cb(unsigned int cpu, unsigned int new_cluster_id, |
| 21 | bL_switch_completion_handler completer, |
| 22 | void *completer_cookie); |
| 23 | static inline int bL_switch_request(unsigned int cpu, unsigned int new_cluster_id) |
| 24 | { |
| 25 | return bL_switch_request_cb(cpu, new_cluster_id, NULL, NULL); |
| 26 | } |
Nicolas Pitre | bdabef6 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 27 | |
Dave Martin | 4c9163c | 2012-12-10 17:19:58 +0000 | [diff] [blame] | 28 | /* |
| 29 | * Register here to be notified about runtime enabling/disabling of |
| 30 | * the switcher. |
| 31 | * |
| 32 | * The notifier chain is called with the switcher activation lock held: |
| 33 | * the switcher will not be enabled or disabled during callbacks. |
| 34 | * Callbacks must not call bL_switcher_{get,put}_enabled(). |
| 35 | */ |
| 36 | #define BL_NOTIFY_PRE_ENABLE 0 |
| 37 | #define BL_NOTIFY_POST_ENABLE 1 |
| 38 | #define BL_NOTIFY_PRE_DISABLE 2 |
| 39 | #define BL_NOTIFY_POST_DISABLE 3 |
| 40 | |
| 41 | #ifdef CONFIG_BL_SWITCHER |
| 42 | |
Dave Martin | 4725d41 | 2013-06-18 14:37:02 +0100 | [diff] [blame] | 43 | void bL_switch_request_detach(unsigned int cpu, |
| 44 | bL_switch_completion_handler completer); |
| 45 | |
Dave Martin | 4c9163c | 2012-12-10 17:19:58 +0000 | [diff] [blame] | 46 | int bL_switcher_register_notifier(struct notifier_block *nb); |
| 47 | int bL_switcher_unregister_notifier(struct notifier_block *nb); |
| 48 | |
| 49 | /* |
| 50 | * Use these functions to temporarily prevent enabling/disabling of |
| 51 | * the switcher. |
| 52 | * bL_switcher_get_enabled() returns true if the switcher is currently |
| 53 | * enabled. Each call to bL_switcher_get_enabled() must be followed |
| 54 | * by a call to bL_switcher_put_enabled(). These functions are not |
| 55 | * recursive. |
| 56 | */ |
Dave Martin | 80899af | 2012-12-10 17:19:57 +0000 | [diff] [blame] | 57 | bool bL_switcher_get_enabled(void); |
| 58 | void bL_switcher_put_enabled(void); |
| 59 | |
Dave Martin | 21ba6d4 | 2013-02-11 14:39:19 +0000 | [diff] [blame] | 60 | int bL_switcher_trace_trigger(void); |
Dave Martin | 8e3aa3f | 2013-02-13 16:20:44 +0000 | [diff] [blame] | 61 | int bL_switcher_get_logical_index(u32 mpidr); |
Dave Martin | 21ba6d4 | 2013-02-11 14:39:19 +0000 | [diff] [blame] | 62 | |
Dave Martin | 4c9163c | 2012-12-10 17:19:58 +0000 | [diff] [blame] | 63 | #else |
Dave Martin | 4725d41 | 2013-06-18 14:37:02 +0100 | [diff] [blame] | 64 | static void bL_switch_request_detach(unsigned int cpu, |
| 65 | bL_switch_completion_handler completer) { } |
| 66 | |
Dave Martin | 4c9163c | 2012-12-10 17:19:58 +0000 | [diff] [blame] | 67 | static inline int bL_switcher_register_notifier(struct notifier_block *nb) |
| 68 | { |
| 69 | return 0; |
| 70 | } |
| 71 | |
| 72 | static inline int bL_switcher_unregister_notifier(struct notifier_block *nb) |
| 73 | { |
| 74 | return 0; |
| 75 | } |
| 76 | |
| 77 | static inline bool bL_switcher_get_enabled(void) { return false; } |
| 78 | static inline void bL_switcher_put_enabled(void) { } |
Dave Martin | 21ba6d4 | 2013-02-11 14:39:19 +0000 | [diff] [blame] | 79 | static inline int bL_switcher_trace_trigger(void) { return 0; } |
Dave Martin | 8e3aa3f | 2013-02-13 16:20:44 +0000 | [diff] [blame] | 80 | static inline int bL_switcher_get_logical_index(u32 mpidr) { return -EUNATCH; } |
Dave Martin | 4c9163c | 2012-12-10 17:19:58 +0000 | [diff] [blame] | 81 | #endif /* CONFIG_BL_SWITCHER */ |
| 82 | |
Nicolas Pitre | bdabef6 | 2012-04-12 02:56:10 -0400 | [diff] [blame] | 83 | #endif |