blob: 904de5e1eb2a9f32b7f85ac89c3ac04531f2621c [file] [log] [blame]
Naveen Ramaraj51f5e8b2012-04-09 15:58:40 -07001/* 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 Ramarajcc4ec152012-05-14 09:55:29 -070025#define MIN_CHUNK_SIZE 128
Naveen Ramaraj51f5e8b2012-04-09 15:58:40 -070026
Naveen Ramaraj6b882652012-06-28 16:07:09 -070027struct ocmem_notifier;
28
Naveen Ramaraj51f5e8b2012-04-09 15:58:40 -070029struct ocmem_buf {
30 unsigned long addr;
31 unsigned long len;
32};
33
34struct ocmem_buf_attr {
35 unsigned long paddr;
36 unsigned long len;
37};
38
39struct ocmem_chunk {
40 bool ro;
41 unsigned long ddr_paddr;
42 unsigned long size;
43};
44
45struct ocmem_map_list {
Naveen Ramaraj0f5e7ab2012-04-24 19:10:23 -070046 unsigned num_chunks;
Naveen Ramaraj51f5e8b2012-04-09 15:58:40 -070047 struct ocmem_chunk chunks[OCMEM_MAX_CHUNKS];
48};
49
Naveen Ramaraj99b07562012-05-28 20:57:09 -070050enum ocmem_power_state {
51 OCMEM_OFF = 0x0,
52 OCMEM_RETENTION,
53 OCMEM_ON,
54 OCMEM_MAX = OCMEM_ON,
55};
56
57struct ocmem_resource {
58 unsigned resource_id;
59 unsigned num_keys;
60 unsigned int *keys;
61};
62
63struct ocmem_vectors {
64 unsigned num_resources;
65 struct ocmem_resource *r;
66};
67
Naveen Ramaraj51f5e8b2012-04-09 15:58:40 -070068/* List of clients that allocate/interact with OCMEM */
69/* Must be in sync with client_names */
70enum 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 Ramarajcc4ec152012-05-14 09:55:29 -070082 OCMEM_OTHER_OS,
Naveen Ramaraj51f5e8b2012-04-09 15:58:40 -070083 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 **/
91enum 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 Ramaraj6b882652012-06-28 16:07:09 -0700103struct ocmem_notifier *ocmem_notifier_register(int client_id,
104 struct notifier_block *nb);
Naveen Ramaraj51f5e8b2012-04-09 15:58:40 -0700105
Naveen Ramaraj6b882652012-06-28 16:07:09 -0700106int ocmem_notifier_unregister(struct ocmem_notifier *notif_hndl,
107 struct notifier_block *nb);
Naveen Ramaraj51f5e8b2012-04-09 15:58:40 -0700108
Naveen Ramaraj0f5e7ab2012-04-24 19:10:23 -0700109/* Obtain the maximum quota for the client */
110unsigned long get_max_quota(int client_id);
111
Naveen Ramaraj51f5e8b2012-04-09 15:58:40 -0700112/* Allocation APIs */
113struct ocmem_buf *ocmem_allocate(int client_id, unsigned long size);
114
Naveen Ramaraj0f5e7ab2012-04-24 19:10:23 -0700115struct ocmem_buf *ocmem_allocate_nowait(int client_id, unsigned long size);
116
Naveen Ramaraj51f5e8b2012-04-09 15:58:40 -0700117struct ocmem_buf *ocmem_allocate_nb(int client_id, unsigned long size);
118
119struct ocmem_buf *ocmem_allocate_range(int client_id, unsigned long min,
120 unsigned long goal, unsigned long step);
121
122/* Free APIs */
123int ocmem_free(int client_id, struct ocmem_buf *buf);
124
125/* Dynamic Resize APIs */
126int ocmem_shrink(int client_id, struct ocmem_buf *buf,
127 unsigned long new_size);
128
Naveen Ramarajcc4ec152012-05-14 09:55:29 -0700129/* Transfer APIs */
130int ocmem_map(int client_id, struct ocmem_buf *buffer,
131 struct ocmem_map_list *list);
132
133
134int ocmem_unmap(int client_id, struct ocmem_buf *buffer,
135 struct ocmem_map_list *list);
Naveen Ramaraj51f5e8b2012-04-09 15:58:40 -0700136
137/* Priority Enforcement APIs */
138int ocmem_evict(int client_id);
139
140int ocmem_restore(int client_id);
Naveen Ramaraj99b07562012-05-28 20:57:09 -0700141
142/* Power Control APIs */
143int ocmem_set_power_state(int client_id, struct ocmem_buf *buf,
144 enum ocmem_power_state new_state);
145
146enum ocmem_power_state ocmem_get_power_state(int client_id,
147 struct ocmem_buf *buf);
148
149struct ocmem_vectors *ocmem_get_vectors(int client_id,
150 struct ocmem_buf *buf);
Naveen Ramaraj51f5e8b2012-04-09 15:58:40 -0700151#endif