#include <linux/dma-mapping.h>
#include <linux/dmapool.h>
#include <linux/gfp.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/io.h>
#include <linux/module.h>
#include <sound/asound.h>
#include <sound/control.h>
#include <sound/core.h>
#include <sound/initval.h>
#include <sound/memalloc.h>
#include <sound/pcm.h>
#include <sound/pcm_params.h>
#include <asm/dma.h>
#include <asm/firmware.h>
#include <asm/lv1call.h>
#include <asm/ps3.h>
#include <asm/ps3av.h>
#include "snd_ps3.h"
#include "snd_ps3_reg.h"
Go to the source code of this file.
|
| module_param_named (start_delay, snd_ps3_start_delay, uint, 0644) |
|
| MODULE_PARM_DESC (start_delay,"time to insert silent data in ms") |
|
| module_param (index, int, 0444) |
|
| MODULE_PARM_DESC (index,"Index value for PS3 soundchip.") |
|
| module_param (id, charp, 0444) |
|
| MODULE_PARM_DESC (id,"ID string for PS3 soundchip.") |
|
| module_init (snd_ps3_init) |
|
| module_exit (snd_ps3_exit) |
|
| MODULE_LICENSE ("GPL v2") |
|
| MODULE_DESCRIPTION ("PS3 sound driver") |
|
| MODULE_AUTHOR ("Sony Computer Entertainment Inc.") |
|
| MODULE_ALIAS (PS3_MODULE_ALIAS_SOUND) |
|
MODULE_AUTHOR |
( |
"Sony Computer Entertainment Inc." |
| ) |
|
MODULE_DESCRIPTION |
( |
"PS3 sound driver" |
| ) |
|
module_exit |
( |
snd_ps3_exit |
| ) |
|
module_init |
( |
snd_ps3_init |
| ) |
|
MODULE_LICENSE |
( |
"GPL v2" |
| ) |
|
module_param |
( |
id |
, |
|
|
charp |
, |
|
|
0444 |
|
|
) |
| |
module_param_named |
( |
start_delay |
, |
|
|
snd_ps3_start_delay |
, |
|
|
uint |
, |
|
|
0644 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
start_delay |
, |
|
|
"time to insert silent data in ms" |
|
|
) |
| |
MODULE_PARM_DESC |
( |
id |
, |
|
|
"ID string for PS3 soundchip." |
|
|
) |
| |