blob: 333270141ebb4d21316325a3d80c2949f6a7a559 [file] [log] [blame]
Yan Hec53399f2013-03-12 16:15:13 -07001/* Copyright (c) 2011-2013, The Linux Foundation. All rights reserved.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002 *
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/* Smart-Peripheral-Switch (SPS) API. */
14
15#ifndef _SPS_H_
16#define _SPS_H_
17
18#include <linux/types.h> /* u32 */
19
20/* SPS device handle indicating use of system memory */
21#define SPS_DEV_HANDLE_MEM ((u32)0x7ffffffful)
22
23/* SPS device handle indicating use of BAM-DMA */
24
25/* SPS device handle invalid value */
26#define SPS_DEV_HANDLE_INVALID ((u32)0)
27
28/* BAM invalid IRQ value */
29#define SPS_IRQ_INVALID 0
30
31/* Invalid address value */
32#define SPS_ADDR_INVALID 0
33
34/* Invalid peripheral device enumeration class */
35#define SPS_CLASS_INVALID ((u32)-1)
36
37/*
38 * This value specifies different configurations for an SPS connection.
39 * A non-default value instructs the SPS driver to search for the configuration
40 * in the fixed connection mapping table.
41 */
42#define SPS_CONFIG_DEFAULT 0
43
44/*
45 * This value instructs the SPS driver to use the default BAM-DMA channel
46 * threshold
47 */
48#define SPS_DMA_THRESHOLD_DEFAULT 0
49
50/* Flag bits supported by SPS hardware for struct sps_iovec */
51#define SPS_IOVEC_FLAG_INT 0x8000 /* Generate interrupt */
52#define SPS_IOVEC_FLAG_EOT 0x4000 /* Generate end-of-transfer indication */
53#define SPS_IOVEC_FLAG_EOB 0x2000 /* Generate end-of-block indication */
Yan Hef879bb02011-12-22 15:38:03 -080054#define SPS_IOVEC_FLAG_NWD 0x1000 /* notify when done */
55#define SPS_IOVEC_FLAG_CMD 0x0800 /* command descriptor */
56#define SPS_IOVEC_FLAG_LOCK 0x0400 /* pipe lock */
57#define SPS_IOVEC_FLAG_UNLOCK 0x0200 /* pipe unlock */
58#define SPS_IOVEC_FLAG_IMME 0x0100 /* immediate command descriptor */
59#define SPS_IOVEC_FLAG_NO_SUBMIT 0x0002 /* Do not submit descriptor to HW */
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070060#define SPS_IOVEC_FLAG_DEFAULT 0x0001 /* Use driver default */
61
Yan He9b453682012-08-07 11:32:17 -070062/* Maximum descriptor/iovec size */
63#define SPS_IOVEC_MAX_SIZE (32 * 1024 - 1) /* 32K-1 bytes due to HW limit */
64
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070065/* BAM device options flags */
66
67/*
68 * BAM will be configured and enabled at boot. Otherwise, BAM will be
69 * configured and enabled when first pipe connect occurs.
70 */
71#define SPS_BAM_OPT_ENABLE_AT_BOOT 1UL
72/* BAM IRQ is disabled */
73#define SPS_BAM_OPT_IRQ_DISABLED (1UL << 1)
74/* BAM peripheral is a BAM-DMA */
75#define SPS_BAM_OPT_BAMDMA (1UL << 2)
Yan Hec324a792011-11-10 17:19:48 -080076/* BAM IRQ is registered for apps wakeup */
77#define SPS_BAM_OPT_IRQ_WAKEUP (1UL << 3)
Yan He821e2762012-08-22 16:49:43 -070078/* Ignore external block pipe reset */
79#define SPS_BAM_NO_EXT_P_RST (1UL << 4)
Yan He7c775b42012-12-20 16:04:24 -080080/* Don't enable local clock gating */
81#define SPS_BAM_NO_LOCAL_CLK_GATING (1UL << 5)
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070082
83/* BAM device management flags */
84
85/* BAM global device control is managed remotely */
86#define SPS_BAM_MGR_DEVICE_REMOTE 1UL
87/* BAM device supports multiple execution environments */
88#define SPS_BAM_MGR_MULTI_EE (1UL << 1)
89/* BAM pipes are *not* allocated locally */
90#define SPS_BAM_MGR_PIPE_NO_ALLOC (1UL << 2)
91/* BAM pipes are *not* configured locally */
92#define SPS_BAM_MGR_PIPE_NO_CONFIG (1UL << 3)
93/* BAM pipes are *not* controlled locally */
94#define SPS_BAM_MGR_PIPE_NO_CTRL (1UL << 4)
95/* "Globbed" management properties */
96#define SPS_BAM_MGR_NONE \
97 (SPS_BAM_MGR_DEVICE_REMOTE | SPS_BAM_MGR_PIPE_NO_ALLOC | \
98 SPS_BAM_MGR_PIPE_NO_CONFIG | SPS_BAM_MGR_PIPE_NO_CTRL)
99#define SPS_BAM_MGR_LOCAL 0
100#define SPS_BAM_MGR_LOCAL_SHARED SPS_BAM_MGR_MULTI_EE
101#define SPS_BAM_MGR_REMOTE_SHARED \
102 (SPS_BAM_MGR_DEVICE_REMOTE | SPS_BAM_MGR_MULTI_EE | \
103 SPS_BAM_MGR_PIPE_NO_ALLOC)
104#define SPS_BAM_MGR_ACCESS_MASK SPS_BAM_MGR_NONE
105
106/*
107 * BAM security configuration
108 */
109#define SPS_BAM_NUM_EES 4
110#define SPS_BAM_SEC_DO_NOT_CONFIG 0
111#define SPS_BAM_SEC_DO_CONFIG 0x0A434553
112
Yan He0eead892012-07-03 17:38:56 -0700113/* BAM pipe selection */
114#define SPS_BAM_PIPE(n) (1UL << (n))
115
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700116/* This enum specifies the operational mode for an SPS connection */
117enum sps_mode {
118 SPS_MODE_SRC = 0, /* end point is the source (producer) */
119 SPS_MODE_DEST, /* end point is the destination (consumer) */
120};
121
122
123/*
124 * This enum is a set of bit flag options for SPS connection.
125 * The enums should be OR'd together to create the option set
126 * for the SPS connection.
127 */
128enum sps_option {
129 /*
130 * Options to enable specific SPS hardware interrupts.
131 * These bit flags are also used to indicate interrupt source
132 * for the SPS_EVENT_IRQ event.
133 */
134 SPS_O_DESC_DONE = 0x00000001, /* Descriptor processed */
135 SPS_O_INACTIVE = 0x00000002, /* Inactivity timeout */
136 SPS_O_WAKEUP = 0x00000004, /* Peripheral wake up */
137 SPS_O_OUT_OF_DESC = 0x00000008,/* Out of descriptors */
138 SPS_O_ERROR = 0x00000010, /* Error */
139 SPS_O_EOT = 0x00000020, /* End-of-transfer */
140
141 /* Options to enable hardware features */
142 SPS_O_STREAMING = 0x00010000, /* Enable streaming mode (no EOT) */
143 /* Use MTI/SETPEND instead of BAM interrupt */
144 SPS_O_IRQ_MTI = 0x00020000,
Yan Hef879bb02011-12-22 15:38:03 -0800145 /* NWD bit written with EOT for BAM2BAM producer pipe */
146 SPS_O_WRITE_NWD = 0x00040000,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700147
148 /* Options to enable software features */
Yan Hec82218b2013-04-04 09:33:23 -0700149 /* Do not disable a pipe during disconnection */
150 SPS_O_NO_DISABLE = 0x00800000,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700151 /* Transfer operation should be polled */
152 SPS_O_POLL = 0x01000000,
153 /* Disable queuing of transfer events for the connection end point */
154 SPS_O_NO_Q = 0x02000000,
155 SPS_O_FLOWOFF = 0x04000000, /* Graceful halt */
156 /* SPS_O_WAKEUP will be disabled after triggered */
157 SPS_O_WAKEUP_IS_ONESHOT = 0x08000000,
158 /**
159 * Client must read each descriptor from the FIFO
160 * using sps_get_iovec()
161 */
162 SPS_O_ACK_TRANSFERS = 0x10000000,
163 /* Connection is automatically enabled */
164 SPS_O_AUTO_ENABLE = 0x20000000,
165 /* DISABLE endpoint synchronization for config/enable/disable */
166 SPS_O_NO_EP_SYNC = 0x40000000,
Yan He2295c272012-11-26 16:56:11 -0800167 /* Allow partial polling duing IRQ mode */
168 SPS_O_HYBRID = 0x80000000,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700169};
170
171/**
172 * This enum specifies BAM DMA channel priority. Clients should use
173 * SPS_DMA_PRI_DEFAULT unless a specific priority is required.
174 */
175enum sps_dma_priority {
176 SPS_DMA_PRI_DEFAULT = 0,
177 SPS_DMA_PRI_LOW,
178 SPS_DMA_PRI_MED,
179 SPS_DMA_PRI_HIGH,
180};
181
182/*
183 * This enum specifies the ownership of a connection resource.
184 * Remote or shared ownership is only possible/meaningful on the processor
185 * that controls resource.
186 */
187enum sps_owner {
188 SPS_OWNER_LOCAL = 0x1, /* Resource is owned by local processor */
189 SPS_OWNER_REMOTE = 0x2, /* Resource is owned by a satellite processor */
190};
191
192/* This enum indicates the event associated with a client event trigger */
193enum sps_event {
194 SPS_EVENT_INVALID = 0,
195
196 SPS_EVENT_EOT, /* End-of-transfer */
197 SPS_EVENT_DESC_DONE, /* Descriptor processed */
198 SPS_EVENT_OUT_OF_DESC, /* Out of descriptors */
199 SPS_EVENT_WAKEUP, /* Peripheral wake up */
200 SPS_EVENT_FLOWOFF, /* Graceful halt (idle) */
201 SPS_EVENT_INACTIVE, /* Inactivity timeout */
202 SPS_EVENT_ERROR, /* Error */
203 SPS_EVENT_MAX,
204};
205
206/*
207 * This enum specifies the event trigger mode and is an argument for the
208 * sps_register_event() function.
209 */
210enum sps_trigger {
211 /* Trigger with payload for callback */
212 SPS_TRIGGER_CALLBACK = 0,
213 /* Trigger without payload for wait or poll */
214 SPS_TRIGGER_WAIT,
215};
216
217/*
218 * This enum indicates the desired halting mechanism and is an argument for the
219 * sps_flow_off() function
220 */
221enum sps_flow_off {
222 SPS_FLOWOFF_FORCED = 0, /* Force hardware into halt state */
223 /* Allow hardware to empty pipe before halting */
224 SPS_FLOWOFF_GRACEFUL,
225};
226
227/*
228 * This enum indicates the target memory heap and is an argument for the
229 * sps_mem_alloc() function.
230 */
231enum sps_mem {
232 SPS_MEM_LOCAL = 0, /* SPS subsystem local (pipe) memory */
233 SPS_MEM_UC, /* Microcontroller (ARM7) local memory */
234};
235
236/*
237 * This enum indicates a timer control operation and is an argument for the
238 * sps_timer_ctrl() function.
239 */
240enum sps_timer_op {
241 SPS_TIMER_OP_CONFIG = 0,
242 SPS_TIMER_OP_RESET,
243/* SPS_TIMER_OP_START, Not supported by hardware yet */
244/* SPS_TIMER_OP_STOP, Not supported by hardware yet */
245 SPS_TIMER_OP_READ,
246};
247
248/*
249 * This enum indicates the inactivity timer operating mode and is an
250 * argument for the sps_timer_ctrl() function.
251 */
252enum sps_timer_mode {
253 SPS_TIMER_MODE_ONESHOT = 0,
254/* SPS_TIMER_MODE_PERIODIC, Not supported by hardware yet */
255};
256
Yan Hefcddf6f2012-03-13 12:41:18 -0700257/* This enum indicates the cases when callback the user of BAM */
258enum sps_callback_case {
259 SPS_CALLBACK_BAM_ERROR_IRQ = 1, /* BAM ERROR IRQ */
260 SPS_CALLBACK_BAM_HRESP_ERR_IRQ, /* Erroneous HResponse */
Yan He212b1392013-02-26 17:42:19 -0800261 SPS_CALLBACK_BAM_TIMER_IRQ, /* Inactivity timer */
Yan Hefcddf6f2012-03-13 12:41:18 -0700262};
263
Yan Hef879bb02011-12-22 15:38:03 -0800264/*
265 * This enum indicates the command type in a command element
266 */
267enum sps_command_type {
268 SPS_WRITE_COMMAND = 0,
269 SPS_READ_COMMAND,
270};
271
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700272/**
273 * This data type corresponds to the native I/O vector (BAM descriptor)
274 * supported by SPS hardware
275 *
276 * @addr - Buffer physical address.
277 * @size - Buffer size in bytes.
278 * @flags -Flag bitmask (see SPS_IOVEC_FLAG_ #defines).
279 *
280 */
281struct sps_iovec {
282 u32 addr;
283 u32 size:16;
284 u32 flags:16;
285};
286
Yan Hef879bb02011-12-22 15:38:03 -0800287/**
288 * This data type corresponds to the native Command Element
289 * supported by SPS hardware
290 *
291 * @addr - register address.
292 * @command - command type.
293 * @data - for write command: content to be written into peripheral register.
294 * for read command: dest addr to write peripheral register value to.
295 * @mask - register mask.
296 * @reserved - for future usage.
297 *
298 */
299struct sps_command_element {
300 u32 addr:24;
301 u32 command:8;
302 u32 data;
303 u32 mask;
304 u32 reserved;
305};
306
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700307/*
308 * BAM device's security configuation
309 */
310struct sps_bam_pipe_sec_config_props {
311 u32 pipe_mask;
312 u32 vmid;
313};
314
315struct sps_bam_sec_config_props {
316 /* Per-EE configuration - This is a pipe bit mask for each EE */
317 struct sps_bam_pipe_sec_config_props ees[SPS_BAM_NUM_EES];
318};
319
320/**
321 * This struct defines a BAM device. The client must memset() this struct to
322 * zero before writing device information. A value of zero for uninitialized
323 * values will instruct the SPS driver to use general defaults or
324 * hardware/BIOS supplied values.
325 *
326 *
327 * @options - See SPS_BAM_OPT_* bit flag.
328 * @phys_addr - BAM base physical address (not peripheral address).
329 * @virt_addr - BAM base virtual address.
330 * @virt_size - For virtual mapping.
331 * @irq - IRQ enum for use in ISR vector install.
332 * @num_pipes - number of pipes. Can be read from hardware.
333 * @summing_threshold - BAM event threshold.
334 *
335 * @periph_class - Peripheral device enumeration class.
336 * @periph_dev_id - Peripheral global device ID.
337 * @periph_phys_addr - Peripheral base physical address, for BAM-DMA only.
338 * @periph_virt_addr - Peripheral base virtual address.
339 * @periph_virt_size - Size for virtual mapping.
340 *
Yan Hefcddf6f2012-03-13 12:41:18 -0700341 * @callback - callback function for BAM user.
342 * @user - pointer to user data.
343 *
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700344 * @event_threshold - Pipe event threshold.
345 * @desc_size - Size (bytes) of descriptor FIFO.
346 * @data_size - Size (bytes) of data FIFO.
347 * @desc_mem_id - Heap ID for default descriptor FIFO allocations.
348 * @data_mem_id - Heap ID for default data FIFO allocations.
349 *
350 * @manage - BAM device management flags (see SPS_BAM_MGR_*).
351 * @restricted_pipes - Bitmask of pipes restricted from local use.
352 * @ee - Local execution environment index.
353 *
354 * @irq_gen_addr - MTI interrupt generation address. This configuration only
355 * applies to BAM rev 1 and 2 hardware. MTIs are only supported on BAMs when
356 * global config is controlled by a remote processor.
357 * NOTE: This address must correspond to the MTI associated with the "irq" IRQ
358 * enum specified above.
359 *
360 * @sec_config - must be set to SPS_BAM_SEC_DO_CONFIG to perform BAM security
361 * configuration. Only the processor that manages the BAM is allowed to
362 * perform the configuration. The global (top-level) BAM interrupt will be
363 * assigned to the EE of the processor that manages the BAM.
364 *
365 * @p_sec_config_props - BAM device's security configuation
366 *
367 */
368struct sps_bam_props {
369
370 /* BAM device properties. */
371
372 u32 options;
373 u32 phys_addr;
374 void *virt_addr;
375 u32 virt_size;
376 u32 irq;
377 u32 num_pipes;
378 u32 summing_threshold;
379
380 /* Peripheral device properties */
381
382 u32 periph_class;
383 u32 periph_dev_id;
384 u32 periph_phys_addr;
385 void *periph_virt_addr;
386 u32 periph_virt_size;
387
388 /* Connection pipe parameter defaults. */
389
390 u32 event_threshold;
391 u32 desc_size;
392 u32 data_size;
393 u32 desc_mem_id;
394 u32 data_mem_id;
395
Yan Hefcddf6f2012-03-13 12:41:18 -0700396 /* Feedback to BAM user */
397 void (*callback)(enum sps_callback_case, void *);
398 void *user;
399
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700400 /* Security properties */
401
402 u32 manage;
403 u32 restricted_pipes;
404 u32 ee;
405
406 /* BAM MTI interrupt generation */
407
408 u32 irq_gen_addr;
409
410 /* Security configuration properties */
411
412 u32 sec_config;
413 struct sps_bam_sec_config_props *p_sec_config_props;
Yan He00135aa2013-03-05 12:04:59 -0800414
415 /* Logging control */
416
417 bool constrained_logging;
418 u32 logging_number;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700419};
420
421/**
422 * This struct specifies memory buffer properties.
423 *
424 * @base - Buffer virtual address.
425 * @phys_base - Buffer physical address.
426 * @size - Specifies buffer size (or maximum size).
427 * @min_size - If non-zero, specifies buffer minimum size.
428 *
429 */
430struct sps_mem_buffer {
431 void *base;
432 u32 phys_base;
433 u32 size;
434 u32 min_size;
435};
436
437/**
438 * This struct defines a connection's end point and is used as the argument
439 * for the sps_connect(), sps_get_config(), and sps_set_config() functions.
440 * For system mode pipe, use SPS_DEV_HANDLE_MEM for the end point that
441 * corresponds to system memory.
442 *
443 * The client can force SPS to reserve a specific pipe on a BAM.
444 * If the pipe is in use, the sps_connect/set_config() will fail.
445 *
446 * @source - Source BAM.
447 * @src_pipe_index - BAM pipe index, 0 to 30.
448 * @destination - Destination BAM.
449 * @dest_pipe_index - BAM pipe index, 0 to 30.
450 *
451 * @mode - specifies which end (source or destination) of the connection will
452 * be controlled/referenced by the client.
453 *
454 * @config - This value is for future use and should be set to
455 * SPS_CONFIG_DEFAULT or left as default from sps_get_config().
456 *
457 * @options - OR'd connection end point options (see SPS_O defines).
458 *
459 * WARNING: The memory provided should be physically contiguous and non-cached.
460 * The user can use one of the following:
461 * 1. sps_alloc_mem() - allocated from pipe-memory.
462 * 2. dma_alloc_coherent() - allocate coherent DMA memory.
463 * 3. dma_map_single() - for using memory allocated by kmalloc().
464 *
465 * @desc - Descriptor FIFO.
466 * @data - Data FIFO (BAM-to-BAM mode only).
467 *
468 * @event_thresh - Pipe event threshold or derivative.
Yan Hef879bb02011-12-22 15:38:03 -0800469 * @lock_group - The lock group this pipe belongs to.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700470 *
471 * @sps_reserved - Reserved word - client must not modify.
472 *
473 */
474struct sps_connect {
475 u32 source;
476 u32 src_pipe_index;
477 u32 destination;
478 u32 dest_pipe_index;
479
480 enum sps_mode mode;
481
482 u32 config;
483
484 enum sps_option options;
485
486 struct sps_mem_buffer desc;
487 struct sps_mem_buffer data;
488
489 u32 event_thresh;
490
Yan Hef879bb02011-12-22 15:38:03 -0800491 u32 lock_group;
492
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700493 /* SETPEND/MTI interrupt generation parameters */
494
495 u32 irq_gen_addr;
496 u32 irq_gen_data;
497
498 u32 sps_reserved;
499
500};
501
502/**
503 * This struct defines a satellite connection's end point. The client of the
504 * SPS driver on the satellite processor must call sps_get_config() to
505 * initialize a struct sps_connect, then copy the values from the struct
506 * sps_satellite to the struct sps_connect before making the sps_connect()
507 * call to the satellite SPS driver.
508 *
509 */
510struct sps_satellite {
511 /**
512 * These values must be copied to either the source or destination
513 * corresponding values in the connect struct.
514 */
515 u32 dev;
516 u32 pipe_index;
517
518 /**
519 * These values must be copied to the corresponding values in the
520 * connect struct
521 */
522 u32 config;
523 enum sps_option options;
524
525};
526
527/**
528 * This struct defines parameters for allocation of a BAM DMA channel. The
529 * client must memset() this struct to zero before writing allocation
530 * information. A value of zero for uninitialized values will instruct
531 * the SPS driver to use defaults or "don't care".
532 *
533 * @dev - Associated BAM device handle, or SPS_DEV_HANDLE_DMA.
534 *
535 * @src_owner - Source owner processor ID.
536 * @dest_owner - Destination owner processor ID.
537 *
538 */
539struct sps_alloc_dma_chan {
540 u32 dev;
541
542 /* BAM DMA channel configuration parameters */
543
544 u32 threshold;
545 enum sps_dma_priority priority;
546
547 /**
548 * Owner IDs are global host processor identifiers used by the system
549 * SROT when establishing execution environments.
550 */
551 u32 src_owner;
552 u32 dest_owner;
553
554};
555
556/**
557 * This struct defines parameters for an allocated BAM DMA channel.
558 *
559 * @dev - BAM DMA device handle.
560 * @dest_pipe_index - Destination/input/write pipe index.
561 * @src_pipe_index - Source/output/read pipe index.
562 *
563 */
564struct sps_dma_chan {
565 u32 dev;
566 u32 dest_pipe_index;
567 u32 src_pipe_index;
568};
569
570/**
571 * This struct is an argument passed payload when triggering a callback event
572 * object registered for an SPS connection end point.
573 *
574 * @user - Pointer registered with sps_register_event().
575 *
576 * @event_id - Which event.
577 *
578 * @iovec - The associated I/O vector. If the end point is a system-mode
579 * producer, the size will reflect the actual number of bytes written to the
580 * buffer by the pipe. NOTE: If this I/O vector was part of a set submitted to
581 * sps_transfer(), then the vector array itself will be updated with all of
582 * the actual counts.
583 *
584 * @user - Pointer registered with the transfer.
585 *
586 */
587struct sps_event_notify {
588 void *user;
589
590 enum sps_event event_id;
591
592 /* Data associated with the event */
593
594 union {
595 /* Data for SPS_EVENT_IRQ */
596 struct {
597 u32 mask;
598 } irq;
599
600 /* Data for SPS_EVENT_EOT or SPS_EVENT_DESC_DONE */
601
602 struct {
603 struct sps_iovec iovec;
604 void *user;
605 } transfer;
606
607 /* Data for SPS_EVENT_ERROR */
608
609 struct {
610 u32 status;
611 } err;
612
613 } data;
614};
615
616/**
617 * This struct defines a event registration parameters and is used as the
618 * argument for the sps_register_event() function.
619 *
620 * @options - Event options that will trigger the event object.
621 * @mode - Event trigger mode.
622 *
623 * @xfer_done - a pointer to a completion object. NULL if not in use.
624 *
625 * @callback - a callback to call on completion. NULL if not in use.
626 *
627 * @user - User pointer that will be provided in event callback data.
628 *
629 */
630struct sps_register_event {
631 enum sps_option options;
632 enum sps_trigger mode;
633 struct completion *xfer_done;
634 void (*callback)(struct sps_event_notify *notify);
635 void *user;
636};
637
638/**
639 * This struct defines a system memory transfer's parameters and is used as the
640 * argument for the sps_transfer() function.
641 *
642 * @iovec_phys - Physical address of I/O vectors buffer.
643 * @iovec - Pointer to I/O vectors buffer.
644 * @iovec_count - Number of I/O vectors.
645 * @user - User pointer passed in callback event.
646 *
647 */
648struct sps_transfer {
649 u32 iovec_phys;
650 struct sps_iovec *iovec;
651 u32 iovec_count;
652 void *user;
653};
654
655/**
656 * This struct defines a timer control operation parameters and is used as an
657 * argument for the sps_timer_ctrl() function.
658 *
659 * @op - Timer control operation.
660 * @timeout_msec - Inactivity timeout (msec).
661 *
662 */
663struct sps_timer_ctrl {
664 enum sps_timer_op op;
665
666 /**
667 * The following configuration parameters must be set when the timer
668 * control operation is SPS_TIMER_OP_CONFIG.
669 */
670 enum sps_timer_mode mode;
671 u32 timeout_msec;
672};
673
674/**
675 * This struct defines a timer control operation result and is used as an
676 * argument for the sps_timer_ctrl() function.
677 */
678struct sps_timer_result {
679 u32 current_timer;
680};
681
682
683/*----------------------------------------------------------------------------
684 * Functions specific to sps interface
685 * -------------------------------------------------------------------------*/
686struct sps_pipe; /* Forward declaration */
687
Yan He2eafd742012-04-09 16:07:15 -0700688#ifdef CONFIG_SPS
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700689/**
690 * Register a BAM device
691 *
692 * This function registers a BAM device with the SPS driver. For each
693 *peripheral that includes a BAM, the peripheral driver must register
694 * the BAM with the SPS driver.
695 *
696 * A requirement is that the peripheral driver must remain attached
697 * to the SPS driver until the BAM is deregistered. Otherwise, the
698 * system may attempt to unload the SPS driver. BAM registrations would
699 * be lost.
700 *
701 * @bam_props - Pointer to struct for BAM device properties.
702 *
703 * @dev_handle - Device handle will be written to this location (output).
704 *
705 * @return 0 on success, negative value on error
706 *
707 */
708int sps_register_bam_device(const struct sps_bam_props *bam_props,
709 u32 *dev_handle);
710
711/**
712 * Deregister a BAM device
713 *
714 * This function deregisters a BAM device from the SPS driver. The peripheral
715 * driver should deregister a BAM when the peripheral driver is shut down or
716 * when BAM use should be disabled.
717 *
718 * A BAM cannot be deregistered if any of its pipes is in an active connection.
719 *
720 * When all BAMs have been deregistered, the system is free to unload the
721 * SPS driver.
722 *
723 * @dev_handle - BAM device handle.
724 *
725 * @return 0 on success, negative value on error
726 *
727 */
728int sps_deregister_bam_device(u32 dev_handle);
729
730/**
731 * Allocate client state context
732 *
733 * This function allocate and initializes a client state context struct.
734 *
735 * @return pointer to client state context
736 *
737 */
738struct sps_pipe *sps_alloc_endpoint(void);
739
740/**
741 * Free client state context
742 *
743 * This function de-initializes and free a client state context struct.
744 *
745 * @ctx - client context for SPS connection end point
746 *
747 * @return 0 on success, negative value on error
748 *
749 */
750int sps_free_endpoint(struct sps_pipe *h);
751
752/**
753 * Get the configuration parameters for an SPS connection end point
754 *
755 * This function retrieves the configuration parameters for an SPS connection
756 * end point.
757 * This function may be called before the end point is connected (before
758 * sps_connect is called). This allows the client to specify parameters before
759 * the connection is established.
760 *
761 * The client must call this function to fill it's struct sps_connect
762 * struct before modifying values and passing the struct to sps_set_config().
763 *
764 * @h - client context for SPS connection end point
765 *
766 * @config - Pointer to buffer for the end point's configuration parameters.
767 * Must not be NULL.
768 *
769 * @return 0 on success, negative value on error
770 *
771 */
772int sps_get_config(struct sps_pipe *h, struct sps_connect *config);
773
774/**
775 * Allocate memory from the SPS Pipe-Memory.
776 *
777 * @h - client context for SPS connection end point
778 *
779 * @mem - memory type - N/A.
780 *
781 * @mem_buffer - Pointer to struct for allocated memory properties.
782 *
783 * @return 0 on success, negative value on error
784 *
785 */
786int sps_alloc_mem(struct sps_pipe *h, enum sps_mem mem,
787 struct sps_mem_buffer *mem_buffer);
788
789/**
790 * Free memory from the SPS Pipe-Memory.
791 *
792 * @h - client context for SPS connection end point
793 *
794 * @mem_buffer - Pointer to struct for allocated memory properties.
795 *
796 * @return 0 on success, negative value on error
797 *
798 */
799int sps_free_mem(struct sps_pipe *h, struct sps_mem_buffer *mem_buffer);
800
801/**
802 * Connect an SPS connection end point
803 *
804 * This function creates a connection between two SPS peripherals or between
805 * an SPS peripheral and the local host processor (via system memory, end
806 *point SPS_DEV_HANDLE_MEM). Establishing the connection includes
807 * initialization of the SPS hardware and allocation of any other connection
808 * resources (buffer memory, etc.).
809 *
810 * This function requires the client to specify both the source and
811 * destination end points of the SPS connection. However, the handle
812 * returned applies only to the end point of the connection that the client
813 * controls. The end point under control must be specified by the
814 * enum sps_mode mode argument, either SPS_MODE_SRC, SPS_MODE_DEST, or
815 * SPS_MODE_CTL. Note that SPS_MODE_CTL is only supported for I/O
816 * accelerator connections, and only a limited set of control operations are
817 * allowed (TBD).
818 *
819 * For a connection involving system memory
820 * (SPS_DEV_HANDLE_MEM), the peripheral end point must be
821 * specified. For example, SPS_MODE_SRC must be specified for a
822 * BAM-to-system connection, since the BAM pipe is the data
823 * producer.
824 *
825 * For a specific peripheral-to-peripheral connection, there may be more than
826 * one required configuration. For example, there might be high-performance
827 * and low-power configurations for a connection between the two peripherals.
828 * The config argument allows the client to specify different configurations,
829 * which may require different system resource allocations and hardware
830 * initialization.
831 *
832 * A client is allowed to create one and only one connection for its
833 * struct sps_pipe. The handle is used to identify the connection end point
834 * in subsequent SPS driver calls. A specific connection source or
835 * destination end point can be associated with one and only one
836 * struct sps_pipe.
837 *
838 * The client must establish an open device handle to the SPS. To do so, the
839 * client must attach to the SPS driver and open the SPS device by calling
840 * the following functions.
841 *
842 * @h - client context for SPS connection end point
843 *
844 * @connect - Pointer to connection parameters
845 *
846 * @return 0 on success, negative value on error
847 *
848 */
849int sps_connect(struct sps_pipe *h, struct sps_connect *connect);
850
851/**
852 * Disconnect an SPS connection end point
853 *
854 * This function disconnects an SPS connection end point.
855 * The SPS hardware associated with that end point will be disabled.
856 * For a connection involving system memory (SPS_DEV_HANDLE_MEM), all
857 * connection resources are deallocated. For a peripheral-to-peripheral
858 * connection, the resources associated with the connection will not be
859 * deallocated until both end points are closed.
860 *
861 * The client must call sps_connect() for the handle before calling
862 * this function.
863 *
864 * @h - client context for SPS connection end point
865 *
866 * @return 0 on success, negative value on error
867 *
868 */
869int sps_disconnect(struct sps_pipe *h);
870
871/**
872 * Register an event object for an SPS connection end point
873 *
874 * This function registers a callback event object for an SPS connection end
875 *point. The registered event object will be triggered for the set of
876 * events specified in reg->options that are enabled for the end point.
877 *
878 * There can only be one registered event object for each event. If an event
879 * object is already registered for an event, it will be replaced. If
880 *reg->event handle is NULL, then any registered event object for the
881 * event will be deregistered. Option bits in reg->options not associated
882 * with events are ignored.
883 *
884 * The client must call sps_connect() for the handle before calling
885 * this function.
886 *
887 * @h - client context for SPS connection end point
888 *
889 * @reg - Pointer to event registration parameters
890 *
891 * @return 0 on success, negative value on error
892 *
893 */
894int sps_register_event(struct sps_pipe *h, struct sps_register_event *reg);
895
896/**
897 * Perform a single DMA transfer on an SPS connection end point
898 *
899 * This function submits a DMA transfer request consisting of a single buffer
900 * for an SPS connection end point associated with a peripheral-to/from-memory
901 * connection. The request will be submitted immediately to hardware if the
902 * hardware is idle (data flow off, no other pending transfers). Otherwise, it
903 * will be queued for later handling in the SPS driver work loop.
904 *
905 * The data buffer must be DMA ready. The client is responsible for insuring
906 *physically contiguous memory, cache maintenance, and memory barrier. For
907 * more information, see Appendix A.
908 *
909 * The client must not modify the data buffer until the completion indication is
910 * received.
911 *
912 * This function cannot be used if transfer queuing is disabled (see option
913 * SPS_O_NO_Q). The client must set the SPS_O_EOT option to receive a callback
914 * event trigger when the transfer is complete. The SPS driver will insure the
915 * appropriate flags in the I/O vectors are set to generate the completion
916 * indication.
917 *
918 * The return value from this function may indicate that an error occurred.
919 * Possible causes include invalid arguments.
920 *
921 * @h - client context for SPS connection end point
922 *
923 * @addr - Physical address of buffer to transfer.
924 *
925 * WARNING: The memory provided should be physically contiguous and
926 * non-cached.
927 *
928 * The user can use one of the following:
929 * 1. sps_alloc_mem() - allocated from pipe-memory.
930 * 2. dma_alloc_coherent() - allocate DMA memory.
931 * 3. dma_map_single() for memory allocated by kmalloc().
932 *
933 * @size - Size in bytes of buffer to transfer
934 *
935 * @user - User pointer that will be returned to user as part of
936 * event payload
937 *
938 * @return 0 on success, negative value on error
939 *
940 */
941int sps_transfer_one(struct sps_pipe *h, u32 addr, u32 size,
942 void *user, u32 flags);
943
944/**
945 * Read event queue for an SPS connection end point
946 *
947 * This function reads event queue for an SPS connection end point.
948 *
949 * @h - client context for SPS connection end point
950 *
951 * @event - pointer to client's event data buffer
952 *
953 * @return 0 on success, negative value on error
954 *
955 */
956int sps_get_event(struct sps_pipe *h, struct sps_event_notify *event);
957
958/**
959 * Get processed I/O vector (completed transfers)
960 *
961 * This function fetches the next processed I/O vector.
962 *
963 * @h - client context for SPS connection end point
964 *
965 * @iovec - Pointer to I/O vector struct (output).
966 * This struct will be zeroed if there are no more processed I/O vectors.
967 *
968 * @return 0 on success, negative value on error
969 *
970 */
971int sps_get_iovec(struct sps_pipe *h, struct sps_iovec *iovec);
972
973/**
974 * Enable an SPS connection end point
975 *
976 * This function enables an SPS connection end point.
977 *
978 * @h - client context for SPS connection end point
979 *
980 * @return 0 on success, negative value on error
981 *
982 */
983int sps_flow_on(struct sps_pipe *h);
984
985/**
986 * Disable an SPS connection end point
987 *
988 * This function disables an SPS connection end point.
989 *
990 * @h - client context for SPS connection end point
991 *
992 * @mode - Desired mode for disabling pipe data flow
993 *
994 * @return 0 on success, negative value on error
995 *
996 */
997int sps_flow_off(struct sps_pipe *h, enum sps_flow_off mode);
998
999/**
1000 * Perform a Multiple DMA transfer on an SPS connection end point
1001 *
1002 * This function submits a DMA transfer request for an SPS connection end point
1003 * associated with a peripheral-to/from-memory connection. The request will be
1004 * submitted immediately to hardware if the hardware is idle (data flow off, no
1005 * other pending transfers). Otherwise, it will be queued for later handling in
1006 * the SPS driver work loop.
1007 *
1008 * The data buffers referenced by the I/O vectors must be DMA ready.
1009 * The client is responsible for insuring physically contiguous memory,
1010 * any cache maintenance, and memory barrier. For more information,
1011 * see Appendix A.
1012 *
1013 * The I/O vectors must specify physical addresses for the referenced buffers.
1014 *
1015 * The client must not modify the data buffers referenced by I/O vectors until
1016 * the completion indication is received.
1017 *
1018 * If transfer queuing is disabled (see option SPS_O_NO_Q), the client is
1019 * responsible for setting the appropriate flags in the I/O vectors to generate
1020 * the completion indication. Also, the client is responsible for enabling the
1021 * appropriate connection callback event options for completion indication (see
1022 * sps_connect(), sps_set_config()).
1023 *
1024 * If transfer queuing is enabled, the client must set the SPS_O_EOT option to
1025 * receive a callback event trigger when the transfer is complete. The SPS
1026 * driver will insure the appropriate flags in the I/O vectors are set to
1027 * generate the completion indication. The client must not set any flags in the
1028 * I/O vectors, as this may cause the SPS driver to become out of sync with the
1029 * hardware.
1030 *
1031 * The return value from this function may indicate that an error occurred.
1032 * Possible causes include invalid arguments. If transfer queuing is disabled,
1033 * an error will occur if the pipe is already processing a transfer.
1034 *
1035 * @h - client context for SPS connection end point
1036 *
1037 * @transfer - Pointer to transfer parameter struct
1038 *
1039 * @return 0 on success, negative value on error
1040 *
1041 */
1042int sps_transfer(struct sps_pipe *h, struct sps_transfer *transfer);
1043
1044/**
1045 * Determine whether an SPS connection end point FIFO is empty
1046 *
1047 * This function returns the empty state of an SPS connection end point.
1048 *
1049 * @h - client context for SPS connection end point
1050 *
1051 * @empty - pointer to client's empty status word (boolean)
1052 *
1053 * @return 0 on success, negative value on error
1054 *
1055 */
1056int sps_is_pipe_empty(struct sps_pipe *h, u32 *empty);
1057
1058/**
1059 * Reset an SPS BAM device
1060 *
1061 * This function resets an SPS BAM device.
1062 *
1063 * @dev - device handle for the BAM
1064 *
1065 * @return 0 on success, negative value on error
1066 *
1067 */
1068int sps_device_reset(u32 dev);
1069
1070/**
1071 * Set the configuration parameters for an SPS connection end point
1072 *
1073 * This function sets the configuration parameters for an SPS connection
1074 * end point. This function may be called before the end point is connected
1075 * (before sps_connect is called). This allows the client to specify
1076 *parameters before the connection is established. The client is allowed
1077 * to pre-allocate resources and override driver defaults.
1078 *
1079 * The client must call sps_get_config() to fill it's struct sps_connect
1080 * struct before modifying values and passing the struct to this function.
1081 * Only those parameters that differ from the current configuration will
1082 * be processed.
1083 *
1084 * @h - client context for SPS connection end point
1085 *
1086 * @config - Pointer to the end point's new configuration parameters.
1087 *
1088 * @return 0 on success, negative value on error
1089 *
1090 */
1091int sps_set_config(struct sps_pipe *h, struct sps_connect *config);
1092
1093/**
1094 * Set ownership of an SPS connection end point
1095 *
1096 * This function sets the ownership of an SPS connection end point to
1097 * either local (default) or non-local. This function is used to
1098 * retrieve the struct sps_connect data that must be used by a
1099 * satellite processor when calling sps_connect().
1100 *
1101 * Non-local ownership is only possible/meaningful on the processor
1102 * that controls resource allocations (apps processor). Setting ownership
1103 * to non-local on a satellite processor will fail.
1104 *
1105 * Setting ownership from non-local to local will succeed only if the
1106 * owning satellite processor has properly brought the end point to
1107 * an idle condition.
1108 *
1109 * This function will succeed if the connection end point is already in
1110 * the specified ownership state.
1111 *
1112 * @h - client context for SPS connection end point
1113 *
1114 * @owner - New ownership of the connection end point
1115 *
1116 * @connect - Pointer to buffer for satellite processor connect data.
1117 * Can be NULL to avoid retrieving the connect data. Will be ignored
1118 * if the end point ownership is set to local.
1119 *
1120 * @return 0 on success, negative value on error
1121 *
1122 */
1123int sps_set_owner(struct sps_pipe *h, enum sps_owner owner,
1124 struct sps_satellite *connect);
1125
1126/**
1127 * Allocate a BAM DMA channel
1128 *
1129 * This function allocates a BAM DMA channel. A "BAM DMA" is a special
1130 * DMA peripheral with a BAM front end. The DMA peripheral acts as a conduit
1131 * for data to flow into a consumer pipe and then out of a producer pipe.
1132 * It's primarily purpose is to serve as a path for interprocessor communication
1133 * that allows each processor to control and protect it's own memory space.
1134 *
1135 * @alloc - Pointer to struct for BAM DMA channel allocation properties.
1136 *
1137 * @chan - Allocated channel information will be written to this
1138 * location (output).
1139 *
1140 * @return 0 on success, negative value on error
1141 *
1142 */
1143int sps_alloc_dma_chan(const struct sps_alloc_dma_chan *alloc,
1144 struct sps_dma_chan *chan);
1145
1146/**
1147 * Free a BAM DMA channel
1148 *
1149 * This function frees a BAM DMA channel.
1150 *
1151 * @chan - Pointer to information for channel to free
1152 *
1153 * @return 0 on success, negative value on error
1154 *
1155 */
1156int sps_free_dma_chan(struct sps_dma_chan *chan);
1157
1158/**
1159 * Get the BAM handle for BAM-DMA.
1160 *
1161 * The BAM handle should be use as source/destination in the sps_connect().
1162 *
1163 * @return handle on success, zero on error
1164 *
1165 */
1166u32 sps_dma_get_bam_handle(void);
1167
1168/**
1169 * Free the BAM handle for BAM-DMA.
1170 *
1171 */
1172void sps_dma_free_bam_handle(u32 h);
1173
1174
1175/**
1176 * Get number of free transfer entries for an SPS connection end point
1177 *
1178 * This function returns the number of free transfer entries for an
1179 * SPS connection end point.
1180 *
1181 * @h - client context for SPS connection end point
1182 *
1183 * @count - pointer to count status
1184 *
1185 * @return 0 on success, negative value on error
1186 *
1187 */
1188int sps_get_free_count(struct sps_pipe *h, u32 *count);
1189
1190/**
1191 * Perform timer control
1192 *
1193 * This function performs timer control operations.
1194 *
1195 * @h - client context for SPS connection end point
1196 *
1197 * @timer_ctrl - Pointer to timer control specification
1198 *
1199 * @timer_result - Pointer to buffer for timer operation result.
1200 * This argument can be NULL if no result is expected for the operation.
1201 * If non-NULL, the current timer value will always provided.
1202 *
1203 * @return 0 on success, negative value on error
1204 *
1205 */
1206int sps_timer_ctrl(struct sps_pipe *h,
1207 struct sps_timer_ctrl *timer_ctrl,
1208 struct sps_timer_result *timer_result);
1209
Yan He2027bd82011-11-05 14:43:01 -07001210/**
1211 * Find the handle of a BAM device based on the physical address
1212 *
1213 * This function finds a BAM device in the BAM registration list that
1214 * matches the specified physical address, and returns its handle.
1215 *
1216 * @phys_addr - physical address of the BAM
1217 *
1218 * @h - device handle of the BAM
1219 *
1220 * @return 0 on success, negative value on error
1221 *
1222 */
1223int sps_phy2h(u32 phys_addr, u32 *handle);
1224
1225/**
1226 * Setup desc/data FIFO for bam-to-bam connection
1227 *
1228 * @mem_buffer - Pointer to struct for allocated memory properties.
1229 *
1230 * @addr - address of FIFO
1231 *
1232 * @size - FIFO size
1233 *
1234 * @use_offset - use address offset instead of absolute address
1235 *
1236 * @return 0 on success, negative value on error
1237 *
1238 */
1239int sps_setup_bam2bam_fifo(struct sps_mem_buffer *mem_buffer,
1240 u32 addr, u32 size, int use_offset);
1241
Yan Hece596c12012-04-06 10:42:33 -07001242/**
1243 * Get the number of unused descriptors in the descriptor FIFO
1244 * of a pipe
1245 *
1246 * @h - client context for SPS connection end point
1247 *
1248 * @desc_num - number of unused descriptors
1249 *
1250 * @return 0 on success, negative value on error
1251 *
1252 */
1253int sps_get_unused_desc_num(struct sps_pipe *h, u32 *desc_num);
1254
Yan He0eead892012-07-03 17:38:56 -07001255/**
1256 * Get the debug info of BAM registers and descriptor FIFOs
1257 *
1258 * @dev - BAM device handle
1259 *
1260 * @option - debugging option
1261 *
1262 * @para - parameter used for an option (such as pipe combination)
1263 *
Yan Hefc1aa892012-08-13 15:03:09 -07001264 * @tb_sel - testbus selection
1265 *
Yan He4f9f6952012-09-10 18:39:46 -07001266 * @desc_sel - selection of descriptors
Yan Hefc1aa892012-08-13 15:03:09 -07001267 *
Yan He0eead892012-07-03 17:38:56 -07001268 * @return 0 on success, negative value on error
1269 *
1270 */
Yan Hefc1aa892012-08-13 15:03:09 -07001271int sps_get_bam_debug_info(u32 dev, u32 option, u32 para,
Yan Hec53399f2013-03-12 16:15:13 -07001272 u32 tb_sel, u32 desc_sel);
Yan He0eead892012-07-03 17:38:56 -07001273
Yan Heb8419f62013-05-20 13:17:29 -07001274/**
1275 * Vote for or relinquish BAM DMA clock
1276 *
1277 * @clk_on - to turn on or turn off the clock
1278 *
1279 * @return 0 on success, negative value on error
1280 *
1281 */
1282int sps_ctrl_bam_dma_clk(bool clk_on);
Yan He2eafd742012-04-09 16:07:15 -07001283#else
1284static inline int sps_register_bam_device(const struct sps_bam_props
1285 *bam_props, u32 *dev_handle)
1286{
1287 return -EPERM;
1288}
1289
1290static inline int sps_deregister_bam_device(u32 dev_handle)
1291{
1292 return -EPERM;
1293}
1294
1295static inline struct sps_pipe *sps_alloc_endpoint(void)
1296{
1297 return NULL;
1298}
1299
1300static inline int sps_free_endpoint(struct sps_pipe *h)
1301{
1302 return -EPERM;
1303}
1304
1305static inline int sps_get_config(struct sps_pipe *h, struct sps_connect *config)
1306{
1307 return -EPERM;
1308}
1309
1310static inline int sps_alloc_mem(struct sps_pipe *h, enum sps_mem mem,
1311 struct sps_mem_buffer *mem_buffer)
1312{
1313 return -EPERM;
1314}
1315
1316static inline int sps_free_mem(struct sps_pipe *h,
1317 struct sps_mem_buffer *mem_buffer)
1318{
1319 return -EPERM;
1320}
1321
1322static inline int sps_connect(struct sps_pipe *h, struct sps_connect *connect)
1323{
1324 return -EPERM;
1325}
1326
1327static inline int sps_disconnect(struct sps_pipe *h)
1328{
1329 return -EPERM;
1330}
1331
1332static inline int sps_register_event(struct sps_pipe *h,
1333 struct sps_register_event *reg)
1334{
1335 return -EPERM;
1336}
1337
1338static inline int sps_transfer_one(struct sps_pipe *h, u32 addr, u32 size,
1339 void *user, u32 flags)
1340{
1341 return -EPERM;
1342}
1343
1344static inline int sps_get_event(struct sps_pipe *h,
1345 struct sps_event_notify *event)
1346{
1347 return -EPERM;
1348}
1349
1350static inline int sps_get_iovec(struct sps_pipe *h, struct sps_iovec *iovec)
1351{
1352 return -EPERM;
1353}
1354
1355static inline int sps_flow_on(struct sps_pipe *h)
1356{
1357 return -EPERM;
1358}
1359
1360static inline int sps_flow_off(struct sps_pipe *h, enum sps_flow_off mode)
1361{
1362 return -EPERM;
1363}
1364
1365static inline int sps_transfer(struct sps_pipe *h,
1366 struct sps_transfer *transfer)
1367{
1368 return -EPERM;
1369}
1370
1371static inline int sps_is_pipe_empty(struct sps_pipe *h, u32 *empty)
1372{
1373 return -EPERM;
1374}
1375
1376static inline int sps_device_reset(u32 dev)
1377{
1378 return -EPERM;
1379}
1380
1381static inline int sps_set_config(struct sps_pipe *h, struct sps_connect *config)
1382{
1383 return -EPERM;
1384}
1385
1386static inline int sps_set_owner(struct sps_pipe *h, enum sps_owner owner,
1387 struct sps_satellite *connect)
1388{
1389 return -EPERM;
1390}
1391
1392static inline int sps_get_free_count(struct sps_pipe *h, u32 *count)
1393{
1394 return -EPERM;
1395}
1396
1397static inline int sps_alloc_dma_chan(const struct sps_alloc_dma_chan *alloc,
1398 struct sps_dma_chan *chan)
1399{
1400 return -EPERM;
1401}
1402
1403static inline int sps_free_dma_chan(struct sps_dma_chan *chan)
1404{
1405 return -EPERM;
1406}
1407
1408static inline u32 sps_dma_get_bam_handle(void)
1409{
1410 return 0;
1411}
1412
1413static inline void sps_dma_free_bam_handle(u32 h)
1414{
1415}
1416
1417static inline int sps_timer_ctrl(struct sps_pipe *h,
1418 struct sps_timer_ctrl *timer_ctrl,
1419 struct sps_timer_result *timer_result)
1420{
1421 return -EPERM;
1422}
1423
1424static inline int sps_phy2h(u32 phys_addr, u32 *handle)
1425{
1426 return -EPERM;
1427}
1428
1429static inline int sps_setup_bam2bam_fifo(struct sps_mem_buffer *mem_buffer,
1430 u32 addr, u32 size, int use_offset)
1431{
1432 return -EPERM;
1433}
1434
1435static inline int sps_get_unused_desc_num(struct sps_pipe *h, u32 *desc_num)
1436{
1437 return -EPERM;
1438}
Yan He0eead892012-07-03 17:38:56 -07001439
Yan Hefc1aa892012-08-13 15:03:09 -07001440static inline int sps_get_bam_debug_info(u32 dev, u32 option, u32 para,
Yan Hec53399f2013-03-12 16:15:13 -07001441 u32 tb_sel, u32 desc_sel)
Yan He0eead892012-07-03 17:38:56 -07001442{
1443 return -EPERM;
1444}
Yan Heb8419f62013-05-20 13:17:29 -07001445
1446static inline int sps_ctrl_bam_dma_clk(bool clk_on)
1447{
1448 return -EPERM;
1449}
Yan He2eafd742012-04-09 16:07:15 -07001450#endif
1451
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001452#endif /* _SPS_H_ */