firewire: core: provide isoc header buffer size outside card driver

For single-channel isochronous contexts, the header storage size is
hard-coded to PAGE_SIZE. which is inconvenient for protocol
implementations requiring more space.

This commit refactors the code to obtain the header storage size outside
the 1394 OHCI driver.

Link: https://lore.kernel.org/r/20260117142823.440811-8-o-takashi@sakamocchi.jp
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
This commit is contained in:
Takashi Sakamoto 2026-01-17 23:28:20 +09:00
parent fc999c7b68
commit 9bf71acd65
5 changed files with 20 additions and 15 deletions

View File

@ -704,8 +704,8 @@ static int dummy_enable_phys_dma(struct fw_card *card,
return -ENODEV; return -ENODEV;
} }
static struct fw_iso_context *dummy_allocate_iso_context(struct fw_card *card, static struct fw_iso_context *dummy_allocate_iso_context(struct fw_card *card, int type,
int type, int channel, size_t header_size) int channel, size_t header_size, size_t header_storage_size)
{ {
return ERR_PTR(-ENODEV); return ERR_PTR(-ENODEV);
} }

View File

@ -138,12 +138,13 @@ size_t fw_iso_buffer_lookup(struct fw_iso_buffer *buffer, dma_addr_t completed)
} }
struct fw_iso_context *__fw_iso_context_create(struct fw_card *card, int type, int channel, struct fw_iso_context *__fw_iso_context_create(struct fw_card *card, int type, int channel,
int speed, size_t header_size, union fw_iso_callback callback, void *callback_data) int speed, size_t header_size, size_t header_storage_size,
union fw_iso_callback callback, void *callback_data)
{ {
struct fw_iso_context *ctx; struct fw_iso_context *ctx;
ctx = card->driver->allocate_iso_context(card, ctx = card->driver->allocate_iso_context(card, type, channel, header_size,
type, channel, header_size); header_storage_size);
if (IS_ERR(ctx)) if (IS_ERR(ctx))
return ctx; return ctx;
@ -153,6 +154,7 @@ struct fw_iso_context *__fw_iso_context_create(struct fw_card *card, int type, i
ctx->speed = speed; ctx->speed = speed;
ctx->flags = 0; ctx->flags = 0;
ctx->header_size = header_size; ctx->header_size = header_size;
ctx->header_storage_size = header_storage_size;
ctx->callback = callback; ctx->callback = callback;
ctx->callback_data = callback_data; ctx->callback_data = callback_data;

View File

@ -100,8 +100,8 @@ struct fw_card_driver {
void (*write_csr)(struct fw_card *card, int csr_offset, u32 value); void (*write_csr)(struct fw_card *card, int csr_offset, u32 value);
struct fw_iso_context * struct fw_iso_context *
(*allocate_iso_context)(struct fw_card *card, (*allocate_iso_context)(struct fw_card *card, int type, int channel, size_t header_size,
int type, int channel, size_t header_size); size_t header_storage_size);
void (*free_iso_context)(struct fw_iso_context *ctx); void (*free_iso_context)(struct fw_iso_context *ctx);
int (*start_iso)(struct fw_iso_context *ctx, int (*start_iso)(struct fw_iso_context *ctx,
@ -178,7 +178,7 @@ static inline struct fw_iso_context *fw_iso_mc_context_create(struct fw_card *ca
{ {
union fw_iso_callback cb = { .mc = callback }; union fw_iso_callback cb = { .mc = callback };
return __fw_iso_context_create(card, FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL, 0, 0, 0, cb, return __fw_iso_context_create(card, FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL, 0, 0, 0, 0, cb,
callback_data); callback_data);
} }

View File

@ -2755,7 +2755,7 @@ static void copy_iso_headers(struct iso_context *ctx, const u32 *dma_hdr)
{ {
u32 *ctx_hdr; u32 *ctx_hdr;
if (ctx->sc.header_length + ctx->base.header_size > PAGE_SIZE) { if (ctx->sc.header_length + ctx->base.header_size > ctx->base.header_storage_size) {
if (ctx->base.flags & FW_ISO_CONTEXT_FLAG_DROP_OVERFLOW_HEADERS) if (ctx->base.flags & FW_ISO_CONTEXT_FLAG_DROP_OVERFLOW_HEADERS)
return; return;
flush_iso_completions(ctx, FW_ISO_CONTEXT_COMPLETIONS_CAUSE_HEADER_OVERFLOW); flush_iso_completions(ctx, FW_ISO_CONTEXT_COMPLETIONS_CAUSE_HEADER_OVERFLOW);
@ -2924,7 +2924,7 @@ static int handle_it_packet(struct context *context,
sync_it_packet_for_cpu(context, d); sync_it_packet_for_cpu(context, d);
if (ctx->sc.header_length + 4 > PAGE_SIZE) { if (ctx->sc.header_length + 4 > ctx->base.header_storage_size) {
if (ctx->base.flags & FW_ISO_CONTEXT_FLAG_DROP_OVERFLOW_HEADERS) if (ctx->base.flags & FW_ISO_CONTEXT_FLAG_DROP_OVERFLOW_HEADERS)
return 1; return 1;
flush_iso_completions(ctx, FW_ISO_CONTEXT_COMPLETIONS_CAUSE_HEADER_OVERFLOW); flush_iso_completions(ctx, FW_ISO_CONTEXT_COMPLETIONS_CAUSE_HEADER_OVERFLOW);
@ -2954,8 +2954,8 @@ static void set_multichannel_mask(struct fw_ohci *ohci, u64 channels)
ohci->mc_channels = channels; ohci->mc_channels = channels;
} }
static struct fw_iso_context *ohci_allocate_iso_context(struct fw_card *card, static struct fw_iso_context *ohci_allocate_iso_context(struct fw_card *card, int type, int channel,
int type, int channel, size_t header_size) size_t header_size, size_t header_storage_size)
{ {
struct fw_ohci *ohci = fw_ohci(card); struct fw_ohci *ohci = fw_ohci(card);
void *header __free(kvfree) = NULL; void *header __free(kvfree) = NULL;
@ -3016,7 +3016,7 @@ static struct fw_iso_context *ohci_allocate_iso_context(struct fw_card *card,
if (type != FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL) { if (type != FW_ISO_CONTEXT_RECEIVE_MULTICHANNEL) {
ctx->sc.header_length = 0; ctx->sc.header_length = 0;
header = kvmalloc(PAGE_SIZE, GFP_KERNEL); header = kvmalloc(header_storage_size, GFP_KERNEL);
if (!header) { if (!header) {
ret = -ENOMEM; ret = -ENOMEM;
goto out; goto out;

View File

@ -558,12 +558,14 @@ struct fw_iso_context {
int speed; int speed;
int flags; int flags;
size_t header_size; size_t header_size;
size_t header_storage_size;
union fw_iso_callback callback; union fw_iso_callback callback;
void *callback_data; void *callback_data;
}; };
struct fw_iso_context *__fw_iso_context_create(struct fw_card *card, int type, int channel, struct fw_iso_context *__fw_iso_context_create(struct fw_card *card, int type, int channel,
int speed, size_t header_size, union fw_iso_callback callback, void *callback_data); int speed, size_t header_size, size_t header_storage_size,
union fw_iso_callback callback, void *callback_data);
int fw_iso_context_set_channels(struct fw_iso_context *ctx, u64 *channels); int fw_iso_context_set_channels(struct fw_iso_context *ctx, u64 *channels);
int fw_iso_context_queue(struct fw_iso_context *ctx, int fw_iso_context_queue(struct fw_iso_context *ctx,
struct fw_iso_packet *packet, struct fw_iso_packet *packet,
@ -578,7 +580,8 @@ static inline struct fw_iso_context *fw_iso_context_create(struct fw_card *card,
{ {
union fw_iso_callback cb = { .sc = callback }; union fw_iso_callback cb = { .sc = callback };
return __fw_iso_context_create(card, type, channel, speed, header_size, cb, callback_data); return __fw_iso_context_create(card, type, channel, speed, header_size, PAGE_SIZE, cb,
callback_data);
} }
/** /**