mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:02:20 +00:00
1a59d1b8e0
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license as published by the free software foundation either version 2 of the license or at your option any later version this program is distributed in the hope that it will be useful but without any warranty without even the implied warranty of merchantability or fitness for a particular purpose see the gnu general public license for more details you should have received a copy of the gnu general public license along with this program if not write to the free software foundation inc 59 temple place suite 330 boston ma 02111 1307 usa extracted by the scancode license scanner the SPDX license identifier GPL-2.0-or-later has been chosen to replace the boilerplate/reference in 1334 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Richard Fontana <rfontana@redhat.com> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190527070033.113240726@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
88 lines
2.2 KiB
C
88 lines
2.2 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (c) by Jaroslav Kysela <perex@perex.cz>
|
|
* DRAM access routines
|
|
*/
|
|
|
|
#include <linux/time.h>
|
|
#include <sound/core.h>
|
|
#include <sound/gus.h>
|
|
#include <sound/info.h>
|
|
|
|
|
|
static int snd_gus_dram_poke(struct snd_gus_card *gus, char __user *_buffer,
|
|
unsigned int address, unsigned int size)
|
|
{
|
|
unsigned long flags;
|
|
unsigned int size1, size2;
|
|
char buffer[256], *pbuffer;
|
|
|
|
while (size > 0) {
|
|
size1 = size > sizeof(buffer) ? sizeof(buffer) : size;
|
|
if (copy_from_user(buffer, _buffer, size1))
|
|
return -EFAULT;
|
|
if (gus->interwave) {
|
|
spin_lock_irqsave(&gus->reg_lock, flags);
|
|
snd_gf1_write8(gus, SNDRV_GF1_GB_MEMORY_CONTROL, 0x01);
|
|
snd_gf1_dram_addr(gus, address);
|
|
outsb(GUSP(gus, DRAM), buffer, size1);
|
|
spin_unlock_irqrestore(&gus->reg_lock, flags);
|
|
address += size1;
|
|
} else {
|
|
pbuffer = buffer;
|
|
size2 = size1;
|
|
while (size2--)
|
|
snd_gf1_poke(gus, address++, *pbuffer++);
|
|
}
|
|
size -= size1;
|
|
_buffer += size1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|
|
int snd_gus_dram_write(struct snd_gus_card *gus, char __user *buffer,
|
|
unsigned int address, unsigned int size)
|
|
{
|
|
return snd_gus_dram_poke(gus, buffer, address, size);
|
|
}
|
|
|
|
static int snd_gus_dram_peek(struct snd_gus_card *gus, char __user *_buffer,
|
|
unsigned int address, unsigned int size,
|
|
int rom)
|
|
{
|
|
unsigned long flags;
|
|
unsigned int size1, size2;
|
|
char buffer[256], *pbuffer;
|
|
|
|
while (size > 0) {
|
|
size1 = size > sizeof(buffer) ? sizeof(buffer) : size;
|
|
if (gus->interwave) {
|
|
spin_lock_irqsave(&gus->reg_lock, flags);
|
|
snd_gf1_write8(gus, SNDRV_GF1_GB_MEMORY_CONTROL, rom ? 0x03 : 0x01);
|
|
snd_gf1_dram_addr(gus, address);
|
|
insb(GUSP(gus, DRAM), buffer, size1);
|
|
snd_gf1_write8(gus, SNDRV_GF1_GB_MEMORY_CONTROL, 0x01);
|
|
spin_unlock_irqrestore(&gus->reg_lock, flags);
|
|
address += size1;
|
|
} else {
|
|
pbuffer = buffer;
|
|
size2 = size1;
|
|
while (size2--)
|
|
*pbuffer++ = snd_gf1_peek(gus, address++);
|
|
}
|
|
if (copy_to_user(_buffer, buffer, size1))
|
|
return -EFAULT;
|
|
size -= size1;
|
|
_buffer += size1;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int snd_gus_dram_read(struct snd_gus_card *gus, char __user *buffer,
|
|
unsigned int address, unsigned int size,
|
|
int rom)
|
|
{
|
|
return snd_gus_dram_peek(gus, buffer, address, size, rom);
|
|
}
|