hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
// SPDX-License-Identifier: GPL-2.0-only
/*
 *  Copyright (C) 2016 Robert Jarzmik <robert.jarzmik@free.fr>
 */
 
#include <linux/list.h>
#include <linux/slab.h>
#include <sound/ac97/codec.h>
#include <sound/ac97/compat.h>
#include <sound/ac97/controller.h>
#include <sound/soc.h>
 
#include "ac97_core.h"
 
static void compat_ac97_release(struct device *dev)
{
   kfree(to_ac97_t(dev));
}
 
static void compat_ac97_reset(struct snd_ac97 *ac97)
{
   struct ac97_codec_device *adev = to_ac97_device(ac97->private_data);
   struct ac97_controller *actrl = adev->ac97_ctrl;
 
   if (actrl->ops->reset)
       actrl->ops->reset(actrl);
}
 
static void compat_ac97_warm_reset(struct snd_ac97 *ac97)
{
   struct ac97_codec_device *adev = to_ac97_device(ac97->private_data);
   struct ac97_controller *actrl = adev->ac97_ctrl;
 
   if (actrl->ops->warm_reset)
       actrl->ops->warm_reset(actrl);
}
 
static void compat_ac97_write(struct snd_ac97 *ac97, unsigned short reg,
                 unsigned short val)
{
   struct ac97_codec_device *adev = to_ac97_device(ac97->private_data);
   struct ac97_controller *actrl = adev->ac97_ctrl;
 
   actrl->ops->write(actrl, ac97->num, reg, val);
}
 
static unsigned short compat_ac97_read(struct snd_ac97 *ac97,
                      unsigned short reg)
{
   struct ac97_codec_device *adev = to_ac97_device(ac97->private_data);
   struct ac97_controller *actrl = adev->ac97_ctrl;
 
   return actrl->ops->read(actrl, ac97->num, reg);
}
 
static const struct snd_ac97_bus_ops compat_snd_ac97_bus_ops = {
   .reset = compat_ac97_reset,
   .warm_reset = compat_ac97_warm_reset,
   .write = compat_ac97_write,
   .read = compat_ac97_read,
};
 
static struct snd_ac97_bus compat_soc_ac97_bus = {
   .ops = &compat_snd_ac97_bus_ops,
};
 
struct snd_ac97 *snd_ac97_compat_alloc(struct ac97_codec_device *adev)
{
   struct snd_ac97 *ac97;
   int ret;
 
   ac97 = kzalloc(sizeof(struct snd_ac97), GFP_KERNEL);
   if (ac97 == NULL)
       return ERR_PTR(-ENOMEM);
 
   ac97->private_data = adev;
   ac97->bus = &compat_soc_ac97_bus;
 
   ac97->dev.parent = &adev->dev;
   ac97->dev.release = compat_ac97_release;
   dev_set_name(&ac97->dev, "%s-compat", dev_name(&adev->dev));
   ret = device_register(&ac97->dev);
   if (ret) {
       put_device(&ac97->dev);
       return ERR_PTR(ret);
   }
 
   return ac97;
}
EXPORT_SYMBOL_GPL(snd_ac97_compat_alloc);
 
void snd_ac97_compat_release(struct snd_ac97 *ac97)
{
   device_unregister(&ac97->dev);
}
EXPORT_SYMBOL_GPL(snd_ac97_compat_release);
 
int snd_ac97_reset(struct snd_ac97 *ac97, bool try_warm, unsigned int id,
   unsigned int id_mask)
{
   struct ac97_codec_device *adev = to_ac97_device(ac97->private_data);
   struct ac97_controller *actrl = adev->ac97_ctrl;
   unsigned int scanned;
 
   if (try_warm) {
       compat_ac97_warm_reset(ac97);
       scanned = snd_ac97_bus_scan_one(actrl, adev->num);
       if (ac97_ids_match(scanned, adev->vendor_id, id_mask))
           return 1;
   }
 
   compat_ac97_reset(ac97);
   compat_ac97_warm_reset(ac97);
   scanned = snd_ac97_bus_scan_one(actrl, adev->num);
   if (ac97_ids_match(scanned, adev->vendor_id, id_mask))
       return 0;
 
   return -ENODEV;
}
EXPORT_SYMBOL_GPL(snd_ac97_reset);