Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
3dff589b
Commit
3dff589b
authored
Feb 19, 2002
by
Doug Ledford
Committed by
Linus Torvalds
Feb 19, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] PATCH 2.5.4 i810_audio, bttv, working at all.
Fix i810 audio for DMA mapping (from Pete Zaitcev).
parent
1898ffa4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
20 deletions
+40
-20
sound/oss/i810_audio.c
sound/oss/i810_audio.c
+40
-20
No files found.
sound/oss/i810_audio.c
View file @
3dff589b
...
...
@@ -335,7 +335,6 @@ struct i810_state {
struct
i810_card
{
struct
i810_channel
channel
[
3
];
unsigned
int
magic
;
/* We keep i810 cards in a linked list */
...
...
@@ -359,6 +358,8 @@ struct i810_card {
/* structures for abstraction of hardware facilities, codecs, banks and channels*/
struct
ac97_codec
*
ac97_codec
[
NR_AC97
];
struct
i810_state
*
states
[
NR_HW_CH
];
struct
i810_channel
*
channel
;
/* 1:1 to states[] but diff. lifetime */
dma_addr_t
chandma
;
u16
ac97_features
;
u16
ac97_status
;
...
...
@@ -939,7 +940,7 @@ static int prog_dmabuf(struct i810_state *state, unsigned rec)
for
(
i
=
0
;
i
<
dmabuf
->
numfrag
;
i
++
)
{
sg
->
busaddr
=
virt_to_bus
(
dmabuf
->
rawbuf
+
dmabuf
->
fragsize
*
i
)
;
sg
->
busaddr
=
(
u32
)
dmabuf
->
dma_handle
+
dmabuf
->
fragsize
*
i
;
// the card will always be doing 16bit stereo
sg
->
control
=
dmabuf
->
fragsamples
;
if
(
state
->
card
->
pci_id
==
PCI_DEVICE_ID_SI_7012
)
...
...
@@ -954,7 +955,9 @@ static int prog_dmabuf(struct i810_state *state, unsigned rec)
}
spin_lock_irqsave
(
&
state
->
card
->
lock
,
flags
);
outb
(
2
,
state
->
card
->
iobase
+
c
->
port
+
OFF_CR
);
/* reset DMA machine */
outl
(
virt_to_bus
(
&
c
->
sg
[
0
]),
state
->
card
->
iobase
+
c
->
port
+
OFF_BDBAR
);
outl
((
u32
)
state
->
card
->
chandma
+
c
->
num
*
sizeof
(
struct
i810_channel
),
state
->
card
->
iobase
+
c
->
port
+
OFF_BDBAR
);
outb
(
0
,
state
->
card
->
iobase
+
c
->
port
+
OFF_CIV
);
outb
(
0
,
state
->
card
->
iobase
+
c
->
port
+
OFF_LVI
);
...
...
@@ -1669,7 +1672,7 @@ static int i810_mmap(struct file *file, struct vm_area_struct *vma)
if
(
size
>
(
PAGE_SIZE
<<
dmabuf
->
buforder
))
goto
out
;
ret
=
-
EAGAIN
;
if
(
remap_page_range
(
vma
->
vm_start
,
virt_to_phys
(
dmabuf
->
rawbuf
),
if
(
remap_page_range
(
vma
,
vma
->
vm_start
,
virt_to_phys
(
dmabuf
->
rawbuf
),
size
,
vma
->
vm_page_prot
))
goto
out
;
dmabuf
->
mapped
=
1
;
...
...
@@ -1722,7 +1725,9 @@ static int i810_ioctl(struct inode *inode, struct file *file, unsigned int cmd,
}
if
(
c
!=
NULL
)
{
outb
(
2
,
state
->
card
->
iobase
+
c
->
port
+
OFF_CR
);
/* reset DMA machine */
outl
(
virt_to_bus
(
&
c
->
sg
[
0
]),
state
->
card
->
iobase
+
c
->
port
+
OFF_BDBAR
);
outl
((
u32
)
state
->
card
->
chandma
+
c
->
num
*
sizeof
(
struct
i810_channel
),
state
->
card
->
iobase
+
c
->
port
+
OFF_BDBAR
);
outb
(
0
,
state
->
card
->
iobase
+
c
->
port
+
OFF_CIV
);
outb
(
0
,
state
->
card
->
iobase
+
c
->
port
+
OFF_LVI
);
}
...
...
@@ -2881,15 +2886,26 @@ static int __init i810_probe(struct pci_dev *pci_dev, const struct pci_device_id
card
->
alloc_rec_pcm_channel
=
i810_alloc_rec_pcm_channel
;
card
->
alloc_rec_mic_channel
=
i810_alloc_rec_mic_channel
;
card
->
free_pcm_channel
=
i810_free_pcm_channel
;
card
->
channel
[
0
].
offset
=
0
;
card
->
channel
[
0
].
port
=
0x00
;
card
->
channel
[
0
].
num
=
0
;
card
->
channel
[
1
].
offset
=
0
;
card
->
channel
[
1
].
port
=
0x10
;
card
->
channel
[
1
].
num
=
1
;
card
->
channel
[
2
].
offset
=
0
;
card
->
channel
[
2
].
port
=
0x20
;
card
->
channel
[
2
].
num
=
2
;
if
((
card
->
channel
=
pci_alloc_consistent
(
pci_dev
,
sizeof
(
struct
i810_channel
)
*
NR_HW_CH
,
&
card
->
chandma
))
==
NULL
)
{
printk
(
KERN_ERR
"i810: cannot allocate channel DMA memory
\n
"
);
goto
out_mem
;
}
{
/* We may dispose of this altogether some time soon, so... */
struct
i810_channel
*
cp
=
card
->
channel
;
cp
[
0
].
offset
=
0
;
cp
[
0
].
port
=
0x00
;
cp
[
0
].
num
=
0
;
cp
[
1
].
offset
=
0
;
cp
[
1
].
port
=
0x10
;
cp
[
1
].
num
=
1
;
cp
[
2
].
offset
=
0
;
cp
[
2
].
port
=
0x20
;
cp
[
2
].
num
=
2
;
}
/* claim our iospace and irq */
request_region
(
card
->
iobase
,
64
,
card_names
[
pci_id
->
driver_data
]);
...
...
@@ -2900,8 +2916,7 @@ static int __init i810_probe(struct pci_dev *pci_dev, const struct pci_device_id
printk
(
KERN_ERR
"i810_audio: unable to allocate irq %d
\n
"
,
card
->
irq
);
release_region
(
card
->
iobase
,
64
);
release_region
(
card
->
ac97base
,
256
);
kfree
(
card
);
return
-
ENODEV
;
goto
out_chan
;
}
/* initialize AC97 codec and register /dev/mixer */
...
...
@@ -2909,8 +2924,7 @@ static int __init i810_probe(struct pci_dev *pci_dev, const struct pci_device_id
release_region
(
card
->
iobase
,
64
);
release_region
(
card
->
ac97base
,
256
);
free_irq
(
card
->
irq
,
card
);
kfree
(
card
);
return
-
ENODEV
;
goto
out_chan
;
}
pci_set_drvdata
(
pci_dev
,
card
);
...
...
@@ -2931,11 +2945,17 @@ static int __init i810_probe(struct pci_dev *pci_dev, const struct pci_device_id
unregister_sound_mixer
(
card
->
ac97_codec
[
i
]
->
dev_mixer
);
kfree
(
card
->
ac97_codec
[
i
]);
}
kfree
(
card
);
return
-
ENODEV
;
goto
out_chan
;
}
card
->
initializing
=
0
;
return
0
;
out_chan:
pci_free_consistent
(
pci_dev
,
sizeof
(
struct
i810_channel
)
*
NR_HW_CH
,
card
->
channel
,
card
->
chandma
);
out_mem:
kfree
(
card
);
return
-
ENODEV
;
}
static
void
__exit
i810_remove
(
struct
pci_dev
*
pci_dev
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment