Blame view

kernel/linux-imx6_3.14.28/sound/pci/ctxfi/cthardware.c 1.67 KB
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
  /**
   * Copyright (C) 2008, Creative Technology Ltd. All Rights Reserved.
   *
   * This source file is released under GPL v2 license (no other versions).
   * See the COPYING file included in the main directory of this source
   * distribution for the license terms and conditions.
   *
   * @File	cthardware.c
   *
   * @Brief
   * This file contains the implementation of hardware access methord.
   *
   * @Author	Liu Chun
   * @Date 	Jun 26 2008
   *
   */
  
  #include "cthardware.h"
  #include "cthw20k1.h"
  #include "cthw20k2.h"
  #include <linux/bug.h>
  
  int create_hw_obj(struct pci_dev *pci, enum CHIPTYP chip_type,
  		  enum CTCARDS model, struct hw **rhw)
  {
  	int err;
  
  	switch (chip_type) {
  	case ATC20K1:
  		err = create_20k1_hw_obj(rhw);
  		break;
  	case ATC20K2:
  		err = create_20k2_hw_obj(rhw);
  		break;
  	default:
  		err = -ENODEV;
  		break;
  	}
  	if (err)
  		return err;
  
  	(*rhw)->pci = pci;
  	(*rhw)->chip_type = chip_type;
  	(*rhw)->model = model;
  
  	return 0;
  }
  
  int destroy_hw_obj(struct hw *hw)
  {
  	int err;
  
  	switch (hw->pci->device) {
  	case 0x0005:	/* 20k1 device */
  		err = destroy_20k1_hw_obj(hw);
  		break;
  	case 0x000B:	/* 20k2 device */
  		err = destroy_20k2_hw_obj(hw);
  		break;
  	default:
  		err = -ENODEV;
  		break;
  	}
  
  	return err;
  }
  
  unsigned int get_field(unsigned int data, unsigned int field)
  {
  	int i;
  
  	if (WARN_ON(!field))
  		return 0;
  	/* @field should always be greater than 0 */
  	for (i = 0; !(field & (1 << i)); )
  		i++;
  
  	return (data & field) >> i;
  }
  
  void set_field(unsigned int *data, unsigned int field, unsigned int value)
  {
  	int i;
  
  	if (WARN_ON(!field))
  		return;
  	/* @field should always be greater than 0 */
  	for (i = 0; !(field & (1 << i)); )
  		i++;
  
  	*data = (*data & (~field)) | ((value << i) & field);
  }