1 /* arch/arm/mach-msm/smd_private.h
3 * Copyright (C) 2007 Google, Inc.
4 * Copyright (c) 2007 QUALCOMM Incorporated
6 * This software is licensed under the terms of the GNU General Public
7 * License version 2, as published by the Free Software Foundation, and
8 * may be copied, distributed, and modified under those terms.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
16 #ifndef _ARCH_ARM_MACH_MSM_MSM_SMD_PRIVATE_H_
17 #define _ARCH_ARM_MACH_MSM_MSM_SMD_PRIVATE_H_
19 #include <linux/platform_device.h>
20 #include <linux/spinlock.h>
21 #include <linux/list.h>
24 #include <mach/msm_iomap.h>
26 struct smem_heap_info
{
29 unsigned heap_remaining
;
33 struct smem_heap_entry
{
40 struct smem_proc_comm
{
51 #define VERSION_QDSP6 4
52 #define VERSION_APPS_SBL 6
53 #define VERSION_MODEM_SBL 7
54 #define VERSION_APPS 8
55 #define VERSION_MODEM 9
58 struct smem_proc_comm proc_comm
[4];
60 struct smem_heap_info heap_info
;
61 struct smem_heap_entry heap_toc
[512];
64 #define SMSM_V1_SIZE (sizeof(unsigned) * 8)
65 #define SMSM_V2_SIZE (sizeof(unsigned) * 4)
67 #ifdef CONFIG_MSM_SMD_PKG3
68 struct smsm_interrupt_info
{
69 uint32_t interrupt_mask
;
70 uint32_t pending_interrupts
;
71 uint32_t wakeup_reason
;
74 #define DEM_MAX_PORT_NAME_LEN (20)
75 struct msm_dem_slave_data
{
77 uint32_t interrupt_mask
;
78 uint32_t resources_used
;
81 uint32_t wakeup_reason
;
82 uint32_t pending_interrupts
;
85 char smd_port_name
[DEM_MAX_PORT_NAME_LEN
];
90 #define SZ_DIAG_ERR_MSG 0xC8
91 #define ID_DIAG_ERR_MSG SMEM_DIAG_ERR_MESSAGE
92 #define ID_SMD_CHANNELS SMEM_SMD_BASE_ID
93 #define ID_SHARED_STATE SMEM_SMSM_SHARED_STATE
94 #define ID_CH_ALLOC_TBL SMEM_CHANNEL_ALLOC_TBL
96 #define SMSM_INIT 0x00000001
97 #define SMSM_SMDINIT 0x00000008
98 #define SMSM_RPCINIT 0x00000020
99 #define SMSM_RESET 0x00000040
100 #define SMSM_RSA 0x00000080
101 #define SMSM_RUN 0x00000100
102 #define SMSM_PWRC 0x00000200
103 #define SMSM_TIMEWAIT 0x00000400
104 #define SMSM_TIMEINIT 0x00000800
105 #define SMSM_PWRC_EARLY_EXIT 0x00001000
106 #define SMSM_WFPI 0x00002000
107 #define SMSM_SLEEP 0x00004000
108 #define SMSM_SLEEPEXIT 0x00008000
109 #define SMSM_APPS_REBOOT 0x00020000
110 #define SMSM_SYSTEM_POWER_DOWN 0x00040000
111 #define SMSM_SYSTEM_REBOOT 0x00080000
112 #define SMSM_SYSTEM_DOWNLOAD 0x00100000
113 #define SMSM_PWRC_SUSPEND 0x00200000
114 #define SMSM_APPS_SHUTDOWN 0x00400000
115 #define SMSM_SMD_LOOPBACK 0x00800000
116 #define SMSM_RUN_QUIET 0x01000000
117 #define SMSM_MODEM_WAIT 0x02000000
118 #define SMSM_MODEM_BREAK 0x04000000
119 #define SMSM_MODEM_CONTINUE 0x08000000
120 #define SMSM_UNKNOWN 0x80000000
122 #define SMSM_WKUP_REASON_RPC 0x00000001
123 #define SMSM_WKUP_REASON_INT 0x00000002
124 #define SMSM_WKUP_REASON_GPIO 0x00000004
125 #define SMSM_WKUP_REASON_TIMER 0x00000008
126 #define SMSM_WKUP_REASON_ALARM 0x00000010
127 #define SMSM_WKUP_REASON_RESET 0x00000020
129 #ifdef CONFIG_ARCH_MSM7X00A
130 enum smsm_state_item
{
132 SMSM_STATE_MODEM
= 3,
136 enum smsm_state_item
{
141 SMSM_STATE_MODEM_DEM
,
142 SMSM_STATE_QDSP6_DEM
,
143 SMSM_STATE_POWER_MASTER_DEM
,
144 SMSM_STATE_TIME_MASTER_DEM
,
149 void *smem_alloc(unsigned id
, unsigned size
);
150 int smsm_change_state(enum smsm_state_item item
, uint32_t clear_mask
, uint32_t set_mask
);
151 uint32_t smsm_get_state(enum smsm_state_item item
);
152 int smsm_set_sleep_duration(uint32_t delay
);
153 void smsm_print_sleep_info(void);
155 #define SMEM_NUM_SMD_CHANNELS 64
161 SMEM_ALLOCATION_TABLE
,
163 SMEM_HW_RESET_DETECT
,
165 SMEM_DIAG_ERR_MESSAGE
,
167 SMEM_MEMORY_BARRIER_LOCATION
,
170 SMEM_AARM_PARTITION_TABLE
,
171 SMEM_AARM_BAD_BLOCK_TABLE
,
172 SMEM_RESERVE_BAD_BLOCKS
,
174 SMEM_CHANNEL_ALLOC_TBL
,
176 SMEM_SMEM_LOG_IDX
= SMEM_SMD_BASE_ID
+ SMEM_NUM_SMD_CHANNELS
,
177 SMEM_SMEM_LOG_EVENTS
,
178 SMEM_SMEM_STATIC_LOG_IDX
,
179 SMEM_SMEM_STATIC_LOG_EVENTS
,
180 SMEM_SMEM_SLOW_CLOCK_SYNC
,
181 SMEM_SMEM_SLOW_CLOCK_VALUE
,
183 SMEM_SMSM_SHARED_STATE
,
185 SMEM_SMSM_SLEEP_DELAY
,
186 SMEM_SMSM_LIMIT_SLEEP
,
187 SMEM_SLEEP_POWER_COLLAPSE_DISABLED
,
188 SMEM_KEYPAD_KEYS_PRESSED
,
189 SMEM_KEYPAD_STATE_UPDATED
,
190 SMEM_KEYPAD_STATE_IDX
,
193 SMEM_MDDI_HOST_DRIVER_STATE
,
194 SMEM_MDDI_LCD_DISP_STATE
,
196 SMEM_MARM_BOOT_SEGMENT_INFO
,
197 SMEM_AARM_BOOT_SEGMENT_INFO
,
199 SMEM_SCORPION_FREQUENCY
,
202 SMEM_HS_SUSPEND_FILTER_INFO
,
206 SMEM_VERSION_LAST
= SMEM_VERSION_FIRST
+ 24,
207 SMEM_OSS_RRCASN1_BUF1
,
208 SMEM_OSS_RRCASN1_BUF2
,
213 SMEM_SMD_BLOCK_PORT_BASE_ID
,
214 SMEM_SMD_BLOCK_PORT_PROC0_HEAP
= SMEM_SMD_BLOCK_PORT_BASE_ID
+ SMEM_NUM_SMD_CHANNELS
,
215 SMEM_SMD_BLOCK_PORT_PROC1_HEAP
= SMEM_SMD_BLOCK_PORT_PROC0_HEAP
+ SMEM_NUM_SMD_CHANNELS
,
216 SMEM_I2C_MUTEX
= SMEM_SMD_BLOCK_PORT_PROC1_HEAP
+ SMEM_NUM_SMD_CHANNELS
,
217 SMEM_SCLK_CONVERSION
,
218 SMEM_SMD_SMSM_INTR_MUX
,
219 SMEM_SMSM_CPU_INTR_MASK
,
220 SMEM_APPS_DEM_SLAVE_DATA
,
221 SMEM_QDSP6_DEM_SLAVE_DATA
,
223 SMEM_CLKREGIM_SOURCES
,
224 SMEM_SMD_FIFO_BASE_ID
,
225 SMEM_USABLE_RAM_PARTITION_TABLE
= SMEM_SMD_FIFO_BASE_ID
+ SMEM_NUM_SMD_CHANNELS
,
226 SMEM_POWER_ON_STATUS_INFO
,
228 SMEM_SMEM_LOG_POWER_IDX
,
229 SMEM_SMEM_LOG_POWER_WRAP
,
230 SMEM_SMEM_LOG_POWER_EVENTS
,
232 SMEM_ERR_F3_TRACE_LOG
,
237 #define SMD_SS_CLOSED 0x00000000
238 #define SMD_SS_OPENING 0x00000001
239 #define SMD_SS_OPENED 0x00000002
240 #define SMD_SS_FLUSHING 0x00000003
241 #define SMD_SS_CLOSING 0x00000004
242 #define SMD_SS_RESET 0x00000005
243 #define SMD_SS_RESET_OPENING 0x00000006
245 #define SMD_BUF_SIZE 8192
246 #define SMD_CHANNELS 64
248 #define SMD_HEADER_SIZE 20
250 struct smd_alloc_elm
{
257 struct smd_half_channel
{
265 unsigned char fSTATE
;
266 unsigned char fUNUSED
;
269 } __attribute__(( aligned(4), packed
));
271 /* Only used on SMD package v3 on msm7201a */
272 struct smd_shared_v1
{
273 struct smd_half_channel ch0
;
274 unsigned char data0
[SMD_BUF_SIZE
];
275 struct smd_half_channel ch1
;
276 unsigned char data1
[SMD_BUF_SIZE
];
279 /* Used on SMD package v4 */
280 struct smd_shared_v2
{
281 struct smd_half_channel ch0
;
282 struct smd_half_channel ch1
;
286 volatile struct smd_half_channel
*send
;
287 volatile struct smd_half_channel
*recv
;
288 unsigned char *send_data
;
289 unsigned char *recv_data
;
293 unsigned current_packet
;
296 struct list_head ch_list
;
299 void (*notify
)(void *priv
, unsigned flags
);
301 int (*read
)(struct smd_channel
*ch
, void *data
, int len
);
302 int (*write
)(struct smd_channel
*ch
, const void *data
, int len
);
303 int (*read_avail
)(struct smd_channel
*ch
);
304 int (*write_avail
)(struct smd_channel
*ch
);
306 void (*update_state
)(struct smd_channel
*ch
);
308 void (*notify_other_cpu
)(void);
312 struct platform_device pdev
;
315 #define SMD_TYPE_MASK 0x0FF
316 #define SMD_TYPE_APPS_MODEM 0x000
317 #define SMD_TYPE_APPS_DSP 0x001
318 #define SMD_TYPE_MODEM_DSP 0x002
320 #define SMD_KIND_MASK 0xF00
321 #define SMD_KIND_UNKNOWN 0x000
322 #define SMD_KIND_STREAM 0x100
323 #define SMD_KIND_PACKET 0x200
325 extern struct list_head smd_ch_closed_list
;
326 extern struct list_head smd_ch_list_modem
;
327 extern struct list_head smd_ch_list_dsp
;
329 extern spinlock_t smd_lock
;
330 extern spinlock_t smem_lock
;
332 void *smem_find(unsigned id
, unsigned size
);
333 void *smem_item(unsigned id
, unsigned *size
);
334 uint32_t raw_smsm_get_state(enum smsm_state_item item
);
336 extern void msm_init_last_radio_log(struct module
*);
338 #ifdef CONFIG_MSM_SMD_PKG3
340 * This allocator assumes an SMD Package v3 which only exists on
343 static inline int _smd_alloc_channel(struct smd_channel
*ch
)
345 struct smd_shared_v1
*shared1
;
347 shared1
= smem_alloc(ID_SMD_CHANNELS
+ ch
->n
, sizeof(*shared1
));
349 pr_err("smd_alloc_channel() cid %d does not exist\n", ch
->n
);
352 ch
->send
= &shared1
->ch0
;
353 ch
->recv
= &shared1
->ch1
;
354 ch
->send_data
= shared1
->data0
;
355 ch
->recv_data
= shared1
->data1
;
356 ch
->fifo_size
= SMD_BUF_SIZE
;
361 * This allocator assumes an SMD Package v4, the most common
364 static inline int _smd_alloc_channel(struct smd_channel
*ch
)
366 struct smd_shared_v2
*shared2
;
370 shared2
= smem_alloc(SMEM_SMD_BASE_ID
+ ch
->n
, sizeof(*shared2
));
371 buffer
= smem_item(SMEM_SMD_FIFO_BASE_ID
+ ch
->n
, &buffer_sz
);
376 /* buffer must be a power-of-two size */
377 if (buffer_sz
& (buffer_sz
- 1))
381 ch
->send
= &shared2
->ch0
;
382 ch
->recv
= &shared2
->ch1
;
383 ch
->send_data
= buffer
;
384 ch
->recv_data
= buffer
+ buffer_sz
;
385 ch
->fifo_size
= buffer_sz
;
388 #endif /* CONFIG_MSM_SMD_PKG3 */
390 #if defined(CONFIG_ARCH_MSM7X30)
391 static inline void msm_a2m_int(uint32_t irq
)
393 writel(1 << irq
, MSM_GCC_BASE
+ 0x8);
396 static inline void msm_a2m_int(uint32_t irq
)
398 writel(1, MSM_CSR_BASE
+ 0x400 + (irq
* 4));
400 #endif /* CONFIG_ARCH_MSM7X30 */