blob: 415f8ed00dba7949508a8415e9712d246e6bd64b [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
50/* List of clients that allocate/interact with OCMEM */
51/* Must be in sync with client_names */
52enum 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 Ramarajcc4ec152012-05-14 09:55:29 -070064 OCMEM_OTHER_OS,
Naveen Ramaraj51f5e8b2012-04-09 15:58:40 -070065 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 **/
73enum 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 Ramaraj6b882652012-06-28 16:07:09 -070085struct ocmem_notifier *ocmem_notifier_register(int client_id,
86 struct notifier_block *nb);
Naveen Ramaraj51f5e8b2012-04-09 15:58:40 -070087
Naveen Ramaraj6b882652012-06-28 16:07:09 -070088int ocmem_notifier_unregister(struct ocmem_notifier *notif_hndl,
89 struct notifier_block *nb);
Naveen Ramaraj51f5e8b2012-04-09 15:58:40 -070090
Naveen Ramaraj0f5e7ab2012-04-24 19:10:23 -070091/* Obtain the maximum quota for the client */
92unsigned long get_max_quota(int client_id);
93
Naveen Ramaraj51f5e8b2012-04-09 15:58:40 -070094/* Allocation APIs */
95struct ocmem_buf *ocmem_allocate(int client_id, unsigned long size);
96
Naveen Ramaraj0f5e7ab2012-04-24 19:10:23 -070097struct ocmem_buf *ocmem_allocate_nowait(int client_id, unsigned long size);
98
Naveen Ramaraj51f5e8b2012-04-09 15:58:40 -070099struct ocmem_buf *ocmem_allocate_nb(int client_id, unsigned long size);
100
101struct ocmem_buf *ocmem_allocate_range(int client_id, unsigned long min,
102 unsigned long goal, unsigned long step);
103
104/* Free APIs */
105int ocmem_free(int client_id, struct ocmem_buf *buf);
106
107/* Dynamic Resize APIs */
108int ocmem_shrink(int client_id, struct ocmem_buf *buf,
109 unsigned long new_size);
110
Naveen Ramarajcc4ec152012-05-14 09:55:29 -0700111/* Transfer APIs */
112int ocmem_map(int client_id, struct ocmem_buf *buffer,
113 struct ocmem_map_list *list);
114
115
116int ocmem_unmap(int client_id, struct ocmem_buf *buffer,
117 struct ocmem_map_list *list);
Naveen Ramaraj51f5e8b2012-04-09 15:58:40 -0700118
119/* Priority Enforcement APIs */
120int ocmem_evict(int client_id);
121
122int ocmem_restore(int client_id);
123#endif