Naveen Ramaraj | 51f5e8b | 2012-04-09 15:58:40 -0700 | [diff] [blame] | 1 | /* Copyright (c) 2012, Code Aurora Forum. All rights reserved. |
| 2 | * |
| 3 | * This program is free software; you can redistribute it and/or modify |
| 4 | * it under the terms of the GNU General Public License version 2 and |
| 5 | * only version 2 as published by the Free Software Foundation. |
| 6 | * |
| 7 | * This program is distributed in the hope that it will be useful, |
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 10 | * GNU General Public License for more details. |
| 11 | */ |
| 12 | |
| 13 | #ifndef _ARCH_ARM_MACH_MSM_OCMEM_H |
| 14 | #define _ARCH_ARM_MACH_MSM_OCMEM_H |
| 15 | |
| 16 | #include <asm/page.h> |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/notifier.h> |
| 19 | |
| 20 | #define OCMEM_MIN_ALLOC SZ_64K |
| 21 | #define OCMEM_MIN_ALIGN SZ_64K |
| 22 | |
| 23 | /* Maximum number of slots in DM */ |
| 24 | #define OCMEM_MAX_CHUNKS 32 |
Naveen Ramaraj | cc4ec15 | 2012-05-14 09:55:29 -0700 | [diff] [blame] | 25 | #define MIN_CHUNK_SIZE 128 |
Naveen Ramaraj | 51f5e8b | 2012-04-09 15:58:40 -0700 | [diff] [blame] | 26 | |
Naveen Ramaraj | 6b88265 | 2012-06-28 16:07:09 -0700 | [diff] [blame] | 27 | struct ocmem_notifier; |
| 28 | |
Naveen Ramaraj | 51f5e8b | 2012-04-09 15:58:40 -0700 | [diff] [blame] | 29 | struct ocmem_buf { |
| 30 | unsigned long addr; |
| 31 | unsigned long len; |
| 32 | }; |
| 33 | |
| 34 | struct ocmem_buf_attr { |
| 35 | unsigned long paddr; |
| 36 | unsigned long len; |
| 37 | }; |
| 38 | |
| 39 | struct ocmem_chunk { |
| 40 | bool ro; |
| 41 | unsigned long ddr_paddr; |
| 42 | unsigned long size; |
| 43 | }; |
| 44 | |
| 45 | struct ocmem_map_list { |
Naveen Ramaraj | 0f5e7ab | 2012-04-24 19:10:23 -0700 | [diff] [blame] | 46 | unsigned num_chunks; |
Naveen Ramaraj | 51f5e8b | 2012-04-09 15:58:40 -0700 | [diff] [blame] | 47 | struct ocmem_chunk chunks[OCMEM_MAX_CHUNKS]; |
| 48 | }; |
| 49 | |
Naveen Ramaraj | 99b0756 | 2012-05-28 20:57:09 -0700 | [diff] [blame^] | 50 | enum ocmem_power_state { |
| 51 | OCMEM_OFF = 0x0, |
| 52 | OCMEM_RETENTION, |
| 53 | OCMEM_ON, |
| 54 | OCMEM_MAX = OCMEM_ON, |
| 55 | }; |
| 56 | |
| 57 | struct ocmem_resource { |
| 58 | unsigned resource_id; |
| 59 | unsigned num_keys; |
| 60 | unsigned int *keys; |
| 61 | }; |
| 62 | |
| 63 | struct ocmem_vectors { |
| 64 | unsigned num_resources; |
| 65 | struct ocmem_resource *r; |
| 66 | }; |
| 67 | |
Naveen Ramaraj | 51f5e8b | 2012-04-09 15:58:40 -0700 | [diff] [blame] | 68 | /* List of clients that allocate/interact with OCMEM */ |
| 69 | /* Must be in sync with client_names */ |
| 70 | enum ocmem_client { |
| 71 | /* GMEM clients */ |
| 72 | OCMEM_GRAPHICS = 0x0, |
| 73 | /* TCMEM clients */ |
| 74 | OCMEM_VIDEO, |
| 75 | OCMEM_CAMERA, |
| 76 | /* Dummy Clients */ |
| 77 | OCMEM_HP_AUDIO, |
| 78 | OCMEM_VOICE, |
| 79 | /* IMEM Clients */ |
| 80 | OCMEM_LP_AUDIO, |
| 81 | OCMEM_SENSORS, |
Naveen Ramaraj | cc4ec15 | 2012-05-14 09:55:29 -0700 | [diff] [blame] | 82 | OCMEM_OTHER_OS, |
Naveen Ramaraj | 51f5e8b | 2012-04-09 15:58:40 -0700 | [diff] [blame] | 83 | OCMEM_CLIENT_MAX, |
| 84 | }; |
| 85 | |
| 86 | /** |
| 87 | * List of OCMEM notification events which will be broadcasted |
| 88 | * to clients that optionally register for these notifications |
| 89 | * on a per allocation basis. |
| 90 | **/ |
| 91 | enum ocmem_notif_type { |
| 92 | OCMEM_MAP_DONE = 1, |
| 93 | OCMEM_MAP_FAIL, |
| 94 | OCMEM_UNMAP_DONE, |
| 95 | OCMEM_UNMAP_FAIL, |
| 96 | OCMEM_ALLOC_GROW, |
| 97 | OCMEM_ALLOC_SHRINK, |
| 98 | OCMEM_NOTIF_TYPE_COUNT, |
| 99 | }; |
| 100 | |
| 101 | /* APIS */ |
| 102 | /* Notification APIs */ |
Naveen Ramaraj | 6b88265 | 2012-06-28 16:07:09 -0700 | [diff] [blame] | 103 | struct ocmem_notifier *ocmem_notifier_register(int client_id, |
| 104 | struct notifier_block *nb); |
Naveen Ramaraj | 51f5e8b | 2012-04-09 15:58:40 -0700 | [diff] [blame] | 105 | |
Naveen Ramaraj | 6b88265 | 2012-06-28 16:07:09 -0700 | [diff] [blame] | 106 | int ocmem_notifier_unregister(struct ocmem_notifier *notif_hndl, |
| 107 | struct notifier_block *nb); |
Naveen Ramaraj | 51f5e8b | 2012-04-09 15:58:40 -0700 | [diff] [blame] | 108 | |
Naveen Ramaraj | 0f5e7ab | 2012-04-24 19:10:23 -0700 | [diff] [blame] | 109 | /* Obtain the maximum quota for the client */ |
| 110 | unsigned long get_max_quota(int client_id); |
| 111 | |
Naveen Ramaraj | 51f5e8b | 2012-04-09 15:58:40 -0700 | [diff] [blame] | 112 | /* Allocation APIs */ |
| 113 | struct ocmem_buf *ocmem_allocate(int client_id, unsigned long size); |
| 114 | |
Naveen Ramaraj | 0f5e7ab | 2012-04-24 19:10:23 -0700 | [diff] [blame] | 115 | struct ocmem_buf *ocmem_allocate_nowait(int client_id, unsigned long size); |
| 116 | |
Naveen Ramaraj | 51f5e8b | 2012-04-09 15:58:40 -0700 | [diff] [blame] | 117 | struct ocmem_buf *ocmem_allocate_nb(int client_id, unsigned long size); |
| 118 | |
| 119 | struct ocmem_buf *ocmem_allocate_range(int client_id, unsigned long min, |
| 120 | unsigned long goal, unsigned long step); |
| 121 | |
| 122 | /* Free APIs */ |
| 123 | int ocmem_free(int client_id, struct ocmem_buf *buf); |
| 124 | |
| 125 | /* Dynamic Resize APIs */ |
| 126 | int ocmem_shrink(int client_id, struct ocmem_buf *buf, |
| 127 | unsigned long new_size); |
| 128 | |
Naveen Ramaraj | cc4ec15 | 2012-05-14 09:55:29 -0700 | [diff] [blame] | 129 | /* Transfer APIs */ |
| 130 | int ocmem_map(int client_id, struct ocmem_buf *buffer, |
| 131 | struct ocmem_map_list *list); |
| 132 | |
| 133 | |
| 134 | int ocmem_unmap(int client_id, struct ocmem_buf *buffer, |
| 135 | struct ocmem_map_list *list); |
Naveen Ramaraj | 51f5e8b | 2012-04-09 15:58:40 -0700 | [diff] [blame] | 136 | |
| 137 | /* Priority Enforcement APIs */ |
| 138 | int ocmem_evict(int client_id); |
| 139 | |
| 140 | int ocmem_restore(int client_id); |
Naveen Ramaraj | 99b0756 | 2012-05-28 20:57:09 -0700 | [diff] [blame^] | 141 | |
| 142 | /* Power Control APIs */ |
| 143 | int ocmem_set_power_state(int client_id, struct ocmem_buf *buf, |
| 144 | enum ocmem_power_state new_state); |
| 145 | |
| 146 | enum ocmem_power_state ocmem_get_power_state(int client_id, |
| 147 | struct ocmem_buf *buf); |
| 148 | |
| 149 | struct ocmem_vectors *ocmem_get_vectors(int client_id, |
| 150 | struct ocmem_buf *buf); |
Naveen Ramaraj | 51f5e8b | 2012-04-09 15:58:40 -0700 | [diff] [blame] | 151 | #endif |