2 * Keystone Navigator QMSS driver internal header
4 * Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com
5 * Author: Sandeep Nair <sandeep_n@ti.com>
6 * Cyril Chemparathy <cyril@ti.com>
7 * Santosh Shilimkar <santosh.shilimkar@ti.com>
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * version 2 as published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
19 #ifndef __KNAV_QMSS_H__
20 #define __KNAV_QMSS_H__
22 #define THRESH_GTE BIT(7)
25 #define PDSP_CTRL_PC_MASK 0xffff0000
26 #define PDSP_CTRL_SOFT_RESET BIT(0)
27 #define PDSP_CTRL_ENABLE BIT(1)
28 #define PDSP_CTRL_RUNNING BIT(15)
30 #define ACC_MAX_CHANNEL 48
31 #define ACC_DEFAULT_PERIOD 25 /* usecs */
33 #define ACC_CHANNEL_INT_BASE 2
35 #define ACC_LIST_ENTRY_TYPE 1
36 #define ACC_LIST_ENTRY_WORDS (1 << ACC_LIST_ENTRY_TYPE)
37 #define ACC_LIST_ENTRY_QUEUE_IDX 0
38 #define ACC_LIST_ENTRY_DESC_IDX (ACC_LIST_ENTRY_WORDS - 1)
40 #define ACC_CMD_DISABLE_CHANNEL 0x80
41 #define ACC_CMD_ENABLE_CHANNEL 0x81
42 #define ACC_CFG_MULTI_QUEUE BIT(21)
44 #define ACC_INTD_OFFSET_EOI (0x0010)
45 #define ACC_INTD_OFFSET_COUNT(ch) (0x0300 + 4 * (ch))
46 #define ACC_INTD_OFFSET_STATUS(ch) (0x0200 + 4 * ((ch) / 32))
48 #define RANGE_MAX_IRQS 64
50 #define ACC_DESCS_MAX SZ_1K
51 #define ACC_DESCS_MASK (ACC_DESCS_MAX - 1)
52 #define DESC_SIZE_MASK 0xful
53 #define DESC_PTR_MASK (~DESC_SIZE_MASK)
55 #define KNAV_NAME_SIZE 32
57 enum knav_acc_result
{
60 ACC_RET_INVALID_COMMAND
,
61 ACC_RET_INVALID_CHANNEL
,
62 ACC_RET_INACTIVE_CHANNEL
,
63 ACC_RET_ACTIVE_CHANNEL
,
64 ACC_RET_INVALID_QUEUE
,
68 struct knav_reg_config
{
79 struct knav_reg_region
{
86 struct knav_reg_pdsp_regs
{
93 struct knav_reg_acc_command
{
101 struct knav_link_ram_block
{
107 struct knav_acc_info
{
115 struct knav_pdsp_info
*pdsp
;
118 struct knav_acc_channel
{
123 dma_addr_t list_dma
[2];
124 char name
[KNAV_NAME_SIZE
];
125 atomic_t retrigger_count
;
128 struct knav_pdsp_info
{
130 struct knav_reg_pdsp_regs __iomem
*regs
;
132 void __iomem
*command
;
133 struct knav_reg_acc_command __iomem
*acc_command
;
134 u32 __iomem
*qos_command
;
139 struct list_head list
;
144 struct knav_qmgr_info
{
145 unsigned start_queue
;
147 struct knav_reg_config __iomem
*reg_config
;
148 struct knav_reg_region __iomem
*reg_region
;
149 struct knav_reg_queue __iomem
*reg_push
, *reg_pop
, *reg_peek
;
150 void __iomem
*reg_status
;
151 struct list_head list
;
154 #define KNAV_NUM_LINKRAM 2
157 * struct knav_queue_stats: queue statistics
158 * pushes: number of push operations
159 * pops: number of pop operations
160 * push_errors: number of push errors
161 * pop_errors: number of pop errors
162 * notifies: notifier counts
164 struct knav_queue_stats
{
167 atomic_t push_errors
;
173 * struct knav_reg_queue: queue registers
174 * @entry_count: valid entries in the queue
175 * @byte_count: total byte count in thhe queue
176 * @packet_size: packet size for the queue
177 * @ptr_size_thresh: packet pointer size threshold
179 struct knav_reg_queue
{
187 * struct knav_region: qmss region info
188 * @dma_start, dma_end: start and end dma address
189 * @virt_start, virt_end: start and end virtual address
190 * @desc_size: descriptor size
191 * @used_desc: consumed descriptors
193 * @num_desc: total descriptors
194 * @link_index: index of the first descriptor
196 * @list: instance in the device's region list
197 * @pools: list of descriptor pools in the region
200 dma_addr_t dma_start
, dma_end
;
201 void *virt_start
, *virt_end
;
208 struct list_head list
;
209 struct list_head pools
;
213 * struct knav_pool: qmss pools
214 * @dev: device pointer
215 * @region: qmss region info
216 * @queue: queue registers
217 * @kdev: qmss device pointer
218 * @region_offset: offset from the base
219 * @num_desc: total descriptors
220 * @desc_size: descriptor size
221 * @region_id: region number
224 * @region_inst: instance in the region's pool list
228 struct knav_region
*region
;
229 struct knav_queue
*queue
;
230 struct knav_device
*kdev
;
236 struct list_head list
;
237 struct list_head region_inst
;
241 * struct knav_queue_inst: qmss queue instace properties
242 * @descs: descriptor pointer
243 * @desc_head, desc_tail, desc_count: descriptor counters
244 * @acc: accumulator channel pointer
245 * @kdev: qmss device pointer
247 * @qmgr: queue manager info
248 * @id: queue instace id
249 * @irq_num: irq line number
250 * @notify_needed: notifier needed based on queue type
251 * @num_notifiers: total notifiers
252 * @handles: list head
253 * @name: queue instance name
254 * @irq_name: irq line name
256 struct knav_queue_inst
{
258 atomic_t desc_head
, desc_tail
, desc_count
;
259 struct knav_acc_channel
*acc
;
260 struct knav_device
*kdev
;
261 struct knav_range_info
*range
;
262 struct knav_qmgr_info
*qmgr
;
266 atomic_t num_notifiers
;
267 struct list_head handles
;
269 const char *irq_name
;
273 * struct knav_queue: qmss queue properties
274 * @reg_push, reg_pop, reg_peek: push, pop queue registers
275 * @inst: qmss queue instace properties
276 * @notifier_fn: notifier function
277 * @notifier_fn_arg: notifier function argument
278 * @notifier_enabled: notier enabled for a give queue
280 * @flags: queue flags
284 struct knav_reg_queue __iomem
*reg_push
, *reg_pop
, *reg_peek
;
285 struct knav_queue_inst
*inst
;
286 struct knav_queue_stats stats
;
287 knav_queue_notify_fn notifier_fn
;
288 void *notifier_fn_arg
;
289 atomic_t notifier_enabled
;
292 struct list_head list
;
299 unsigned num_queues_in_use
;
301 struct knav_link_ram_block link_rams
[KNAV_NUM_LINKRAM
];
303 struct list_head regions
;
304 struct list_head queue_ranges
;
305 struct list_head pools
;
306 struct list_head pdsps
;
307 struct list_head qmgrs
;
310 struct knav_range_ops
{
311 int (*init_range
)(struct knav_range_info
*range
);
312 int (*free_range
)(struct knav_range_info
*range
);
313 int (*init_queue
)(struct knav_range_info
*range
,
314 struct knav_queue_inst
*inst
);
315 int (*open_queue
)(struct knav_range_info
*range
,
316 struct knav_queue_inst
*inst
, unsigned flags
);
317 int (*close_queue
)(struct knav_range_info
*range
,
318 struct knav_queue_inst
*inst
);
319 int (*set_notify
)(struct knav_range_info
*range
,
320 struct knav_queue_inst
*inst
, bool enabled
);
323 struct knav_irq_info
{
328 struct knav_range_info
{
330 struct knav_device
*kdev
;
333 void *queue_base_inst
;
335 struct list_head list
;
336 struct knav_range_ops
*ops
;
337 struct knav_acc_info acc_info
;
338 struct knav_acc_channel
*acc
;
340 struct knav_irq_info irqs
[RANGE_MAX_IRQS
];
343 #define RANGE_RESERVED BIT(0)
344 #define RANGE_HAS_IRQ BIT(1)
345 #define RANGE_HAS_ACCUMULATOR BIT(2)
346 #define RANGE_MULTI_QUEUE BIT(3)
348 #define for_each_region(kdev, region) \
349 list_for_each_entry(region, &kdev->regions, list)
351 #define first_region(kdev) \
352 list_first_entry_or_null(&kdev->regions, \
353 struct knav_region, list)
355 #define for_each_queue_range(kdev, range) \
356 list_for_each_entry(range, &kdev->queue_ranges, list)
358 #define first_queue_range(kdev) \
359 list_first_entry_or_null(&kdev->queue_ranges, \
360 struct knav_range_info, list)
362 #define for_each_pool(kdev, pool) \
363 list_for_each_entry(pool, &kdev->pools, list)
365 #define for_each_pdsp(kdev, pdsp) \
366 list_for_each_entry(pdsp, &kdev->pdsps, list)
368 #define for_each_qmgr(kdev, qmgr) \
369 list_for_each_entry(qmgr, &kdev->qmgrs, list)
371 static inline struct knav_pdsp_info
*
372 knav_find_pdsp(struct knav_device
*kdev
, unsigned pdsp_id
)
374 struct knav_pdsp_info
*pdsp
;
376 for_each_pdsp(kdev
, pdsp
)
377 if (pdsp_id
== pdsp
->id
)
382 extern int knav_init_acc_range(struct knav_device
*kdev
,
383 struct device_node
*node
,
384 struct knav_range_info
*range
);
385 extern void knav_queue_notify(struct knav_queue_inst
*inst
);
387 #endif /* __KNAV_QMSS_H__ */