blob: 39f3bacee4047a2e979e2988150536f2537b2b31 [file] [log] [blame]
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001/*
2 * Isochronous IO functionality
Kristian Høgsberg3038e352006-12-19 19:58:27 -05003 *
Kristian Høgsberg3038e352006-12-19 19:58:27 -05004 * Copyright (C) 2006 Kristian Hoegsberg <krh@bitplanet.net>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21#include <linux/kernel.h>
22#include <linux/module.h>
23#include <linux/dma-mapping.h>
24#include <linux/vmalloc.h>
25#include <linux/mm.h>
26
27#include "fw-transaction.h"
28#include "fw-topology.h"
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050029#include "fw-device.h"
Kristian Høgsberg3038e352006-12-19 19:58:27 -050030
Stefan Richter53dca512008-12-14 21:47:04 +010031int fw_iso_buffer_init(struct fw_iso_buffer *buffer, struct fw_card *card,
32 int page_count, enum dma_data_direction direction)
Kristian Høgsberg3038e352006-12-19 19:58:27 -050033{
Stefan Richter2dbd7d72008-12-14 21:45:45 +010034 int i, j;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050035 dma_addr_t address;
Kristian Høgsberg3038e352006-12-19 19:58:27 -050036
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050037 buffer->page_count = page_count;
38 buffer->direction = direction;
Kristian Høgsberg3038e352006-12-19 19:58:27 -050039
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050040 buffer->pages = kmalloc(page_count * sizeof(buffer->pages[0]),
41 GFP_KERNEL);
42 if (buffer->pages == NULL)
43 goto out;
Kristian Høgsberg3038e352006-12-19 19:58:27 -050044
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050045 for (i = 0; i < buffer->page_count; i++) {
Kristian Høgsberg68be3fa2007-02-16 17:34:48 -050046 buffer->pages[i] = alloc_page(GFP_KERNEL | GFP_DMA32 | __GFP_ZERO);
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050047 if (buffer->pages[i] == NULL)
48 goto out_pages;
Stefan Richter373b2ed2007-03-04 14:45:18 +010049
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050050 address = dma_map_page(card->device, buffer->pages[i],
51 0, PAGE_SIZE, direction);
FUJITA Tomonori8d8bb392008-07-25 19:44:49 -070052 if (dma_mapping_error(card->device, address)) {
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050053 __free_page(buffer->pages[i]);
54 goto out_pages;
55 }
56 set_page_private(buffer->pages[i], address);
Kristian Høgsberg3038e352006-12-19 19:58:27 -050057 }
58
59 return 0;
Kristian Høgsberg82eff9d2007-02-06 14:49:40 -050060
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050061 out_pages:
62 for (j = 0; j < i; j++) {
63 address = page_private(buffer->pages[j]);
64 dma_unmap_page(card->device, address,
Kristian Høgsberg82eff9d2007-02-06 14:49:40 -050065 PAGE_SIZE, DMA_TO_DEVICE);
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050066 __free_page(buffer->pages[j]);
67 }
68 kfree(buffer->pages);
69 out:
70 buffer->pages = NULL;
Stefan Richter2dbd7d72008-12-14 21:45:45 +010071 return -ENOMEM;
Kristian Høgsberg3038e352006-12-19 19:58:27 -050072}
73
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050074int fw_iso_buffer_map(struct fw_iso_buffer *buffer, struct vm_area_struct *vma)
75{
76 unsigned long uaddr;
Stefan Richter2dbd7d72008-12-14 21:45:45 +010077 int i, ret;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050078
79 uaddr = vma->vm_start;
80 for (i = 0; i < buffer->page_count; i++) {
Stefan Richter2dbd7d72008-12-14 21:45:45 +010081 ret = vm_insert_page(vma, uaddr, buffer->pages[i]);
82 if (ret)
83 return ret;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050084 uaddr += PAGE_SIZE;
85 }
86
87 return 0;
88}
89
90void fw_iso_buffer_destroy(struct fw_iso_buffer *buffer,
91 struct fw_card *card)
Kristian Høgsberg3038e352006-12-19 19:58:27 -050092{
93 int i;
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050094 dma_addr_t address;
Kristian Høgsberg3038e352006-12-19 19:58:27 -050095
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050096 for (i = 0; i < buffer->page_count; i++) {
97 address = page_private(buffer->pages[i]);
98 dma_unmap_page(card->device, address,
Kristian Høgsberg3038e352006-12-19 19:58:27 -050099 PAGE_SIZE, DMA_TO_DEVICE);
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500100 __free_page(buffer->pages[i]);
101 }
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500102
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500103 kfree(buffer->pages);
104 buffer->pages = NULL;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500105}
106
Stefan Richter53dca512008-12-14 21:47:04 +0100107struct fw_iso_context *fw_iso_context_create(struct fw_card *card,
108 int type, int channel, int speed, size_t header_size,
109 fw_iso_callback_t callback, void *callback_data)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500110{
111 struct fw_iso_context *ctx;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500112
Stefan Richter4817ed22008-12-21 16:39:46 +0100113 ctx = card->driver->allocate_iso_context(card,
114 type, channel, header_size);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500115 if (IS_ERR(ctx))
116 return ctx;
117
118 ctx->card = card;
119 ctx->type = type;
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -0500120 ctx->channel = channel;
121 ctx->speed = speed;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500122 ctx->header_size = header_size;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500123 ctx->callback = callback;
124 ctx->callback_data = callback_data;
125
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500126 return ctx;
127}
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500128
129void fw_iso_context_destroy(struct fw_iso_context *ctx)
130{
131 struct fw_card *card = ctx->card;
132
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500133 card->driver->free_iso_context(ctx);
134}
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500135
Stefan Richter53dca512008-12-14 21:47:04 +0100136int fw_iso_context_start(struct fw_iso_context *ctx,
137 int cycle, int sync, int tags)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500138{
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400139 return ctx->card->driver->start_iso(ctx, cycle, sync, tags);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500140}
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500141
Stefan Richter53dca512008-12-14 21:47:04 +0100142int fw_iso_context_queue(struct fw_iso_context *ctx,
143 struct fw_iso_packet *packet,
144 struct fw_iso_buffer *buffer,
145 unsigned long payload)
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500146{
147 struct fw_card *card = ctx->card;
148
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500149 return card->driver->queue_iso(ctx, packet, buffer, payload);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500150}
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500151
Stefan Richter53dca512008-12-14 21:47:04 +0100152int fw_iso_context_stop(struct fw_iso_context *ctx)
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500153{
154 return ctx->card->driver->stop_iso(ctx);
155}