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 | |
| 50 | /* List of clients that allocate/interact with OCMEM */ |
| 51 | /* Must be in sync with client_names */ |
| 52 | enum ocmem_client { |
| 53 | /* GMEM clients */ |
| 54 | OCMEM_GRAPHICS = 0x0, |
| 55 | /* TCMEM clients */ |
| 56 | OCMEM_VIDEO, |
| 57 | OCMEM_CAMERA, |
| 58 | /* Dummy Clients */ |
| 59 | OCMEM_HP_AUDIO, |
| 60 | OCMEM_VOICE, |
| 61 | /* IMEM Clients */ |
| 62 | OCMEM_LP_AUDIO, |
| 63 | OCMEM_SENSORS, |
Naveen Ramaraj | cc4ec15 | 2012-05-14 09:55:29 -0700 | [diff] [blame^] | 64 | OCMEM_OTHER_OS, |
Naveen Ramaraj | 51f5e8b | 2012-04-09 15:58:40 -0700 | [diff] [blame] | 65 | OCMEM_CLIENT_MAX, |
| 66 | }; |
| 67 | |
| 68 | /** |
| 69 | * List of OCMEM notification events which will be broadcasted |
| 70 | * to clients that optionally register for these notifications |
| 71 | * on a per allocation basis. |
| 72 | **/ |
| 73 | enum ocmem_notif_type { |
| 74 | OCMEM_MAP_DONE = 1, |
| 75 | OCMEM_MAP_FAIL, |
| 76 | OCMEM_UNMAP_DONE, |
| 77 | OCMEM_UNMAP_FAIL, |
| 78 | OCMEM_ALLOC_GROW, |
| 79 | OCMEM_ALLOC_SHRINK, |
| 80 | OCMEM_NOTIF_TYPE_COUNT, |
| 81 | }; |
| 82 | |
| 83 | /* APIS */ |
| 84 | /* Notification APIs */ |
Naveen Ramaraj | 6b88265 | 2012-06-28 16:07:09 -0700 | [diff] [blame] | 85 | struct ocmem_notifier *ocmem_notifier_register(int client_id, |
| 86 | struct notifier_block *nb); |
Naveen Ramaraj | 51f5e8b | 2012-04-09 15:58:40 -0700 | [diff] [blame] | 87 | |
Naveen Ramaraj | 6b88265 | 2012-06-28 16:07:09 -0700 | [diff] [blame] | 88 | int ocmem_notifier_unregister(struct ocmem_notifier *notif_hndl, |
| 89 | struct notifier_block *nb); |
Naveen Ramaraj | 51f5e8b | 2012-04-09 15:58:40 -0700 | [diff] [blame] | 90 | |
Naveen Ramaraj | 0f5e7ab | 2012-04-24 19:10:23 -0700 | [diff] [blame] | 91 | /* Obtain the maximum quota for the client */ |
| 92 | unsigned long get_max_quota(int client_id); |
| 93 | |
Naveen Ramaraj | 51f5e8b | 2012-04-09 15:58:40 -0700 | [diff] [blame] | 94 | /* Allocation APIs */ |
| 95 | struct ocmem_buf *ocmem_allocate(int client_id, unsigned long size); |
| 96 | |
Naveen Ramaraj | 0f5e7ab | 2012-04-24 19:10:23 -0700 | [diff] [blame] | 97 | struct ocmem_buf *ocmem_allocate_nowait(int client_id, unsigned long size); |
| 98 | |
Naveen Ramaraj | 51f5e8b | 2012-04-09 15:58:40 -0700 | [diff] [blame] | 99 | struct ocmem_buf *ocmem_allocate_nb(int client_id, unsigned long size); |
| 100 | |
| 101 | struct ocmem_buf *ocmem_allocate_range(int client_id, unsigned long min, |
| 102 | unsigned long goal, unsigned long step); |
| 103 | |
| 104 | /* Free APIs */ |
| 105 | int ocmem_free(int client_id, struct ocmem_buf *buf); |
| 106 | |
| 107 | /* Dynamic Resize APIs */ |
| 108 | int ocmem_shrink(int client_id, struct ocmem_buf *buf, |
| 109 | unsigned long new_size); |
| 110 | |
Naveen Ramaraj | cc4ec15 | 2012-05-14 09:55:29 -0700 | [diff] [blame^] | 111 | /* Transfer APIs */ |
| 112 | int ocmem_map(int client_id, struct ocmem_buf *buffer, |
| 113 | struct ocmem_map_list *list); |
| 114 | |
| 115 | |
| 116 | int ocmem_unmap(int client_id, struct ocmem_buf *buffer, |
| 117 | struct ocmem_map_list *list); |
Naveen Ramaraj | 51f5e8b | 2012-04-09 15:58:40 -0700 | [diff] [blame] | 118 | |
| 119 | /* Priority Enforcement APIs */ |
| 120 | int ocmem_evict(int client_id); |
| 121 | |
| 122 | int ocmem_restore(int client_id); |
| 123 | #endif |