blob: b5e1d16495007d226b9e944fb0b45039f6ad5624 [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Jaroslav Kyselac1017a42007-10-15 09:50:19 +02003 * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * GUS's memory access via proc filesystem
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
6
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/slab.h>
8#include <sound/core.h>
9#include <sound/gus.h>
10#include <sound/info.h>
11
Takashi Iwai5e2da202005-11-17 14:36:44 +010012struct gus_proc_private {
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 int rom; /* data are in ROM */
14 unsigned int address;
15 unsigned int size;
Takashi Iwai5e2da202005-11-17 14:36:44 +010016 struct snd_gus_card * gus;
17};
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Takashi Iwai24e4a122010-04-13 11:22:01 +020019static ssize_t snd_gf1_mem_proc_dump(struct snd_info_entry *entry,
20 void *file_private_data,
21 struct file *file, char __user *buf,
22 size_t count, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -070023{
Takashi Iwai5e2da202005-11-17 14:36:44 +010024 struct gus_proc_private *priv = entry->private_data;
25 struct snd_gus_card *gus = priv->gus;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 int err;
27
Takashi Iwaid97e1b72010-04-13 11:33:54 +020028 err = snd_gus_dram_read(gus, buf, pos, count, priv->rom);
29 if (err < 0)
30 return err;
31 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032}
33
Takashi Iwai5e2da202005-11-17 14:36:44 +010034static void snd_gf1_mem_proc_free(struct snd_info_entry *entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
Takashi Iwai5e2da202005-11-17 14:36:44 +010036 struct gus_proc_private *priv = entry->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 kfree(priv);
38}
39
Takashi Iwaid25ff262020-01-03 09:16:44 +010040static const struct snd_info_entry_ops snd_gf1_mem_proc_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 .read = snd_gf1_mem_proc_dump,
Linus Torvalds1da177e2005-04-16 15:20:36 -070042};
43
Takashi Iwai5e2da202005-11-17 14:36:44 +010044int snd_gf1_mem_proc_init(struct snd_gus_card * gus)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
46 int idx;
47 char name[16];
Takashi Iwai5e2da202005-11-17 14:36:44 +010048 struct gus_proc_private *priv;
49 struct snd_info_entry *entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51 for (idx = 0; idx < 4; idx++) {
52 if (gus->gf1.mem_alloc.banks_8[idx].size > 0) {
Takashi Iwai9e76a762005-09-09 14:21:17 +020053 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 if (priv == NULL)
55 return -ENOMEM;
56 priv->gus = gus;
57 sprintf(name, "gus-ram-%i", idx);
58 if (! snd_card_proc_new(gus->card, name, &entry)) {
59 entry->content = SNDRV_INFO_CONTENT_DATA;
60 entry->private_data = priv;
61 entry->private_free = snd_gf1_mem_proc_free;
62 entry->c.ops = &snd_gf1_mem_proc_ops;
63 priv->address = gus->gf1.mem_alloc.banks_8[idx].address;
64 priv->size = entry->size = gus->gf1.mem_alloc.banks_8[idx].size;
65 }
66 }
67 }
68 for (idx = 0; idx < 4; idx++) {
69 if (gus->gf1.rom_present & (1 << idx)) {
Takashi Iwai9e76a762005-09-09 14:21:17 +020070 priv = kzalloc(sizeof(*priv), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 if (priv == NULL)
72 return -ENOMEM;
73 priv->rom = 1;
74 priv->gus = gus;
75 sprintf(name, "gus-rom-%i", idx);
76 if (! snd_card_proc_new(gus->card, name, &entry)) {
77 entry->content = SNDRV_INFO_CONTENT_DATA;
78 entry->private_data = priv;
79 entry->private_free = snd_gf1_mem_proc_free;
80 entry->c.ops = &snd_gf1_mem_proc_ops;
81 priv->address = idx * 4096 * 1024;
82 priv->size = entry->size = gus->gf1.rom_memory;
83 }
84 }
85 }
86 return 0;
87}