| /* Copyright (c) 2013, The Linux Foundation. All rights reserved. |
| * |
| * This program is free software; you can redistribute it and/or modify |
| * it under the terms of the GNU General Public License version 2 and |
| * only version 2 as published by the Free Software Foundation. |
| * |
| * This program is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| * GNU General Public License for more details. |
| */ |
| |
| #ifndef _ARCH_ARM_MACH_MSM_SMEM_PRIVATE_H_ |
| #define _ARCH_ARM_MACH_MSM_SMEM_PRIVATE_H_ |
| |
| #include <linux/remote_spinlock.h> |
| |
| #include <mach/ramdump.h> |
| |
| #define SMEM_SPINLOCK_SMEM_ALLOC "S:3" |
| extern remote_spinlock_t remote_spinlock; |
| extern int spinlocks_initialized; /* only modify in init_smem_remote_spinlock */ |
| |
| #define SMD_HEAP_SIZE 512 |
| |
| struct smem_heap_info { |
| unsigned initialized; |
| unsigned free_offset; |
| unsigned heap_remaining; |
| unsigned reserved; |
| }; |
| |
| struct smem_heap_entry { |
| unsigned allocated; |
| unsigned offset; |
| unsigned size; |
| unsigned reserved; /* bits 1:0 reserved, bits 31:2 aux smem base addr */ |
| }; |
| #define BASE_ADDR_MASK 0xfffffffc |
| |
| struct smem_proc_comm { |
| unsigned command; |
| unsigned status; |
| unsigned data1; |
| unsigned data2; |
| }; |
| |
| struct smem_shared { |
| struct smem_proc_comm proc_comm[4]; |
| unsigned version[32]; |
| struct smem_heap_info heap_info; |
| struct smem_heap_entry heap_toc[SMD_HEAP_SIZE]; |
| }; |
| |
| struct smem_area { |
| phys_addr_t phys_addr; |
| resource_size_t size; |
| void __iomem *virt_addr; |
| }; |
| |
| extern uint32_t num_smem_areas; |
| extern struct smem_area *smem_areas; |
| |
| extern struct ramdump_segment *smem_ramdump_segments; |
| |
| /* used for unit testing spinlocks */ |
| remote_spinlock_t *smem_get_remote_spinlock(void); |
| |
| /* |
| * used to ensure the remote spinlock is only inited once since local |
| * spinlock init code appears non-reentrant |
| */ |
| int init_smem_remote_spinlock(void); |
| |
| bool smem_initialized_check(void); |
| #endif /* _ARCH_ARM_MACH_MSM_SMEM_PRIVATE_H_ */ |