123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331 |
- /*****************************************************************************
- * Copyright 2004 - 2008 Broadcom Corporation. All rights reserved.
- *
- * Unless you and Broadcom execute a separate written software license
- * agreement governing use of this software, this software is licensed to you
- * under the terms of the GNU General Public License version 2, available at
- * http://www.broadcom.com/licenses/GPLv2.php (the "GPL").
- *
- * Notwithstanding the above, under no circumstances may you combine this
- * software in any way with any other Broadcom software provided under a
- * license other than the GPL, without Broadcom's express prior written
- * consent.
- *****************************************************************************/
- /****************************************************************************/
- /**
- * @file dma.c
- *
- * @brief Implements the DMA interface.
- */
- /****************************************************************************/
- /* ---- Include Files ---------------------------------------------------- */
- #include <linux/module.h>
- #include <linux/device.h>
- #include <linux/dma-mapping.h>
- #include <linux/interrupt.h>
- #include <linux/sched.h>
- #include <linux/irqreturn.h>
- #include <linux/proc_fs.h>
- #include <linux/slab.h>
- #include <mach/timer.h>
- #include <linux/mm.h>
- #include <linux/pfn.h>
- #include <linux/atomic.h>
- #include <linux/sched.h>
- #include <mach/dma.h>
- /* I don't quite understand why dc4 fails when this is set to 1 and DMA is enabled */
- /* especially since dc4 doesn't use kmalloc'd memory. */
- #define ALLOW_MAP_OF_KMALLOC_MEMORY 0
- /* ---- Public Variables ------------------------------------------------- */
- /* ---- Private Constants and Types -------------------------------------- */
- #define MAKE_HANDLE(controllerIdx, channelIdx) (((controllerIdx) << 4) | (channelIdx))
- #define CONTROLLER_FROM_HANDLE(handle) (((handle) >> 4) & 0x0f)
- #define CHANNEL_FROM_HANDLE(handle) ((handle) & 0x0f)
- #define DMA_MAP_DEBUG 0
- #if DMA_MAP_DEBUG
- # define DMA_MAP_PRINT(fmt, args...) printk("%s: " fmt, __func__, ## args)
- #else
- # define DMA_MAP_PRINT(fmt, args...)
- #endif
- /* ---- Private Variables ------------------------------------------------ */
- static DMA_Global_t gDMA;
- static struct proc_dir_entry *gDmaDir;
- static atomic_t gDmaStatMemTypeKmalloc = ATOMIC_INIT(0);
- static atomic_t gDmaStatMemTypeVmalloc = ATOMIC_INIT(0);
- static atomic_t gDmaStatMemTypeUser = ATOMIC_INIT(0);
- static atomic_t gDmaStatMemTypeCoherent = ATOMIC_INIT(0);
- #include "dma_device.c"
- /* ---- Private Function Prototypes -------------------------------------- */
- /* ---- Functions ------------------------------------------------------- */
- /****************************************************************************/
- /**
- * Displays information for /proc/dma/mem-type
- */
- /****************************************************************************/
- static int dma_proc_read_mem_type(char *buf, char **start, off_t offset,
- int count, int *eof, void *data)
- {
- int len = 0;
- len += sprintf(buf + len, "dma_map_mem statistics\n");
- len +=
- sprintf(buf + len, "coherent: %d\n",
- atomic_read(&gDmaStatMemTypeCoherent));
- len +=
- sprintf(buf + len, "kmalloc: %d\n",
- atomic_read(&gDmaStatMemTypeKmalloc));
- len +=
- sprintf(buf + len, "vmalloc: %d\n",
- atomic_read(&gDmaStatMemTypeVmalloc));
- len +=
- sprintf(buf + len, "user: %d\n",
- atomic_read(&gDmaStatMemTypeUser));
- return len;
- }
- /****************************************************************************/
- /**
- * Displays information for /proc/dma/channels
- */
- /****************************************************************************/
- static int dma_proc_read_channels(char *buf, char **start, off_t offset,
- int count, int *eof, void *data)
- {
- int controllerIdx;
- int channelIdx;
- int limit = count - 200;
- int len = 0;
- DMA_Channel_t *channel;
- if (down_interruptible(&gDMA.lock) < 0) {
- return -ERESTARTSYS;
- }
- for (controllerIdx = 0; controllerIdx < DMA_NUM_CONTROLLERS;
- controllerIdx++) {
- for (channelIdx = 0; channelIdx < DMA_NUM_CHANNELS;
- channelIdx++) {
- if (len >= limit) {
- break;
- }
- channel =
- &gDMA.controller[controllerIdx].channel[channelIdx];
- len +=
- sprintf(buf + len, "%d:%d ", controllerIdx,
- channelIdx);
- if ((channel->flags & DMA_CHANNEL_FLAG_IS_DEDICATED) !=
- 0) {
- len +=
- sprintf(buf + len, "Dedicated for %s ",
- DMA_gDeviceAttribute[channel->
- devType].name);
- } else {
- len += sprintf(buf + len, "Shared ");
- }
- if ((channel->flags & DMA_CHANNEL_FLAG_NO_ISR) != 0) {
- len += sprintf(buf + len, "No ISR ");
- }
- if ((channel->flags & DMA_CHANNEL_FLAG_LARGE_FIFO) != 0) {
- len += sprintf(buf + len, "Fifo: 128 ");
- } else {
- len += sprintf(buf + len, "Fifo: 64 ");
- }
- if ((channel->flags & DMA_CHANNEL_FLAG_IN_USE) != 0) {
- len +=
- sprintf(buf + len, "InUse by %s",
- DMA_gDeviceAttribute[channel->
- devType].name);
- #if (DMA_DEBUG_TRACK_RESERVATION)
- len +=
- sprintf(buf + len, " (%s:%d)",
- channel->fileName,
- channel->lineNum);
- #endif
- } else {
- len += sprintf(buf + len, "Avail ");
- }
- if (channel->lastDevType != DMA_DEVICE_NONE) {
- len +=
- sprintf(buf + len, "Last use: %s ",
- DMA_gDeviceAttribute[channel->
- lastDevType].
- name);
- }
- len += sprintf(buf + len, "\n");
- }
- }
- up(&gDMA.lock);
- *eof = 1;
- return len;
- }
- /****************************************************************************/
- /**
- * Displays information for /proc/dma/devices
- */
- /****************************************************************************/
- static int dma_proc_read_devices(char *buf, char **start, off_t offset,
- int count, int *eof, void *data)
- {
- int limit = count - 200;
- int len = 0;
- int devIdx;
- if (down_interruptible(&gDMA.lock) < 0) {
- return -ERESTARTSYS;
- }
- for (devIdx = 0; devIdx < DMA_NUM_DEVICE_ENTRIES; devIdx++) {
- DMA_DeviceAttribute_t *devAttr = &DMA_gDeviceAttribute[devIdx];
- if (devAttr->name == NULL) {
- continue;
- }
- if (len >= limit) {
- break;
- }
- len += sprintf(buf + len, "%-12s ", devAttr->name);
- if ((devAttr->flags & DMA_DEVICE_FLAG_IS_DEDICATED) != 0) {
- len +=
- sprintf(buf + len, "Dedicated %d:%d ",
- devAttr->dedicatedController,
- devAttr->dedicatedChannel);
- } else {
- len += sprintf(buf + len, "Shared DMA:");
- if ((devAttr->flags & DMA_DEVICE_FLAG_ON_DMA0) != 0) {
- len += sprintf(buf + len, "0");
- }
- if ((devAttr->flags & DMA_DEVICE_FLAG_ON_DMA1) != 0) {
- len += sprintf(buf + len, "1");
- }
- len += sprintf(buf + len, " ");
- }
- if ((devAttr->flags & DMA_DEVICE_FLAG_NO_ISR) != 0) {
- len += sprintf(buf + len, "NoISR ");
- }
- if ((devAttr->flags & DMA_DEVICE_FLAG_ALLOW_LARGE_FIFO) != 0) {
- len += sprintf(buf + len, "Allow-128 ");
- }
- len +=
- sprintf(buf + len,
- "Xfer #: %Lu Ticks: %Lu Bytes: %Lu DescLen: %u\n",
- devAttr->numTransfers, devAttr->transferTicks,
- devAttr->transferBytes,
- devAttr->ring.bytesAllocated);
- }
- up(&gDMA.lock);
- *eof = 1;
- return len;
- }
- /****************************************************************************/
- /**
- * Determines if a DMA_Device_t is "valid".
- *
- * @return
- * TRUE - dma device is valid
- * FALSE - dma device isn't valid
- */
- /****************************************************************************/
- static inline int IsDeviceValid(DMA_Device_t device)
- {
- return (device >= 0) && (device < DMA_NUM_DEVICE_ENTRIES);
- }
- /****************************************************************************/
- /**
- * Translates a DMA handle into a pointer to a channel.
- *
- * @return
- * non-NULL - pointer to DMA_Channel_t
- * NULL - DMA Handle was invalid
- */
- /****************************************************************************/
- static inline DMA_Channel_t *HandleToChannel(DMA_Handle_t handle)
- {
- int controllerIdx;
- int channelIdx;
- controllerIdx = CONTROLLER_FROM_HANDLE(handle);
- channelIdx = CHANNEL_FROM_HANDLE(handle);
- if ((controllerIdx > DMA_NUM_CONTROLLERS)
- || (channelIdx > DMA_NUM_CHANNELS)) {
- return NULL;
- }
- return &gDMA.controller[controllerIdx].channel[channelIdx];
- }
- /****************************************************************************/
- /**
- * Interrupt handler which is called to process DMA interrupts.
- */
- /****************************************************************************/
- static irqreturn_t dma_interrupt_handler(int irq, void *dev_id)
- {
- DMA_Channel_t *channel;
- DMA_DeviceAttribute_t *devAttr;
- int irqStatus;
- channel = (DMA_Channel_t *) dev_id;
- /* Figure out why we were called, and knock down the interrupt */
- irqStatus = dmacHw_getInterruptStatus(channel->dmacHwHandle);
- dmacHw_clearInterrupt(channel->dmacHwHandle);
- if ((channel->devType < 0)
- || (channel->devType > DMA_NUM_DEVICE_ENTRIES)) {
- printk(KERN_ERR "dma_interrupt_handler: Invalid devType: %d\n",
- channel->devType);
- return IRQ_NONE;
- }
- devAttr = &DMA_gDeviceAttribute[channel->devType];
- /* Update stats */
- if ((irqStatus & dmacHw_INTERRUPT_STATUS_TRANS) != 0) {
- devAttr->transferTicks +=
- (timer_get_tick_count() - devAttr->transferStartTime);
- }
- if ((irqStatus & dmacHw_INTERRUPT_STATUS_ERROR) != 0) {
- printk(KERN_ERR
- "dma_interrupt_handler: devType :%d DMA error (%s)\n",
- channel->devType, devAttr->name);
- } else {
- devAttr->numTransfers++;
- devAttr->transferBytes += devAttr->numBytes;
- }
- /* Call any installed handler */
- if (devAttr->devHandler != NULL) {
- devAttr->devHandler(channel->devType, irqStatus,
- devAttr->userData);
- }
- return IRQ_HANDLED;
- }
- /****************************************************************************/
- /**
- * Allocates memory to hold a descriptor ring. The descriptor ring then
- * needs to be populated by making one or more calls to
- * dna_add_descriptors.
- *
- * The returned descriptor ring will be automatically initialized.
- *
- * @return
- * 0 Descriptor ring was allocated successfully
- * -EINVAL Invalid parameters passed in
- * -ENOMEM Unable to allocate memory for the desired number of descriptors.
- */
- /****************************************************************************/
- int dma_alloc_descriptor_ring(DMA_DescriptorRing_t *ring, /* Descriptor ring to populate */
- int numDescriptors /* Number of descriptors that need to be allocated. */
- ) {
- size_t bytesToAlloc = dmacHw_descriptorLen(numDescriptors);
- if ((ring == NULL) || (numDescriptors <= 0)) {
- return -EINVAL;
- }
- ring->physAddr = 0;
- ring->descriptorsAllocated = 0;
- ring->bytesAllocated = 0;
- ring->virtAddr = dma_alloc_writecombine(NULL,
- bytesToAlloc,
- &ring->physAddr,
- GFP_KERNEL);
- if (ring->virtAddr == NULL) {
- return -ENOMEM;
- }
- ring->bytesAllocated = bytesToAlloc;
- ring->descriptorsAllocated = numDescriptors;
- return dma_init_descriptor_ring(ring, numDescriptors);
- }
- EXPORT_SYMBOL(dma_alloc_descriptor_ring);
- /****************************************************************************/
- /**
- * Releases the memory which was previously allocated for a descriptor ring.
- */
- /****************************************************************************/
- void dma_free_descriptor_ring(DMA_DescriptorRing_t *ring /* Descriptor to release */
- ) {
- if (ring->virtAddr != NULL) {
- dma_free_writecombine(NULL,
- ring->bytesAllocated,
- ring->virtAddr, ring->physAddr);
- }
- ring->bytesAllocated = 0;
- ring->descriptorsAllocated = 0;
- ring->virtAddr = NULL;
- ring->physAddr = 0;
- }
- EXPORT_SYMBOL(dma_free_descriptor_ring);
- /****************************************************************************/
- /**
- * Initializes a descriptor ring, so that descriptors can be added to it.
- * Once a descriptor ring has been allocated, it may be reinitialized for
- * use with additional/different regions of memory.
- *
- * Note that if 7 descriptors are allocated, it's perfectly acceptable to
- * initialize the ring with a smaller number of descriptors. The amount
- * of memory allocated for the descriptor ring will not be reduced, and
- * the descriptor ring may be reinitialized later
- *
- * @return
- * 0 Descriptor ring was initialized successfully
- * -ENOMEM The descriptor which was passed in has insufficient space
- * to hold the desired number of descriptors.
- */
- /****************************************************************************/
- int dma_init_descriptor_ring(DMA_DescriptorRing_t *ring, /* Descriptor ring to initialize */
- int numDescriptors /* Number of descriptors to initialize. */
- ) {
- if (ring->virtAddr == NULL) {
- return -EINVAL;
- }
- if (dmacHw_initDescriptor(ring->virtAddr,
- ring->physAddr,
- ring->bytesAllocated, numDescriptors) < 0) {
- printk(KERN_ERR
- "dma_init_descriptor_ring: dmacHw_initDescriptor failed\n");
- return -ENOMEM;
- }
- return 0;
- }
- EXPORT_SYMBOL(dma_init_descriptor_ring);
- /****************************************************************************/
- /**
- * Determines the number of descriptors which would be required for a
- * transfer of the indicated memory region.
- *
- * This function also needs to know which DMA device this transfer will
- * be destined for, so that the appropriate DMA configuration can be retrieved.
- * DMA parameters such as transfer width, and whether this is a memory-to-memory
- * or memory-to-peripheral, etc can all affect the actual number of descriptors
- * required.
- *
- * @return
- * > 0 Returns the number of descriptors required for the indicated transfer
- * -ENODEV - Device handed in is invalid.
- * -EINVAL Invalid parameters
- * -ENOMEM Memory exhausted
- */
- /****************************************************************************/
- int dma_calculate_descriptor_count(DMA_Device_t device, /* DMA Device that this will be associated with */
- dma_addr_t srcData, /* Place to get data to write to device */
- dma_addr_t dstData, /* Pointer to device data address */
- size_t numBytes /* Number of bytes to transfer to the device */
- ) {
- int numDescriptors;
- DMA_DeviceAttribute_t *devAttr;
- if (!IsDeviceValid(device)) {
- return -ENODEV;
- }
- devAttr = &DMA_gDeviceAttribute[device];
- numDescriptors = dmacHw_calculateDescriptorCount(&devAttr->config,
- (void *)srcData,
- (void *)dstData,
- numBytes);
- if (numDescriptors < 0) {
- printk(KERN_ERR
- "dma_calculate_descriptor_count: dmacHw_calculateDescriptorCount failed\n");
- return -EINVAL;
- }
- return numDescriptors;
- }
- EXPORT_SYMBOL(dma_calculate_descriptor_count);
- /****************************************************************************/
- /**
- * Adds a region of memory to the descriptor ring. Note that it may take
- * multiple descriptors for each region of memory. It is the callers
- * responsibility to allocate a sufficiently large descriptor ring.
- *
- * @return
- * 0 Descriptors were added successfully
- * -ENODEV Device handed in is invalid.
- * -EINVAL Invalid parameters
- * -ENOMEM Memory exhausted
- */
- /****************************************************************************/
- int dma_add_descriptors(DMA_DescriptorRing_t *ring, /* Descriptor ring to add descriptors to */
- DMA_Device_t device, /* DMA Device that descriptors are for */
- dma_addr_t srcData, /* Place to get data (memory or device) */
- dma_addr_t dstData, /* Place to put data (memory or device) */
- size_t numBytes /* Number of bytes to transfer to the device */
- ) {
- int rc;
- DMA_DeviceAttribute_t *devAttr;
- if (!IsDeviceValid(device)) {
- return -ENODEV;
- }
- devAttr = &DMA_gDeviceAttribute[device];
- rc = dmacHw_setDataDescriptor(&devAttr->config,
- ring->virtAddr,
- (void *)srcData,
- (void *)dstData, numBytes);
- if (rc < 0) {
- printk(KERN_ERR
- "dma_add_descriptors: dmacHw_setDataDescriptor failed with code: %d\n",
- rc);
- return -ENOMEM;
- }
- return 0;
- }
- EXPORT_SYMBOL(dma_add_descriptors);
- /****************************************************************************/
- /**
- * Sets the descriptor ring associated with a device.
- *
- * Once set, the descriptor ring will be associated with the device, even
- * across channel request/free calls. Passing in a NULL descriptor ring
- * will release any descriptor ring currently associated with the device.
- *
- * Note: If you call dma_transfer, or one of the other dma_alloc_ functions
- * the descriptor ring may be released and reallocated.
- *
- * Note: This function will release the descriptor memory for any current
- * descriptor ring associated with this device.
- *
- * @return
- * 0 Descriptors were added successfully
- * -ENODEV Device handed in is invalid.
- */
- /****************************************************************************/
- int dma_set_device_descriptor_ring(DMA_Device_t device, /* Device to update the descriptor ring for. */
- DMA_DescriptorRing_t *ring /* Descriptor ring to add descriptors to */
- ) {
- DMA_DeviceAttribute_t *devAttr;
- if (!IsDeviceValid(device)) {
- return -ENODEV;
- }
- devAttr = &DMA_gDeviceAttribute[device];
- /* Free the previously allocated descriptor ring */
- dma_free_descriptor_ring(&devAttr->ring);
- if (ring != NULL) {
- /* Copy in the new one */
- devAttr->ring = *ring;
- }
- /* Set things up so that if dma_transfer is called then this descriptor */
- /* ring will get freed. */
- devAttr->prevSrcData = 0;
- devAttr->prevDstData = 0;
- devAttr->prevNumBytes = 0;
- return 0;
- }
- EXPORT_SYMBOL(dma_set_device_descriptor_ring);
- /****************************************************************************/
- /**
- * Retrieves the descriptor ring associated with a device.
- *
- * @return
- * 0 Descriptors were added successfully
- * -ENODEV Device handed in is invalid.
- */
- /****************************************************************************/
- int dma_get_device_descriptor_ring(DMA_Device_t device, /* Device to retrieve the descriptor ring for. */
- DMA_DescriptorRing_t *ring /* Place to store retrieved ring */
- ) {
- DMA_DeviceAttribute_t *devAttr;
- memset(ring, 0, sizeof(*ring));
- if (!IsDeviceValid(device)) {
- return -ENODEV;
- }
- devAttr = &DMA_gDeviceAttribute[device];
- *ring = devAttr->ring;
- return 0;
- }
- EXPORT_SYMBOL(dma_get_device_descriptor_ring);
- /****************************************************************************/
- /**
- * Configures a DMA channel.
- *
- * @return
- * >= 0 - Initialization was successful.
- *
- * -EBUSY - Device is currently being used.
- * -ENODEV - Device handed in is invalid.
- */
- /****************************************************************************/
- static int ConfigChannel(DMA_Handle_t handle)
- {
- DMA_Channel_t *channel;
- DMA_DeviceAttribute_t *devAttr;
- int controllerIdx;
- channel = HandleToChannel(handle);
- if (channel == NULL) {
- return -ENODEV;
- }
- devAttr = &DMA_gDeviceAttribute[channel->devType];
- controllerIdx = CONTROLLER_FROM_HANDLE(handle);
- if ((devAttr->flags & DMA_DEVICE_FLAG_PORT_PER_DMAC) != 0) {
- if (devAttr->config.transferType ==
- dmacHw_TRANSFER_TYPE_MEM_TO_PERIPHERAL) {
- devAttr->config.dstPeripheralPort =
- devAttr->dmacPort[controllerIdx];
- } else if (devAttr->config.transferType ==
- dmacHw_TRANSFER_TYPE_PERIPHERAL_TO_MEM) {
- devAttr->config.srcPeripheralPort =
- devAttr->dmacPort[controllerIdx];
- }
- }
- if (dmacHw_configChannel(channel->dmacHwHandle, &devAttr->config) != 0) {
- printk(KERN_ERR "ConfigChannel: dmacHw_configChannel failed\n");
- return -EIO;
- }
- return 0;
- }
- /****************************************************************************/
- /**
- * Initializes all of the data structures associated with the DMA.
- * @return
- * >= 0 - Initialization was successful.
- *
- * -EBUSY - Device is currently being used.
- * -ENODEV - Device handed in is invalid.
- */
- /****************************************************************************/
- int dma_init(void)
- {
- int rc = 0;
- int controllerIdx;
- int channelIdx;
- DMA_Device_t devIdx;
- DMA_Channel_t *channel;
- DMA_Handle_t dedicatedHandle;
- memset(&gDMA, 0, sizeof(gDMA));
- sema_init(&gDMA.lock, 0);
- init_waitqueue_head(&gDMA.freeChannelQ);
- /* Initialize the Hardware */
- dmacHw_initDma();
- /* Start off by marking all of the DMA channels as shared. */
- for (controllerIdx = 0; controllerIdx < DMA_NUM_CONTROLLERS;
- controllerIdx++) {
- for (channelIdx = 0; channelIdx < DMA_NUM_CHANNELS;
- channelIdx++) {
- channel =
- &gDMA.controller[controllerIdx].channel[channelIdx];
- channel->flags = 0;
- channel->devType = DMA_DEVICE_NONE;
- channel->lastDevType = DMA_DEVICE_NONE;
- #if (DMA_DEBUG_TRACK_RESERVATION)
- channel->fileName = "";
- channel->lineNum = 0;
- #endif
- channel->dmacHwHandle =
- dmacHw_getChannelHandle(dmacHw_MAKE_CHANNEL_ID
- (controllerIdx,
- channelIdx));
- dmacHw_initChannel(channel->dmacHwHandle);
- }
- }
- /* Record any special attributes that channels may have */
- gDMA.controller[0].channel[0].flags |= DMA_CHANNEL_FLAG_LARGE_FIFO;
- gDMA.controller[0].channel[1].flags |= DMA_CHANNEL_FLAG_LARGE_FIFO;
- gDMA.controller[1].channel[0].flags |= DMA_CHANNEL_FLAG_LARGE_FIFO;
- gDMA.controller[1].channel[1].flags |= DMA_CHANNEL_FLAG_LARGE_FIFO;
- /* Now walk through and record the dedicated channels. */
- for (devIdx = 0; devIdx < DMA_NUM_DEVICE_ENTRIES; devIdx++) {
- DMA_DeviceAttribute_t *devAttr = &DMA_gDeviceAttribute[devIdx];
- if (((devAttr->flags & DMA_DEVICE_FLAG_NO_ISR) != 0)
- && ((devAttr->flags & DMA_DEVICE_FLAG_IS_DEDICATED) == 0)) {
- printk(KERN_ERR
- "DMA Device: %s Can only request NO_ISR for dedicated devices\n",
- devAttr->name);
- rc = -EINVAL;
- goto out;
- }
- if ((devAttr->flags & DMA_DEVICE_FLAG_IS_DEDICATED) != 0) {
- /* This is a dedicated device. Mark the channel as being reserved. */
- if (devAttr->dedicatedController >= DMA_NUM_CONTROLLERS) {
- printk(KERN_ERR
- "DMA Device: %s DMA Controller %d is out of range\n",
- devAttr->name,
- devAttr->dedicatedController);
- rc = -EINVAL;
- goto out;
- }
- if (devAttr->dedicatedChannel >= DMA_NUM_CHANNELS) {
- printk(KERN_ERR
- "DMA Device: %s DMA Channel %d is out of range\n",
- devAttr->name,
- devAttr->dedicatedChannel);
- rc = -EINVAL;
- goto out;
- }
- dedicatedHandle =
- MAKE_HANDLE(devAttr->dedicatedController,
- devAttr->dedicatedChannel);
- channel = HandleToChannel(dedicatedHandle);
- if ((channel->flags & DMA_CHANNEL_FLAG_IS_DEDICATED) !=
- 0) {
- printk
- ("DMA Device: %s attempting to use same DMA Controller:Channel (%d:%d) as %s\n",
- devAttr->name,
- devAttr->dedicatedController,
- devAttr->dedicatedChannel,
- DMA_gDeviceAttribute[channel->devType].
- name);
- rc = -EBUSY;
- goto out;
- }
- channel->flags |= DMA_CHANNEL_FLAG_IS_DEDICATED;
- channel->devType = devIdx;
- if (devAttr->flags & DMA_DEVICE_FLAG_NO_ISR) {
- channel->flags |= DMA_CHANNEL_FLAG_NO_ISR;
- }
- /* For dedicated channels, we can go ahead and configure the DMA channel now */
- /* as well. */
- ConfigChannel(dedicatedHandle);
- }
- }
- /* Go through and register the interrupt handlers */
- for (controllerIdx = 0; controllerIdx < DMA_NUM_CONTROLLERS;
- controllerIdx++) {
- for (channelIdx = 0; channelIdx < DMA_NUM_CHANNELS;
- channelIdx++) {
- channel =
- &gDMA.controller[controllerIdx].channel[channelIdx];
- if ((channel->flags & DMA_CHANNEL_FLAG_NO_ISR) == 0) {
- snprintf(channel->name, sizeof(channel->name),
- "dma %d:%d %s", controllerIdx,
- channelIdx,
- channel->devType ==
- DMA_DEVICE_NONE ? "" :
- DMA_gDeviceAttribute[channel->devType].
- name);
- rc =
- request_irq(IRQ_DMA0C0 +
- (controllerIdx *
- DMA_NUM_CHANNELS) +
- channelIdx,
- dma_interrupt_handler,
- IRQF_DISABLED, channel->name,
- channel);
- if (rc != 0) {
- printk(KERN_ERR
- "request_irq for IRQ_DMA%dC%d failed\n",
- controllerIdx, channelIdx);
- }
- }
- }
- }
- /* Create /proc/dma/channels and /proc/dma/devices */
- gDmaDir = proc_mkdir("dma", NULL);
- if (gDmaDir == NULL) {
- printk(KERN_ERR "Unable to create /proc/dma\n");
- } else {
- create_proc_read_entry("channels", 0, gDmaDir,
- dma_proc_read_channels, NULL);
- create_proc_read_entry("devices", 0, gDmaDir,
- dma_proc_read_devices, NULL);
- create_proc_read_entry("mem-type", 0, gDmaDir,
- dma_proc_read_mem_type, NULL);
- }
- out:
- up(&gDMA.lock);
- return rc;
- }
- /****************************************************************************/
- /**
- * Reserves a channel for use with @a dev. If the device is setup to use
- * a shared channel, then this function will block until a free channel
- * becomes available.
- *
- * @return
- * >= 0 - A valid DMA Handle.
- * -EBUSY - Device is currently being used.
- * -ENODEV - Device handed in is invalid.
- */
- /****************************************************************************/
- #if (DMA_DEBUG_TRACK_RESERVATION)
- DMA_Handle_t dma_request_channel_dbg
- (DMA_Device_t dev, const char *fileName, int lineNum)
- #else
- DMA_Handle_t dma_request_channel(DMA_Device_t dev)
- #endif
- {
- DMA_Handle_t handle;
- DMA_DeviceAttribute_t *devAttr;
- DMA_Channel_t *channel;
- int controllerIdx;
- int controllerIdx2;
- int channelIdx;
- if (down_interruptible(&gDMA.lock) < 0) {
- return -ERESTARTSYS;
- }
- if ((dev < 0) || (dev >= DMA_NUM_DEVICE_ENTRIES)) {
- handle = -ENODEV;
- goto out;
- }
- devAttr = &DMA_gDeviceAttribute[dev];
- #if (DMA_DEBUG_TRACK_RESERVATION)
- {
- char *s;
- s = strrchr(fileName, '/');
- if (s != NULL) {
- fileName = s + 1;
- }
- }
- #endif
- if ((devAttr->flags & DMA_DEVICE_FLAG_IN_USE) != 0) {
- /* This device has already been requested and not been freed */
- printk(KERN_ERR "%s: device %s is already requested\n",
- __func__, devAttr->name);
- handle = -EBUSY;
- goto out;
- }
- if ((devAttr->flags & DMA_DEVICE_FLAG_IS_DEDICATED) != 0) {
- /* This device has a dedicated channel. */
- channel =
- &gDMA.controller[devAttr->dedicatedController].
- channel[devAttr->dedicatedChannel];
- if ((channel->flags & DMA_CHANNEL_FLAG_IN_USE) != 0) {
- handle = -EBUSY;
- goto out;
- }
- channel->flags |= DMA_CHANNEL_FLAG_IN_USE;
- devAttr->flags |= DMA_DEVICE_FLAG_IN_USE;
- #if (DMA_DEBUG_TRACK_RESERVATION)
- channel->fileName = fileName;
- channel->lineNum = lineNum;
- #endif
- handle =
- MAKE_HANDLE(devAttr->dedicatedController,
- devAttr->dedicatedChannel);
- goto out;
- }
- /* This device needs to use one of the shared channels. */
- handle = DMA_INVALID_HANDLE;
- while (handle == DMA_INVALID_HANDLE) {
- /* Scan through the shared channels and see if one is available */
- for (controllerIdx2 = 0; controllerIdx2 < DMA_NUM_CONTROLLERS;
- controllerIdx2++) {
- /* Check to see if we should try on controller 1 first. */
- controllerIdx = controllerIdx2;
- if ((devAttr->
- flags & DMA_DEVICE_FLAG_ALLOC_DMA1_FIRST) != 0) {
- controllerIdx = 1 - controllerIdx;
- }
- /* See if the device is available on the controller being tested */
- if ((devAttr->
- flags & (DMA_DEVICE_FLAG_ON_DMA0 << controllerIdx))
- != 0) {
- for (channelIdx = 0;
- channelIdx < DMA_NUM_CHANNELS;
- channelIdx++) {
- channel =
- &gDMA.controller[controllerIdx].
- channel[channelIdx];
- if (((channel->
- flags &
- DMA_CHANNEL_FLAG_IS_DEDICATED) ==
- 0)
- &&
- ((channel->
- flags & DMA_CHANNEL_FLAG_IN_USE)
- == 0)) {
- if (((channel->
- flags &
- DMA_CHANNEL_FLAG_LARGE_FIFO)
- != 0)
- &&
- ((devAttr->
- flags &
- DMA_DEVICE_FLAG_ALLOW_LARGE_FIFO)
- == 0)) {
- /* This channel is a large fifo - don't tie it up */
- /* with devices that we don't want using it. */
- continue;
- }
- channel->flags |=
- DMA_CHANNEL_FLAG_IN_USE;
- channel->devType = dev;
- devAttr->flags |=
- DMA_DEVICE_FLAG_IN_USE;
- #if (DMA_DEBUG_TRACK_RESERVATION)
- channel->fileName = fileName;
- channel->lineNum = lineNum;
- #endif
- handle =
- MAKE_HANDLE(controllerIdx,
- channelIdx);
- /* Now that we've reserved the channel - we can go ahead and configure it */
- if (ConfigChannel(handle) != 0) {
- handle = -EIO;
- printk(KERN_ERR
- "dma_request_channel: ConfigChannel failed\n");
- }
- goto out;
- }
- }
- }
- }
- /* No channels are currently available. Let's wait for one to free up. */
- {
- DEFINE_WAIT(wait);
- prepare_to_wait(&gDMA.freeChannelQ, &wait,
- TASK_INTERRUPTIBLE);
- up(&gDMA.lock);
- schedule();
- finish_wait(&gDMA.freeChannelQ, &wait);
- if (signal_pending(current)) {
- /* We don't currently hold gDMA.lock, so we return directly */
- return -ERESTARTSYS;
- }
- }
- if (down_interruptible(&gDMA.lock)) {
- return -ERESTARTSYS;
- }
- }
- out:
- up(&gDMA.lock);
- return handle;
- }
- /* Create both _dbg and non _dbg functions for modules. */
- #if (DMA_DEBUG_TRACK_RESERVATION)
- #undef dma_request_channel
- DMA_Handle_t dma_request_channel(DMA_Device_t dev)
- {
- return dma_request_channel_dbg(dev, __FILE__, __LINE__);
- }
- EXPORT_SYMBOL(dma_request_channel_dbg);
- #endif
- EXPORT_SYMBOL(dma_request_channel);
- /****************************************************************************/
- /**
- * Frees a previously allocated DMA Handle.
- */
- /****************************************************************************/
- int dma_free_channel(DMA_Handle_t handle /* DMA handle. */
- ) {
- int rc = 0;
- DMA_Channel_t *channel;
- DMA_DeviceAttribute_t *devAttr;
- if (down_interruptible(&gDMA.lock) < 0) {
- return -ERESTARTSYS;
- }
- channel = HandleToChannel(handle);
- if (channel == NULL) {
- rc = -EINVAL;
- goto out;
- }
- devAttr = &DMA_gDeviceAttribute[channel->devType];
- if ((channel->flags & DMA_CHANNEL_FLAG_IS_DEDICATED) == 0) {
- channel->lastDevType = channel->devType;
- channel->devType = DMA_DEVICE_NONE;
- }
- channel->flags &= ~DMA_CHANNEL_FLAG_IN_USE;
- devAttr->flags &= ~DMA_DEVICE_FLAG_IN_USE;
- out:
- up(&gDMA.lock);
- wake_up_interruptible(&gDMA.freeChannelQ);
- return rc;
- }
- EXPORT_SYMBOL(dma_free_channel);
- /****************************************************************************/
- /**
- * Determines if a given device has been configured as using a shared
- * channel.
- *
- * @return
- * 0 Device uses a dedicated channel
- * > zero Device uses a shared channel
- * < zero Error code
- */
- /****************************************************************************/
- int dma_device_is_channel_shared(DMA_Device_t device /* Device to check. */
- ) {
- DMA_DeviceAttribute_t *devAttr;
- if (!IsDeviceValid(device)) {
- return -ENODEV;
- }
- devAttr = &DMA_gDeviceAttribute[device];
- return ((devAttr->flags & DMA_DEVICE_FLAG_IS_DEDICATED) == 0);
- }
- EXPORT_SYMBOL(dma_device_is_channel_shared);
- /****************************************************************************/
- /**
- * Allocates buffers for the descriptors. This is normally done automatically
- * but needs to be done explicitly when initiating a dma from interrupt
- * context.
- *
- * @return
- * 0 Descriptors were allocated successfully
- * -EINVAL Invalid device type for this kind of transfer
- * (i.e. the device is _MEM_TO_DEV and not _DEV_TO_MEM)
- * -ENOMEM Memory exhausted
- */
- /****************************************************************************/
- int dma_alloc_descriptors(DMA_Handle_t handle, /* DMA Handle */
- dmacHw_TRANSFER_TYPE_e transferType, /* Type of transfer being performed */
- dma_addr_t srcData, /* Place to get data to write to device */
- dma_addr_t dstData, /* Pointer to device data address */
- size_t numBytes /* Number of bytes to transfer to the device */
- ) {
- DMA_Channel_t *channel;
- DMA_DeviceAttribute_t *devAttr;
- int numDescriptors;
- size_t ringBytesRequired;
- int rc = 0;
- channel = HandleToChannel(handle);
- if (channel == NULL) {
- return -ENODEV;
- }
- devAttr = &DMA_gDeviceAttribute[channel->devType];
- if (devAttr->config.transferType != transferType) {
- return -EINVAL;
- }
- /* Figure out how many descriptors we need. */
- /* printk("srcData: 0x%08x dstData: 0x%08x, numBytes: %d\n", */
- /* srcData, dstData, numBytes); */
- numDescriptors = dmacHw_calculateDescriptorCount(&devAttr->config,
- (void *)srcData,
- (void *)dstData,
- numBytes);
- if (numDescriptors < 0) {
- printk(KERN_ERR "%s: dmacHw_calculateDescriptorCount failed\n",
- __func__);
- return -EINVAL;
- }
- /* Check to see if we can reuse the existing descriptor ring, or if we need to allocate */
- /* a new one. */
- ringBytesRequired = dmacHw_descriptorLen(numDescriptors);
- /* printk("ringBytesRequired: %d\n", ringBytesRequired); */
- if (ringBytesRequired > devAttr->ring.bytesAllocated) {
- /* Make sure that this code path is never taken from interrupt context. */
- /* It's OK for an interrupt to initiate a DMA transfer, but the descriptor */
- /* allocation needs to have already been done. */
- might_sleep();
- /* Free the old descriptor ring and allocate a new one. */
- dma_free_descriptor_ring(&devAttr->ring);
- /* And allocate a new one. */
- rc =
- dma_alloc_descriptor_ring(&devAttr->ring,
- numDescriptors);
- if (rc < 0) {
- printk(KERN_ERR
- "%s: dma_alloc_descriptor_ring(%d) failed\n",
- __func__, numDescriptors);
- return rc;
- }
- /* Setup the descriptor for this transfer */
- if (dmacHw_initDescriptor(devAttr->ring.virtAddr,
- devAttr->ring.physAddr,
- devAttr->ring.bytesAllocated,
- numDescriptors) < 0) {
- printk(KERN_ERR "%s: dmacHw_initDescriptor failed\n",
- __func__);
- return -EINVAL;
- }
- } else {
- /* We've already got enough ring buffer allocated. All we need to do is reset */
- /* any control information, just in case the previous DMA was stopped. */
- dmacHw_resetDescriptorControl(devAttr->ring.virtAddr);
- }
- /* dma_alloc/free both set the prevSrc/DstData to 0. If they happen to be the same */
- /* as last time, then we don't need to call setDataDescriptor again. */
- if (dmacHw_setDataDescriptor(&devAttr->config,
- devAttr->ring.virtAddr,
- (void *)srcData,
- (void *)dstData, numBytes) < 0) {
- printk(KERN_ERR "%s: dmacHw_setDataDescriptor failed\n",
- __func__);
- return -EINVAL;
- }
- /* Remember the critical information for this transfer so that we can eliminate */
- /* another call to dma_alloc_descriptors if the caller reuses the same buffers */
- devAttr->prevSrcData = srcData;
- devAttr->prevDstData = dstData;
- devAttr->prevNumBytes = numBytes;
- return 0;
- }
- EXPORT_SYMBOL(dma_alloc_descriptors);
- /****************************************************************************/
- /**
- * Allocates and sets up descriptors for a double buffered circular buffer.
- *
- * This is primarily intended to be used for things like the ingress samples
- * from a microphone.
- *
- * @return
- * > 0 Number of descriptors actually allocated.
- * -EINVAL Invalid device type for this kind of transfer
- * (i.e. the device is _MEM_TO_DEV and not _DEV_TO_MEM)
- * -ENOMEM Memory exhausted
- */
- /****************************************************************************/
- int dma_alloc_double_dst_descriptors(DMA_Handle_t handle, /* DMA Handle */
- dma_addr_t srcData, /* Physical address of source data */
- dma_addr_t dstData1, /* Physical address of first destination buffer */
- dma_addr_t dstData2, /* Physical address of second destination buffer */
- size_t numBytes /* Number of bytes in each destination buffer */
- ) {
- DMA_Channel_t *channel;
- DMA_DeviceAttribute_t *devAttr;
- int numDst1Descriptors;
- int numDst2Descriptors;
- int numDescriptors;
- size_t ringBytesRequired;
- int rc = 0;
- channel = HandleToChannel(handle);
- if (channel == NULL) {
- return -ENODEV;
- }
- devAttr = &DMA_gDeviceAttribute[channel->devType];
- /* Figure out how many descriptors we need. */
- /* printk("srcData: 0x%08x dstData: 0x%08x, numBytes: %d\n", */
- /* srcData, dstData, numBytes); */
- numDst1Descriptors =
- dmacHw_calculateDescriptorCount(&devAttr->config, (void *)srcData,
- (void *)dstData1, numBytes);
- if (numDst1Descriptors < 0) {
- return -EINVAL;
- }
- numDst2Descriptors =
- dmacHw_calculateDescriptorCount(&devAttr->config, (void *)srcData,
- (void *)dstData2, numBytes);
- if (numDst2Descriptors < 0) {
- return -EINVAL;
- }
- numDescriptors = numDst1Descriptors + numDst2Descriptors;
- /* printk("numDescriptors: %d\n", numDescriptors); */
- /* Check to see if we can reuse the existing descriptor ring, or if we need to allocate */
- /* a new one. */
- ringBytesRequired = dmacHw_descriptorLen(numDescriptors);
- /* printk("ringBytesRequired: %d\n", ringBytesRequired); */
- if (ringBytesRequired > devAttr->ring.bytesAllocated) {
- /* Make sure that this code path is never taken from interrupt context. */
- /* It's OK for an interrupt to initiate a DMA transfer, but the descriptor */
- /* allocation needs to have already been done. */
- might_sleep();
- /* Free the old descriptor ring and allocate a new one. */
- dma_free_descriptor_ring(&devAttr->ring);
- /* And allocate a new one. */
- rc =
- dma_alloc_descriptor_ring(&devAttr->ring,
- numDescriptors);
- if (rc < 0) {
- printk(KERN_ERR
- "%s: dma_alloc_descriptor_ring(%d) failed\n",
- __func__, ringBytesRequired);
- return rc;
- }
- }
- /* Setup the descriptor for this transfer. Since this function is used with */
- /* CONTINUOUS DMA operations, we need to reinitialize every time, otherwise */
- /* setDataDescriptor will keep trying to append onto the end. */
- if (dmacHw_initDescriptor(devAttr->ring.virtAddr,
- devAttr->ring.physAddr,
- devAttr->ring.bytesAllocated,
- numDescriptors) < 0) {
- printk(KERN_ERR "%s: dmacHw_initDescriptor failed\n", __func__);
- return -EINVAL;
- }
- /* dma_alloc/free both set the prevSrc/DstData to 0. If they happen to be the same */
- /* as last time, then we don't need to call setDataDescriptor again. */
- if (dmacHw_setDataDescriptor(&devAttr->config,
- devAttr->ring.virtAddr,
- (void *)srcData,
- (void *)dstData1, numBytes) < 0) {
- printk(KERN_ERR "%s: dmacHw_setDataDescriptor 1 failed\n",
- __func__);
- return -EINVAL;
- }
- if (dmacHw_setDataDescriptor(&devAttr->config,
- devAttr->ring.virtAddr,
- (void *)srcData,
- (void *)dstData2, numBytes) < 0) {
- printk(KERN_ERR "%s: dmacHw_setDataDescriptor 2 failed\n",
- __func__);
- return -EINVAL;
- }
- /* You should use dma_start_transfer rather than dma_transfer_xxx so we don't */
- /* try to make the 'prev' variables right. */
- devAttr->prevSrcData = 0;
- devAttr->prevDstData = 0;
- devAttr->prevNumBytes = 0;
- return numDescriptors;
- }
- EXPORT_SYMBOL(dma_alloc_double_dst_descriptors);
- /****************************************************************************/
- /**
- * Initiates a transfer when the descriptors have already been setup.
- *
- * This is a special case, and normally, the dma_transfer_xxx functions should
- * be used.
- *
- * @return
- * 0 Transfer was started successfully
- * -ENODEV Invalid handle
- */
- /****************************************************************************/
- int dma_start_transfer(DMA_Handle_t handle)
- {
- DMA_Channel_t *channel;
- DMA_DeviceAttribute_t *devAttr;
- channel = HandleToChannel(handle);
- if (channel == NULL) {
- return -ENODEV;
- }
- devAttr = &DMA_gDeviceAttribute[channel->devType];
- dmacHw_initiateTransfer(channel->dmacHwHandle, &devAttr->config,
- devAttr->ring.virtAddr);
- /* Since we got this far, everything went successfully */
- return 0;
- }
- EXPORT_SYMBOL(dma_start_transfer);
- /****************************************************************************/
- /**
- * Stops a previously started DMA transfer.
- *
- * @return
- * 0 Transfer was stopped successfully
- * -ENODEV Invalid handle
- */
- /****************************************************************************/
- int dma_stop_transfer(DMA_Handle_t handle)
- {
- DMA_Channel_t *channel;
- channel = HandleToChannel(handle);
- if (channel == NULL) {
- return -ENODEV;
- }
- dmacHw_stopTransfer(channel->dmacHwHandle);
- return 0;
- }
- EXPORT_SYMBOL(dma_stop_transfer);
- /****************************************************************************/
- /**
- * Waits for a DMA to complete by polling. This function is only intended
- * to be used for testing. Interrupts should be used for most DMA operations.
- */
- /****************************************************************************/
- int dma_wait_transfer_done(DMA_Handle_t handle)
- {
- DMA_Channel_t *channel;
- dmacHw_TRANSFER_STATUS_e status;
- channel = HandleToChannel(handle);
- if (channel == NULL) {
- return -ENODEV;
- }
- while ((status =
- dmacHw_transferCompleted(channel->dmacHwHandle)) ==
- dmacHw_TRANSFER_STATUS_BUSY) {
- ;
- }
- if (status == dmacHw_TRANSFER_STATUS_ERROR) {
- printk(KERN_ERR "%s: DMA transfer failed\n", __func__);
- return -EIO;
- }
- return 0;
- }
- EXPORT_SYMBOL(dma_wait_transfer_done);
- /****************************************************************************/
- /**
- * Initiates a DMA, allocating the descriptors as required.
- *
- * @return
- * 0 Transfer was started successfully
- * -EINVAL Invalid device type for this kind of transfer
- * (i.e. the device is _DEV_TO_MEM and not _MEM_TO_DEV)
- */
- /****************************************************************************/
- int dma_transfer(DMA_Handle_t handle, /* DMA Handle */
- dmacHw_TRANSFER_TYPE_e transferType, /* Type of transfer being performed */
- dma_addr_t srcData, /* Place to get data to write to device */
- dma_addr_t dstData, /* Pointer to device data address */
- size_t numBytes /* Number of bytes to transfer to the device */
- ) {
- DMA_Channel_t *channel;
- DMA_DeviceAttribute_t *devAttr;
- int rc = 0;
- channel = HandleToChannel(handle);
- if (channel == NULL) {
- return -ENODEV;
- }
- devAttr = &DMA_gDeviceAttribute[channel->devType];
- if (devAttr->config.transferType != transferType) {
- return -EINVAL;
- }
- /* We keep track of the information about the previous request for this */
- /* device, and if the attributes match, then we can use the descriptors we setup */
- /* the last time, and not have to reinitialize everything. */
- {
- rc =
- dma_alloc_descriptors(handle, transferType, srcData,
- dstData, numBytes);
- if (rc != 0) {
- return rc;
- }
- }
- /* And kick off the transfer */
- devAttr->numBytes = numBytes;
- devAttr->transferStartTime = timer_get_tick_count();
- dmacHw_initiateTransfer(channel->dmacHwHandle, &devAttr->config,
- devAttr->ring.virtAddr);
- /* Since we got this far, everything went successfully */
- return 0;
- }
- EXPORT_SYMBOL(dma_transfer);
- /****************************************************************************/
- /**
- * Set the callback function which will be called when a transfer completes.
- * If a NULL callback function is set, then no callback will occur.
- *
- * @note @a devHandler will be called from IRQ context.
- *
- * @return
- * 0 - Success
- * -ENODEV - Device handed in is invalid.
- */
- /****************************************************************************/
- int dma_set_device_handler(DMA_Device_t dev, /* Device to set the callback for. */
- DMA_DeviceHandler_t devHandler, /* Function to call when the DMA completes */
- void *userData /* Pointer which will be passed to devHandler. */
- ) {
- DMA_DeviceAttribute_t *devAttr;
- unsigned long flags;
- if (!IsDeviceValid(dev)) {
- return -ENODEV;
- }
- devAttr = &DMA_gDeviceAttribute[dev];
- local_irq_save(flags);
- devAttr->userData = userData;
- devAttr->devHandler = devHandler;
- local_irq_restore(flags);
- return 0;
- }
- EXPORT_SYMBOL(dma_set_device_handler);
- /****************************************************************************/
- /**
- * Initializes a memory mapping structure
- */
- /****************************************************************************/
- int dma_init_mem_map(DMA_MemMap_t *memMap)
- {
- memset(memMap, 0, sizeof(*memMap));
- sema_init(&memMap->lock, 1);
- return 0;
- }
- EXPORT_SYMBOL(dma_init_mem_map);
- /****************************************************************************/
- /**
- * Releases any memory currently being held by a memory mapping structure.
- */
- /****************************************************************************/
- int dma_term_mem_map(DMA_MemMap_t *memMap)
- {
- down(&memMap->lock); /* Just being paranoid */
- /* Free up any allocated memory */
- up(&memMap->lock);
- memset(memMap, 0, sizeof(*memMap));
- return 0;
- }
- EXPORT_SYMBOL(dma_term_mem_map);
- /****************************************************************************/
- /**
- * Looks at a memory address and categorizes it.
- *
- * @return One of the values from the DMA_MemType_t enumeration.
- */
- /****************************************************************************/
- DMA_MemType_t dma_mem_type(void *addr)
- {
- unsigned long addrVal = (unsigned long)addr;
- if (addrVal >= VMALLOC_END) {
- /* NOTE: DMA virtual memory space starts at 0xFFxxxxxx */
- /* dma_alloc_xxx pages are physically and virtually contiguous */
- return DMA_MEM_TYPE_DMA;
- }
- /* Technically, we could add one more classification. Addresses between VMALLOC_END */
- /* and the beginning of the DMA virtual address could be considered to be I/O space. */
- /* Right now, nobody cares about this particular classification, so we ignore it. */
- if (is_vmalloc_addr(addr)) {
- /* Address comes from the vmalloc'd region. Pages are virtually */
- /* contiguous but NOT physically contiguous */
- return DMA_MEM_TYPE_VMALLOC;
- }
- if (addrVal >= PAGE_OFFSET) {
- /* PAGE_OFFSET is typically 0xC0000000 */
- /* kmalloc'd pages are physically contiguous */
- return DMA_MEM_TYPE_KMALLOC;
- }
- return DMA_MEM_TYPE_USER;
- }
- EXPORT_SYMBOL(dma_mem_type);
- /****************************************************************************/
- /**
- * Looks at a memory address and determines if we support DMA'ing to/from
- * that type of memory.
- *
- * @return boolean -
- * return value != 0 means dma supported
- * return value == 0 means dma not supported
- */
- /****************************************************************************/
- int dma_mem_supports_dma(void *addr)
- {
- DMA_MemType_t memType = dma_mem_type(addr);
- return (memType == DMA_MEM_TYPE_DMA)
- #if ALLOW_MAP_OF_KMALLOC_MEMORY
- || (memType == DMA_MEM_TYPE_KMALLOC)
- #endif
- || (memType == DMA_MEM_TYPE_USER);
- }
- EXPORT_SYMBOL(dma_mem_supports_dma);
- /****************************************************************************/
- /**
- * Maps in a memory region such that it can be used for performing a DMA.
- *
- * @return
- */
- /****************************************************************************/
- int dma_map_start(DMA_MemMap_t *memMap, /* Stores state information about the map */
- enum dma_data_direction dir /* Direction that the mapping will be going */
- ) {
- int rc;
- down(&memMap->lock);
- DMA_MAP_PRINT("memMap: %p\n", memMap);
- if (memMap->inUse) {
- printk(KERN_ERR "%s: memory map %p is already being used\n",
- __func__, memMap);
- rc = -EBUSY;
- goto out;
- }
- memMap->inUse = 1;
- memMap->dir = dir;
- memMap->numRegionsUsed = 0;
- rc = 0;
- out:
- DMA_MAP_PRINT("returning %d", rc);
- up(&memMap->lock);
- return rc;
- }
- EXPORT_SYMBOL(dma_map_start);
- /****************************************************************************/
- /**
- * Adds a segment of memory to a memory map. Each segment is both
- * physically and virtually contiguous.
- *
- * @return 0 on success, error code otherwise.
- */
- /****************************************************************************/
- static int dma_map_add_segment(DMA_MemMap_t *memMap, /* Stores state information about the map */
- DMA_Region_t *region, /* Region that the segment belongs to */
- void *virtAddr, /* Virtual address of the segment being added */
- dma_addr_t physAddr, /* Physical address of the segment being added */
- size_t numBytes /* Number of bytes of the segment being added */
- ) {
- DMA_Segment_t *segment;
- DMA_MAP_PRINT("memMap:%p va:%p pa:0x%x #:%d\n", memMap, virtAddr,
- physAddr, numBytes);
- /* Sanity check */
- if (((unsigned long)virtAddr < (unsigned long)region->virtAddr)
- || (((unsigned long)virtAddr + numBytes)) >
- ((unsigned long)region->virtAddr + region->numBytes)) {
- printk(KERN_ERR
- "%s: virtAddr %p is outside region @ %p len: %d\n",
- __func__, virtAddr, region->virtAddr, region->numBytes);
- return -EINVAL;
- }
- if (region->numSegmentsUsed > 0) {
- /* Check to see if this segment is physically contiguous with the previous one */
- segment = ®ion->segment[region->numSegmentsUsed - 1];
- if ((segment->physAddr + segment->numBytes) == physAddr) {
- /* It is - just add on to the end */
- DMA_MAP_PRINT("appending %d bytes to last segment\n",
- numBytes);
- segment->numBytes += numBytes;
- return 0;
- }
- }
- /* Reallocate to hold more segments, if required. */
- if (region->numSegmentsUsed >= region->numSegmentsAllocated) {
- DMA_Segment_t *newSegment;
- size_t oldSize =
- region->numSegmentsAllocated * sizeof(*newSegment);
- int newAlloc = region->numSegmentsAllocated + 4;
- size_t newSize = newAlloc * sizeof(*newSegment);
- newSegment = kmalloc(newSize, GFP_KERNEL);
- if (newSegment == NULL) {
- return -ENOMEM;
- }
- memcpy(newSegment, region->segment, oldSize);
- memset(&((uint8_t *) newSegment)[oldSize], 0,
- newSize - oldSize);
- kfree(region->segment);
- region->numSegmentsAllocated = newAlloc;
- region->segment = newSegment;
- }
- segment = ®ion->segment[region->numSegmentsUsed];
- region->numSegmentsUsed++;
- segment->virtAddr = virtAddr;
- segment->physAddr = physAddr;
- segment->numBytes = numBytes;
- DMA_MAP_PRINT("returning success\n");
- return 0;
- }
- /****************************************************************************/
- /**
- * Adds a region of memory to a memory map. Each region is virtually
- * contiguous, but not necessarily physically contiguous.
- *
- * @return 0 on success, error code otherwise.
- */
- /****************************************************************************/
- int dma_map_add_region(DMA_MemMap_t *memMap, /* Stores state information about the map */
- void *mem, /* Virtual address that we want to get a map of */
- size_t numBytes /* Number of bytes being mapped */
- ) {
- unsigned long addr = (unsigned long)mem;
- unsigned int offset;
- int rc = 0;
- DMA_Region_t *region;
- dma_addr_t physAddr;
- down(&memMap->lock);
- DMA_MAP_PRINT("memMap:%p va:%p #:%d\n", memMap, mem, numBytes);
- if (!memMap->inUse) {
- printk(KERN_ERR "%s: Make sure you call dma_map_start first\n",
- __func__);
- rc = -EINVAL;
- goto out;
- }
- /* Reallocate to hold more regions. */
- if (memMap->numRegionsUsed >= memMap->numRegionsAllocated) {
- DMA_Region_t *newRegion;
- size_t oldSize =
- memMap->numRegionsAllocated * sizeof(*newRegion);
- int newAlloc = memMap->numRegionsAllocated + 4;
- size_t newSize = newAlloc * sizeof(*newRegion);
- newRegion = kmalloc(newSize, GFP_KERNEL);
- if (newRegion == NULL) {
- rc = -ENOMEM;
- goto out;
- }
- memcpy(newRegion, memMap->region, oldSize);
- memset(&((uint8_t *) newRegion)[oldSize], 0, newSize - oldSize);
- kfree(memMap->region);
- memMap->numRegionsAllocated = newAlloc;
- memMap->region = newRegion;
- }
- region = &memMap->region[memMap->numRegionsUsed];
- memMap->numRegionsUsed++;
- offset = addr & ~PAGE_MASK;
- region->memType = dma_mem_type(mem);
- region->virtAddr = mem;
- region->numBytes = numBytes;
- region->numSegmentsUsed = 0;
- region->numLockedPages = 0;
- region->lockedPages = NULL;
- switch (region->memType) {
- case DMA_MEM_TYPE_VMALLOC:
- {
- atomic_inc(&gDmaStatMemTypeVmalloc);
- /* printk(KERN_ERR "%s: vmalloc'd pages are not supported\n", __func__); */
- /* vmalloc'd pages are not physically contiguous */
- rc = -EINVAL;
- break;
- }
- case DMA_MEM_TYPE_KMALLOC:
- {
- atomic_inc(&gDmaStatMemTypeKmalloc);
- /* kmalloc'd pages are physically contiguous, so they'll have exactly */
- /* one segment */
- #if ALLOW_MAP_OF_KMALLOC_MEMORY
- physAddr =
- dma_map_single(NULL, mem, numBytes, memMap->dir);
- rc = dma_map_add_segment(memMap, region, mem, physAddr,
- numBytes);
- #else
- rc = -EINVAL;
- #endif
- break;
- }
- case DMA_MEM_TYPE_DMA:
- {
- /* dma_alloc_xxx pages are physically contiguous */
- atomic_inc(&gDmaStatMemTypeCoherent);
- physAddr = (vmalloc_to_pfn(mem) << PAGE_SHIFT) + offset;
- dma_sync_single_for_cpu(NULL, physAddr, numBytes,
- memMap->dir);
- rc = dma_map_add_segment(memMap, region, mem, physAddr,
- numBytes);
- break;
- }
- case DMA_MEM_TYPE_USER:
- {
- size_t firstPageOffset;
- size_t firstPageSize;
- struct page **pages;
- struct task_struct *userTask;
- atomic_inc(&gDmaStatMemTypeUser);
- #if 1
- /* If the pages are user pages, then the dma_mem_map_set_user_task function */
- /* must have been previously called. */
- if (memMap->userTask == NULL) {
- printk(KERN_ERR
- "%s: must call dma_mem_map_set_user_task when using user-mode memory\n",
- __func__);
- return -EINVAL;
- }
- /* User pages need to be locked. */
- firstPageOffset =
- (unsigned long)region->virtAddr & (PAGE_SIZE - 1);
- firstPageSize = PAGE_SIZE - firstPageOffset;
- region->numLockedPages = (firstPageOffset
- + region->numBytes +
- PAGE_SIZE - 1) / PAGE_SIZE;
- pages =
- kmalloc(region->numLockedPages *
- sizeof(struct page *), GFP_KERNEL);
- if (pages == NULL) {
- region->numLockedPages = 0;
- return -ENOMEM;
- }
- userTask = memMap->userTask;
- down_read(&userTask->mm->mmap_sem);
- rc = get_user_pages(userTask, /* task */
- userTask->mm, /* mm */
- (unsigned long)region->virtAddr, /* start */
- region->numLockedPages, /* len */
- memMap->dir == DMA_FROM_DEVICE, /* write */
- 0, /* force */
- pages, /* pages (array of pointers to page) */
- NULL); /* vmas */
- up_read(&userTask->mm->mmap_sem);
- if (rc != region->numLockedPages) {
- kfree(pages);
- region->numLockedPages = 0;
- if (rc >= 0) {
- rc = -EINVAL;
- }
- } else {
- uint8_t *virtAddr = region->virtAddr;
- size_t bytesRemaining;
- int pageIdx;
- rc = 0; /* Since get_user_pages returns +ve number */
- region->lockedPages = pages;
- /* We've locked the user pages. Now we need to walk them and figure */
- /* out the physical addresses. */
- /* The first page may be partial */
- dma_map_add_segment(memMap,
- region,
- virtAddr,
- PFN_PHYS(page_to_pfn
- (pages[0])) +
- firstPageOffset,
- firstPageSize);
- virtAddr += firstPageSize;
- bytesRemaining =
- region->numBytes - firstPageSize;
- for (pageIdx = 1;
- pageIdx < region->numLockedPages;
- pageIdx++) {
- size_t bytesThisPage =
- (bytesRemaining >
- PAGE_SIZE ? PAGE_SIZE :
- bytesRemaining);
- DMA_MAP_PRINT
- ("pageIdx:%d pages[pageIdx]=%p pfn=%u phys=%u\n",
- pageIdx, pages[pageIdx],
- page_to_pfn(pages[pageIdx]),
- PFN_PHYS(page_to_pfn
- (pages[pageIdx])));
- dma_map_add_segment(memMap,
- region,
- virtAddr,
- PFN_PHYS(page_to_pfn
- (pages
- [pageIdx])),
- bytesThisPage);
- virtAddr += bytesThisPage;
- bytesRemaining -= bytesThisPage;
- }
- }
- #else
- printk(KERN_ERR
- "%s: User mode pages are not yet supported\n",
- __func__);
- /* user pages are not physically contiguous */
- rc = -EINVAL;
- #endif
- break;
- }
- default:
- {
- printk(KERN_ERR "%s: Unsupported memory type: %d\n",
- __func__, region->memType);
- rc = -EINVAL;
- break;
- }
- }
- if (rc != 0) {
- memMap->numRegionsUsed--;
- }
- out:
- DMA_MAP_PRINT("returning %d\n", rc);
- up(&memMap->lock);
- return rc;
- }
- EXPORT_SYMBOL(dma_map_add_segment);
- /****************************************************************************/
- /**
- * Maps in a memory region such that it can be used for performing a DMA.
- *
- * @return 0 on success, error code otherwise.
- */
- /****************************************************************************/
- int dma_map_mem(DMA_MemMap_t *memMap, /* Stores state information about the map */
- void *mem, /* Virtual address that we want to get a map of */
- size_t numBytes, /* Number of bytes being mapped */
- enum dma_data_direction dir /* Direction that the mapping will be going */
- ) {
- int rc;
- rc = dma_map_start(memMap, dir);
- if (rc == 0) {
- rc = dma_map_add_region(memMap, mem, numBytes);
- if (rc < 0) {
- /* Since the add fails, this function will fail, and the caller won't */
- /* call unmap, so we need to do it here. */
- dma_unmap(memMap, 0);
- }
- }
- return rc;
- }
- EXPORT_SYMBOL(dma_map_mem);
- /****************************************************************************/
- /**
- * Setup a descriptor ring for a given memory map.
- *
- * It is assumed that the descriptor ring has already been initialized, and
- * this routine will only reallocate a new descriptor ring if the existing
- * one is too small.
- *
- * @return 0 on success, error code otherwise.
- */
- /****************************************************************************/
- int dma_map_create_descriptor_ring(DMA_Device_t dev, /* DMA device (where the ring is stored) */
- DMA_MemMap_t *memMap, /* Memory map that will be used */
- dma_addr_t devPhysAddr /* Physical address of device */
- ) {
- int rc;
- int numDescriptors;
- DMA_DeviceAttribute_t *devAttr;
- DMA_Region_t *region;
- DMA_Segment_t *segment;
- dma_addr_t srcPhysAddr;
- dma_addr_t dstPhysAddr;
- int regionIdx;
- int segmentIdx;
- devAttr = &DMA_gDeviceAttribute[dev];
- down(&memMap->lock);
- /* Figure out how many descriptors we need */
- numDescriptors = 0;
- for (regionIdx = 0; regionIdx < memMap->numRegionsUsed; regionIdx++) {
- region = &memMap->region[regionIdx];
- for (segmentIdx = 0; segmentIdx < region->numSegmentsUsed;
- segmentIdx++) {
- segment = ®ion->segment[segmentIdx];
- if (memMap->dir == DMA_TO_DEVICE) {
- srcPhysAddr = segment->physAddr;
- dstPhysAddr = devPhysAddr;
- } else {
- srcPhysAddr = devPhysAddr;
- dstPhysAddr = segment->physAddr;
- }
- rc =
- dma_calculate_descriptor_count(dev, srcPhysAddr,
- dstPhysAddr,
- segment->
- numBytes);
- if (rc < 0) {
- printk(KERN_ERR
- "%s: dma_calculate_descriptor_count failed: %d\n",
- __func__, rc);
- goto out;
- }
- numDescriptors += rc;
- }
- }
- /* Adjust the size of the ring, if it isn't big enough */
- if (numDescriptors > devAttr->ring.descriptorsAllocated) {
- dma_free_descriptor_ring(&devAttr->ring);
- rc =
- dma_alloc_descriptor_ring(&devAttr->ring,
- numDescriptors);
- if (rc < 0) {
- printk(KERN_ERR
- "%s: dma_alloc_descriptor_ring failed: %d\n",
- __func__, rc);
- goto out;
- }
- } else {
- rc =
- dma_init_descriptor_ring(&devAttr->ring,
- numDescriptors);
- if (rc < 0) {
- printk(KERN_ERR
- "%s: dma_init_descriptor_ring failed: %d\n",
- __func__, rc);
- goto out;
- }
- }
- /* Populate the descriptors */
- for (regionIdx = 0; regionIdx < memMap->numRegionsUsed; regionIdx++) {
- region = &memMap->region[regionIdx];
- for (segmentIdx = 0; segmentIdx < region->numSegmentsUsed;
- segmentIdx++) {
- segment = ®ion->segment[segmentIdx];
- if (memMap->dir == DMA_TO_DEVICE) {
- srcPhysAddr = segment->physAddr;
- dstPhysAddr = devPhysAddr;
- } else {
- srcPhysAddr = devPhysAddr;
- dstPhysAddr = segment->physAddr;
- }
- rc =
- dma_add_descriptors(&devAttr->ring, dev,
- srcPhysAddr, dstPhysAddr,
- segment->numBytes);
- if (rc < 0) {
- printk(KERN_ERR
- "%s: dma_add_descriptors failed: %d\n",
- __func__, rc);
- goto out;
- }
- }
- }
- rc = 0;
- out:
- up(&memMap->lock);
- return rc;
- }
- EXPORT_SYMBOL(dma_map_create_descriptor_ring);
- /****************************************************************************/
- /**
- * Maps in a memory region such that it can be used for performing a DMA.
- *
- * @return
- */
- /****************************************************************************/
- int dma_unmap(DMA_MemMap_t *memMap, /* Stores state information about the map */
- int dirtied /* non-zero if any of the pages were modified */
- ) {
- int rc = 0;
- int regionIdx;
- int segmentIdx;
- DMA_Region_t *region;
- DMA_Segment_t *segment;
- down(&memMap->lock);
- for (regionIdx = 0; regionIdx < memMap->numRegionsUsed; regionIdx++) {
- region = &memMap->region[regionIdx];
- for (segmentIdx = 0; segmentIdx < region->numSegmentsUsed;
- segmentIdx++) {
- segment = ®ion->segment[segmentIdx];
- switch (region->memType) {
- case DMA_MEM_TYPE_VMALLOC:
- {
- printk(KERN_ERR
- "%s: vmalloc'd pages are not yet supported\n",
- __func__);
- rc = -EINVAL;
- goto out;
- }
- case DMA_MEM_TYPE_KMALLOC:
- {
- #if ALLOW_MAP_OF_KMALLOC_MEMORY
- dma_unmap_single(NULL,
- segment->physAddr,
- segment->numBytes,
- memMap->dir);
- #endif
- break;
- }
- case DMA_MEM_TYPE_DMA:
- {
- dma_sync_single_for_cpu(NULL,
- segment->
- physAddr,
- segment->
- numBytes,
- memMap->dir);
- break;
- }
- case DMA_MEM_TYPE_USER:
- {
- /* Nothing to do here. */
- break;
- }
- default:
- {
- printk(KERN_ERR
- "%s: Unsupported memory type: %d\n",
- __func__, region->memType);
- rc = -EINVAL;
- goto out;
- }
- }
- segment->virtAddr = NULL;
- segment->physAddr = 0;
- segment->numBytes = 0;
- }
- if (region->numLockedPages > 0) {
- int pageIdx;
- /* Some user pages were locked. We need to go and unlock them now. */
- for (pageIdx = 0; pageIdx < region->numLockedPages;
- pageIdx++) {
- struct page *page =
- region->lockedPages[pageIdx];
- if (memMap->dir == DMA_FROM_DEVICE) {
- SetPageDirty(page);
- }
- page_cache_release(page);
- }
- kfree(region->lockedPages);
- region->numLockedPages = 0;
- region->lockedPages = NULL;
- }
- region->memType = DMA_MEM_TYPE_NONE;
- region->virtAddr = NULL;
- region->numBytes = 0;
- region->numSegmentsUsed = 0;
- }
- memMap->userTask = NULL;
- memMap->numRegionsUsed = 0;
- memMap->inUse = 0;
- out:
- up(&memMap->lock);
- return rc;
- }
- EXPORT_SYMBOL(dma_unmap);
|