~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/sound/pci/asihpi/hpios.c

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0-only
  2 /******************************************************************************
  3 
  4     AudioScience HPI driver
  5     Copyright (C) 1997-2012  AudioScience Inc. <support@audioscience.com>
  6 
  7 
  8 HPI Operating System function implementation for Linux
  9 
 10 (C) Copyright AudioScience Inc. 1997-2003
 11 ******************************************************************************/
 12 #define SOURCEFILE_NAME "hpios.c"
 13 #include "hpi_internal.h"
 14 #include "hpidebug.h"
 15 #include <linux/delay.h>
 16 #include <linux/sched.h>
 17 
 18 void hpios_delay_micro_seconds(u32 num_micro_sec)
 19 {
 20         if ((usecs_to_jiffies(num_micro_sec) > 1) && !in_interrupt()) {
 21                 /* MUST NOT SCHEDULE IN INTERRUPT CONTEXT! */
 22                 schedule_timeout_uninterruptible(usecs_to_jiffies
 23                         (num_micro_sec));
 24         } else if (num_micro_sec <= 2000)
 25                 udelay(num_micro_sec);
 26         else
 27                 mdelay(num_micro_sec / 1000);
 28 
 29 }
 30 
 31 /** Allocate an area of locked memory for bus master DMA operations.
 32 
 33 If allocation fails, return 1, and *pMemArea.size = 0
 34 */
 35 u16 hpios_locked_mem_alloc(struct consistent_dma_area *p_mem_area, u32 size,
 36         struct pci_dev *pdev)
 37 {
 38         /*?? any benefit in using managed dmam_alloc_coherent? */
 39         p_mem_area->vaddr =
 40                 dma_alloc_coherent(&pdev->dev, size, &p_mem_area->dma_handle,
 41                 GFP_KERNEL);
 42 
 43         if (p_mem_area->vaddr) {
 44                 HPI_DEBUG_LOG(DEBUG, "allocated %d bytes, dma 0x%x vma %p\n",
 45                         size, (unsigned int)p_mem_area->dma_handle,
 46                         p_mem_area->vaddr);
 47                 p_mem_area->pdev = &pdev->dev;
 48                 p_mem_area->size = size;
 49                 return 0;
 50         } else {
 51                 HPI_DEBUG_LOG(WARNING,
 52                         "failed to allocate %d bytes locked memory\n", size);
 53                 p_mem_area->size = 0;
 54                 return 1;
 55         }
 56 }
 57 
 58 u16 hpios_locked_mem_free(struct consistent_dma_area *p_mem_area)
 59 {
 60         if (p_mem_area->size) {
 61                 dma_free_coherent(p_mem_area->pdev, p_mem_area->size,
 62                         p_mem_area->vaddr, p_mem_area->dma_handle);
 63                 HPI_DEBUG_LOG(DEBUG, "freed %lu bytes, dma 0x%x vma %p\n",
 64                         (unsigned long)p_mem_area->size,
 65                         (unsigned int)p_mem_area->dma_handle,
 66                         p_mem_area->vaddr);
 67                 p_mem_area->size = 0;
 68                 return 0;
 69         } else {
 70                 return 1;
 71         }
 72 }
 73 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php