Try making your component dynamic instead of native. Dynamic components (typically memory) use byte enables so you shouldn't run into any width restrictions there.
Better yet, you are probably working a buffer of data so if that's the case here's how I'd approach this:
1) Stuff the data into wide on-chip memory buffers
2) Feed your accelerators with data using DMA engines from the on-chip memory buffers
Step two can be done two different ways, you can use a separate DMA engine (available in SOPC Builder) or just build one on the front end of your hardware accelerator. To learn more read the component editor and Avalon memory mapped specification.